代码拉取完成,页面将自动刷新
import os
import requests
from wxpy import *
import json
#图灵机器人
def talks_robot(info = 'Husen'):
api_url = 'http://www.tuling123.com/openapi/api'
apikey = '0d26f7c76ecf4623a536368eaf3d26ea'
data = {'key': apikey,
'info': info}
req = requests.post(api_url, data=data).text
replys = json.loads(req)['text']
return replys
#微信自动回复
#robot = Robot()
robot=Bot(False,1)
#robot.cache_path=True
#robot.console_qr=2
#boring_group = robot.groups().search('wxpy 交流群 ')[0]
#mps = robot.mps(update=True)
group_1 = robot.groups().search('康老板和他的穷酸朋友们')[0]
group_2 = robot.groups().search('只是爱要怎么说 出口')[0]
group_3 = robot.groups().search('421永不断片')[0]
# 回复来自其他好友、群聊和公众号的消息
@robot.register([Friend])
def reply_my_friend(msg):
message = '{}'.format(msg.text)
replys = talks_robot(info=message)+'\n\t\t\t\t\t\t\t--微信机器人自动回复'
return replys
@robot.register([Group])
def auto_reply(msg):
# 如果是群聊,但没有被 @,则不回复
if not (isinstance(msg.sender, Group) and not msg.is_at):
# 回复消息内容和类型
message = '{}'.format(msg.text)
replys = talks_robot(info=message)+'\n\t\t\t\t\t--微信机器人自动回复'
return replys
@robot.register([Group],RECORDING)
def auto_reply(msg):
# 如果是群聊,但没有被 @,则不回复
if not (isinstance(msg.sender, Group) and not msg.is_at):
# 回复消息内容和类型
replys = '机器人暂时无法识别语音哦。' + '\n\t\t\t\t\t--微信机器人自动语音回复'
return replys
@robot.register([Friend],RECORDING )
def auto_reply(msg):
# 回复消息内容和类型
replys = '机器人暂时无法识别语音哦。' + '\n\t\t\t\t\t--微信机器人自动语音回复'
return replys
#忽略公众号
@robot.register([MP])
def ignore_mps(msg):
# 啥也不做
return
"""
#忽略一些群
@robot.register(boring_group)
def ignore(msg):
# 啥也不做
return
"""
#接收一些群
@robot.register([group_1,group_2,group_3])
def ignore(msg):
# 回复消息内容和类型
message = '{}'.format(msg.text)
replys = talks_robot(info=message) + '\n\t\t\t\t\t--微信机器人自动回复'
return replys
# 开始监听和自动处理消息
#robot.start()
embed()
os.system("pause")
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。