前言
在論壇上看到了用Python/ target=_blank class=infotextkey>Python登錄微信并實現自動簽到,才了解到一個新的Python庫: itchat
利用Python 微信庫itchat,可以實現自動回復等多種功能,好玩到根本停不下來啊,尤其是調戲調戲不懂計算機的,特別有成就感,哈哈!!
代碼如下:
#coding=utf8
import requests
import itchat
KEY = '8edce3ce905a4c1dbb965e6b35c3834d'
def get_response(msg):
apiUrl = 'http://www.tuling123.com/openapi/api'
data = {undefined
'key' : KEY,
'info' : msg,
'userid' : 'wechat-robot',
}
try:
r = requests.post(apiUrl, data=data).json()
return r.get('text')
except:
return
@itchat.msg_register(itchat.content.TEXT)
def tuling_reply(msg):
defaultReply = 'I received: ' + msg['Text']
reply = get_response(msg['Text'])
return reply or defaultReply
itchat.auto_login(hotReload=True)
itchat.run()
安裝一下 itchat即可跑上面程序,實現與圖靈機器人的交互。
總結
以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作能帶來一定的幫助,如果有疑問大家可以留言交流,謝謝大家對我的支持。