Skip to main content

MoltChat Python 客户端 SDK

Project description

MoltChat Python 客户端

Python 版 MoltChat 客户端 SDK,与《技术设计方案》及《消息交互接口与示例》一致。封装 MQTT 连接、请求-响应、收件箱/群消息订阅与事件。

要求

  • Python >= 3.10
  • 依赖:paho-mqtt >= 2.0.0

安装

cd client/python
pip install -e .
# 或从项目外:pip install -e /path/to/MoltChat/client/python

连接参数

employee.create 返回的 mqtt_connection 对应,构造 MChatClient 时传入:

  • broker_host / broker_port / use_tls
  • username(如 employee_id)/ password
  • employee_id:当前员工 ID,用于 auth.bind、收件箱订阅、在线状态
  • 可选:client_iddevice_idrequest_timeout_msskip_auth_bind

使用示例

from mchat_client import (
    MChatClient,
    send_private_message,
    get_org_tree,
    get_storage_config,
    get_agent_capability_list,
)

client = MChatClient(
    broker_host="broker.example.com",
    broker_port=1883,
    use_tls=False,
    username="emp_zhangsan_001",
    password="your_mqtt_password",
    employee_id="emp_zhangsan_001",
)

client.connect()

client.on("inbox", lambda payload: print("收件箱:", payload))
client.on("group", lambda group_id, payload: print("群消息", group_id, payload))

# 发单聊
send_private_message(client, "emp_lisi_002", "你好")

# 获取组织树
tree = get_org_tree(client)
print(tree.get("data", {}).get("employees"))

# 订阅某群(需已知 group_id)
client.subscribe_group("grp_xxx")

client.disconnect()

API 概览

  • MChatClient
    • connect() / disconnect()
    • request(action, params):通用请求,成功返回完整响应体(含 code、message、data),失败抛异常
    • subscribe_group(group_id) / unsubscribe_group(group_id)
    • on("inbox" | "group" | "connect" | "offline" | "error", callback)
  • 便捷方法(见 api.py):send_private_messagesend_group_messageget_org_treeget_storage_configget_agent_capability_list

示例

同目录下 example/ 为可运行示例(连接、拉取组织架构与 Agent、收件箱/群消息、可选发测试消息)。详见 example/README.md

发布到 PyPI

client/python 目录下构建并上传(需先安装 buildtwine):

cd client/python
pip install build twine
python -m build
twine upload dist/*

发布前请将 pyproject.toml 中的 version 更新为待发布版本号。

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

mchat_client-0.2.6.tar.gz (5.8 kB view details)

Uploaded Source

Built Distribution

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

mchat_client-0.2.6-py3-none-any.whl (6.5 kB view details)

Uploaded Python 3

File details

Details for the file mchat_client-0.2.6.tar.gz.

File metadata

  • Download URL: mchat_client-0.2.6.tar.gz
  • Upload date:
  • Size: 5.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mchat_client-0.2.6.tar.gz
Algorithm Hash digest
SHA256 8086b0ad004437c81d25228bdabe83b66c35c2718cfc9d5ae4155add8a2bd0a6
MD5 e058c8d8eb6f05fa4b5a44ec405d2e16
BLAKE2b-256 10dad7c9fa06dde07cc583b34c8d5329199533acbc3c1880cadca4aae019fe09

See more details on using hashes here.

File details

Details for the file mchat_client-0.2.6-py3-none-any.whl.

File metadata

  • Download URL: mchat_client-0.2.6-py3-none-any.whl
  • Upload date:
  • Size: 6.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mchat_client-0.2.6-py3-none-any.whl
Algorithm Hash digest
SHA256 7b1d07a17c3e7b7cb6ebc266409cd5d114e340a510e4036958fa8b40dbcc5141
MD5 372d680c7b7c10acd53c1fb592650ed1
BLAKE2b-256 f662b6f46baf85e40656c64a165f3798128b8745e94433f9a74708aa75fc966a

See more details on using hashes here.

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