个人微信接入图灵机器人(python版)

Posted gracelove

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了个人微信接入图灵机器人(python版)相关的知识,希望对你有一定的参考价值。

技术分享图片

准备工作

  • itchat,requests
  • 注册图灵账号,创建机器人,获取API-KEY

代码实现

import itchat
from itchat.content import *
import json
import requests


@itchat.msg_register([TEXT])
def text_reply(msg):
    info = msg[‘Text‘].encode(‘utf-8‘)
    url = ‘http://www.tuling123.com/openapi/api‘
    data = {u"key": "这里填入你的API-key", "info": info, u"loc": "", "userid": ""}
    response=requests.post(url,data).content
    s = json.loads(response, encoding=‘utf-8‘)
    print(‘s == %s‘ % s)
    if s[‘code‘] == 100000:
        itchat.send(s[‘text‘], msg[‘FromUserName‘])

itchat.auto_login(hotReload=True)
itchat.run(debug=True)

以上是关于个人微信接入图灵机器人(python版)的主要内容,如果未能解决你的问题,请参考以下文章

个人微信接入图灵机器人(基于Python)

个人微信接入图灵机器人(基于Python)

Python使用微信接入图灵机器人

itchat个人练习 语音与文本图灵测试例程

微信公众号接入图灵机器人实现自动回复消息

Python “图灵机器人”对话交互