我欲封天 发表于 2017-5-16 19:32:59

闲时无聊用Python+图灵做的一个微信机器人

from wxpy import *
import requests
import json
import time
def talks_bot(info = '你叫什么名字啊'):
    api_url = 'http://www.tuling123.com/openapi/api'
    apikey = 'KEYAPI'
    data = {'key': apikey, 'info': info}
    response = requests.post(api_url, data=data).text
    replys = json.loads(response)['text']
    return replys

bot = Bot()

@bot.register()
def reply_my_friend(msg):
    message = '{}'.format(msg.text)
    replys = talks_bot(info=message)
    return replys
bot.start()


spur 发表于 2017-5-30 20:10:39

mark下~~~

kinght1147 发表于 2017-7-27 15:01:57

新人路过,学习下

BlackMan 发表于 2017-11-5 20:56:02

调用的图灵机器人接口,也就是个爬虫或者通信程序,如果能实现保存数据,就可以改造成真正的自我训练的机器人,
页: [1]
查看完整版本: 闲时无聊用Python+图灵做的一个微信机器人