不到10行代碼又官,實現(xiàn)自動聊天機器人功能叶骨。
首先到http://www.tuling123.com官網(wǎng)申請key后就可以直接使用了搬素,非常簡單霎箍。
#coding=utf-8
from time import sleep
import requests
while True:
s = raw_input("請輸入:")
if s == "close":
break
resp = requests.post("http://www.tuling123.com/openapi/api", data={"key":"6ae43c7f3c8d40cf9ff0dfeaff71061c", "info":s})
resp = resp.json()
sleep(1)
print "小寶:", resp["text"]