关于python:如何用Python找回微信撤回信息

36次阅读

共计 1723 个字符,预计需要花费 5 分钟才能阅读完成。

在互联网飞速发展的下、民众的需要下,曾经进入全民微信时代。村口的张大妈,家里的老父亲都晓得怎么应用微信。

然而当咱们与敌人,亲人,爱人聊天的时候,我预计每个人都经验过,那就是微信撤回性能中所提到的,对方撤回一条音讯。

一条撤回的音讯,就像一个机密,让你迫切地想去一探到底;或如一个钓饵,霎时勾起你强烈的趣味。你想晓得,那是怎么的一句话?是对方不慎讲出的真话,还是一句发错了对象的话?

总之,这个撤回的音讯,让人顿生×××。这个时候,就是技术人员出马的时候了。

Python 查看微信撤回音讯参考代码:

`
mport re

import time

import itchat

from itchat.content import *

@itchat.msg_register([TEXT, PICTURE, MAP, CARD, NOTE, SHARING, RECORDING, ATTACHMENT, VIDEO])

def text_reply(msg):

print(msg[‘Text’])

@itchat.msg_register([TEXT, PICTURE, MAP, CARD, NOTE, SHARING, RECORDING, ATTACHMENT, VIDEO])

@itchat.msg_register([TEXT, PICTURE, MAP, CARD, NOTE, SHARING, RECORDING, ATTACHMENT, VIDEO])

def text_reply(msg):

if msg[‘Type’] == ‘Text’:

reply_content = msg[‘Text’]

elif msg[‘Type’] == ‘Picture’:

reply_content = r” 图片: ” + msg[‘FileName’]

elif msg[‘Type’] == ‘Card’:

reply_content = r” ” + msg’RecommendInfo’ + r” 的名片 ”

elif msg[‘Type’] == ‘Map’:

x, y, location = re.search(“<location x=\”(.?)\” y=\”(.?)\”.label=\”(.?)\”.*”, msg[‘OriContent’]).group(1,

2,

3)

if location is None:

reply_content = r” 地位: 纬度 ->” + x.__str__() + ” 经度 ->” + y.__str__()

else:

reply_content = r” 地位: ” + location

elif msg[‘Type’] == ‘Note’:

reply_content = r” 告诉 ”

elif msg[‘Type’] == ‘Sharing’:

reply_content = r” 分享 ”

elif msg[‘Type’] == ‘Recording’:

reply_content = r” 语音 ”

elif msg[‘Type’] == ‘Attachment’:

reply_content = r” 文件: ” + msg[‘FileName’]

elif msg[‘Type’] == ‘Video’:

reply_content = r” 视频: ” + msg[‘FileName’]

else:

reply_content = r” 音讯 ”

friend = itchat.search_friends(userName=msg[‘FromUserName’])

itchat.send(r”Friend:%s — %s “

r”Time:%s “

r” Message:%s” % (friend[‘NickName’], friend[‘RemarkName’], time.ctime(), reply_content),

toUserName=’filehelper’)

itchat.send(r” 我曾经收到你在【%s】发送的音讯【%s】稍后回复。– 微信助手 (Python 版)” % (time.ctime(), reply_content),

toUserName=msg[‘FromUserName’])

itchat.auto_login()

itchat.run()`

这篇文章到这里就完结了,不过在此真心倡议,如果是男女朋友,就不要去用 Python 查看了,有些事件不晓得比晓得要好,亲身经历。。。

正文完
 0