Skip to main content

chrome_client

当前版本:0.2.2

基于 Chromium 网络栈的 HTTP/WebSocket 客户端。Core 负责 TLS、HTTP、HTTP/2、 HTTP/3/QUIC、代理和 WebSocket/WSS;Python/Rust 绑定只负责参数、类型、错误和 生命周期转换,不另实现一套网络协议。

Python API 同时对齐两套习惯:requestsSession/Response/异常层次,以及 curl_cffiimpersonatehttp_versionAsyncSessionCurlMime 和 WebSocket。无法用 Chromium 忠实实现的选项会显式报错,而不是静默忽略——详见 兼容边界

English README · 构建说明 · 兼容边界

支持范围

操作系统、架构与绑定

操作系统 Core 目标 Python 3.7–3.13 Python 3.6 Rust 备注
Linux x86 (i686)、x86_64、ARM64 ✓(独立 abi3 扩展) manylinux/glibc 运行时依赖见 manifest
Windows x86、x86_64、ARM64 x86/x86_64 ✓ DLL 随 wheel;ICU 数据已编入库中
macOS x86_64、ARM64 ✓(独立 abi3 扩展) dylib 按架构匹配

每个 Core 产物位于 core/binaries/<target>/,带 ABI 版本、Chromium revision、 SHA-256 和依赖清单。ABI 当前为 v8。Go 和 Node.js 目录目前是绑定设计说明, 不是已发布的可安装包。

Core 体积在 7.8–11.3 MB 之间(macOS ARM64 最小,Windows x86_64 最大,静态 MSVC/UCRT 多出约 2 MB)。IDNA-only 的 ICU 数据已编入库中,所以不需要外挂 icudtl.dat;用不到的 磁盘缓存后端不进链接产物。各平台的体积上限由 tools/audit-core-*.sh 把关,超了直接 构建失败。

Core 目录 Rust target Core 文件
linux-x86 i686-unknown-linux-gnu libminicronet.so
linux-x86_64 x86_64-unknown-linux-gnu libminicronet.so
linux-arm64 aarch64-unknown-linux-gnu libminicronet.so
windows-x86 i686-pc-windows-msvc minicronet.dll + minicronet.lib
windows-x86_64 x86_64-pc-windows-msvc minicronet.dll + minicronet.lib
windows-arm64 aarch64-pc-windows-msvc minicronet.dll + minicronet.lib
macos-x86_64 x86_64-apple-darwin libminicronet.dylib
macos-arm64 aarch64-apple-darwin libminicronet.dylib

Chrome profile

impersonate 推荐使用精确的 chrome_<major> 名称(同时接受 curl-cffi 风格的 chrome<major> 别名,以及解析到最新 pinned 版本的 chrome)。当前支持 Chrome 99–152,共 54 个 profile;范围外的版本抛 ImpersonateError,不会静默降级。 available_profiles() 返回完整列表。Edge、Safari、Firefox、Tor 等非 Chromium 目标 同样显式报错,而不是当作 Chrome 处理。

Chrome 主版本 可用 profile
99–105 chrome_99chrome_105
106–112 chrome_106chrome_112
113–119 chrome_113chrome_119
120–126 chrome_120chrome_126
127–133 chrome_127chrome_133
134–140 chrome_134chrome_140
141–147 chrome_141chrome_147
148–152 chrome_148chrome_149chrome_150chrome_151chrome_152

Profile 影响 TLS ClientHello、ALPN、HTTP/2 设置、QUIC/H3 和相关 Chromium 网络 参数;它不是完整 Chrome 浏览器,也不包含 Blink、扩展、Service Worker 或持久化 浏览器 Profile。

功能矩阵

