ErisPulse的OneBotV11协议适配模块,异步的OneBot触发器
Project description
OneBotAdapter 模块文档
简介
OneBotAdapter 是基于 ErisPulse 架构开发的 OneBot V11 协议适配器模块。它提供统一的事件处理机制、连接管理功能,并支持 Server 和 Connect 两种运行模式。
消息发送示例(DSL 链式风格)
文本消息
await onebot.Send.To("group", 123456).Text("Hello World!")
图片消息
await onebot.Send.To("user", 123456).Image("http://example.com/image.jpg")
语音消息
await onebot.Send.To("user", 123456).Voice("http://example.com/audio.mp3")
视频消息
await onebot.Send.To("group", 123456).Video("http://example.com/video.mp4")
表情消息
await onebot.Send.To("user", 123456).Face(1) # 发送ID为1的表情
@消息
await onebot.Send.To("group", 123456).At(789012, "用户名")
猜拳消息
await onebot.Send.To("user", 123456).Rps()
掷骰子消息
await onebot.Send.To("user", 123456).Dice()
位置消息
await onebot.Send.To("group", 123456).Location(39.9042, 116.4074, "北京市", "中华人民共和国首都")
音乐分享
await onebot.Send.To("user", 123456).Music(
type="custom",
url="https://music.163.com/#/song?id=123456",
audio="https://music.163.com/song/media/outer/url?id=123456.mp3",
title="测试音乐",
content="ErisPulse测试",
image="https://http.cat/200"
)
XML消息
xml_data = '''<?xml version='1.0' encoding='UTF-8' standalone='yes' ?>
<msg serviceID="1" templateID="1" action="web" brief="测试XML"
sourceName="ErisPulse" url="https://github.com">
<item layout="2">
<picture cover="https://http.cat/200"/>
<title>XML消息测试</title>
<summary>这是一条XML格式的消息</summary>
</item>
</msg>'''
await onebot.Send.To("user", 123456).Xml(xml_data)
JSON消息
json_data = '{"app":"com.tencent.miniapp","desc":"ErisPulse测试","view":"notification","ver":"0.0.1","prompt":"[ErisPulse JSON消息]","appID":"","sourceName":"ErisPulse","actionData":"{\"type\":\"jump\",\"url\":\"https://github.com\"}","content":"[\\"ErisPulse测试JSON消息\\"]","sourceUrl":"","meta":{"notification":{"appInfo.icon":10001,"appInfo.name":"ErisPulse","data":[{"title":"JSON消息测试","value":"这是一条JSON格式的消息"}],"title":"ErisPulse通知","button":[{"name":"查看详情"}],"emphasis_keyword":""}},"text":"","extra":""}'
await onebot.Send.To("user", 123456).Json(json_data)
戳一戳
await onebot.Send.To("user", 123456).Poke("poke", 789012)
发送原生 CQ 消息
await onebot.Send.To("user", 123456).Raw([
{"type": "text", "data": {"text": "你好"}},
{"type": "image", "data": {"file": "http://example.com/image.png"}}
])
撤回消息
await onebot.Send.To("group", 123456).Recall(123456789)
编辑消息
await onebot.Send.To("user", 123456).Edit(123456789, "修改后的内容")
批量发送
await onebot.Send.To("user", [123456, 789012, 345678]).Batch(["123456", "789012", "345678"], "批量消息")
支持的消息类型及对应方法
| 方法名 | 参数说明 | 用途 |
|---|---|---|
.Text(text: str) |
发送纯文本消息 | 基础消息类型 |
.Image(file: str/bytes) |
发送图片消息(URL 或 Base64 或 bytes) | 支持 CQ 格式 |
.Voice(file: str/bytes) |
发送语音消息 | 支持 CQ 格式 |
.Video(file: str/bytes) |
发送视频消息 | 支持 CQ 格式 |
.Face(id: Union[str, int]) |
发送表情 | CQ码表情 |
.At(user_id: Union[str, int], name: str = None) |
发送@消息 | 群聊@功能 |
.Rps() |
发送猜拳魔法表情 | 互动表情 |
.Dice() |
发送掷骰子魔法表情 | 互动表情 |
.Shake() |
发送窗口抖动(戳一戳) | 互动功能 |
.Location(lat: float, lon: float, title: str = "", content: str = "") |
发送位置 | 位置分享 |
.Music(type: str, ...) |
发送音乐分享 | 音乐分享 |
.Reply(message_id: Union[str, int]) |
发送回复消息 | 消息回复 |
.Xml(data: str) |
发送XML消息 | 富媒体消息 |
.Json(data: str) |
发送JSON消息 | 富媒体消息 |
.Poke(type: str, id: Union[str, int] = None, name: str = None) |
发送戳一戳 | 互动功能 |
.Raw(message_list: List[Dict]) |
发送原始 OneBot 消息结构 | 自定义消息内容 |
.Recall(message_id: Union[str, int]) |
撤回指定消息 | 消息管理 |
.Edit(message_id: Union[str, int], new_text: str) |
编辑消息(撤回+重发) | 消息管理 |
.Batch(target_ids: List[str], text: str) |
批量发送消息 | 群发功能 |
配置说明
[OneBotv11_Adapter]
mode = "server" # 或 "client"
[OneBotv11_Adapter.server]
path = "/"
token = ""
[OneBotv11_Adapter.client]
url = "ws://127.0.0.1:3001"
token = ""
配置项说明
mode: 运行模式,可选 "server"(服务端)或 "client"(客户端)server.path: Server模式下的WebSocket路径server.token: Server模式下的认证Token(可选)client.url: Client模式下要连接的WebSocket地址client.token: Client模式下的认证Token(可选)
API 调用方式
通过 call_api 方法调用 OneBot 提供的任意 API 接口:
response = await onebot.call_api(
endpoint="send_msg",
message_type="group",
group_id=123456,
message="Hello!"
)
该方法会自动处理响应结果并返回,若超时将抛出异常。
事件处理
OneBot适配器支持两种方式监听事件:
# 使用原始事件名
@sdk.adapter.OneBot.on("message")
async def handle_message(event):
pass
# 使用映射后的事件名
@sdk.adapter.OneBot.on("message")
async def handle_message(event):
pass
支持的事件类型包括:
message: 消息事件notice: 通知事件request: 请求事件meta_event: 元事件
运行模式说明
Server 模式(作为服务端监听连接)
- 启动一个 WebSocket 服务器等待 OneBot 客户端连接。
- 适用于部署多个 bot 客户端连接至同一服务端的场景。
Client 模式(主动连接 OneBot)
- 主动连接到 OneBot 服务(如 go-cqhttp)。
- 更适合单个 bot 实例直接连接的情况。
注意事项
- 生产环境建议启用 Token 认证以保证安全性。
- 对于二进制内容(如图片、语音等),支持直接传入 bytes 数据。
参考链接
Project details
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file erispulse_onebot11adapter-3.4.0.tar.gz.
File metadata
- Download URL: erispulse_onebot11adapter-3.4.0.tar.gz
- Upload date:
- Size: 17.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c510fdb21a6ff65b07e9e5c0b10ebff0bc2c18bd8e55587226084e2910a877c
|
|
| MD5 |
a3672035ed30c980f589b7911c39b5b9
|
|
| BLAKE2b-256 |
95b82913046eb947c771b5af9a98b8232d68011fa6ec74803cd377830f1c106e
|
Provenance
The following attestation bundles were made for erispulse_onebot11adapter-3.4.0.tar.gz:
Publisher:
python-publish.yml on ErisPulse/ErisPulse-OneBot11Adapter
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
erispulse_onebot11adapter-3.4.0.tar.gz -
Subject digest:
2c510fdb21a6ff65b07e9e5c0b10ebff0bc2c18bd8e55587226084e2910a877c - Sigstore transparency entry: 417262396
- Sigstore integration time:
-
Permalink:
ErisPulse/ErisPulse-OneBot11Adapter@f66d8988fb1716f005838e705f77fa9d14e0961b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/ErisPulse
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@f66d8988fb1716f005838e705f77fa9d14e0961b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file erispulse_onebot11adapter-3.4.0-py3-none-any.whl.
File metadata
- Download URL: erispulse_onebot11adapter-3.4.0-py3-none-any.whl
- Upload date:
- Size: 14.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
867eec59505f20d8213af893ddd03e6efc82aad1a6423a4f2a25990da5f06094
|
|
| MD5 |
04bb573e5f2a4f6b7df760522821a190
|
|
| BLAKE2b-256 |
ba53550eb4014c88d0a9682609cba5fbe00167bfaeac04f31f6f6e8da99ec68f
|
Provenance
The following attestation bundles were made for erispulse_onebot11adapter-3.4.0-py3-none-any.whl:
Publisher:
python-publish.yml on ErisPulse/ErisPulse-OneBot11Adapter
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
erispulse_onebot11adapter-3.4.0-py3-none-any.whl -
Subject digest:
867eec59505f20d8213af893ddd03e6efc82aad1a6423a4f2a25990da5f06094 - Sigstore transparency entry: 417262414
- Sigstore integration time:
-
Permalink:
ErisPulse/ErisPulse-OneBot11Adapter@f66d8988fb1716f005838e705f77fa9d14e0961b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/ErisPulse
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@f66d8988fb1716f005838e705f77fa9d14e0961b -
Trigger Event:
workflow_dispatch
-
Statement type: