v39.2.2.0

This commit is contained in:
Changhua 2024-07-03 18:51:52 +08:00
parent c922842b22
commit bde0fe206e
2 changed files with 21 additions and 28 deletions

View File

@ -1,7 +1,7 @@
# WeChatFerry Python 客户端 # WeChatFerry Python 客户端
[![PyPi](https://img.shields.io/pypi/v/wcferry.svg)](https://pypi.python.org/pypi/wcferry) [![Downloads](https://static.pepy.tech/badge/wcferry)](https://pypi.python.org/pypi/wcferry) [![Documentation Status](https://readthedocs.org/projects/wechatferry/badge/?version=latest)](https://wechatferry.readthedocs.io/zh/latest/?badge=latest) [![PyPi](https://img.shields.io/pypi/v/wcferry.svg)](https://pypi.python.org/pypi/wcferry) [![Downloads](https://static.pepy.tech/badge/wcferry)](https://pypi.python.org/pypi/wcferry) [![Documentation Status](https://readthedocs.org/projects/wechatferry/badge/?version=latest)](https://wechatferry.readthedocs.io/zh/latest/?badge=latest)
|[📖 文档](https://wechatferry.readthedocs.io/)|[📺 视频教程](https://mp.weixin.qq.com/s/APdjGyZ2hllXxyG_sNCfXQ)|[🙋 FAQ](https://mp.weixin.qq.com/s/vAGpn1C9stI8Xzt1hUJhLA)| |[📖 Python 文档](https://wechatferry.readthedocs.io/)|[📺 Python 视频教程](https://mp.weixin.qq.com/s/APdjGyZ2hllXxyG_sNCfXQ)|[🙋 FAQ](https://mp.weixin.qq.com/s/I6n_6fuQa60CrROWSgq0TA)|
|:-:|:-:|:-:| |:-:|:-:|:-:|
🤖示例机器人框架:[WeChatRobot](https://github.com/lich0821/WeChatRobot)。 🤖示例机器人框架:[WeChatRobot](https://github.com/lich0821/WeChatRobot)。
@ -44,9 +44,8 @@ python -m grpc_tools.protoc --python_out=. --proto_path=../../../WeChatFerry/rpc
## 版本更新 ## 版本更新
### v39.0.14.0 (2024.02.18) ### v39.2.2.0 (2024.07.03)
* 若干优化 * 修复一个问题
* 若干功能
<details><summary>点击查看更多</summary> <details><summary>点击查看更多</summary>
@ -60,33 +59,27 @@ python -m grpc_tools.protoc --python_out=. --proto_path=../../../WeChatFerry/rpc
功能: 功能:
* 查登录状态 * 查登录状态
* 获取登录账号的 wxid * 获取登录账号信息
* 获取消息类型 * 获取消息类型
* 获取所有联系人 * 获取联系人
* 获取所有好友 * 获取可查询数据库
* 获取数据库 * 获取数据库所有表
* 获取某数据库下的表 * 获取语音消息
* 获取用户信息
* 发送文本消息(可 @ * 发送文本消息(可 @
* 发送图片(支持网络路径) * 发送图片消息
* 发送文件(支持网络路径) * 发送文件消息
* 允许接收消息
* 停止接收消息
* 执行 SQL 查询
* 接受好友申请
* 添加群成员
* 删除群成员
* 解密图片
* 获取朋友圈消息
* 保存图片
* 保存语音
* 发送卡片消息 * 发送卡片消息
* 拍一拍群友 * 拍一拍群友
* 邀请群成员
* 图片 OCR
* 转发消息 * 转发消息
* 撤回消息 * 开启接收消息
* 获取登录二维码 * 关闭接收消息
* 查询数据库
* 获取朋友圈消息
* 下载图片、视频、文件
* 解密图片
* 添加群成员
* 删除群成员
* 邀请群成员
</details> </details>

View File

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
__version__ = "39.2.1.0" __version__ = "39.2.2.0"
import atexit import atexit
import base64 import base64