Skip to main content

Verhub SDK (Python)

Verhub 版本与发布管理平台的官方 Python SDK。

接口面与 TypeScript / Rust / 纯 JS 版一一对应,只是方法名按 Python 习惯写成 snake_case。 完整的方法清单与跨语言对照见《SDK 参考》。

安装

pip install verhub-sdk

快速开始

from verhub_sdk import VerhubClient

# 第二个参数是绑定的项目 key,之后项目作用域的方法都不用再传它
client = VerhubClient("https://verhub.example.com/api/v1", "verhub")

result = client.public.check_update(current_version="1.1.0")
if result["should_update"]:
    print(result["target_version"]["version"], result["target_version"]["content"])

base_url 要带上 /api/v1 前缀,也就是浏览器里能直接打开 /health 的那个地址。

两个命名空间

  • client.public — 公开接口,不需要凭据,客户端 App 直接调用
  • client.admin — 管理接口,需要管理员 JWT 或 API Key
client = VerhubClient("https://verhub.example.com/api/v1", "verhub", token="vh_xxx")

client.admin.upsert_version(
    "v1.2.0",
    comparable_version="1.2.0",
    title="稳定版",
    content="修复若干问题。",
    is_latest=True,
)

凭据与绑定项目都可以事后更换:client.set_token(token) / client.set_project_key(key)。 没绑定项目就调项目作用域的方法会抛 VerhubError。

省略与置空

可选参数的默认值是 UNSET 而不是 None,这两者含义不同:

  • 不传该参数 → 字段不出现在请求里 → 更新接口保持原值
  • 显式传 None → 字段以 JSON null 提交 → 更新接口把该字段置空
client.admin.update_version("ver-001", download_url=None)  # 清空下载地址
client.admin.update_version("ver-001", title="改个标题")     # 只动标题

平台与系统版本声明

SDK 默认按运行环境自动探测平台与系统版本(如 Windows 11、ubuntu 24.04、 macOS 14.5.0),通过 x-verhub-platform / x-verhub-platform-version 两个请求头 声明,供服务端做来源统计——这不影响任何接口的返回内容。

# 覆盖探测结果
client = VerhubClient(base_url, "verhub", platform="linux", platform_version="ubuntu 24.04")

# 事后更新
client.set_platform("linux")
client.set_platform_version("ubuntu 24.04")

# 完全不声明平台(这是明确的退出声明,也就不再自动探测版本)
client = VerhubClient(base_url, "verhub", platform=None)

两项各管各的:显式给了就用给的,没给就自己探测——指定 platform 不影响版本探测。 只有 platform=None 会连带停掉版本探测(此时仍可单独给 platform_version)。

版本明细会在存入时清洗成能安全进 HTTP 头的形式:非可打印 ASCII 按空白处理、折叠 空白、按 32 字符截断,洗完为空则不发这个头。用错编码读出来的 ...[�汾 10.0...] 这类串因此不会让 HTTP 客户端在编码请求头时抛异常,把整个请求带下水。

异步用法

在 asyncio 里跑就用 AsyncVerhubClient。它的接口面与 VerhubClient 完全一致, 只是 public / admin 上的方法都要 await:

from verhub_sdk import AsyncVerhubClient

async def main():
    async with AsyncVerhubClient("https://verhub.example.com/api/v1", "verhub") as client:
        result = await client.public.check_update(current_version="1.1.0")
        if result["should_update"]:
            print(result["target_version"]["version"])

底层是原生 httpx.AsyncClient,真正的非阻塞 I/O——不再是早期版本的「线程壳套 同步」,在途请求不占线程,高并发场景也能用。两个客户端共用同一份接口实现,同步版 和异步版的行为、参数、异常完全对齐。

缺 project_key、转发反馈却没填联系方式这类本地前置校验在调用当下就抛,不等 到 await;把整个 await client.public.xxx(...) 表达式包进 try 即可两种时机都 兜住。

异步侧 public / admin 的静态类型是 Any:方法体两边共用一份,返回值标注按 同步视角写,标成 Any 是为了让 await 不被类型检查器判成「await 了一个 dict」。 代价是异步侧没有返回结构的补全,需要时用 cast(VersionItem, await ...)。

PySide6 等 GUI:后台调用与主线程回调

Qt 跑的是自己的事件循环,await 在里面无处安放,而 UI 又只能在主线程碰。同步客户端 的 client.background 给出的是不依赖任何 GUI 框架的两段式方案(SDK 自己不 import Qt):请求丢进后台线程池,回调不在工作线程就地执行,而是排队等主线程来取。

from PySide6.QtCore import QTimer

client = VerhubClient("https://verhub.example.com/api/v1", "verhub")

# 用 Qt 自己的定时器周期性排空回调队列 —— 于是回调都跑在主线程,可以直接改控件
self._timer = QTimer(self)
self._timer.timeout.connect(client.background.drain)
self._timer.start(50)

client.background.submit(
    client.public.check_update,
    current_version="1.1.0",
    on_success=self.show_update,   # 在主线程执行,随便改 UI
    on_error=self.show_error,      # 收到异常对象
    on_done=self.hide_spinner,     # 成功失败都会跑
)
  • submit() 返回标准的 concurrent.futures.Future。三个回调都不给就纯粹当线程池 用,add_done_callback 按 concurrent.futures 的语义在工作线程执行。
  • drain(max_callbacks=None) 不阻塞:队列空了立刻返回,返回值是本次执行的回调数。 回调很重怕拖住界面时可以限一批的量。
  • 回调自己抛的异常会记进 verhub_sdk 日志器并跳过,不会卡死队列。
  • 忘了接定时器(回调排了一堆没人取)时,close() 会打一条 WARNING 提示。
  • 线程池大小用 VerhubClient(..., background_workers=4) 调;不碰 background 就一个线程都不会创建。

