Qing 平台统一 SDK - Python 客户端(与 npm 版 qing-client 对齐)
Project description
qing-client (Python)
Qing 平台统一 SDK 的 Python 版本,与 npm 包 qing-client 的 API 设计对齐。
安装
pip install -e /path/to/client/pip
# 或发布后
pip install qing-client
使用
网关模式(前端/统一网关)
from qingclient import Client
from qingclient.types import ClientConfig
config = ClientConfig(
gateway_url="https://your-gateway.example.com",
project_id="your-project-id",
# 可选: org_id, app_id
)
client = Client(config)
# 登录后设置 token
res = client.auth.login("user", "password")
client.set_token(res.access_token)
# 调用各服务
user = client.user.get_current_user()
messages = client.msg.get_messages()
后端模式(直连各服务)
直连时各服务 URL 需包含该服务在后端的路径前缀,例如 token 服务为 .../api/token,这样 path /wxh5/accesstoken 才会请求到正确的完整路径。详见根目录 client/README.md 的「SDK 与现有架构对齐说明」。
from qingclient import Client
from qingclient.types import ClientConfig, UserContext
config = ClientConfig(
auth_service_url="http://auth-svc",
msg_service_url="http://msg-svc",
user_service_url="http://user-svc",
token_service_url="http://token-svc/api/token", # 含路径前缀
# ... 其他服务 URL
)
client = Client(config)
# 设置用户上下文(模拟请求方)
client.set_user_context(UserContext(
user_id="uid",
role="ADMIN",
project_id="pid",
))
# 调用服务
messages = client.msg.get_messages()
服务列表(与 npm 一致)
client.auth- 认证client.msg- 消息client.user- 用户client.token- Token 中控(公众号/小程序 access_token、jsapi_ticket、签名、小程序登录与获取手机号等)client.file- 文件client.ai- AI 对话client.aigc- AIGCclient.provider- 提供商client.usage- 用量client.audit- 审计日志client.fronthost- 前端托管client.org- 组织client.delivery_stream- 投递流client.ez_ability- Ez 能力client.im- IMclient.hub- 能力枢纽client.task- 任务
版本与发版
与 npm 包(client/npm)版本号对齐。通过脚本自动递增(沿用原 super/client/pip 方式):
cd client/pip
./release.sh patch # 1.0.17 → 1.0.18,并构建、上传 PyPI
./release.sh minor # 1.0.17 → 1.1.0
./release.sh major # 1.0.17 → 2.0.0
./release.sh patch --no-upload # 仅递增 version.txt、同步 fallback_version 并本地构建,不上传
脚本会:读取 version.txt → 按 major/minor/patch 递增 → 写回 version.txt → 同步 pyproject.toml 的 fallback_version → 使用 SETUPTOOLS_SCM_PRETEND_VERSION 构建。与 npm 同步发版时,可先在本目录执行 ./release.sh patch --no-upload 得到新版本号,再更新 npm 的 package.json 为同一版本。
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file qing_client-1.1.16.tar.gz.
File metadata
- Download URL: qing_client-1.1.16.tar.gz
- Upload date:
- Size: 24.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d04db02f4dab78f02269e05f99af424c16f1637a843564129db520629369d81
|
|
| MD5 |
a9e573c11d194f055c57f6394dcc15ad
|
|
| BLAKE2b-256 |
7683757e37442edd0896cdb76dc29ed21697cb2edf3b3fc6997b84e7713b0bbe
|
File details
Details for the file qing_client-1.1.16-py3-none-any.whl.
File metadata
- Download URL: qing_client-1.1.16-py3-none-any.whl
- Upload date:
- Size: 37.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91e51fac71a28f72ee2213c8adcdeecc378df959eaab4f465f5545e41dadf943
|
|
| MD5 |
14c27393f1ab0662fca463ad4f1dd1f4
|
|
| BLAKE2b-256 |
4c2a1240df426ed51f2af0b771d9622bf0b9d884dbd20ab0726fa47cdbac7518
|