微信接入图灵聊天机器人

2018-07-17  本文已影响121人  幻想无极

前言

运行平台: Mac
Python版本: Python3.7
IDE: Sublime Text
其他工具: Chrome浏览器
时间:2018.7.17

wxpy简介

wepy文档

http://wxpy.readthedocs.io/zh/latest/chats.html

代码

from wxpy import *

bot = Bot(cache_path=True)

# my_groups = bot.groups()

wxpy_groups = bot.groups().search('时光机')[0]

print(wxpy_groups.nick_name)

# print(type(my_groups))
my_friend = ensure_one(bot.search(wxpy_groups.nick_name))
tuling = Tuling(api_key='key')
# tuling = XiaoI('InoMpZRs9UDE', 'SmzrTRjpqQPFEg14Scdu')

print(my_friend)

my_friend.send('你好,我是小小机器人!')

# 使用图灵机器人自动与指定好友聊天
@bot.register(my_friend)
def reply_my_friend(msg):
    tuling.do_reply(msg)
embed()

Tips

需要使用自己在图灵注册的key,下方贴出链接
图灵机器人

上一篇 下一篇

猜你喜欢

热点阅读