服务器之家

服务器之家 > 正文

python如何查看微信消息撤回

时间:2021-04-22 00:36     来源/作者:孙智斌

本文为大家分享了python查看微信消息撤回的具体代码,供大家参考,具体内容如下

1.安装itchat

itchat是一个开源的python微信库,支持发送消息、图片、视频、地图、名片、文件等,还可以实现自动回复等多种功能。

看到的一个文档还不错

1).先安一个python 下载地址

2).安装成功之后,进入pip3.exe所在的目录

python如何查看微信消息撤回

安装itchat:pip3.exe install itchat 下图我的已经安装过了(注意:使用3以及以上版本执行)。

python如何查看微信消息撤回

3.打开cmd拖入按回车就好了

python如何查看微信消息撤回

代码实现

建一个wx.py文件,以下代码导入

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# -*-encoding:utf-8-*-
import os
import re
import shutil
import time
import itchat
from itchat.content import *
 
# 说明:可以撤回的有文本文字、语音、视频、图片、位置、名片、分享、附件
 
# {msg_id:(msg_from,msg_to,msg_time,msg_time_rec,msg_type,msg_content,msg_share_url)}
msg_dict = {}
 
# 文件存储临时目录
rev_tmp_dir = "/revdir/"
if not os.path.exists(rev_tmp_dir): os.mkdir(rev_tmp_dir)
 
# 表情有一个问题 | 接受信息和接受note的msg_id不一致 巧合解决方案
face_bug = none
 
 
# 将接收到的消息存放在字典中,当接收到新消息时对字典中超时的消息进行清理 | 不接受不具有撤回功能的信息
# [text, picture, map, card, sharing, recording, attachment, video, friends, note]
@itchat.msg_register([text, picture, map, card, sharing, recording, attachment, video])
def handler_receive_msg(msg):
  global face_bug
  # 获取的是本地时间戳并格式化本地时间戳 e: 2017-04-21 21:30:08
  msg_time_rec = time.strftime("%y-%m-%d %h:%m:%s", time.localtime())
  # 消息id
  msg_id = msg['msgid']
  # 消息时间
  msg_time = msg['createtime']
  # 消息发送人昵称 | 这里也可以使用remarkname备注 但是自己或者没有备注的人为none
  msg_from = (itchat.search_friends(username=msg['fromusername']))["nickname"]
  # 消息内容
  msg_content = none
  # 分享的链接
  msg_share_url = none
  if msg['type'] == 'text' \
      or msg['type'] == 'friends':
    msg_content = msg['text']
  elif msg['type'] == 'recording' \
      or msg['type'] == 'attachment' \
      or msg['type'] == 'video' \
      or msg['type'] == 'picture':
    msg_content = r"" + msg['filename']
    # 保存文件
    msg['text'](rev_tmp_dir + msg['filename'])
  elif msg['type'] == 'card':
    msg_content = msg['recommendinfo']['nickname'] + r" 的名片"
  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__() + " 经度->" + y.__str__()
    else:
      msg_content = r"" + location
  elif msg['type'] == 'sharing':
    msg_content = msg['text']
    msg_share_url = msg['url']
  face_bug = msg_content
  # 更新字典
  msg_dict.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
      }
    }
  )
 
 
# 收到note通知类消息,判断是不是撤回并进行相应操作
@itchat.msg_register([note])
def send_msg_helper(msg):
  global face_bug
  if re.search(r"\<\!\[cdata\[.*撤回了一条消息\]\]\>", msg['content']) is not none:
    # 获取消息的id
    old_msg_id = re.search("\<msgid\>(.*?)\<\/msgid\>", msg['content']).group(1)
    old_msg = msg_dict.get(old_msg_id, {})
    if len(old_msg_id) < 11:
      itchat.send_file(rev_tmp_dir + face_bug, tousername='filehelper')
      os.remove(rev_tmp_dir + face_bug)
    else:
      msg_body = "爱你蕾蕾 ⇣" + "\n" \
            + old_msg.get('msg_from') + " 撤回了 " + old_msg.get("msg_type") + " 消息" + "\n" \
            + old_msg.get('msg_time_rec') + "\n" \
            + "内容 ⇣" + "\n" \
            + r"" + old_msg.get('msg_content')
      # 如果是分享存在链接
      if old_msg['msg_type'] == "sharing": msg_body += "\n就是这个链接➣ " + old_msg.get('msg_share_url')
 
      # 将撤回消息发送到文件助手
      itchat.send(msg_body, tousername='filehelper')
      # 有文件的话也要将文件发送回去
      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' % (rev_tmp_dir + old_msg['msg_content'])
        itchat.send(msg=file, tousername='filehelper')
        os.remove(rev_tmp_dir + old_msg['msg_content'])
      # 删除字典旧消息
      msg_dict.pop(old_msg_id)
 
 
if __name__ == '__main__':
  itchat.auto_login(hotreload=true,enablecmdqr=1)
  itchat.run()

打开cmd,将文件拖入即可。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/sunzhibin1/article/details/83348304

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
返回顶部