用起来记得把参数改改。
源代码:
import itchat
import requests
import re
# 抓取网页
def getHtmlText(url):
try:
r = requests.get(url,timeout=30)
r.raise_for_status()
r.encoding = r.apparent_encoding
return r.text
except:
return ""
# 自动回复
# 封装好的装饰器,当接收到的消息是Text,即文字消息
@itchat.msg_register(['Text','Map', 'Card', 'Note', 'Sharing', 'Picture'])
def text_reply(msg):
# 当消息不是由自己发出的时候
if not msg['FromUserName'] == Name["pikachu"]:
# 回复给好友
url = "http://www.tuling123.com/openapi/api?key=apikey&info="
url = url + msg['Text']
html = getHtmlText(url)
message = re.findall(r'"text":".*?"',html)
reply = eval(message[0].split(':')[1])
return reply
if __name__ == '__main__':
itchat.auto_login()
# 获取自己的UserName
friends = itchat.get_friends(update=True)[0:]
Name = {}
Nic = []
User = []
for i in range(len(friends)):
Nic.append(friends[i]["NickName"])
User.append(friends[i]["UserName"])
for i in range(len(friends)):
Name[Nic[i]] = User[i]
itchat.run()
原理:
这个功能还挺有用的,可以接入自己的数据库,就可以查询想要的数据啦。
作者的效果图:
领取专属 10元无门槛券
私享最新 技术干货