chore(python): bump to v39.4.4.0
This commit is contained in:
parent
3d6af178f4
commit
59bccbb931
8
clients/python/README.MD
vendored
8
clients/python/README.MD
vendored
@ -44,8 +44,8 @@ python -m grpc_tools.protoc --python_out=. --proto_path=../../../WeChatFerry/rpc
|
||||
|
||||
## 版本更新
|
||||
|
||||
### v39.4.3.0
|
||||
* 实现通过好友申请功能
|
||||
### v39.4.4.0
|
||||
* 实现发送 XML 功能
|
||||
|
||||
<details><summary>点击查看更多</summary>
|
||||
|
||||
@ -59,6 +59,7 @@ python -m grpc_tools.protoc --python_out=. --proto_path=../../../WeChatFerry/rpc
|
||||
|
||||
功能:
|
||||
|
||||
* 获取登录二维码
|
||||
* 查询登录状态
|
||||
* 获取登录账号信息
|
||||
* 获取消息类型
|
||||
@ -70,6 +71,7 @@ python -m grpc_tools.protoc --python_out=. --proto_path=../../../WeChatFerry/rpc
|
||||
* 发送图片消息
|
||||
* 发送文件消息
|
||||
* 发送卡片消息
|
||||
* 发送 XML
|
||||
* 发送 GIF 消息
|
||||
* 拍一拍群友
|
||||
* 转发消息
|
||||
@ -77,7 +79,7 @@ python -m grpc_tools.protoc --python_out=. --proto_path=../../../WeChatFerry/rpc
|
||||
* 关闭接收消息
|
||||
* 查询数据库
|
||||
* 获取朋友圈消息
|
||||
* 下载图片
|
||||
* 下载图片、视频、文件
|
||||
* 解密图片
|
||||
* 通过好友申请
|
||||
* 添加群成员
|
||||
|
3
clients/python/wcferry/client.py
vendored
3
clients/python/wcferry/client.py
vendored
@ -1,7 +1,7 @@
|
||||
#! /usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
__version__ = "39.4.3.0"
|
||||
__version__ = "39.4.4.0"
|
||||
|
||||
import atexit
|
||||
import base64
|
||||
@ -409,7 +409,6 @@ class Wcf():
|
||||
Returns:
|
||||
int: 0 为成功,其他失败
|
||||
"""
|
||||
raise Exception("Not implemented, yet")
|
||||
req = wcf_pb2.Request()
|
||||
req.func = wcf_pb2.FUNC_SEND_XML # FUNC_SEND_XML
|
||||
req.xml.receiver = receiver
|
||||
|
Loading…
Reference in New Issue
Block a user