Python實(shí)現(xiàn)微信中找回好友、群聊用戶(hù)撤回的消息功能示例
本文實(shí)例講述了Python實(shí)現(xiàn)微信中找回好友、群聊用戶(hù)撤回的消息功能。分享給大家供大家參考,具體如下:
還在好奇好友撤回了什么消息嗎?群里撤回了什么消息?下面的代碼實(shí)現(xiàn)了:即使群、好友撤回了文本消息、表情、圖片等消息,自己也能知道撤回的什么。
#coding=utf-8
import itchat
from itchat.content import TEXT
from itchat.content import *
import sys
import time
import re
import os
msg_information = {}
face_bug=None #針對(duì)表情包的內(nèi)容
@itchat.msg_register([TEXT,PICTURE,FRIENDS,CARD,MAP,SHARING,RECORDING,ATTACHMENT,VIDEO],isFriendChat=True,isGroupChat=True)
def receive_msg(msg):
global face_bug
msg_time_rec = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()) #接收消息的時(shí)間
if 'ActualNickName' in msg:
from_user = msg['ActualUserName'] #群消息的發(fā)送者,用戶(hù)的唯一標(biāo)識(shí)
msg_from = msg['ActualNickName']#發(fā)送者群內(nèi)的昵稱(chēng)
friends = itchat.get_friends(update=True)#獲取所有好友
for f in friends:
if from_user == f['UserName']: #如果群消息是好友發(fā)的
if f['RemarkName']: # 優(yōu)先使用好友的備注名稱(chēng),沒(méi)有則使用昵稱(chēng)
msg_from = f['RemarkName']
else:
msg_from = f['NickName']
break
groups = itchat.get_chatrooms(update=True)#獲取所有的群
for g in groups:
if msg['FromUserName'] == g['UserName']:#根據(jù)群消息的FromUserName匹配是哪個(gè)群
group_name = g['NickName']
group_menbers = g['MemberCount']
break
group_name = group_name + "(" + str(group_menbers) +")"
else:
if itchat.search_friends(userName=msg['FromUserName'])['RemarkName']:#優(yōu)先使用備注名稱(chēng)
msg_from = itchat.search_friends(userName=msg['FromUserName'])['RemarkName']
else:
msg_from = itchat.search_friends(userName=msg['FromUserName'])['NickName'] #在好友列表中查詢(xún)發(fā)送信息的好友昵稱(chēng)
group_name = ""
msg_time = msg['CreateTime'] #信息發(fā)送的時(shí)間
msg_id = msg['MsgId'] #每條信息的id
msg_content = None #儲(chǔ)存信息的內(nèi)容
msg_share_url = None #儲(chǔ)存分享的鏈接,比如分享的文章和音樂(lè)
if msg['Type'] == 'Text' or msg['Type'] == 'Friends': #如果發(fā)送的消息是文本或者好友推薦
msg_content = msg['Text']
#如果發(fā)送的消息是附件、視頻、圖片、語(yǔ)音
elif msg['Type'] == "Attachment" or msg['Type'] == "Video" \
or msg['Type'] == 'Picture' \
or msg['Type'] == 'Recording':
msg_content = msg['FileName'] #內(nèi)容就是他們的文件名
msg['Text'](str(msg_content)) #下載文件
elif msg['Type'] == 'Map': #如果消息為分享的位置信息
x, y, location = re.search(
"<location x=\"(.*?)\" y=\"(.*?)\".*label=\"(.*?)\".*", msg['OriContent']).group(1, 2, 3)
if location is None:
msg_content = r"緯度->" + x.__str__() + " 經(jīng)度->" + y.__str__() #內(nèi)容為詳細(xì)的地址
else:
msg_content = r"" + location
elif msg['Type'] == 'Sharing': #如果消息為分享的音樂(lè)或者文章,詳細(xì)的內(nèi)容為文章的標(biāo)題或者是分享的名字
msg_content = msg['Text']
msg_share_url = msg['Url'] #記錄分享的url
face_bug = msg_content
#將信息存儲(chǔ)在字典中,每一個(gè)msg_id對(duì)應(yīng)一條信息
time.sleep(2)
msg_information.update(
{
msg_id: {
"msg_from": msg_from,
"msg_time": msg_time,
"msg_time_rec": msg_time_rec,
"msg_type": msg["Type"],
"msg_content": msg_content,
"msg_share_url": msg_share_url,
"group_name":group_name
}
}
)
del_info = []
for k in msg_information:
m_time = msg_information[k]['msg_time'] #取得消息時(shí)間
if int(time.time()) - m_time > 130: #如果消息時(shí)間是130秒甚至更久之前的,則刪除。
del_info.append(k)
if del_info:
for i in del_info:
msg_information.pop(i)
#監(jiān)聽(tīng)是否有消息撤回
@itchat.msg_register(NOTE,isFriendChat=True,isGroupChat=True,isMpChat=True)
def information(msg):
#如果這里的msg['Content']中包含消息撤回和id,就執(zhí)行下面的語(yǔ)句
if '撤回了一條消息' in msg['Content']:
old_msg_id = re.search("\<msgid\>(.*?)\<\/msgid\>", msg['Content']).group(1) #在返回的content查找撤回的消息的id
old_msg = msg_information.get(old_msg_id) #獲取到消息原文,類(lèi)型:字典
print(old_msg)
if len(old_msg_id)<11: #如果發(fā)送的是表情包
itchat.send_file(face_bug,toUserName='filehelper')
else: #發(fā)送撤回的提示給文件助手
msg_body = old_msg['group_name'] + old_msg['msg_from'] +"\n" + old_msg['msg_time_rec'] \
+ "撤回了:" + "\n" + r"" + old_msg['msg_content']
#如果是分享的文件被撤回了,那么就將分享的url加在msg_body中發(fā)送給文件助手
if old_msg['msg_type'] == "Sharing":
msg_body += "\n鏈接是:" + old_msg.get('msg_share_url')
#print(msg_body)
itchat.send_msg(msg_body, toUserName='filehelper')#將撤回消息發(fā)給文件助手
#有文件的話(huà)也要將文件發(fā)送回去
if old_msg["msg_type"] == "Picture" \
or old_msg["msg_type"] == "Recording" \
or old_msg["msg_type"] == "Video" \
or old_msg["msg_type"] == "Attachment":
file = '@fil@%s' % (old_msg['msg_content'])
itchat.send(msg=file, toUserName='filehelper')
os.remove(old_msg['msg_content'])
msg_information.pop(old_msg_id)# 刪除字典舊消息
itchat.auto_login(hotReload=True,enableCmdQR=1)
itchat.run()
更多關(guān)于Python相關(guān)內(nèi)容感興趣的讀者可查看本站專(zhuān)題:《Python數(shù)學(xué)運(yùn)算技巧總結(jié)》、《Python數(shù)據(jù)結(jié)構(gòu)與算法教程》、《Python函數(shù)使用技巧總結(jié)》、《Python字符串操作技巧匯總》、《Python入門(mén)與進(jìn)階經(jīng)典教程》及《Python文件與目錄操作技巧匯總》
希望本文所述對(duì)大家Python程序設(shè)計(jì)有所幫助。
- Python查看微信撤回消息代碼
- python如何查看微信消息撤回
- 使用Python微信庫(kù)itchat獲得好友和群組已撤回的消息
- 78行Python代碼實(shí)現(xiàn)現(xiàn)微信撤回消息功能
- python使用wxpy實(shí)現(xiàn)微信消息防撤回腳本
- Python 實(shí)現(xiàn)還原已撤回的微信消息
- python實(shí)現(xiàn)文件助手中查看微信撤回消息
- Python實(shí)現(xiàn)微信消息防撤回功能的實(shí)例代碼
- Python實(shí)現(xiàn)的微信公眾號(hào)群發(fā)圖片與文本消息功能實(shí)例詳解
- 使用Python制作自動(dòng)推送微信消息提醒的備忘錄功能
- python實(shí)現(xiàn)微信定時(shí)每天和女友發(fā)送消息
相關(guān)文章
Python求兩個(gè)文本文件以行為單位的交集、并集與差集的方法
這篇文章主要介紹了Python求兩個(gè)文本文件以行為單位的交集、并集與差集的方法,涉及Python文本文件與集合運(yùn)算的相關(guān)技巧,需要的朋友可以參考下2015-06-06
使用pyecharts1.7進(jìn)行簡(jiǎn)單的可視化大全
這篇文章主要介紹了使用pyecharts1.7進(jìn)行簡(jiǎn)單的可視化大全,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2020-05-05
Python一行代碼快速實(shí)現(xiàn)程序進(jìn)度條示例
這篇文章主要為大家介紹了Python一行代碼快速實(shí)現(xiàn)程序進(jìn)度條示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2023-03-03
numpy展平數(shù)組ndarray.flatten()詳解
這篇文章主要介紹了numpy展平數(shù)組ndarray.flatten()詳解,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2023-06-06
Python 帶你快速上手 Apache APISIX 插件開(kāi)發(fā)
Apache APISIX Python Runner 來(lái)了,社區(qū)中的小伙伴們?cè)陂_(kāi)發(fā) Apache APISIX 插件時(shí)又多了一種新選擇,本文將用實(shí)列向大家介紹,需要的朋友可以參考下面文章內(nèi)容2021-09-09
在Python中獲取兩數(shù)相除的商和余數(shù)方法
今天小編就為大家分享一篇在Python中獲取兩數(shù)相除的商和余數(shù)方法,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧2018-11-11
Python通過(guò)tkinter實(shí)現(xiàn)百度搜索的示例代碼
這篇文章主要介紹了Python通過(guò)tkinter實(shí)現(xiàn)百度搜索的示例代碼,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2021-04-04
Python爬蟲(chóng)之requests庫(kù)基本介紹
大家好,本篇文章主要講的是Python爬蟲(chóng)之requests庫(kù)基本介紹,感興趣的同學(xué)趕快來(lái)看一看吧,對(duì)你有幫助的話(huà)記得收藏一下2022-02-02

