python电脑端微信自动化(python使用wxpy实现微信消息防撤回脚本)
类别:脚本大全 浏览量:1353
时间:2021-10-10 00:14:33 python电脑端微信自动化
python使用wxpy实现微信消息防撤回脚本本文实例为大家分享了python实现微信消息防撤回的具体代码,供大家参考,具体内容如下
使用了sqlite3保存数据,当有人撤回消息时取出数据发送到文件传输助手。
文件的话会先保存到本地,语音会以文件的方式发送。
wxpy 和 itchat很久没更新了,有些功能没法用了,web微信也不知道什么时候会凉。
帮助信息在注释里。
|
# -*- coding: utf-8 -*- # 使用sqlite3保存message,当有人撤回消息时在数据库中通过id检索该消息是否存在,如果存在则将撤回的消息发送到文件助手里。 # 目前只支持 text picture map sharing recording video attachment 类型的消息。 import wxpy import sqlite3 import os import re # 准备工作 # 创建attachment目录用于存储 图像、地图/位置、分享、语音、视频、文件 if not os.path.isdir( 'attachment' ): os.mkdir( 'attachment' ) attachment_path = os.path.join(os.getcwd(), 'attachment' ) bot = wxpy.bot() # 用于获取msg id pattern = re. compile (r '\d{19}' ) # 测试wxpy能否正常工作 myself = bot.friends()[ 0 ] myself.send( 'hello?' ) # 创建数据库和message表 try : conn = sqlite3.connect( 'wxpy.db' ) cursor = conn.cursor() # cursor.execute('drop table messages') cursor.execute( """create table if not exists messages (id integer primary key autoincrement, msg_id integer not null, msg_text text, create_time date not null, revoke_time date, attachment_path text, msg_sender text not null, msg_type text not null, msg_url text, msg_raw_data text not null)""" ) # print('establish successfully') finally : conn.commit() cursor.close() conn.close() # 注册所有消息,在程序运行期间将插入所有支持的信息 @bot .register() def store_data(msg): # print(msg.raw) # 如果消息是支持的类型就将数据插入数据库 if msg. type in [wxpy.text, wxpy.recording, wxpy.picture, wxpy.attachment, wxpy.video, wxpy.sharing, wxpy. map ]: insert_data(msg) # 撤回的消息类型是note elif msg. type = = wxpy.note: send_revoke(msg) # 插入数据 def insert_data(msg): try : conn = sqlite3.connect( 'wxpy.db' ) cursor = conn.cursor() if msg. type = = wxpy.text: cursor.execute("insert into messages (msg_id, msg_text, create_time, msg_sender, msg_type, msg_raw_data)\ values (?, ?, ?, ?, ?, ?)", (msg. id , msg.text, msg.create_time, str (msg.sender)[ 9 : - 1 ], msg. type , str (msg.raw))) # 将录音/图像/文件/视频下载到本地,插入保存路径。 elif msg. type in [wxpy.recording, wxpy.picture, wxpy.attachment, wxpy.video]: save_path = os.path.join(attachment_path, msg.file_name) msg.get_file(save_path) cursor.execute('insert into messages (msg_id, create_time, attachment_path, msg_sender, msg_type,\ msg_raw_data) values (?, ?, ?, ?, ?, ?)', (msg. id , msg.create_time, save_path, str (msg.sender)[ 9 : - 1 ], msg. type , str (msg.raw))) # 插入分享/位置链接 elif msg. type in [wxpy.sharing, wxpy. map ]: cursor.execute('insert into messages (msg_id, msg_text, create_time, msg_sender, msg_type, msg_url,\ msg_raw_data) values (?, ?, ?, ?, ?, ?, ?)', (msg. id , msg.text, msg.create_time, str (msg.sender)[ 9 : - 1 ], msg. type , str (msg.url), str (msg.raw))) # print('insert data successfully') finally : conn.commit() cursor.close() conn.close() # 在数据库中检索消息是否存在,如果存在则将被撤回的消息发送到文件传输助手。 def send_revoke(message): msg_id = pattern.search(message.raw[ 'content' ]).group() try : conn = sqlite3.connect( 'wxpy.db' ) cursor = conn.cursor() cursor.execute('insert into messages (msg_id, create_time, msg_sender, msg_type, msg_raw_data)\ values (?, ?, ?, ?, ?)', (message. id , message.create_time, str (message.sender)[ 9 : - 1 ], message. type , str (message.raw))) msg_data = cursor.execute( 'select * from messages where msg_id=?' , (msg_id, )).fetchall() # print('take out data successfully') finally : conn.commit() cursor.close() conn.close() if msg_data[ 0 ][ 7 ] = = 'text' : msg_info = '告诉你一个秘密 {} 在 {} 撤回了文本\n{}' . format (msg_data[ 0 ][ 6 ], msg_data[ 0 ][ 3 ], msg_data[ 0 ][ 2 ]) bot.file_helper.send(msg_info) else : send_revoke_nontext(msg_data) # 非文本信息发送 def send_revoke_nontext(msg_data): if msg_data[ 0 ][ 7 ] = = 'picture' : if msg_data[ 0 ][ 5 ][ - 4 :] = = '.gif' : # 现在wxpy & itchat发不了gif了 bot.file_helper( '很抱歉,暂时不支持表情(gif)的撤回重发。' ) else : msg_info = '告诉你一个秘密 {} 在 {} 撤回了图像' . format (msg_data[ 0 ][ 6 ], msg_data[ 0 ][ 3 ]) bot.file_helper.send(msg_info) bot.file_helper.send_image(msg_data[ 0 ][ 5 ]) elif msg_data[ 0 ][ 7 ] = = 'recording' : msg_info = '告诉你一个秘密 {} 在 {} 撤回了语音' . format (msg_data[ 0 ][ 6 ], msg_data[ 0 ][ 3 ]) bot.file_helper.send(msg_info) bot.file_helper.send_file(msg_data[ 0 ][ 5 ]) elif msg_data[ 0 ][ 7 ] = = 'attachment' : msg_info = '告诉你一个秘密 {} 在 {} 撤回了文件' . format (msg_data[ 0 ][ 6 ], msg_data[ 0 ][ 3 ]) bot.file_helper.send(msg_info) bot.file_helper.send_file(msg_data[ 0 ][ 5 ]) elif msg_data[ 0 ][ 7 ] = = 'video' : msg_info = '告诉你一个秘密 {} 在 {} 撤回了视频' . format (msg_data[ 0 ][ 6 ], msg_data[ 0 ][ 3 ]) bot.file_helper.send(msg_info) bot.file_helper.send_video(msg_data[ 0 ][ 5 ]) elif msg_data[ 0 ][ 7 ] = = 'sharing' : msg_info = '告诉你一个秘密 {} 在 {} 撤回了分享\n{}\n{}' . format (msg_data[ 0 ][ 6 ], msg_data[ 0 ][ 3 ], msg_data[ 0 ][ 2 ],\ msg_data[ 0 ][ 8 ]) bot.file_helper.send(msg_info) elif msg_data[ 0 ][ 7 ] = = 'map' : msg_info = '告诉你一个秘密 {} 在 {} 撤回了位置\n{}\n{}' . format (msg_data[ 0 ][ 6 ], msg_data[ 0 ][ 3 ], msg_data[ 0 ][ 2 ],\ msg_data[ 0 ][ 8 ]) bot.file_helper.send(msg_info) wxpy.embed() |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持开心学习网。
原文链接:https://blog.csdn.net/babaili_/article/details/85947411
您可能感兴趣
- 利用python合并pdf(Python合并同一个文件夹下所有PDF文件的方法)
- python中的迭代器详解(Python通过for循环理解迭代器和生成器实例详解)
- python简易版学生管理系统(python3.6实现学生信息管理系统)
- python编程将一个三位数反序输出(python实现整数的二进制循环移位)
- pythonredis使用场景(python 通过SSHTunnelForwarder隧道连接redis的方法)
- python编写一个名片(详解Python做一个名片管理系统)
- python实现购物网站(Python实战购物车项目的实现参考)
- pythonrequest包设置编码(解决python3中的requests解析中文页面出现乱码问题)
- pythonsocket建立多用户通讯(Python socket实现多对多全双工通信的方法)
- python 多进程读取文件(Python实现的多进程拷贝文件并显示百分比功能示例)
- python编写的小程序(几个适合python初学者的简单小程序,看完受益匪浅!推荐)
- python循环创建字典(Python字典的基本用法实例分析创建、增加、获取、修改、删除)
- python sql注入怎么避免(Python实现SQL注入检测插件实例代码)
- python虚拟环境和包使用教程(在win10和linux上分别安装Python虚拟环境的方法步骤)
- python ssh 连接(python pexpect ssh 远程登录服务器的方法)
- python操作json库(Python将json文件写入ES数据库的方法)
- 周杰伦演唱会门票(周杰伦演唱会门票多少钱一张2023)
- 焕然一新 成都轨道集团官方网站改版上线(成都轨道集团官方网站改版上线)
- 成都轨道交通19号线二期全线电通(成都轨道交通19号线二期全线电通)
- 19号线二期全线电通 轨道交通项目最新进展来了(19号线二期全线电通)
- 涉及3条地铁线路 成都这4座轨道交通站点有新名字了(涉及3条地铁线路)
- 来了 成都轨道交通5条线路刷新 进度条(成都轨道交通5条线路刷新)
热门推荐
- yield函数详解(Yii框架的redis命令使用方法简单示例)
- dedecms怎样找回登录密码(织梦dedecms 去掉后台登陆验证码的方法)
- select 1 from 的作用
- 生成随机数javascript(JavaScript实现随机生成验证码及校验)
- python的pickle用法(Python multiprocess pool模块报错pickling error问题解决方法分析)
- 腾讯云可以在阿里云服务吗(卸载阿里云、腾讯云服务器监控系统图文教程)
- dedecms模板未生成(dedecms前台会员无法上传图片类型的解决方法)
- python3语法规则(Python3解释器知识点总结)
- css图片水平旋转动画(css实现图片横向排列滚动效果)
- css3语法结构(CSS3中的注音对齐属性ruby-align用法指南)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9