Satori Protocol SDK for python, specify common part
Project description
satori-python
基于 Satori 协议的 Python 开发工具包
协议介绍
协议端
目前提供了 satori
协议实现的有:
- Chronocat
- Koishi (搭配
@koishijs/plugin-server
)
安装
安装完整体:
pip install satori-python
只安装基础部分:
pip install satori-python-core
只安装客户端部分:
pip install satori-python-client
只安装服务端部分:
pip install satori-python-server
使用
客户端:
from satori import Event, WebsocketsInfo
from satori.client import Account, App
app = App(WebsocketsInfo(port=5140))
@app.register
async def on_message(account: Account, event: Event):
if event.user and event.user.id == "xxxxxxxxxxx":
await account.send(event, "Hello, World!")
app.run()
服务端:
from satori import Api
from satori.server import Server
server = Server(port=5140)
@server.route(Api.MESSAGE_CREATE)
async def on_message_create(*args, **kwargs):
return [{"id": "1234", "content": "example"}]
server.run()
文档
请阅读 仓库文档
示例
- 客户端:client.py
- 服务端:server.py
- 服务端(使用适配器):server_with_adapter.py
- 客户端(webhook):client_webhook
- 服务端(webhook):server_webhook
- 适配器:adapter.py
架构
graph LR
subgraph Server
server -- run --> asgi
server -- register --> router -- mount --> asgi
server -- apply --> provider -- mount --> asgi
provider -- event,logins --> server
end
subgraph Client
config -- apply --> app -- run --> network
app -- register --> listener
network -- account,event --> listener
listener -- handle --> account -- session --> api
end
api -- request --> asgi -- response --> api
server -- raw-event --> asgi -- websocket/webhook --> network
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
satori_python_core-0.11.0.tar.gz
(15.2 kB
view details)
Built Distribution
File details
Details for the file satori_python_core-0.11.0.tar.gz
.
File metadata
- Download URL: satori_python_core-0.11.0.tar.gz
- Upload date:
- Size: 15.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: pdm/2.12.4 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40bd082a1b361e92e7c54172990a271cbd80c81ee2afb48013c13af93f3f1d96 |
|
MD5 | a36824ec83f470c0c10d33e5e037a3fe |
|
BLAKE2b-256 | 601d0a3e3934f3695fe6b3758c30ec3fd6cda7d8c04b8c4a1bdd5fcc446e9611 |
File details
Details for the file satori_python_core-0.11.0-py3-none-any.whl
.
File metadata
- Download URL: satori_python_core-0.11.0-py3-none-any.whl
- Upload date:
- Size: 16.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: pdm/2.12.4 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d63f2ebdf831dde69fbbd067bc6612401b71d2b339cb1276f97bac157149cc6 |
|
MD5 | 3f2524700a79babbc7457125a7b92ab9 |
|
BLAKE2b-256 | 591c1ff39170c9d4ed24295ad83fb06d30e9a7fe790fef46c8093a1324cb05a5 |