Skip to main content

ErisPulse的云湖协议适配模块

Project description

Telegram 适配器模块

简介

TelegramAdapter 是基于 ErisPulse 架构的 Telegram 协议适配器,提供统一的事件处理和消息操作接口。整合了所有 Telegram 功能模块,支持文本、图片、视频、文件等多种类型消息的收发。

使用示例

初始化与事件处理

from ErisPulse import sdk

async def main():
    # 初始化 SDK
    sdk.init()
    
    # 启动适配器
    await sdk.adapter.startup()
    
    # 获取适配器实例
    telegram = sdk.adapter.get("telegram")
    
    # 注册事件处理器
    @telegram.on("message")
    async def handle_message(data):
        print(f"收到消息: {data}")
        await telegram.Send.To("user", data["message"]["from"]["id"]).Text("已收到您的消息!")

    @telegram.on("callback_query")
    async def handle_callback_query(data):
        print(f"收到回调查询: {data}")
        await telegram.answer_callback_query(data["id"], "处理完成")

    # 保持程序运行
    await asyncio.Event().wait()

if __name__ == "__main__":
    import asyncio
    asyncio.run(main())

消息发送示例

# 发送纯文本消息
await telegram.Send.To("user", "123456789").Text("Hello World!")

# 发送Markdown格式消息
await telegram.Send.To("user", "123456789").Markdown("*粗体文本*")

# 发送HTML格式消息
await telegram.Send.To("user", "123456789").Html("<b>粗体文本</b>")

# 发送图片(需先读取为 bytes)
with open("image.jpg", "rb") as f:
    await telegram.Send.To("user", "123456789").Image(f.read(), caption="图片描述")

# 发送带格式说明的图片
with open("image.jpg", "rb") as f:
    await telegram.Send.To("user", "123456789").Image(f.read(), caption="*图片说明*", content_type="Markdown")

# 发送视频
with open("video.mp4", "rb") as f:
    await telegram.Send.To("group", "987654321").Video(f.read(), caption="这是个视频")

# 发送文件
with open("document.docx", "rb") as f:
    await telegram.Send.To("user", "123456789").Document(f.read(), caption="附件文件")

# 编辑消息
await telegram.Send.To("user", "123456789").Edit(123456, "修改后的内容")

# 撤回消息
await telegram.Send.To("user", "123456789").Recall(123456)

# 检查消息是否存在
exists = await telegram.Send.To("user", "123456789").CheckExist(123456)

配置说明

首次运行会生成配置,内容及解释如下:

# config.toml
[Telegram_Adapter]
token = "your_bot_token"
proxy_enabled = false
mode = "webhook"  # 或 "polling"

[Telegram_Adapter.proxy]
host = "127.0.0.1"
port = 1080
type = "socks5"  # 支持 socks4/socks5

[Telegram_Adapter.webhook]
path = "/telegram/webhook"
domain = "yourdomain.com"  # 外部可访问域名

事件类型

TelegramAdapter 支持以下事件类型的监听与处理:

事件类型 映射名称 说明
message message 普通消息
edited_message message_edit 消息被编辑
channel_post channel_post 频道发布消息
edited_channel_post channel_post_edit 频道消息被编辑
inline_query inline_query 内联查询
chosen_inline_result chosen_inline_result 内联结果被选择
callback_query callback_query 回调查询(按钮点击)
shipping_query shipping_query 配送信息查询
pre_checkout_query pre_checkout_query 支付预检查询
poll poll 投票创建
poll_answer poll_answer 投票响应

通讯模式

TelegramAdapter 支持两种通讯模式:

  • Webhook:使用 Telegram API 的 Webhook 机制,将消息推送到指定 URL。
  • Polling:使用 Telegram API 的 Polling 模式,通过轮询方式获取消息。

如果你使用 Webhook 模式,请确保配置中包含以下字段:

[Telegram_Adapter.webhook]
path = "/telegram/webhook"
domain = "yourdomain.com"

如果你使用 Polling 模式,只需要填写 token 字段即可

你可以选择性配置证书内容或路径:

  • 通过反向代理(如 Nginx/Caddy)处理 HTTPS

代理设置(可选)

如果需要通过代理连接 Telegram API,可在配置中添加:

[Telegram_Adapter]
proxy_enabled = true

[Telegram_Adapter.proxy]
host = "127.0.0.1"
port = 1080
type = "socks5"  # 支持 socks4/socks5

注意事项

  • 二进制内容(如图片、视频等)应以 bytes 形式传入;
  • 推荐使用反向代理处理 HTTPS 请求,避免手动管理 SSL 证书;
  • 所有格式化消息方法支持 content_type 参数,可选 "Markdown" 或 "HTML";
  • 所有发送方法返回 asyncio.Task 对象,可以选择是否等待结果。

参考链接

Project details


Download files

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

Source Distribution

erispulse_telegramadapter-3.5.0.tar.gz (19.7 kB view details)

Uploaded Source

Built Distribution

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

erispulse_telegramadapter-3.5.0-py3-none-any.whl (17.0 kB view details)

Uploaded Python 3

File details

Details for the file erispulse_telegramadapter-3.5.0.tar.gz.

File metadata

File hashes

Hashes for erispulse_telegramadapter-3.5.0.tar.gz
Algorithm Hash digest
SHA256 8fa6383e8874a3ed82b97da2d2e2fced764c168901482fa18e370e52b8836c6b
MD5 c968a3f1482d2a8dd17f8db126a66ec3
BLAKE2b-256 04577fb976702c26580a5536771b8abb87ea01dcea805791f8cf5fc92e92cb33

See more details on using hashes here.

Provenance

The following attestation bundles were made for erispulse_telegramadapter-3.5.0.tar.gz:

Publisher: python-publish.yml on ErisPulse/ErisPulse-TelegramAdapter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file erispulse_telegramadapter-3.5.0-py3-none-any.whl.

File metadata

File hashes

Hashes for erispulse_telegramadapter-3.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 08dd4c54682701f5395c570853365afee31f276be9f986c7703ce87149815367
MD5 dea0e6148bcfac700a07c13616351dea
BLAKE2b-256 dd683e32854d3309d5ce35cfba37c184ba2f24df1130e458e4a45e1e43e46141

See more details on using hashes here.

Provenance

The following attestation bundles were made for erispulse_telegramadapter-3.5.0-py3-none-any.whl:

Publisher: python-publish.yml on ErisPulse/ErisPulse-TelegramAdapter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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