python itchat四步实现发送消息

itchat是一个微信接口。可以模仿网络版微信登录,并且有一套操作网页版微信的API,可以爬下其中的数据。

第一步:下载itchat

pip install itchat / pip3 install itchat

第二步:登陆微信,获取信息

import itchat
itchat.auto_login()#python会自动生成二维码登陆
friends = itchat.get_friends(update=True)#获取好友信息

第三步:找到好友

users=itchat.search_friends("XXX")#你的好友

第四步:发送消息

userName=users[0]['UserName']
itchat.send("hello",toUserName=userName)#itchat。send("要发送的信息",toUser=好友名称)

以下是常用的key:
‘NickName’ 好友昵称
‘RemarkName’ 备注
‘Signature’ 签名
‘Province’: 省
‘City’: 市 ’

你可能感兴趣的:(python教程)