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
  • service_id:可选,服务实例 ID,用于 Topic 域隔离;不设置则兼容原有 topic(无前缀)

使用示例

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.3.1.tar.gz (6.0 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.3.1-py3-none-any.whl (6.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: mchat_client-0.3.1.tar.gz
  • Upload date:
  • Size: 6.0 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.3.1.tar.gz
Algorithm Hash digest
SHA256 4b20fb484c68471642435bc0eaad6d5b5e0ef8a30df9ae45816875149cbe272b
MD5 e187e9233dde950fb38faed36a0cc085
BLAKE2b-256 a319232b4fa8de652f8813a0dbac23cf36b88a16e4107d342869660291dc0d54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mchat_client-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 6.7 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.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 11e518f75e713da538e1236bf4aa01c6637449fa1d3c2160b8a4cb0f615fb971
MD5 23f64498fe8d5a4757dd24bad07a4513
BLAKE2b-256 9be3fdf2b496697bf84b4897172febd9d1d7e8c176ba355f282b42ecf55b5456

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