您的位置:首页技术文章
文章详情页

Python使用itcaht库实现微信自动收发消息功能

浏览:4日期:2022-07-17 16:16:14

itchat库

模拟微信网页登录 通过python code接受/发送微信消息 实现微信聊天机器人:调用聊天机器人api,将接收到的微信消息传给api,再将api返回的消息传给微信

展示如何使用itchat发送微信消息

# !pip install itchatimport itchat

在当前文件夹下生成二维码图片,微信扫码即可登录网页版微信

itchat.auto_login()

Getting uuid of QR code.Downloading QR code.Please scan the QR code to log in.Please press confirm on your phone.Loading the contact, this may take a little while.Login successfully as 小白

通过微信名称查找接收消息的对象

users = itchat.search_friends(name='小白') # 这里是给自己发送消息user_name = users[0]['UserName']

对象表示成这样的一个字符串

user_name

’@40f90812b2233588e8ebda1e8d8f01d48d32a384e31f0a96yaa4859a41123456’

toUserName指定接受消息的对象;每隔10s发送一次'hello world',发送3次

import timefor i in range(3): itchat.send('hello, world', toUserName=user_name) time.sleep(10)

总结

到此这篇关于Python使用itcaht库实现微信自动收发消息的文章就介绍到这了,更多相关python itcaht库微信自动收发消息内容请搜索好吧啦网以前的文章或继续浏览下面的相关文章希望大家以后多多支持好吧啦网!

标签: 微信 Python
相关文章: