Satori-python

Latest version: v0.16.4

Safety actively analyzes 724051 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 6 of 8

0.9.0

破坏性改动
- 将整体结构区分为 core,client 与 server,同时原有包不变:
- `satori-python-core`: 包括 Element, Config, Model, Exception 等
- `satori-python-client`: 包括 App, Account, Session, Network
- `satori-python-server`: 包括 Server, Adapter 等
- `satori-python`: 以上三者的合体包
- `Config.network` 取消

新增
- 增加了枚举类 `EventType`
- 增加了 `App.register_config` 类方法,用来增加配置 -> 网络连接的映射

**Full Changelog**: https://github.com/RF-Tar-Railt/satori-python/compare/v0.8.0...v0.9.0

0.8.0

新增
- 元素 `Button`: [Satori-按钮](https://satori.js.org/zh-CN/protocol/elements.html#%E6%8C%89%E9%92%AE-%E5%AE%9E%E9%AA%8C%E6%80%A7)
- 按钮交互事件: [Satori-交互](https://satori.js.org/zh-CN/resources/interaction.html)

**Full Changelog**: https://github.com/RF-Tar-Railt/satori-python/compare/v0.7.0...v0.8.0

0.7.0

新增

- 允许用户使用拓展的消息元素
- `Custom`: 自定义消息元素
- `Raw`: 原生消息元素

改进

- `Link` 增加属性 `display`
- `Image` 等增加参数 `extra`, 表示额外的属性
- `Message`, `Quote`, `Custom` 可用 `__call__` 方法来增加子类元素

**Full Changelog**: https://github.com/RF-Tar-Railt/satori-python/compare/v0.6.1...v0.7.0

0.6.1

- 支持配置 `path` (即api的前缀)

**Full Changelog**: https://github.com/RF-Tar-Railt/satori-python/compare/v0.6.0...v0.6.1

0.6.0

新增
`Server.apply` 方法现在能可以接受满足 `Provider` 或 `Router` 协议的类

`Provider` 是负责推送事件,以及ws连接时鉴权的类:
python
class Provider(Protocol):
def publisher(self) -> AsyncIterator[Event]:
...

def authenticate(self, token: str) -> bool:
...

async def get_logins(self) -> list[Login]:
...


`Router` 是负责接口响应的类:
python
class Router(Protocol):
def validate_headers(self, headers: dict[str, Any]) -> bool:
...

async def call_api(self, request: Request[Api]) -> Any:
...

async def call_internal_api(self, request: Request[str]) -> Any:
...


显然, `Adapter` 同时满足上述协议

改进
- `server` 现在会对内部接口的请求做单独处理

**Full Changelog**: https://github.com/RF-Tar-Railt/satori-python/compare/v0.5.0...v0.6.0

0.5.0

破坏性改动
- 移除 `Adapter.bind_event_callback`,由 `Adapter.publisher` 替代

新增
- 新增枚举 `Api`,包含 satori 协议下的所有 API 字段

改进
- `Server.override` 改名为 `Server.route`,支持传入 Api 枚举 或字符串路径 (若为字符串路径则认为是一个内部接口)
- `Config` 增加属性 `network`,返回一个 `BaseNetwork` 子类 (即允许自定义 network)

**Full Changelog**: https://github.com/RF-Tar-Railt/satori-python/compare/v0.4.0...v0.5.0

Page 6 of 8

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.