From c907f5268f39e255648eeef3a42e425c479b366c Mon Sep 17 00:00:00 2001 From: Changhua Date: Mon, 25 Sep 2023 22:49:18 +0800 Subject: [PATCH] v39.0.2.2 --- clients/python/README.MD | 16 ++++++++++++++-- clients/python/wcferry/client.py | 2 +- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/clients/python/README.MD b/clients/python/README.MD index 9f1126c..5001691 100644 --- a/clients/python/README.MD +++ b/clients/python/README.MD @@ -87,6 +87,14 @@ def main(): # ret = wcf.del_chatroom_members("chatroom id", "wxid1,wxid2,wxid3,...") # LOG.info(f"add_chatroom_members: {ret}") + # 获取群成员 + # members = wcf.get_chatroom_members('xxxxxxxx@chatroom') + # LOG.info(f"get_chatroom_members: {members}") + + # 获取群成员名片 + # alias = wcf.get_alias_in_chatroom("wxid_xxxxxxxx", "xxxxxxxx@chatroom") + # LOG.info(f"get_alias_in_chatroom: {alias}") + sleep(5) wcf.refresh_pyq(0) # 刷新朋友圈第一页 # wcf.refresh_pyq(id) # 从 id 开始刷新朋友圈 @@ -129,11 +137,15 @@ python -m grpc_tools.protoc --python_out=. --proto_path=../../../WeChatFerry/rpc ``` ## 版本更新 -### 39.0.2.1 (2023.08.01) -* 发送文件支持网络路径 +### 39.0.2.2 (2023.09.25) +* 获取群成员 +* 获取群成员名片
点击查看更多 +### 39.0.2.1 (2023.08.01) +* 发送文件支持网络路径 + ### 39.0.2.0 (2023.07.16) * 获取朋友圈消息 diff --git a/clients/python/wcferry/client.py b/clients/python/wcferry/client.py index a77d92d..2a90dc0 100644 --- a/clients/python/wcferry/client.py +++ b/clients/python/wcferry/client.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 # -*- coding: utf-8 -*- -__version__ = "39.0.2.1" +__version__ = "39.0.2.2" import atexit import base64