Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cluic/wxauto
Windows版本微信客户端(非网页版)自动化,可实现简单的发送、接收微信消息,简单微信机器人
https://github.com/cluic/wxauto
automatic python rpa wechat weixin
Last synced: 5 days ago
JSON representation
Windows版本微信客户端(非网页版)自动化,可实现简单的发送、接收微信消息,简单微信机器人
- Host: GitHub
- URL: https://github.com/cluic/wxauto
- Owner: cluic
- License: mit
- Created: 2021-08-15T16:24:05.000Z (over 3 years ago)
- Default Branch: WeChat3.9.11
- Last Pushed: 2024-08-12T03:24:41.000Z (6 months ago)
- Last Synced: 2024-10-29T15:07:52.796Z (3 months ago)
- Topics: automatic, python, rpa, wechat, weixin
- Language: Python
- Homepage:
- Size: 1.4 MB
- Stars: 2,962
- Watchers: 76
- Forks: 476
- Open Issues: 197
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- StarryDivineSky - cluic/wxauto
README
[![wxauto](https://github.com/cluic/wxauto/blob/WeChat3.9.11/utils/wxauto.png)](https://wxauto.loux.cc)
# wxauto (适用PC微信3.9.11.17版本)### 欢迎指出bug,欢迎pull requests
Windows版本微信客户端自动化,可实现简单的发送、接收微信消息、保存聊天图片
**3.9.11.17版本微信安装包下载**:
[点击下载](https://github.com/tom-snow/wechat-windows-versions/releases/download/v3.9.11.17/WeChatSetup-3.9.11.17.exe)**文档**:
[使用文档](https://wxauto.loux.cc/docs/intro) |
[云服务器wxauto部署指南](https://wxauto.loux.cc/docs/advanced/deploy)| 环境 | 版本 |
| :----: | :--: |
| OS | [![Windows](https://img.shields.io/badge/Windows-10\|11\|Server2016+-white?logo=windows&logoColor=white)](https://www.microsoft.com/) |
| 微信 | [![Wechat](https://img.shields.io/badge/%E5%BE%AE%E4%BF%A1-3.9.11.X-07c160?logo=wechat&logoColor=white)](https://pan.baidu.com/s/1FvSw0Fk54GGvmQq8xSrNjA?pwd=vsmj) |
| Python | [![Python](https://img.shields.io/badge/Python-3.X-blue?logo=python&logoColor=white)](https://www.python.org/) **(不支持3.7.6和3.8.1)**|[![Star History Chart](https://api.star-history.com/svg?repos=cluic/wxauto&type=Date)](https://star-history.com/#cluic/wxauto)
## 获取wxauto
cmd窗口:
```shell
pip install wxauto
```
python窗口:
```python
>>> import wxauto
>>> wxauto.VERSION
'3.9.11.17'
>>> wx = wxauto.WeChat()
初始化成功,获取到已登录窗口:xxx
```## 示例
> [!NOTE]
> 如有问题请先查看[使用文档](https://wxauto.loux.cc/docs/intro)**请先登录PC微信客户端**
```python
from wxauto import *# 获取当前微信客户端
wx = WeChat()# 获取会话列表
wx.GetSessionList()# 向某人发送消息(以`文件传输助手`为例)
msg = '你好~'
who = '文件传输助手'
wx.SendMsg(msg, who) # 向`文件传输助手`发送消息:你好~# 向某人发送文件(以`文件传输助手`为例,发送三个不同类型文件)
files = [
'D:/test/wxauto.py',
'D:/test/pic.png',
'D:/test/files.rar'
]
who = '文件传输助手'
wx.SendFiles(filepath=files, who=who) # 向`文件传输助手`发送上述三个文件# 下载当前聊天窗口的聊天记录及图片
msgs = wx.GetAllMessage(savepic=True) # 获取聊天记录,及自动下载图片
```
## 注意事项
目前还在开发中,测试案例较少,使用过程中可能遇到各种Bug## 交流
[微信交流群](https://wxauto.loux.cc/docs/intro#-%E4%BA%A4%E6%B5%81)
## 最后
如果对您有帮助,希望可以帮忙点个Star,如果您正在使用这个项目,可以将右上角的 Unwatch 点为 Watching,以便在我更新或修复某些 Bug 后即使收到反馈,感谢您的支持,非常感谢!## 免责声明
代码仅用于对UIAutomation技术的交流学习使用,禁止用于实际生产项目,请勿用于非法用途和商业用途!如因此产生任何法律纠纷,均与作者无关!