# 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 命令行
徐浪老师
- 粉丝: 8483
- 资源: 1万+
最新资源
- VB+SQL宿舍管理系统(论文+源代码)(20248z).7z
- vb+sql医院门诊管理系统(系统+论文+开题报告+任务书+文献综述+参考文献)(202436).7z
- VB+SQL光盘信息管理系统(源代码+系统+答辩PPT)(20244m).7z
- VB+SQL上机考试系统设计(论文+源代码)(202402).7z
- VB+SQL会员制商场进销存(论文+源代码)(2024t3).7z
- vb+access高校固定资产管理系统(论文+程序)(2024b0).7z
- VB+access高校固定资产管理系统(论文+系统)(20244h).7z
- VB+ACCESS高校题库管理系统设计(源代码+论文)(2024jr).7z
- VB+ACCESS音像管理系统(源代码+系统)(20246k).7z
- vb+access酒店管理信息系统(论文+系统)(2024ej).7z
- VB+ACCESS采购管理系统开发(论文+系统+答辩PPT+封面)(2024wd).7z
- VB+Access酒店客房管理系统(源代码+论文+开题报告+任务书)(2024b0).7z
- VB+ACCESS酒店服务管理系统(论文+系统)(2024of).7z
- VB+Access酒店客房管理系统(论文+系统+开题报告+摘要+任务书)(2024c7).7z
- VB+ACCESS计算机等级考试管理系统(源代码+系统+答辩PPT)(2024bm).7z
- vb+ACCESS身份证管理系统设计(论文+源代码)(202422).7z
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