功能 Python Rust/Core 说明
HTTP/1.1、HTTP/2、HTTP/3/QUIC 默认由 Chromium 协商;http_version="v1"/"v2"/"v3" 可强制
HTTPS/TLS、证书校验 verify=Falseverify="/path/ca.pem" 自定义 CA;证书失败按具体检查项报错
HTTP/HTTPS/SOCKS 代理 proxy、Requests 风格 proxies,运行期可改
同步请求 同步等待释放 GIL,可直接放进线程池
asyncio 请求 Core 回调唤醒事件循环,无请求线程池;每次唤醒批量取事件
流式响应 iter_content / aiter_content / raw ResponseStream 每请求 body 队列上限 1 MiB,超限由 ABI v8 暂停读取
分块上传 data= 传文件对象或迭代器 Upload::Chunked 同步与异步都走 upload_write
取消、超时、大小限制 TimeoutResponseTooLargeRequestException
WebSocket / WSS 同步与异步,curl-cffi 方法名齐全
Cookie session.cookiesRequestsCookieJar,读写都生效
重定向 history、最终 URL、max_redirectsallow_redirects=False
内存缓存 随 Engine 生命周期存在,cache=False 可关闭

安装与加载 Core

python -m pip install chrome-client

已发布的 wheel 自带对应平台的 native 扩展。从源码使用时,先针对某个 Core 目录构建 扩展(MINICRONET_CORE_DIR 在构建期读取),运行时把同一目录放到加载路径上:

MINICRONET_CORE_DIR=$PWD/core/binaries/linux-x86_64 cargo build --release -p chrome-client-python

LD_LIBRARY_PATH=$PWD/core/binaries/linux-x86_64 PYTHONPATH=bindings/python python -c \
  'import chrome_client; print(chrome_client.get("https://example.com").status_code)'

Python 使用示例

requests 风格

import chrome_client as requests          # 或 from chrome_client import requests

response = requests.get(
    "https://example.com/api",
    params={"page": 1},
    headers={"Accept": "application/json"},
    impersonate="chrome_152",
    timeout=15,
)
response.raise_for_status()
print(response.status_code, response.reason, response.json())

Sessionrequests.Session 同形:headersparamscookiesproxiesauthhooksstreamverifymax_redirectstrust_envadaptersmount()prepare_request()send()resolve_redirects()close() 和 上下文管理器都可用。

from chrome_client import Session

with Session() as session:
    session.headers.update({"Accept": "application/json"})
    session.get("https://example.com/login")          # 服务端 Set-Cookie
    print(session.cookies.get_dict())                  # 会话内可见
    session.cookies.set("consent", "1", domain="example.com", path="/")
    session.get("https://example.com/private")         # 自动带上两类 cookie

会话保持:cookie 与代理

session.cookiesRequestsCookieJarhttp.cookiejar.CookieJar 子类), 带 domain/path/secure 元数据,读写都会生效:

session.cookies.get_dict()
session.cookies.get_dict(domain="example.com")
session.cookies.set("sid", "abc", domain="example.com", path="/")
session.cookies.update({"a": "1"})
del session.cookies["sid"]
session.cookies.clear()

响应侧 cookie 由 Core 内的 Chromium CookieMonster 拥有并自动附加;facade 会把每 一跳(含重定向)的 Set-Cookie 同步进 session.cookiesresponse.cookies。 当调用方改动 jar 与 Core 已存的 cookie 冲突时,Core 会覆盖请求头,因此 facade 会 换一个空 cookie store 的同配置 Engine,让改动真正生效——连接池仍按配置复用。

session.proxies 是普通可变映射,运行期改动立即生效:

session.proxies.update({"https": "http://user:pass@127.0.0.1:8080"})
session.get("https://example.com")                     # 走代理
session.proxies.clear()
session.get("https://example.com")                     # 直连
session.get("https://example.com", proxy="socks5://127.0.0.1:1080")   # 单次覆盖

proxiesscheme://hostschemeall://hostall 顺序匹配;显式 proxy= 优先。trust_env=True(默认)时读取 HTTP_PROXY/HTTPS_PROXY/ NO_PROXY。代理是 Engine 级设置,切换代理会换一个 Engine,但 jar 里的 cookie 会 继续随请求发出。

重定向、异常与响应

response = session.get("https://example.com/r")
print(response.url, response.history, response.redirect_count)
response = session.get("https://example.com/r", allow_redirects=False)
print(response.status_code, response.headers["Location"], response.next.url)
session.get("https://example.com/r", max_redirects=5)   # 超限抛 TooManyRedirects

异常层次与 requests.exceptions 一致(RequestException 继承 IOError), 并补上 curl-cffi 的叶子类型。Chromium 的 net error 会映射成具体类型和可读名字:

