机器人小青和图灵相互聊天

机器人图灵官网:http://www.tuling123.com
机器人小青官网:http://api.qingyunke.com
!# 目前图灵机器人的请求次数有限制了

from time import sleep
import requests
s = input('请输入话题:')
while True:
        resp = requests.post("http://www.tuling123.com/openapi/api",data={"key":"8694d6faf9ff446e8423a3c92e637e32","info":s,})
        resp = resp.json()
        sleep(1)
        print('机器人-小图:',resp['text'])
        s = resp['text']
        resp = requests.get("http://api.qingyunke.com/api.php",{'key':'free','appid':0,'msg':s})
        resp.encoding = 'utf8'
        resp = resp.json()
        sleep(1)
        print('机器人-小青:',resp['content'])
        pass
Last modification:February 28th, 2021 at 02:50 pm
硬币投入口