真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

基于python的itchat庫實現(xiàn)微信聊天機器人(推薦)-創(chuàng)新互聯(lián)

一、開始之前必須安裝itchat庫

創(chuàng)新互聯(lián)建站專注于企業(yè)營銷型網(wǎng)站建設(shè)、網(wǎng)站重做改版、招遠網(wǎng)站定制設(shè)計、自適應(yīng)品牌網(wǎng)站建設(shè)、H5場景定制、成都商城網(wǎng)站開發(fā)、集團公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)公司、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計等建站業(yè)務(wù),價格優(yōu)惠性價比高,為招遠等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。

pip install itchat(使用pip必須在電腦的環(huán)境變量中添加Python的路徑)

conda install request

二、開始編程前,我們需要在圖靈機器人官網(wǎng)注冊自己的圖靈機器人,來實現(xiàn)我們程序的智能聊天功能

1、圖靈機器人官網(wǎng)(http://www.turingapi.com/)

2、注冊登錄后點擊創(chuàng)建機器人

3、創(chuàng)建成功后,可以獲得機器人提供的API接口(apikey)

三、代碼實現(xiàn)

import itchat
import requests
#上傳獲得消息內(nèi)容到圖靈機器人
def getMessage(msg):
  apiURL='http://www.tuling123.com/openapi/api'
  data={'key':'你的apikey',
     'info':msg,
     'userID':'你的userID(可以隨便寫)'
     }
  r=requests.post(apiURL, data=data).json()
  print('答:'+r.get('text'))
  return r.get('text')
#監(jiān)聽個人微信聊天
@itchat.msg_register(itchat.content.TEXT)
def return_message(msg):
  try:
    print('問:'+msg['Text'])
  except Exception as e:
    print(e)
  return getMessage(msg['Text'])
'''
#監(jiān)聽微信群聊天
@itchat.msg_register([itchat.content.TEXT],isGroupChat=True)
def return_message(msg):
  print('問:'+msg['Text'])
  return getMessage(msg['Text'])
'''
if __name__=='__main__':
  itchat.auto_login(hotReload=True)
  itchat.run()

網(wǎng)頁題目:基于python的itchat庫實現(xiàn)微信聊天機器人(推薦)-創(chuàng)新互聯(lián)
轉(zhuǎn)載注明:http://weahome.cn/article/ccsoce.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部