try:
    session.get("https://expired.example.com")
except chrome_client.CertificateVerifyError as error:
    print(error)          # ERR_CERT_DATE_INVALID (net error -201)
except chrome_client.ConnectionError:
    ...
except chrome_client.Timeout:
    ...

证书失败按具体检查项区分:过期 ERR_CERT_DATE_INVALID (-201)、主机名不匹配 ERR_CERT_COMMON_NAME_INVALID (-200)、CA 不受信 ERR_CERT_AUTHORITY_INVALID (-202), 类型均为 CertificateVerifyError(继承 SSLErrorConnectionError)。要接受私有 CA 用 verify="/path/ca.pem",完全跳过校验用 verify=False(Engine 级设置)。

Response 提供 status_codereasonheaderscookieshistoryelapsedrequesturlencodingapparent_encodingtextcontentjson()rawlinksis_redirectis_permanent_redirectnextokraise_for_status()iter_content()iter_lines()close(),以及 curl-cffi 的 http_versioncharsetredirect_countredirect_url

curl-cffi 风格:指纹与协议

from chrome_client import Session, AsyncSession, CurlMime

with Session(impersonate="chrome152", http_version="v2") as session:
    session.get("https://example.com")

impersonate 接受 chrome_152chrome152,以及解析到最新 pinned 版本的 chrome。TLS ClientHello、ALPN、HTTP/2 设置与优先级、HTTP/3 传输参数和默认请求头 顺序全部来自该 profile:这也是 ja3=akamai=perk= 和大部分 extra_fp 字段 会抛 UnsupportedFeature 的原因——接受一个 JA3 字符串却仍然发送 Chromium 自己的 ClientHello,等于谎报保真度。extra_fp 中 facade 能真正实现的两项会被采纳: header_orderform_boundary

不受支持而显式报错的还有:cert=(客户端证书)、interface=doh_url=curl_options=max_recv_speed=referer=referer 尤其容易误判:Chromium 自己拥有 referrer 并会剥掉调用方设置的 Referer 头,ABI v8 也没有 referrer 字段, 所以设置它在任何路径下都不会到达网络。

multipart 两种写法都支持:

session.post(url, data={"title": "t"}, files={"f": ("a.txt", b"...", "text/plain")})

mime = CurlMime()
mime.addpart(name="title", data="hello")
mime.addpart(name="photo", filename="p.jpg", content_type="image/jpeg",
             local_path="/tmp/p.jpg")
session.post(url, multipart=mime)

流式读写与分块上传

with session.stream("GET", "https://example.com/large") as response:
    for chunk in response.iter_content(64 * 1024):
        ...

response = session.get(url, stream=True, max_response_bytes=16 * 1024 * 1024)
try:
    for line in response.iter_lines():
        ...
finally:
    response.close()        # 未读完时取消 native 请求

with open("big.bin", "rb") as handle:
    session.post(url, data=handle)      # 文件对象或迭代器走分块上传

max_response_bytes 超限会取消请求并抛 ResponseTooLarge。每个请求的 body 队列 上限 1 MiB,超过时 ABI v8 用 MN_READ_PAUSE 暂停读取,不会占住 Core 线程。

并发

同步 Session 可直接跨线程共享:所有阻塞调用都释放 GIL,Engine 缓存有锁。

from concurrent.futures import ThreadPoolExecutor

with Session() as session, ThreadPoolExecutor(max_workers=32) as pool:
    codes = list(pool.map(lambda url: session.get(url).status_code, urls))

asyncio 路径不创建线程池:Core 回调用 call_soon_threadsafe 唤醒事件循环,每次 唤醒批量取事件,因此一个几 MB 的响应不会按 chunk 逐次往返事件循环。

import asyncio
from chrome_client import AsyncSession

async def main():
    async with AsyncSession(impersonate="chrome_152", max_clients=64) as session:
        responses = await asyncio.gather(*[session.get(u) for u in urls])
        async with session.stream("GET", big_url) as response:
            async for chunk in response.aiter_content(65536):
                ...

asyncio.run(main())

