WeChat mass messaging tool: A completely free and open source WeChat mass messaging tool. The current functions include: exporting friend tag list, exporting running results, importing friend tag list and sending. Because it calls Windows API, the sending speed is super fast!
It is only supported for Windows system users. You can go to Release to download the compiled exe program. No installation is required and it can be used out of the box.
The most important thing is: the account will not be banned! The account will not be banned! ! The account will not be banned! ! ! Safety. Unlike using WeChat Hook
, there is a risk of account suspension.
WeChat Mass Sending Assistant is a desktop application developed based on PySide6
and Python
, designed to help users efficiently perform mass messaging tasks on WeChat. It provides a friendly user interface and supports importing group mailing lists and exporting running results.
Use video tutorial: https://www.bilibili.com/video/BV1rz421B7Uw/ |
---|
This project uses
Python
andPySide6
, make sure you have installedPython 3.12+
andPySide6
git clone https://github.com/Frica01/WeChatMassTool.git
pip install -r requirements.txt
python main.py
Recommended screen configuration
To ensure optimal performance on your device when exporting a tagged friend list, please use the following screen configuration:
1920x1080
100%
If you find that when exporting tagged friends, the number of exported friends is inconsistent with the actual number of tagged friends, the reasons are as follows:
If you find this project useful, you may wish to give it a ( Star
). Star
is an encouragement to me and can also help more developers discover this tool.
If you wish to keep track of the latest updates and improvements, please Fork
this project. Fork
allow you to stay in sync with project updates and give you the opportunity to contribute your own improvements and new features.
Brief description:
PySide6
, it has a modern interface and smooth user experience. WeChatMassTool/
├── assets/ # 展示图片
├── config/ # 应用配置相关文件
│ ├── __ init __ .py
│ └── config.py # 应用的全局配置设置
├── controllers/ # MVC 中的控制器组件
│ ├── __ init __ .py
│ └── controller_main.py
├── make/ # pyinstaller打包文件
├── models/ # MVC 中的模型组件,处理数据逻辑
│ ├── __ init __ .py
│ ├── model_generator_csv.py
│ └── model_main.py
├── tests/ # 单元测试和功能测试文件
│ ├── __ init __ .py
│ └── test.py
├── utils/
│ ├── __ init __ .py
│ ├── utils.py
│ └── wx_operation.py
├── views/ # MVC 中的视图组件,用户界面文件
│ ├── resources/ # UI 资源,如图标、图片等
│ │ ├── icons/
│ │ ├── images/
│ │ ├── svgs/
│ │ ├── themes/ # UI 主题文件
│ │ ├── ui_files/ # Qt Designer UI 文件
│ │ └── resources.qrc
│ ├── ui_components/ # 重用的UI组件和逻辑
│ │ ├── __ init __ .py
│ │ ├── animations.py # 动画效果实现
│ │ └── ui_setup.py # UI设置和初始化
│ ├── ui_designs/ # UI 设计文件,基于PySide6自动生成的Python文件
│ │ ├── __ init __ .py
│ │ ├── resources_rc.py
│ │ ├── ui_login.py # 登录界面UI设计
│ │ └── ui_main.py # 主界面UI设计
│ ├── widgets/ # 自定义的Qt Widgets
│ │ ├── __ init __ .py
│ │ ├── custom_grips.py # 自定义窗口调整大小控件
│ │ ├── login_window.py # 登录窗口实现
│ │ └── main_window.py # 主窗口实现
│ ├── __ init __ .py
│ └── view_main.py # 主视图管理器,负责整合和管理应用的所有视图
├── LICENSE
├── README.md
├── main.py # 应用程序的入口文件
└── requirements.txt
This project currently supports basic group sending functions, and future version plans include:
If you have any questions or want to know more about the project, please contact me via:
This project was inspired by Frica01 's creativity and contributions, and I would like to express my sincere gratitude for his work in the open source community. This project is based on the reconstruction of the following two projects.
Developers interested in the project are welcome to submit your contributions or feedback through Pull Requests or Issues.
The project is open source under the MIT license. For more details, please check the LICENSE file in the GitHub repository.