# pip install -U wxpy
from wxpy import *
# 扫码登陆
bot = Bot()
# 初始化图灵机器人 (API key 申请: http://tuling123.com),并认证
# '6b61f29cdb694a8eb18c84ed97beb750' '20ee91ffc00f42298bb02f7f290bf74d'
tuling = Tuling(api_key='759e94b5631f4cc9d9de36b1a3e0811')
# 设置不自动回复的群和好友
boring_group = bot.groups().search('明日科技')[0]
boring_group1 = bot.groups().search('明日科技')[0]
jt = bot.friends().search('Z')[0]
# 打印所有群
mygroup=bot.groups()
print(mygroup)
# 不自动回复指定的群消息和好友消息
@bot.register([boring_group, boring_group1, jt])
def ignore(msg):
print('ignore is running')
print(msg)
# 啥也不做
return
# 打印指定的群消息
@bot.register([boring_group, boring_group1])
def just_print(msg):
print(msg)
print('just_print is running')
# 回复@的群聊消息和个人消息
@bot.register(msg_types=TEXT) # 注册消息类型为文本消息
def auto_reply(msg):
print('auto_reply is running')
if isinstance(msg.chat, Group) and not msg.is_at: # 判断是否是@的消息和个人消息
return # 如果不是@消息,什么也不做
else:
# tuling.do_reply(msg) # 图灵自动回复消息
print(msg) # 打印消息
print(tuling.do_reply(msg)) # 打印并回复消息
# return '收到消息:{}({})'.format(msg.text, msg.type) # 回复消息:收到消息:内容
embed() # 堵塞线程,并进入 Python 命令行
geobuins
- 粉丝: 2036
- 资源: 1209
最新资源
- CE. TOOLS. 测试工具人
- 张杰的音乐目录 : 如果爱 - 张杰
- 基于Springboot的贫困生资助系统源码
- 机械设计伺服四足机器人sw20可编辑非常好的设计图纸100%好用.zip
- 万捷APK界面类名获取工具 - Apkactivity - apk界面路径查看器
- 安卓手机广告屏蔽器AdGuard
- Java Web开发技术总复习4.docx
- 机械设计垂直 管式锅炉sw18可编辑非常好的设计图纸100%好用.zip
- Python程序火车票分析助手使用说明
- 批量处理美术资源 替换成自己想要的文件结构
- 机械设计大型转子干燥机sw15可编辑非常好的设计图纸100%好用.zip
- Labview与阿特拉斯开放式通讯 网口读取扭矩值 包括Labview程序、阿特拉斯调试软件、开放式通讯测试软件、开放式通讯协议、PM4000手册
- 圣诞树html网页代码,打开可以直接看
- 山水工程试点DID工具变量.xlsx
- Nginx支持服务端的负载均衡配置文件
- 同步磁阻电机SynRM滑模控制 1.基于FOC策略,其中转速环采用滑模控制器,较PI提高系统的动态响应能力 2.提供算法对应的参考文献和仿真模型 仿真模型纯手工搭建
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