max_clients 限制同时在途的请求数。进程池请使用 spawnforkserver:Engine 存在后进程已是多线程且 Chromium 线程持锁,fork() 可能在子进程执行任何 Python 代码之前就死锁。

Chromium 对同一 host 组默认最多 6 条 HTTP/1.1 连接(实测同一 host 并发上限确为 6, 换用多个 host 后吞吐随之上升)。这是浏览器语义的一部分,不是绑定的瓶颈:需要更高 单 host 并发时应使用 HTTP/2 或 HTTP/3 端点。

WebSocket / WSS

from chrome_client import WebSocket

with WebSocket(url="wss://echo.example.com", impersonate="chrome_152") as socket:
    socket.send_str("ping")
    print(socket.recv_str())
async def main():
    async with AsyncSession() as session:
        socket = await session.websocket("wss://echo.example.com")
        async with socket:
            await socket.send_json({"op": "ping"})
            print(await socket.recv_json())

同步与异步都提供 send/send_str/send_bytes/send_json/pingrecv/recv_str/recv_bytes/recv_json/recv_fragmentcloseterminate, 同步侧还有 run_forever(on_message=..., on_error=..., on_open=..., on_close=...)。 构造函数返回时握手已完成——Core 在 open 之前会拒绝 send()close()

握手头有两条 Chromium 规则:

  • UA 不能按次传。 Core 明确拒绝把 User-AgentHostOriginConnectionUpgradeSec-WebSocket-* 作为额外头(IsForbiddenWebSocketHeader), 因为 Chromium 自己决定这些头的取值和在握手里的位置,而 UA 的位置本身就是指纹的 一部分。要改 WebSocket 的 UA,用 Session(user_agent=...)(Engine 级设置,HTTP 与 WS 一致)或换 impersonate profile;传 header 会得到 UnsupportedFeature,而不是 静默生成一个与其它请求 UA 不一致的握手。
  • Origin 默认取自 URL 自身。 Core 拒绝空 origin,而这里没有页面可继承,所以 默认用 ws://host:port 对应的 http://host:port——即同源页面发起连接的样子。需要 别的值就显式传 origin=

Cookie 会按 URL 匹配后附加到握手上。

与 requests / curl-cffi 的对照

from curl_cffi import requests 改成 from chrome_client import requests,或 import requests 改成 import chrome_client as requests,多数代码不需要其他改动。

