Wxpy学习

引入依赖包

from wxpy import *

创建对象

bot = Bot()

发送消息

1.查找对象

Friend  
friends = bot.friends()
friend = bot.friends().search(' ')[0]

Groups
groups = bot.groups()
group= bot.groups().search(' ')[0]

2.发送消息

group.send('')
frined.send('')
bot.file_helper.send("应该能发过去吧")

3.此外,还有发送图片、文件等功能

处理消息

Bot.register(chats=None, msg_types=None, except_self=True, run_async=True, enabled=True)

# chats – 消息所在的聊天对象:单个或列表形式的多个聊天对象或聊天类型,为空时匹配所有聊天对象
# msg_types – 消息的类型:单个或列表形式的多个消息类型,为空时匹配所有消息类型(SYSTEM
# 类消息除外)
# except_self – 排除由自己发送的消息
# run_async – 是否异步执行所配置的函数:可提高响应速度
# enabled – 当前配置的默认开启状态,可事后动态开启或关闭

消息对象
消息对象代表每一条从微信获取到的消息。

你可能感兴趣的:(Python,学习笔记)