Skip to content

Commit 59bccbb

Browse files
committed
chore(python): bump to v39.4.4.0
1 parent 3d6af17 commit 59bccbb

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

clients/python/README.MD

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ python -m grpc_tools.protoc --python_out=. --proto_path=../../../WeChatFerry/rpc
4444

4545
## 版本更新
4646

47-
### v39.4.3.0
48-
* 实现通过好友申请功能
47+
### v39.4.4.0
48+
* 实现发送 XML 功能
4949

5050
<details><summary>点击查看更多</summary>
5151

@@ -59,6 +59,7 @@ python -m grpc_tools.protoc --python_out=. --proto_path=../../../WeChatFerry/rpc
5959

6060
功能:
6161

62+
* 获取登录二维码
6263
* 查询登录状态
6364
* 获取登录账号信息
6465
* 获取消息类型
@@ -70,14 +71,15 @@ python -m grpc_tools.protoc --python_out=. --proto_path=../../../WeChatFerry/rpc
7071
* 发送图片消息
7172
* 发送文件消息
7273
* 发送卡片消息
74+
* 发送 XML
7375
* 发送 GIF 消息
7476
* 拍一拍群友
7577
* 转发消息
7678
* 开启接收消息
7779
* 关闭接收消息
7880
* 查询数据库
7981
* 获取朋友圈消息
80-
* 下载图片
82+
* 下载图片、视频、文件
8183
* 解密图片
8284
* 通过好友申请
8385
* 添加群成员

clients/python/wcferry/client.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/env python3
22
# -*- coding: utf-8 -*-
33

4-
__version__ = "39.4.3.0"
4+
__version__ = "39.4.4.0"
55

66
import atexit
77
import base64
@@ -409,7 +409,6 @@ def send_xml(self, receiver: str, xml: str, type: int, path: str = None) -> int:
409409
Returns:
410410
int: 0 为成功,其他失败
411411
"""
412-
raise Exception("Not implemented, yet")
413412
req = wcf_pb2.Request()
414413
req.func = wcf_pb2.FUNC_SEND_XML # FUNC_SEND_XML
415414
req.xml.receiver = receiver

0 commit comments

Comments
 (0)