Nonebot Adapter of Milky Protocol
Project description
NoneBot-Adapter-Milky
✨ NoneBot2 Milky 协议适配 / Milky Protocol Adapter for NoneBot2 ✨
协议介绍
协议端
配置
修改 NoneBot 配置文件 .env 或者 .env.*。
Driver
参考 driver 配置项,添加 HTTPClient 和 WebSocketClient 支持。
如:
DRIVER=~httpx+~websockets
或
DRIVER=~aiohttp
如果你使用的是 Webhook 模式,则可以移除 WebSocketClient 支持,并添加 ASGI 支持。
如:
DRIVER=~httpx+~fastapi
或
DRIVER=~aiohttp+~fastapi
MILKY_CLIENTS
配置连接配置,如:
MILKY_CLIENTS='
[
{
"host": "localhost",
"port": "8080",
"access_token": "xxx",
"secure": false
}
]
'
host 与 port 为 Milky 协议端设置的监听地址与端口,
access_token 为可选项,具体情况以 Milky 协议端为准。
secure 为可选项,表示是否使用安全连接(即 wss:// 或 https://),默认为 false。
MILKY_WEBHOOK
如果你使用的是 Webhook 模式,则需要配置 MILKY_WEBHOOK。
MILKY_WEBHOOK='
{
"host": "localhost",
"port": "8081",
"access_token": "xxx",
"secure": false
}
'
host 与 port 为 Milky 协议端设置的监听地址与端口,
access_token 为可选项,具体情况以 Milky 协议端为准。
secure 为可选项,表示是否使用安全连接(即 wss:// 或 https://),默认为 false。
示例
from nonebot import on_command
from nonebot.adapters.milky import Bot
from nonebot.adapters.milky.event import MessageEvent
from nonebot.adapters.milky.message import MessageSegment
matcher = on_command("test")
@matcher.handle()
async def handle_receive(bot: Bot, event: MessageEvent):
if event.is_private:
await bot.send(event, MessageSegment.text("Hello, world!"))
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 nonebot_adapter_milky-1.1.0.tar.gz.
File metadata
- Download URL: nonebot_adapter_milky-1.1.0.tar.gz
- Upload date:
- Size: 26.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: pdm/2.26.6 CPython/3.12.3 Linux/6.14.0-1017-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40e735816f099a0b7ab74343a015ec5e825f0f44cfddfb613bfa36e2d7fc20d6
|
|
| MD5 |
a5bd86fe2246964e03d3cdde0b8a70b4
|
|
| BLAKE2b-256 |
361080352714273a310c573fe3aa53f83a5eca1f0d6d74f2a79462f43fe442f1
|
File details
Details for the file nonebot_adapter_milky-1.1.0-py3-none-any.whl.
File metadata
- Download URL: nonebot_adapter_milky-1.1.0-py3-none-any.whl
- Upload date:
- Size: 27.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: pdm/2.26.6 CPython/3.12.3 Linux/6.14.0-1017-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6a1e1653fe8de523c537d875ed8d99e1d0843e071da9847cdc8096158e40f0a
|
|
| MD5 |
4839c75ef92b51c3b81e410780af76da
|
|
| BLAKE2b-256 |
b2b0b248f4489f4057393254d37efd1344863572a346a70441fe794fd0a21428
|