赞
踩
推荐大家在github下载:
- git clone https://github.com/cluic/wxauto.git
- cd wxauto
- pip install -r requirements.txt
测试代码:新建test.py
- 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) # 获取聊天记录,及自动下载图片
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。