您好,登錄后才能下訂單哦!
itchat模塊
官方參考文檔:https://itchat.readthedocs.io/zh/latest/
安裝
pip install itchat / pip3 install itchat
原理
Python模仿網(wǎng)頁版微信登陸,并且現(xiàn)有一套操作網(wǎng)頁版微信的API,可以將你使用微信中產(chǎn)生的數(shù)據(jù)爬下來,并做出相應(yīng)的處理。
操作
1.導(dǎo)入這套微信API的包itchat
import itchat
2.模仿網(wǎng)頁版微信登陸
itchat.auto_login()
3.使用相關(guān)函數(shù)找到相關(guān)微信聯(lián)系人信息(這里返回的是一個JOSN數(shù)組)
users=itchat.search_friends("飛叔Brother")
4.得到相關(guān)聯(lián)系人的用戶名(具體想看JOSN內(nèi)部都是什么數(shù)據(jù)可以自己打印出來看看)
userName= users[0]['UserName']
5.發(fā)送信息到相關(guān)聯(lián)系人
itchat.send('你好飛叔Brother',toUserName=userName)
至此,就會發(fā)送成功了。
import itchat itchat.auto_login() itchat.send('Hello, filehelper', toUserName='filehelper')
這段代碼意思是給filehelper發(fā)送一個hello,filehelper就是文件助手。
那么我們想給指定的人發(fā)消息,并不是把filehelper改掉這么簡單
users=itchat.search_friends("老王") userName= users[0]['UserName'] print(userName) itchat.send('你好老王',toUserName=userName)
如果我們想給老王發(fā)消息,就先使用itchat.search方法,會把所有備注名為老王的聯(lián)系人全都找出來。
之后我們選取第一個(如果你的聯(lián)系人列表里只有一個老王,那么就只會搜出來一個)
users[0]取到的是一個聯(lián)系人對象,他里面有個key叫UserName,它就是真正的用戶的username
之后我們再使用itchat.send方法,就可以成功向老王發(fā)送消息了
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。