Skip to main content

Tsugu Python Frontend

Project description

Tsugu Python Frontend tmrn

license license license


Python编写的 Tsugu 前端模块


安装与更新

安装 tsugu 模块

pip install tsugu

更新

pip install tsugu --upgrade

使用官方源安装

pip install tsugu --index-url https://pypi.org/simple/

后端需求

  • 出图:需要支持 v2 API (2024.2.28日以后的后端版本)
  • utils:需要支持 v2 API
  • 用户数据:需要一个启用了数据库的后端,需要支持 v2 API

三个后端设置可以不同,默认全部设置为公共后端


测试与调用

调用 tsugu.bot

  • bottsugu 的一个同步函数,用于直接处理用户输入的自然语言并返回查询结果:
import base64
from PIL import Image
import io

import tsugu

# 四个参数,分别意味着 消息内容 用户id 平台 频道id
data = tsugu.bot('查卡 红 ksm 5x', '114514', 'red', '666808414')

# 如果返回值为 None 代表bot不发送任何消息。
if not data:
    print("[无反馈数据]")

for item in data:
    if item["type"] == "string":
        print(f"[文字信息]\n{item['string']}")
    elif item["type"] == "base64":
        image_data = base64.b64decode(item["string"])
        print(f"[图像大小: {len(image_data) / 1024:.2f}KB]")
        Image.open(io.BytesIO(image_data)).show()
    else:
        print(item)

在常用的qqbot中,群号就是 channel_id
当你使用QQ号作为 user_id 时,platform 可以填写 red

查看与更改 tsugu.config 配置

  • 查看默认配置文档:
import tsugu

tsugu.config.show_docs()  # 输出默认配置文档到控制台
  • 你可以更改配置:
import tsugu

# 更改的后端地址。
tsugu.config.backend = "http://127.0.0.0.1:3000"

# 设置代理。
tsugu.config.use_proxies = True
tsugu.config.proxies = {"http": "http://127.0.0.1:1145", "https": "http://127.0.0.1:1919"}

# 添加关闭抽卡模拟的群号。
tsugu.config.ban_gacha_simulate_group_data = ["114514", "1919810"]

# 使用 `add_command_name` 和 `remove_command_name` 方法添加或删除命令名以添加别名或关闭命令。
tsugu.config.add_command_name(api="gacha", command_name="抽卡")

使用 tsugu.router 路由

  • 如果想自己进行自然语言处理,你可以使用单独的路由:
import tsugu

# 获取用户数据
reply = tsugu.router.get_user_data("red", "1234567890")

# 查卡
reply = tsugu.router.card("红 ksm", [0, 3], 5)

# 设置玩家车牌转发
reply = tsugu.router.set_car_forward("red", "1234567890", True)

相对应登录端?

这不是一个好的时代, 但部署方式仍然是有不少的,如果有部署期望,可以看下面的 ▶️客服ano酱指导 进群聊聊天,我们会尽力帮助你。

基于 v2 api 的 C# + Lagrange 组合的登录端正由 棱镜 开发中,敬请期待。
基于本项目的 NoneBot2 插件也由 zhaomaoniu 开发中,敬请期待。

客服ano酱指导(这里可以点击)

注意,如果你不知道什么是BanGDream,请不要随意加群
本群还是欢迎加群的(
BanGDreamBot开发聊天群
温馨的聊天环境~


开发者的话

kumo: 我草我要4了

kumo: 未来还会继续完善以及同步更新喵,感谢大家的支持~
   感谢提出建议的所有人~
   也感谢山本和大家的付出与帮助!

zhaomaoniu: 这周末不是很想写代码


Project details


Release history Release notifications | RSS feed

This version

0.1.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tsugu-0.1.0.tar.gz (12.8 kB view details)

Uploaded Source

Built Distribution

tsugu-0.1.0-py3-none-any.whl (11.3 kB view details)

Uploaded Python 3

File details

Details for the file tsugu-0.1.0.tar.gz.

File metadata

  • Download URL: tsugu-0.1.0.tar.gz
  • Upload date:
  • Size: 12.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for tsugu-0.1.0.tar.gz
Algorithm Hash digest
SHA256 c50e2c59e30bdd59ab9d23d803837d70c8a9f21d6f16a075bfd7fb7bc4c5eec2
MD5 39abe67b42ce47539253f15ec3f7ee96
BLAKE2b-256 10c29213243183247c6c4e8681d1530910fa8d06b767f419c1528d5e1fc5d2c6

See more details on using hashes here.

File details

Details for the file tsugu-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: tsugu-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 11.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for tsugu-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c338686c785228516fa10053c1b2ecc33a0599684252978a02bc91cfaeb1db90
MD5 1eafbed7cd92072ff717fdee497a7d9f
BLAKE2b-256 d3c314f885745b6fb1179f900c940828a60971894575e5415bd895a0632c0342

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page