效果如下:
测试 | 结果 |
Github
准备工作
1、能登录网页版微信的账号
2、相关环境
1、安装相关模块
pip install 模块名
#coding=utf8 from wxpy import * import schedule import time import http import json import datetime import random import os import ctypes
2、定义相关方法
bot = Bot(cache_path=True,console_qr = 2) myself = bot.self bot.enable_puid('wxpy_puid.pkl')
3、获取需要同步的群及人
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、运行程序
while True: schedule.run_pending() time.sleep(1)