简单!三步实现微信消息同步!!

场景:公司群,朋友群,消息太多,但是只想知道领导发的消息,就可以利用wxpy和微信实现消息群同步。让重要消息不在错漏。

效果如下:

测试 结果
IMB_zUHSMR.GIF tongbu.gif

Github

Github

准备工作

1、能登录网页版微信的账号

2、相关环境

1、安装相关模块

pip install 模块名

1
2
3
4
5
6
7
8
9
10
11
#coding=utf8
from wxpy import *
import schedule
import time
import http
import json
import datetime
import random
import os
import ctypes

2、定义相关方法

1
2
3
bot = Bot(cache_path=True,console_qr = 2)
myself = bot.self
bot.enable_puid('wxpy_puid.pkl')

3、获取需要同步的群及人

1
2
3
4
5
6
7
8
9
sync = ensure_one(bot.groups().search('同步'))
lie = ensure_one(sync.search('Lie'))
Goodog = ensure_one(sync.search('Goodog'))

# 群消息同步
@bot.register(sync)
def sync(msg):
if msg.member == Goodog:
msg.forward(lie, prefix='群消息同步:'+'\n')

4、运行程序

1
2
3
while True:
schedule.run_pending()
time.sleep(1)