Skip to main content

tuitui-bot

推推机器人异步 Python SDK,移植自 npm 包 @qihoo/tuitui-bot-sdk。支持 Python 3.10 及以上版本。

安装

pip install tuitui-bot

发送消息

import asyncio

from tuitui_bot import TuituiBotClient


async def main() -> None:
    client = TuituiBotClient("your-app-id", "your-app-secret")
    try:
        response = await client.im.send_text(
            to=client.to.account("user-account"),
            text="**你好**,这是一条 `Markdown` 消息。",
        )
        print("消息发送成功", response)
    except Exception as error:
        print("消息发送失败", error)


asyncio.run(main())

SDK 使用 client.to.account()uid()group()accounts()uids() 创建单聊或群聊目标, 频道和帖子能力位于 client.teams

消息、团队、文件和机器人属性等 API 调用失败时都会抛出异常,使用方应捕获并记录完整错误。接口错误 会抛出 TuituiApiError,异常文本包含底层网络错误。错误详情中的 trans_id 是本次 API 调用的上下文 ID;遇到难以定位的问题时,可将该 ID 和错误消息提交给推推技术支持团队。

事件订阅(收消息)

事件订阅通过 WebSocket 持续接收单聊、群聊、团队帖子和交互回调。只发送消息时不需要订阅;完整代码 见 samples/receive.py,消息结构见 SDK 导出的 TuituiMessageData

SDK 自动确认事件、过滤心跳并去重。连接异常时会自动重连;如需感知错误,通过 on_error 记录日志, 不需要自行重连。调用 await subscription.unsubscribe() 后会关闭连接并停止重连。

发送交互式卡片

SDK 接收推推原生交互卡片结构,业务可以定义自己的模板。具体字段请参考 SDK 导出的 TuituiOutboundInteractiveMessage 类型以及推推 API 文档,完整代码请参考 samples/send_interactive.py

最佳实践

需要提前开启事件订阅(收消息)。发送交互式卡片后,用户点击同意、拒绝等按钮时,会收到一条类型为 interactive 的消息。处理完业务逻辑后,应调用 client.im.modify_interactive() 原地更新卡片,删除 操作按钮并显示“已同意”或“已拒绝”等最终状态文案,不应继续保留可点击按钮,给用户操作反馈同时 避免用户重复操作。

API

所有文本发送与编辑 API 的 text 字段都支持 Markdown 格式。

  • client.to:创建账号、UID、群聊及批量消息目标。
  • client.im:发送文本、图文混排、页面、链接和交互卡片,以及编辑、表情回复和聊天记录。
  • client.im.send_file()client.teams.send_file():分别向单聊或群聊、团队帖子发送文件;支持 bytes、 Path、本地路径、二进制文件对象、data URL 和 HTTP/HTTPS URL,文件大小限制为 100MB。
  • client.teams:帖子、回复、编辑、表情、频道、标签、公告、成员和帖子链。
  • client.file:底层文件上传。
  • client.file_space:文件空间的节点、目录和文件 API。
  • client.property:机器人信息、名称、头像、Webhook、交互地址和快捷指令。
  • client.event:事件订阅、正文渲染和媒体提取。
  • client.request():调用尚未封装或未来新增的推推机器人 API。

上传文件 API 的 SSRF 防护(可选)

通过 URL 上传文件时,可以使用 TuituiClientOptions(fetch_with_ssrf=...) 注入带 SSRF 防护的异步 下载函数。

Download files

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

Source Distribution

tuitui_bot-1.0.13.tar.gz (41.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tuitui_bot-1.0.13-py3-none-any.whl (34.6 kB view details)

Uploaded Python 3

File details

Details for the file tuitui_bot-1.0.13.tar.gz.

File metadata

  • Download URL: tuitui_bot-1.0.13.tar.gz
  • Upload date:
  • Size: 41.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for tuitui_bot-1.0.13.tar.gz
Algorithm Hash digest
SHA256 8b51d66c5e2d68004579a4c096df5c5b074d35cd965625838fdb81137af0f859
MD5 50879897026c1190b5e64c42c3833076
BLAKE2b-256 b039fde1647754dcf3a1e20de3c4b73b86ab11ee2795eb95e25898dd55da1ddb

See more details on using hashes here.

File details

Details for the file tuitui_bot-1.0.13-py3-none-any.whl.

File metadata

  • Download URL: tuitui_bot-1.0.13-py3-none-any.whl
  • Upload date:
  • Size: 34.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for tuitui_bot-1.0.13-py3-none-any.whl
Algorithm Hash digest
SHA256 b0731e0623be7dd14bbb2ac0c4a551f38a147c4290d67ceaf525ac5c9c53f73d
MD5 cc0fa0e53cc6d637b05daaf0c5af307d
BLAKE2b-256 1f95bf0eac937d16c814e5d152a9e5c68315ee64e3439031159fc68709922fcf

See more details on using hashes here.

Release history Release notifications | RSS feed

1.0.21

2 files

1.0.20

2 files

1.0.19

2 files

1.0.18

2 files

1.0.16

2 files

1.0.15

2 files

This release

1.0.13 This release

2 files

1.0.11

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page