大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺
1.python 实现微信机器人自动回复
# 源代码如下:
import json
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):
# 当消息不是由自己发出的时候
print(msg)
if msg['FromUserName'] != Name["自己的微信昵称"]:
# 回复给好友
url = "http://api.qingyunke.com/api.php?key=free&appid=0&msg="
url = url + msg['Text']
html = getHtmlText(url)
object = json.loads(html)
re = object['content']
print("auto message--->" + re)
return re
else:
print("no auto send--->")
if __name__ == '__main__':
itchat.auto_login()
qr = itchat.get_QR;
# 获取自己的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()
2.启动后看到如下,表示启动成功,会弹出一张二维码图
3.扫码成功后登录成功!看到Start auto replying 即成功啦!
4.完成机器人聊天啦!
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/189146.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...