This repository has been archived by the owner on Aug 5, 2020. It is now read-only.
Releases: youfou/wxpy
Releases · youfou/wxpy
wxpy 0.3.1 (2017-3-23)
wxpy 0.3.0 (2017-3-19)
-
[重要调整]
Bot.start()
改为在登陆后自动调用。注册函数会立即生效,无需手动 start,只需在代码底部使用
embed()
堵塞线程。from wxpy import * bot = Bot() @bot.register() def print_messages(msg): print(msg) # 无需 start,用 embed() 代替即可 embed()
-
[参数调整] Bot.register(
senders
) 改为chats
原先的
senders
表示消息的发送者,而chats
表示消息所在的聊天会话。调整为通过
chats
注册后,可以更方便的注册自己在手机中向特定会话发出的消息。例如,注册自己在文件传输助手上发出的消息:
@bot.register(bot.file_helper, except_self=False) def print_messages(msg): print(msg)
-
[新增] 获取头像
Chat.get_avatar()
(文档) -
[新增] 移除群成员
Member.remove()
(文档) -
[文档] 新增 常见问题解答 (FAQ)
wxpy 0.2.6 (2017-3-16)
wxpy 0.2.5 (2017-3-14)
- [新增] 为
Bot
对象的cache_path
参数增加为 True 的选项,表示开启缓存并使用默认缓存路径 - [新增] 为
WeChatLoggingHandler
,get_wechat_logger()
的receiver
参数增加字符串类型支持,可指定机器人的缓存路径 - [改进]
MessageConfigs
部分代码优化 - [文档] 文档更新