tkinter 用 after()、wxPython 用 wx.Timer 接 drain 同理。

重试与超时

  • 默认对连接失败和幂等请求(GET 等)自动重试 2 次并指数退避;check_update 这类 POST 只在「连接没建起来」(请求没送到服务端,重放一定安全)时重试,拿到 502/503/504 不会被重放。读超时一律不重试——请求可能已经在服务端生效了。 用 retries= 调整,传 0 关闭:VerhubClient(base_url, "verhub", retries=3)。
  • timeout 支持 (connect, read) 元组,分别指定连接与读取超时——更新检查常 希望连接快速失败、读取宽松些:VerhubClient(base_url, timeout=(3.0, 20.0))。 也可以直接传 httpx.Timeout(...) 做精细控制,或传 None 不限时。
  • 传自定义 http_client 时重试与超时仍由 SDK 负责(超时按每次请求下发)。

线程安全

同步 VerhubClient 的底层 httpx.Client 本身线程安全,多线程共用一个客户端并发发 请求没有问题(background 线程池就是这么用的)。但 set_token / set_project_key / set_platform 这些 setter 是原地改可变状态,不要在有在途请求时并发调用; 构造时配好凭据、之后只读使用是最省心的用法。

可观测性

SDK 通过 logging.getLogger("verhub_sdk") 在 DEBUG 级打印每次请求的方法、URL 与状态码,默认不输出:

import logging
logging.getLogger("verhub_sdk").setLevel(logging.DEBUG)

错误处理

from verhub_sdk import VerhubApiError, VerhubAuthError, VerhubConnectionError

try:
    client.admin.list_projects()
except VerhubAuthError as exc:
    print("忘了设 token,请求没发出去", exc)  # 本地前置校验失败
except VerhubApiError as exc:
    print(exc.status, exc.message, exc.body)   # 服务端返回非 2xx
except VerhubConnectionError as exc:
    print(exc.cause)                            # 请求没到服务端

三者都继承自 VerhubError。VerhubAuthError 用于「调 admin 接口却没设凭据」这类 本地前置校验失败——请求根本没发出去,与服务端真正拒绝凭据的 VerhubApiError (HTTP 401/403)区分开。

升级提示(破坏性变更):早期版本在缺 token 时抛的是伪造的 VerhubApiError (status 401)。现在改抛 VerhubAuthError。若你之前靠 except VerhubApiError 兜这种情况,请补上 VerhubAuthError。

User-Agent

默认 UA 是 verhub-sdk-python/<版本>。想加上自家应用标识做服务端统计,用 app_identifier(保留 SDK 版本信息),不要用 user_agent 整体覆盖:

VerhubClient(base_url, "verhub", app_identifier="MyApp/1.2")
# UA: verhub-sdk-python/x.y.z MyApp/1.2

其他

  • 返回值是解析后的 dict;verhub_sdk.models 里有对应的 TypedDict, 供编辑器补全和 mypy 使用,运行时不做校验也不做拷贝。
  • 需要代理、自定义证书或连接池上限时,传入自己的 httpx.Client: VerhubClient(base_url, http_client=my_client)(异步版收 httpx.AsyncClient)。 自带的客户端由你自己关,SDK 的 close() 不动它。
  • 客户端可作为上下文管理器使用,退出时关闭连接池与后台线程池(异步版用 async with)。

从 requests 版升级

SDK 的 HTTP 底座从 requests 换成了 httpx, 接口面本身没变,但有三处破坏性变更:

变更 旧 新
依赖 requests httpx
自定义传输 session=requests.Session() http_client=httpx.Client()
close() 对自带客户端 一并关闭 不动,由调用方自己关

AsyncVerhubClient 的用法不变,但内部从线程池换成了原生异步;捕获底层异常时注意 VerhubConnectionError.cause 现在是 httpx 的异常类型(原先是 requests 的)。

Release files for verhub-sdk 0.2.8

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for verhub-sdk 0.2.8
File Size Uploaded
verhub_sdk-0.2.8.tar.gz 33.9 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for verhub-sdk 0.2.8
File Interpreter ABI Platform
verhub_sdk-0.2.8-py3-none-any.whl Python 3 none any Details

Total release size: 74.8 kB

Release files / verhub_sdk-0.2.8.tar.gz

Download URL verhub_sdk-0.2.8.tar.gz
Size 33.9 kB
Tags Source
SHA-256 checksum
How to use checksums
44e98273f745eb71dfe1a40b8aa6682fdf83954890f4ef55816f5e6605577e7c
BLAKE2b-256 checksum
How to use checksums
069ee9528e830e3d20471bcdaddff3857a915254082361e28775bccb3c602c12
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release files / verhub_sdk-0.2.8-py3-none-any.whl

Download URL verhub_sdk-0.2.8-py3-none-any.whl
Size 40.9 kB
Tags Python 3
SHA-256 checksum
How to use checksums
dac226d59579a24f7dbb747f6decb855da9fba5021d551c86d301d40bd147794
BLAKE2b-256 checksum
How to use checksums
aa8f6767c0c915e98e1f2cf4386e5224795041b946de7fb887aad0bc2dfceb89
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.

Transparency log

Release history Release notifications | RSS feed

0.2.10

2 release files

0.2.9

2 release files

This release

0.2.8 This release

2 release files

0.2.7

2 release files

0.2.6

2 release files

0.2.5

2 release files

0.2.4

2 release files

0.2.3

2 release 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