a wechat adapter for nonebot2
Project description
Nonebot Adapter Ntchat
简介
nonebot2的ntchat适配器,配合 ntchat-client 可以实现与微信对接。
安装方式
使用包管理安装(推荐)
pip install nonebot-adapter-ntchat
使用源码(不推荐)
git clone https://github.com/JustUndertaker/adapter-ntchat.git
将目录复制到site-packages
下
已实现连接方式
- 反向ws
-
http -
正向ws
其他的感觉用处不大就...
注意事项
由于微信不支持连续不同类型消息发出(比如图文消息,发出来会变成2条),所以nonebot2的Message没有具体实现,所需要注意的点如下:
- matcher的默认发送只支持一段消息,因此mather.send,matcher.finish等函数附带的消息只能是str,或者MessageSegment,不能是Message
- 可以构造MessageSegment来使用matcher.send等其他函数
- 或者使用bot.call_api来发送消息,具体参数都在提示中有写
已实现事件
普通事件
-
TextMessageEvent:文本消息,事件
type
为:"message",可用于触发on_message等 -
FriendRquestEvent:好友请求消息,事件
type
为:"request",可触发on_request -
RevokeMessageEvent:撤回消息通知,事件
type
为:"notice",可触发on_notice -
PictureMessageEvent:图片消息,事件
type
为:"WX_MSG_PICTURE" -
VoiceMessageEvent:语音消息,事件
type
为:"WX_MSG_VOICE" -
CardMessageEvent:名片消息,事件
type
为:"WX_MSG_CARD" -
ViedeoMessageEvent:视频消息,事件
type
为:"WX_MSG_VIDEO" -
EmojiMessageEvent:表情消息,事件
type
为:"WX_MSG_EMOJI" -
LocationMessageEvent:位置消息,事件
type
为:"WX_MSG_LOCATION" -
SystemMessageEvent:系统消息,事件
type
为:"WX_MSG_SYSTEM" -
OtherMessageEvent:其他消息,事件
type
未知
APP事件
事件type为:app
- LinkMessageEvent:链接消息,字段
wx_sub_type
为:"WX_APPMSG_LINK" - FileMessageEvent:文件消息,字段
wx_sub_type
为:"WX_APPMSG_FILE" - MiniAppMessageEvent:小程序消息,字段
wx_sub_type
为:"WX_APPMSG_MINIAPP" - WcpayMessageEvent:转账消息,字段
wx_sub_type
为:"WX_APPMSG_WCPAY" - OtherAppMessageEvent:其他应用消息,字段
wx_sub_type
未知
监听事件
除了通用的on_message,on_notice等一般行为,想要监听单独某个事件时,可以使用on
来注册一个matcher,此函数第一个参数为事件type
,比如:
from nonebot.plugin import on
from nonebot.adapter.ntchat import PictureMessageEvent
matcher = on("WX_MSG_PICTURE") # rule,permission等参数同样可以加入
@matcher.handle()
async def _(event:PictureMessageEvent):
pass
上述例子会监听所有的图片消息事件。
Permission
内置2个Permission,为:
- PRIVATE:匹配任意私聊消息类型事件
- GROUP:匹配任意群聊消息类型事件
已实现api
- get_login_info:获取登录信息
- get_self_info:获取自己个人信息跟登录信息类似
- get_contacts:获取联系人列表
- get_publics:获取关注公众号列表
- get_contact_detail:获取联系人详细信息
- search_contacts:根据wxid、微信号、昵称和备注模糊搜索联系人
- get_rooms:获取群列表
- get_room_detail:获取指定群详细信息
- get_room_members:获取群成员列表
- send_text:发送文本消息
- send_room_at_msg:发送群@消息,需要注意:
- 假如文本为:"test,你好{$@},你好{$@}.早上好"
- 文本消息的content的内容中设置占位字符串 {$@},这些字符的位置就是最终的@符号所在的位置
- 假设这两个被@的微信号的群昵称分别为aa,bb
- 则实际发送的内容为 "test,你好@ aa,你好@ bb.早上好"(占位符被替换了)
- 占位字符串的数量必须和at_list中的微信数量相等.
- send_card:发送名片
- send_link_card:发送链接卡片
- send_image:发送图片接口,对原有接口进行封装,方便发送,注意:
- 由于ntchat接口只支持本地路径发送,所以adapter做了一些封装
- 目前支持str路径,Path路径,url路径,bytes
- 由于是本地路径,所以nb2和ntchat-client必须在同一台机器上
- send_file:发送文件
- send_video:发送视频
- send_gif:发送gif图片
- send_xml:发送xml
- send_pat:发送拍一拍
- accept_friend_request:同意加好友请求
- create_room:创建群
- add_room_member:添加好友入群
- invite_room_member:邀请好友入群
- del_room_member:删除群成员
- modify_room_name:修改群名
- modify_room_notice:修改群公告
- add_room_friend:添加群成员为好友
- quit_room:退出群
- modify_friend_remark:修改好友备注
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file nonebot-adapter-ntchat-0.2.0.tar.gz
.
File metadata
- Download URL: nonebot-adapter-ntchat-0.2.0.tar.gz
- Upload date:
- Size: 15.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0500c322623c4f54e06dfb1e86eaa88191705e4dcf27b7ba557aa7b137c96936 |
|
MD5 | e11f4e1f7be517cbef8bdbc10b97aa56 |
|
BLAKE2b-256 | d8e40c14cce62d9bbd970c0a5803306b72185a7ebb21e782c1dfc6971d94b0f3 |
File details
Details for the file nonebot_adapter_ntchat-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: nonebot_adapter_ntchat-0.2.0-py3-none-any.whl
- Upload date:
- Size: 17.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b0ee3e477bcc74e52326fb736dd6e54ee05c5c7190e41e69ec8fa7bce973bba8 |
|
MD5 | 6fa30a412f398d73deb5f209b54bb861 |
|
BLAKE2b-256 | 83dc1038687536ee69bc149376f9e52f05a61a1d6abaa6cfe5e91adda3937811 |