用法 支持情况
get/post/put/patch/delete/head/options/trace/query
SessionAsyncSessionClientAsyncClient ✓(ClientSession 别名)
paramsdatajsoncontentfilesmultipart
headerscookiesauthtimeout(含 (connect, read)
proxiesproxyproxy_authtrust_envNO_PROXY
verify=True/False/"/path/ca.pem"
allow_redirectsmax_redirectshistory、最终 URL
stream=Trueiter_contentiter_linesraw
aiter_contentaiter_linesatextacontentsession.stream(...)
hooks={"response": ...}prepare_requestsendmount、自定义 adapter
RequestPreparedRequestcodesCaseInsensitiveDictHeadersCookies
HTTPBasicAuthHTTPProxyAuthAuthBase
requests.exceptions 全层次 + curl-cffi 叶子类型
impersonatehttp_versionretry/RetryStrategyraise_for_status=True
base_urldiscard_cookiesdefault_encodingcontent_callback
CurlMimeExtraFingerprints(header_order=..., form_boundary=...)
HTTPDigestAuth 部分:需要用 parse_challenge()/handle_401() 显式驱动
HTTPAdapter(pool_connections=..., pool_maxsize=...) 接受但不生效:连接池由 Chromium 拥有
ja3akamaiperkextra_fp 的 TLS/HTTP2 字段 ✗ 显式抛 UnsupportedFeature
cert(客户端证书)、interfacedoh_urlcurl_optionsmax_recv_speed ✗ 显式抛 UnsupportedFeature
referer= / Referer ✗ 显式抛 UnsupportedFeature(Chromium 会剥掉)
持久化 cookie/cache 文件、Curl 低层句柄、CurlOpt/CurlInfo

行为差异(有意为之,不是缺陷):

  • 模块级 chrome_client.get(...) 共用一个进程内 Session,因此也共用连接池和 cookie store。requests 每次新建 Session;这里一个 Session 等于一整个 Chromium URLRequestContext,按次新建会付出线程与内存代价。需要隔离时显式建 Session, 或调用 close_shared_session()
  • session.headers 默认为空。requests 会预置 User-Agent/Accept/ Accept-Encoding/Connection,而这里那些头由 profile 和 Chromium 决定,注入 Accept: */* 会被指纹检测看见。
  • Response.raw 是覆盖 read/stream/close 的文件对象,不是 urllib3 HTTPResponse
  • Response.ok 用 requests 语义(status_code < 400),不是 curl-cffi 的 200–399。

目录与验证

路径 内容
core/abi/ 稳定 C ABI v8
core/binaries/ 8 个已审计平台 Core
crates/minicronet/ Rust 安全层、流和生命周期
bindings/python/ Python 3.7–3.13 绑定与共享 facade
bindings/python36/ Python 3.6 独立 abi3 绑定(共用同一 facade)
bindings/python/tests/ test_stability.py 生命周期与并发;test_compat.py requests/curl-cffi 兼容面
docs/ 构建、平台、ABI、兼容性和审计说明

回归测试需要已审计的 Core:

LD_LIBRARY_PATH=core/binaries/linux-x86_64 PYTHONPATH=bindings/python \
  python -m unittest discover -s bindings/python/tests -p "test_*.py"

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

chrome_client-0.2.2-cp37-abi3-win_arm64.whl (5.2 MB view details)

Uploaded CPython 3.7+Windows ARM64

chrome_client-0.2.2-cp37-abi3-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.7+Windows x86-64

chrome_client-0.2.2-cp37-abi3-win32.whl (5.2 MB view details)

Uploaded CPython 3.7+Windows x86

chrome_client-0.2.2-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ x86-64

chrome_client-0.2.2-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (5.8 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ i686

chrome_client-0.2.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ARM64

chrome_client-0.2.2-cp37-abi3-macosx_13_0_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.7+macOS 13.0+ x86-64

chrome_client-0.2.2-cp37-abi3-macosx_13_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.7+macOS 13.0+ ARM64

chrome_client-0.2.2-cp36-abi3-win_amd64.whl (5.9 MB view details)

Uploaded CPython 3.6+Windows x86-64

chrome_client-0.2.2-cp36-abi3-win32.whl (5.1 MB view details)

Uploaded CPython 3.6+Windows x86

chrome_client-0.2.2-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.6+manylinux: glibc 2.17+ x86-64

chrome_client-0.2.2-cp36-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (5.7 MB view details)

Uploaded CPython 3.6+manylinux: glibc 2.17+ i686

chrome_client-0.2.2-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.6+manylinux: glibc 2.17+ ARM64

chrome_client-0.2.2-cp36-abi3-macosx_13_0_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.6+macOS 13.0+ x86-64

chrome_client-0.2.2-cp36-abi3-macosx_13_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.6+macOS 13.0+ ARM64

File details

Details for the file chrome_client-0.2.2-cp37-abi3-win_arm64.whl.

File metadata

File hashes

Hashes for chrome_client-0.2.2-cp37-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 c3b123eea72cac831c6dfc959ee356686d52f5f794bbcd536fe109dbb23a40d6
MD5 e8a052401dd49601ea78c0496b31c083
BLAKE2b-256 9d3241fd453815e5fcfe3f1c90079bead4792fed753ffcb4c23f16613b30a1f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for chrome_client-0.2.2-cp37-abi3-win_arm64.whl:

Publisher: build-wheels.yml on komAAmok/chrome_client

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

File details

Details for the file chrome_client-0.2.2-cp37-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for chrome_client-0.2.2-cp37-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 df9722ea239d48192fea67efc4eaf838cec6315f117c1c87985d781b6488665b
MD5 7fc077045770e203e789ab4b9f775bac
BLAKE2b-256 a6976dbff669c7bc498912f54470369b65040f9ffd6b76b9d076056c3c00130d

See more details on using hashes here.

Provenance

The following attestation bundles were made for chrome_client-0.2.2-cp37-abi3-win_amd64.whl:

Publisher: build-wheels.yml on komAAmok/chrome_client

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

File details

Details for the file chrome_client-0.2.2-cp37-abi3-win32.whl.

File metadata

  • Download URL: chrome_client-0.2.2-cp37-abi3-win32.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.7+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for chrome_client-0.2.2-cp37-abi3-win32.whl
Algorithm Hash digest
SHA256 d4b44eb0ad8ae91b5c0461def8df1d8bc89c5d93ae5c0e76d447b732cc3e6027
MD5 b85b8e6eea1559b72cbfd04a42e94186
BLAKE2b-256 a17bccd8bcc9a0c8d83cadafedef505b1a0c9cf9a39decf10c8910392fe5d25e

See more details on using hashes here.

Provenance

The following attestation bundles were made for chrome_client-0.2.2-cp37-abi3-win32.whl:

Publisher: build-wheels.yml on komAAmok/chrome_client

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

File details

Details for the file chrome_client-0.2.2-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chrome_client-0.2.2-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d448f5f7273c4af045df252b0c830a18970b89fb4d42953b7587571eee170b3
MD5 b0d07aeecfe80aabd8f863748ecc7838
BLAKE2b-256 d14ba2dc540958f67f2206d147b269f6e44e3928fee0119886326700aca5cf93

See more details on using hashes here.

Provenance

The following attestation bundles were made for chrome_client-0.2.2-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on komAAmok/chrome_client

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

File details

Details for the file chrome_client-0.2.2-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for chrome_client-0.2.2-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 98886587cddac1de33712f3b05d2835edee54b36c347eaad6ee0a1e4cb7c6940
MD5 dbc473ed671c0c65b83e7f179c2427b1
BLAKE2b-256 abc57d91d62ac3f2fd16acd1d45aa627d58695f10c65d32e3afacd9058b79979

See more details on using hashes here.

Provenance

The following attestation bundles were made for chrome_client-0.2.2-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-wheels.yml on komAAmok/chrome_client

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

File details

Details for the file chrome_client-0.2.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chrome_client-0.2.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f81019ba12192d0667bbadd103ecfcc58773d3b1a1903795d1194b4feabb704
MD5 17580146807f0d2acb87fb36af51f973
BLAKE2b-256 5907b93facfe3938974912d99b07c320c647e1d0529630c834fb25debbecdcb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for chrome_client-0.2.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-wheels.yml on komAAmok/chrome_client

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

File details

Details for the file chrome_client-0.2.2-cp37-abi3-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for chrome_client-0.2.2-cp37-abi3-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 6e770b97eb2dc5dc90eb0693c4ed3ae7b0f44f54b06ae772afb2609462397617
MD5 047f293a69987ee4185387a9ba04d573
BLAKE2b-256 85f7306bce4ae6bdbefdf72ca0f30e9151f7b7498be0b7cf29db66fac053bd73

See more details on using hashes here.

Provenance

The following attestation bundles were made for chrome_client-0.2.2-cp37-abi3-macosx_13_0_x86_64.whl:

Publisher: build-wheels.yml on komAAmok/chrome_client

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

File details

Details for the file chrome_client-0.2.2-cp37-abi3-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for chrome_client-0.2.2-cp37-abi3-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 320b3e35cb2ee5fd09e3f53b33a2bd3f7ce3976a4d3d6bd49505017ed5836233
MD5 d0a3e9c134bb6bdcafd61fa5b03f8c4c
BLAKE2b-256 eb6a0782b3d812dc39c2f9aafb2168a9f8c1a3e159bb926f5ef4e474b768d3e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for chrome_client-0.2.2-cp37-abi3-macosx_13_0_arm64.whl:

Publisher: build-wheels.yml on komAAmok/chrome_client

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

File details

Details for the file chrome_client-0.2.2-cp36-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for chrome_client-0.2.2-cp36-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 bda7f9bc0c25fa38eca832c28ee00a83abb7dd4d2f476d579740b57d0672f96f
MD5 0ba451ce632459028825643f3b2fac7e
BLAKE2b-256 13cd656182a2ea8e628d291212dbf2e9c6c18f5a428aa5e1cdfd23828928bbef

See more details on using hashes here.

Provenance

The following attestation bundles were made for chrome_client-0.2.2-cp36-abi3-win_amd64.whl:

Publisher: build-wheels.yml on komAAmok/chrome_client

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

File details

Details for the file chrome_client-0.2.2-cp36-abi3-win32.whl.

File metadata

  • Download URL: chrome_client-0.2.2-cp36-abi3-win32.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.6+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for chrome_client-0.2.2-cp36-abi3-win32.whl
Algorithm Hash digest
SHA256 733c8b7576c8e6dfc48f51fc60bb19e72f7ce7e01aefafa25303d40d0148fa32
MD5 98eaa3f562f9973f3ec4df61f712db1b
BLAKE2b-256 25dc13e6875c3cd1572158313844b6a05a66cde7871fe6f4d10f36295badd666

See more details on using hashes here.

Provenance

The following attestation bundles were made for chrome_client-0.2.2-cp36-abi3-win32.whl:

Publisher: build-wheels.yml on komAAmok/chrome_client

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

File details

Details for the file chrome_client-0.2.2-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chrome_client-0.2.2-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 273c3562709509827220f229f6023dedce456b545c76db0f25235231a521c691
MD5 8bac492652e677f62945e4fcca4c3ee8
BLAKE2b-256 745b9cf5295bc34c462eaddaaceb3a1c5c80201cba9aba33cb69f20dec642fdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for chrome_client-0.2.2-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on komAAmok/chrome_client

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

File details

Details for the file chrome_client-0.2.2-cp36-abi3-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for chrome_client-0.2.2-cp36-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9de876b5e40b8a973d2ec1d1f92b0bb8d4b84aef705fa76e6f4d24f30c958743
MD5 705f9c920ab23200f5d73dabaa34ebb4
BLAKE2b-256 806cdfb2a18d2f88a9fcdf43e42f05db99c55fad0b6f5386807bd7a3c1fd6e5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for chrome_client-0.2.2-cp36-abi3-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-wheels.yml on komAAmok/chrome_client

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

File details

Details for the file chrome_client-0.2.2-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chrome_client-0.2.2-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0b1cde9a2fa333f02d05ed0afc9f2e9ca6c02fba7e45dc8be31dee733042dd3
MD5 fec31a36b4da0a427e00448924d12253
BLAKE2b-256 eb0b449457660f68e4d1c6b5657e77b633440532945acbd30812fc30238e50d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for chrome_client-0.2.2-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-wheels.yml on komAAmok/chrome_client

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

File details

Details for the file chrome_client-0.2.2-cp36-abi3-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for chrome_client-0.2.2-cp36-abi3-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 f5e7da2719a48b910fe692929d593246fca2df891ca51ede40af51f087e5a508
MD5 6af7742864af107a3d3e6b85aa8bf70c
BLAKE2b-256 31cc6c512e89a86f03d988e38a2340e8ab71a5f5d3b52191a704830abd6cb238

See more details on using hashes here.

Provenance

The following attestation bundles were made for chrome_client-0.2.2-cp36-abi3-macosx_13_0_x86_64.whl:

Publisher: build-wheels.yml on komAAmok/chrome_client

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

File details

Details for the file chrome_client-0.2.2-cp36-abi3-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for chrome_client-0.2.2-cp36-abi3-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 69a19f25197e7b1b812c2434e6330db58913abac7572c0c5eaf55c4ef7530564
MD5 af9981e27f9d1345053d067af2b57605
BLAKE2b-256 a11dd20dd9d6096576de520480062c621daab763b59a74386d55fbe67ea04a8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for chrome_client-0.2.2-cp36-abi3-macosx_13_0_arm64.whl:

Publisher: build-wheels.yml on komAAmok/chrome_client

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

Release history Release notifications | RSS feed

0.2.4

15 files

0.2.3

15 files

This release

0.2.2 This release

15 files

0.2.1.1

15 files

0.2.1

15 files

0.2.0

15 files

0.1.9.2

4 files

0.1.9.1

4 files

0.1.9

4 files

0.1.8.1

4 files

0.1.8

4 files

0.1.7

4 files

0.1.6

4 files

0.1.5

4 files

0.1.4

4 files

0.1.3

4 files

0.1.2

4 files

0.1.1

4 files

0.1.0

4 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