Tsugu Python Frontend
Project description
Chat Tsugu Py
✨ Python 编写的 TsuguBanGDreamBot 自然语言交互库 ✨
📦 安装
pip install tsugu --upgrade
API powered by tsugu-api-python
Command matching provided by Alconna
📖 使用
handler & handler_raw
handler
是一个同步方法,用于直接处理用户输入的自然语言并返回查询结果:- 如果你方便使用 base64,
handler_raw
方法或许会更好,tsugu
后端本身返回此数据结构,这个方法可以节省不必要的开销。
import tsugu
# 四个参数,分别意味着 消息内容 用户id 平台 频道id
for i in tsugu.handler(message='查卡 ars 1x', user_id='1528593481', platform='red', channel_id='666808414'):
print('文本: ',i) if isinstance(i, str) else None
print(f"[图片]") if isinstance(i, bytes) else None
for i in tsugu.handler_raw(message='查卡 ars 1x', user_id='1528593481', platform='red', channel_id='666808414'):
print('文本: ',i) if i['type'] == 'text' else None
print(f"[图片]") if i['type'] == 'base64' else None
在常用的qqbot中,群号就是
channel_id
。
当你使用QQ号作为user_id
时,platform
可以填写red
。
📚 异步支持
handler_async & handler_raw_async
handler_async
是handler
的异步版本,使用方法与handler
相同。handler_raw_async
同理。
🧵多线程支持
- tsugu 在导入时完成了
Alconna
的初始化,避免了多线程context
错误,因此可以在多线程中使用tsugu
。
⚙️ api settings
安装
tsugu
后可以直接导入tsugu_api_core
的settings
修改配置项。
from tsugu_api_core import settings
...
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
tsugu-2.0.8.tar.gz
(15.1 kB
view details)
Built Distribution
tsugu-2.0.8-py3-none-any.whl
(29.7 kB
view details)
File details
Details for the file tsugu-2.0.8.tar.gz
.
File metadata
- Download URL: tsugu-2.0.8.tar.gz
- Upload date:
- Size: 15.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 83439a29743db4731603001a27e04f7f03fd6529b291e663d26f0fa273dc4816 |
|
MD5 | 8b07c5b22441bed30baf1c48bcd0fbd4 |
|
BLAKE2b-256 | dec85ec3c9a081419a2f76eb6209074a5bc721b7a294e69f0bc43023e7fd5463 |
File details
Details for the file tsugu-2.0.8-py3-none-any.whl
.
File metadata
- Download URL: tsugu-2.0.8-py3-none-any.whl
- Upload date:
- Size: 29.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 052973b8b28e0fc75dbf8fd156554ee1c12a6e92d32cb095d02509c127ac084b |
|
MD5 | 8b626188de2d71f3deba2240449d9f59 |
|
BLAKE2b-256 | cb9a0277261495e4b5b1f72664cc97124023b29194d212b1c524c0d5efc27085 |