用itchat做一個簡單的關鍵詞回復微信機器人
- 2019 年 10 月 6 日
- 筆記
itchat組件:https://github.com/littlecodersh/ItChat 下載後根據安裝教程
pip install itchat
安裝itchat 新建wxbot.py
#coding=utf8 import itchat import time @itchat.msg_register('Text') def text_reply(msg): f = open("words.txt") for line in f: splited = line.split(',') if splited[0] in msg['Text']: return splited[1].replace("n", "") f.close() itchat.auto_login(True, enableCmdQR=True) itchat.run()
新建words.txt(注意文件編碼,否則會導致亂碼) 用以下格式編輯關鍵詞回復
關鍵詞1,回復1 關鍵詞2,回復2 關鍵詞3,回復3
運行
python wxbot.py
登錄後即可。