1 Star 1 Fork 1

xujian01/WechatRobot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
wechatrobot_me.py 2.38 KB
一键复制 编辑 原始数据 按行查看 历史
一格 提交于 2017-03-21 18:17 . wxpy 0.3.0更新
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")
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/xujian01/WechatRobot.git
git@gitee.com:xujian01/WechatRobot.git
xujian01
WechatRobot
WechatRobot
master

搜索帮助