cborx
CBOR (RFC 8949) encoder/decoder for Python. Zero runtime dependencies.
A hardened, fully typed replacement for cbor2. Wheels ship an optional Cython accelerator that outperforms cbor2's native extension on encode and most decode workloads, and every install falls back to a portable pure-Python implementation with identical behavior. The accelerator is CPython-only, declares free-threading support, and stays off PyPy, where the JIT-optimized pure path is the right backend. The decoder is iterative, bounds every claimed length against the remaining input, and enforces a configurable nesting limit, so hostile input fails fast instead of exhausting memory or the call stack.
Install
pip install cborx
Usage
import cborx
data = cborx.dumps({"a": [1, 2, 3], "b": None})
assert cborx.loads(data) == {"a": [1, 2, 3], "b": None}
# Deterministic encoding: shortest-form integers and floats, map keys
# sorted by encoded key bytes (RFC 8949 section 4.2).
canonical = cborx.dumps({"b": 1, "a": 2}, canonical=True)
# Strict canonical validation on decode, duplicate-key policy, depth
# and indefinite-length controls.
cborx.loads(data, canonical=True, duplicate_keys="error", max_depth=100)
# Unhandled semantic tags round-trip as CBORTag. A tag_hook overrides
# all built-in tag handling.
cborx.loads(b"\xd8\x2a\x01", tag_hook=lambda decoder, tag: (tag.tag, tag.value))
assert cborx.loads(cborx.dumps(cborx.CBORTag(42, "x"))) == cborx.CBORTag(42, "x")
# A default callback handles otherwise unencodable objects, like cbor2.
cborx.dumps(object(), default=lambda encoder, obj: {"type": type(obj).__name__})
# Simple values and the undefined sentinel.
assert cborx.loads(b"\xf7") is cborx.undefined
assert cborx.loads(b"\xf0") == cborx.CBORSimpleValue(16)
Built-in semantic tags: 0 (ISO 8601 datetime), 1 (epoch datetime), 2/3 (bignum integers beyond the 64-bit range), 32 (URI, decoded to a plain str since Python has no URI scalar), 1004 (calendar date) and 55799 (self-described CBOR, passed through). All other tags decode to CBORTag. See RFC 8949: https://www.rfc-editor.org/rfc/rfc8949
Development
uv sync --group dev
make check
License: 0BSD. Quad4 Software, https://quad4.io
Release files for cborx 0.2.4
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| cborx-0.2.4.tar.gz | 167.2 kB | Details |
Built distributions (wheels)
Total release size: 23.6 MB
Release files / cborx-0.2.4.tar.gz
| Download URL | cborx-0.2.4.tar.gz |
|---|---|
| Size | 167.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
add593cf344b0845f99a0783c1a43e5d9b27c85514e7ab541e31e46e4941b66d
|
|
BLAKE2b-256 checksum How to use checksums |
4e22d90352c8fa1c3a9a68807d3226135d33569ea53adeb5fb1a849f7531e745
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp315-cp315t-win_arm64.whl
| Download URL | cborx-0.2.4-cp315-cp315t-win_arm64.whl |
|---|---|
| Size | 199.6 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Windows ARM64 |
|
SHA-256 checksum How to use checksums |
769a9f4910fa89077f57921c7242cbfcef684af4ab150834a93bc30d646ee72d
|
|
BLAKE2b-256 checksum How to use checksums |
45f8601f949168a223ab3873c6808bf9f94407918f04351d73065e70577170af
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp315-cp315t-win_amd64.whl
| Download URL | cborx-0.2.4-cp315-cp315t-win_amd64.whl |
|---|---|
| Size | 204.6 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Windows x86-64 |
|
SHA-256 checksum How to use checksums |
edd776b0cb5845b5cc95bc27c1ddb6e0cf24737777a820cab2dc09ff5d483106
|
|
BLAKE2b-256 checksum How to use checksums |
439f280cb9ab84a9f8131d8d0eb08a27989cfa7adc32ee4abb55600775503756
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp315-cp315t-musllinux_1_2_x86_64.whl
| Download URL | cborx-0.2.4-cp315-cp315t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 561.3 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
3f431d4568aed2331989279bd2bde3d1f3b680b676d6a847121785a66d9573ab
|
|
BLAKE2b-256 checksum How to use checksums |
8eed2c530be92f364e326189c27b4242436524b3b510b0408236765371c5d93f
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp315-cp315t-musllinux_1_2_aarch64.whl
| Download URL | cborx-0.2.4-cp315-cp315t-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 542.2 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
189371fa0f7d42654c9a5818f2a40734e32954faeb6cad379ff4950de1033d85
|
|
BLAKE2b-256 checksum How to use checksums |
11a6af052d407d00633a0ece01e13434d7397224911fa2f691d657bcfa4e903d
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | cborx-0.2.4-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 560.3 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
e37193e28b286d78e9ff149d901a478a7f22012b8aff2771f3b035139981ac0d
|
|
BLAKE2b-256 checksum How to use checksums |
00497d70bffd6bf2c747609860f22cf6dc6d0efd991d460119ac08663aaa4256
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | cborx-0.2.4-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 552.4 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
e812f999d0604eb6d75c2ac4072f06bb4ecca26c6004b06a8dc4314e35dc972a
|
|
BLAKE2b-256 checksum How to use checksums |
a346db52f022d0e8000946089507d8d404c251dda64719722c94a55ec5fa10d7
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp315-cp315t-macosx_11_0_arm64.whl
| Download URL | cborx-0.2.4-cp315-cp315t-macosx_11_0_arm64.whl |
|---|---|
| Size | 212.0 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
90d83891f41c9e9fe8327ec8a15711720a0ccb5ff995ed0aaa7ebdefeaa638ca
|
|
BLAKE2b-256 checksum How to use checksums |
e04dd3c56e93eac4dd593ee9bc679fa624fe3ef28d2b5547c995d09136eb7241
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp315-cp315t-macosx_10_15_x86_64.whl
| Download URL | cborx-0.2.4-cp315-cp315t-macosx_10_15_x86_64.whl |
|---|---|
| Size | 209.9 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
98d3bb00f2288cb0606b86743f09c46945f44ed27e5a19d71858f9ad49d9d740
|
|
BLAKE2b-256 checksum How to use checksums |
f811da7adbc9a6085584304f8945f355454e5ee0b3650faef31684dbe162c07a
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp315-cp315-win_arm64.whl
| Download URL | cborx-0.2.4-cp315-cp315-win_arm64.whl |
|---|---|
| Size | 196.6 kB |
| Tags | CPython 3.15 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
129e9268e23e32cc9faf42c6ff14ec247049c832cdc6d436693c0cc6cc4cd621
|
|
BLAKE2b-256 checksum How to use checksums |
dedb09c7be2c27558a47e5173f60513ce3d7b376814204dc871e7ad0ecb461f8
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp315-cp315-win_amd64.whl
| Download URL | cborx-0.2.4-cp315-cp315-win_amd64.whl |
|---|---|
| Size | 200.9 kB |
| Tags | CPython 3.15 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
9c93ca921be703b9dd38cf7f34fb655b90344a8166433a0c659e19cbf5c0afb9
|
|
BLAKE2b-256 checksum How to use checksums |
1d4f69bca4ede82482348e6a90497df878a0fb343c5d6c80363f079354a7d4ea
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp315-cp315-musllinux_1_2_x86_64.whl
| Download URL | cborx-0.2.4-cp315-cp315-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 529.1 kB |
| Tags | CPython 3.15 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
b70cca7d5c61ec9d3863d501a6c178f3d784b1480845957f209d69716d352f9b
|
|
BLAKE2b-256 checksum How to use checksums |
f1c849afcf36410bc78ab6dc2ee513f5b26f51efcf032837bdee9ef9f87930fa
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp315-cp315-musllinux_1_2_aarch64.whl
| Download URL | cborx-0.2.4-cp315-cp315-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 514.3 kB |
| Tags | CPython 3.15 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
28dc942603616ce63f855113117bd03d7d4d64949f878b31a48c61445fa62901
|
|
BLAKE2b-256 checksum How to use checksums |
4b146483c912f40b78d111867549448d583e9744d4d64856d432f1330c8d69cd
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | cborx-0.2.4-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 528.4 kB |
| Tags | CPython 3.15 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
fd662604ab1648525ec7d6aef9f9d14463110515d5a14551532be31b7ec0e307
|
|
BLAKE2b-256 checksum How to use checksums |
f65b5b73d2b2913e8e5f5fa39617d61760e9ddfc2ad18034d9afc43a27c43339
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | cborx-0.2.4-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 519.3 kB |
| Tags | CPython 3.15 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
368352e4556ed68de441af6cf4557172a956c404ad34bdcaa7984911a0262b11
|
|
BLAKE2b-256 checksum How to use checksums |
bf695d8f5d8bbcb9e5a50860f4d97458b9c4fc8a9b51cfac841ec2029b317db5
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp315-cp315-macosx_11_0_arm64.whl
| Download URL | cborx-0.2.4-cp315-cp315-macosx_11_0_arm64.whl |
|---|---|
| Size | 207.0 kB |
| Tags | CPython 3.15 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
52c76e7da5b712e4618fc7823abd12a1f5df7e593bb98de3ac9aee74f90da1e0
|
|
BLAKE2b-256 checksum How to use checksums |
37cf7644056e3bda9416af779bdfff994bbeba0879cd26000568892ae49bd0a7
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp315-cp315-macosx_10_15_x86_64.whl
| Download URL | cborx-0.2.4-cp315-cp315-macosx_10_15_x86_64.whl |
|---|---|
| Size | 208.3 kB |
| Tags | CPython 3.15 macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
3adc3873beb1a3ffb013ddfd4cb545643b13114558080666d4390377c66ae23f
|
|
BLAKE2b-256 checksum How to use checksums |
b43193cdfd59e1aa5a3b2662524aaafa249f64f8b6213e270a231a9f1e6b2071
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp314-cp314t-win_arm64.whl
| Download URL | cborx-0.2.4-cp314-cp314t-win_arm64.whl |
|---|---|
| Size | 200.1 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows ARM64 |
|
SHA-256 checksum How to use checksums |
812780abc11a156937b5662c5967903e74d3d3461f131d8e9bb43f278f27714a
|
|
BLAKE2b-256 checksum How to use checksums |
c9a23d017e2a97c3fc0fdff900f710d881b51b4b889d98af57e82eeea6af3619
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp314-cp314t-win_amd64.whl
| Download URL | cborx-0.2.4-cp314-cp314t-win_amd64.whl |
|---|---|
| Size | 205.0 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows x86-64 |
|
SHA-256 checksum How to use checksums |
c748c2bad3a6e90b82470b1c3fc33e367e66419c216ced0f615d57081212eafa
|
|
BLAKE2b-256 checksum How to use checksums |
fc04402c3365ddf0798708d9d0464b733a3e01f1205191abb82d9133e35d55ee
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl
| Download URL | cborx-0.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 559.7 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
b0f9fd5391d03b56c8550a570b9eff957dc0cc8ceedb49b7069204432e9308de
|
|
BLAKE2b-256 checksum How to use checksums |
33c35f417041280964bb964bf5d5819757a447c1d97d5738d98c00bf7ecdf4fe
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl
| Download URL | cborx-0.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 543.3 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
8dd3d252843ebf0c2a9f63d48e808d463873cc245172cb519d35b3854233e8c8
|
|
BLAKE2b-256 checksum How to use checksums |
0f231726003e89fe8ca8d9f1d3d6402a38d3890415ee29d5957f067cdbce60bc
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | cborx-0.2.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 559.2 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
71756e9acd4c7cc47feec41ca7cf535b4bb6c8d57ca32b16fb909195e2f54525
|
|
BLAKE2b-256 checksum How to use checksums |
87463629b5fc4884d8b6387f30d7d8536c137e8f1d176cf4fac9c026222bb3b3
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | cborx-0.2.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 554.4 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
47facd9d9dc4314800674212be9616c52f403d471032e54d6a21ae092f7fc610
|
|
BLAKE2b-256 checksum How to use checksums |
99af898377c5fa91ad6067274c5f31b50dd405aebcb0dde329298c56382db6e0
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp314-cp314t-macosx_11_0_arm64.whl
| Download URL | cborx-0.2.4-cp314-cp314t-macosx_11_0_arm64.whl |
|---|---|
| Size | 212.2 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
95d0e3655bc65f405c8594084676dfeaf92051719c5a03005f41d3bd79f0a945
|
|
BLAKE2b-256 checksum How to use checksums |
6ea17ac248988265c6bbbb50f3ea78ff5fe3475e9cb1b5ffe80219cb4f48dd29
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp314-cp314t-macosx_10_15_x86_64.whl
| Download URL | cborx-0.2.4-cp314-cp314t-macosx_10_15_x86_64.whl |
|---|---|
| Size | 210.4 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
1ee9be1562795528e8078e21716f43820c6fed258e048f7cf99b89f666b63226
|
|
BLAKE2b-256 checksum How to use checksums |
fddda48f12c2f39f85430305eace2534d236b50fe7e6f5ee40504fc9731ab969
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp314-cp314-win_arm64.whl
| Download URL | cborx-0.2.4-cp314-cp314-win_arm64.whl |
|---|---|
| Size | 196.5 kB |
| Tags | CPython 3.14 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
b133089cb2a7492b240652cc683dcd66635f9e4172bae69aa131a4f9075e213d
|
|
BLAKE2b-256 checksum How to use checksums |
d83a6ff210d3dd035d693cf6d5b6e0480df1ad90305a0b87cfc8524d29886498
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp314-cp314-win_amd64.whl
| Download URL | cborx-0.2.4-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 201.0 kB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
c3b4ea709b32c31a3bdc4b4135b0836907c42ed434197a80ba647dcc5532256d
|
|
BLAKE2b-256 checksum How to use checksums |
b215a9a0ec1d9f1180fc90d8a797df31e220c4e9584b245b4ee0b1e82fdad75f
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp314-cp314-musllinux_1_2_x86_64.whl
| Download URL | cborx-0.2.4-cp314-cp314-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 529.9 kB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
2a3d95a998dfde4397cc4d0215ce7a00256843ce8eac26a6bcd83f46673c82a9
|
|
BLAKE2b-256 checksum How to use checksums |
f9f24941e6a1c32450021df2300ae015e89ad9b0101a969e7c8ce03adec0d3ff
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp314-cp314-musllinux_1_2_aarch64.whl
| Download URL | cborx-0.2.4-cp314-cp314-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 514.0 kB |
| Tags | CPython 3.14 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
94555e20b3b4b22d8727d0a17122c56f92638ee45c6236c520648b64d9287b38
|
|
BLAKE2b-256 checksum How to use checksums |
ec6bcb8510941c660ff3bcd1d235c73f67a73c21fe689872305a281048a69496
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | cborx-0.2.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 530.1 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
35b733fa103b2ce1d79f4630d9acca259c5fd92a870558c6a2ab0576b271a11c
|
|
BLAKE2b-256 checksum How to use checksums |
2fe51887c5d9215c93e36e12ca08a6effd4e2239de624212dd5e411e78cc8bb7
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | cborx-0.2.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 519.0 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
e409d5d30ea682b9b4f7828754c9a41408b6031590b0e795244a99c5d10cb3df
|
|
BLAKE2b-256 checksum How to use checksums |
fed7fd5ea80f5b3adc5c533b490d6998c7babcbc5b77aada29aab156600dfacb
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | cborx-0.2.4-cp314-cp314-macosx_11_0_arm64.whl |
|---|---|
| Size | 207.2 kB |
| Tags | CPython 3.14 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
bd291e9350c993f61b0fefaacedc66a5a3ad831ab10f2807214931200dd6c5a5
|
|
BLAKE2b-256 checksum How to use checksums |
b8e6a1138745bf72d9f3a96b9cb7e1741195b3bcef12b60d6c52dab7931182a6
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp314-cp314-macosx_10_15_x86_64.whl
| Download URL | cborx-0.2.4-cp314-cp314-macosx_10_15_x86_64.whl |
|---|---|
| Size | 208.3 kB |
| Tags | CPython 3.14 macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
37d754e618a43590a8e142fb2ce25c07a596b552ad69d5d566afc2a3b8ee72c2
|
|
BLAKE2b-256 checksum How to use checksums |
f16660a71a11e9e650ef5f1812600b5a61fbb95533d9de2b6eba65b674378947
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp313-cp313-win_arm64.whl
| Download URL | cborx-0.2.4-cp313-cp313-win_arm64.whl |
|---|---|
| Size | 196.0 kB |
| Tags | CPython 3.13 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
7090d6d390993e7b88ab96d6b8b1575264d4736191453e1339c7b540a0818dbc
|
|
BLAKE2b-256 checksum How to use checksums |
b7f521ffcfa684deb5a7e3691c2288c7be6ae12d8115c685dbec4e55015a7dfe
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp313-cp313-win_amd64.whl
| Download URL | cborx-0.2.4-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 200.9 kB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
9ee8b065e9d21a86b38dfdcb97788c87326947f6f48c969a769d83279c9f621f
|
|
BLAKE2b-256 checksum How to use checksums |
e68187725dd0e2879fe0708495f966cf42448bc2cd0296438d4583893d3daf3c
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | cborx-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 534.3 kB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
a41f5c44a7bab8fdb08c66cf03bc0a7bd2ffddb9a564757b457c47f3345c7275
|
|
BLAKE2b-256 checksum How to use checksums |
6e514fa701a86b822525dd6b61ca1e7fbf03b7d7849c4a21c6365a22b1bffc95
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp313-cp313-musllinux_1_2_aarch64.whl
| Download URL | cborx-0.2.4-cp313-cp313-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 516.4 kB |
| Tags | CPython 3.13 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
7ef2b07463fa1141457c51f774a5022d54699e80c2f202a3abf0c6ca68a9d4fe
|
|
BLAKE2b-256 checksum How to use checksums |
86d992959e69323ce62103b9c59ffdea50d1bbfd3a21fc4e3bec37d346564b94
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | cborx-0.2.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 536.4 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
00dee793f26a971ae15f571e773e041eaceb1faa58aa2d90f5547a02b43b0d6b
|
|
BLAKE2b-256 checksum How to use checksums |
78dd4d47f8bda237ac2d5b6833d2d17fce01a02a908604aacac66280da49a8ac
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | cborx-0.2.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 521.8 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
3cce88948dbe4defd72675172acf3186e7a9833bcac6c5f65a83bd491afddc33
|
|
BLAKE2b-256 checksum How to use checksums |
8ee4a4343c914a0fee1c9d16c88cd52e9cf12f95c73d376e46f5f99eb940c7da
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | cborx-0.2.4-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 206.9 kB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
854155c07454e5579648dede6c73662ef1939c63615fd2ce36023b8ec89c34f6
|
|
BLAKE2b-256 checksum How to use checksums |
dd344e84837ce5b64ca0a8afe2d381acf6e6e731d38249ffbfac8eff6e24d3c9
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp313-cp313-macosx_10_13_x86_64.whl
| Download URL | cborx-0.2.4-cp313-cp313-macosx_10_13_x86_64.whl |
|---|---|
| Size | 207.8 kB |
| Tags | CPython 3.13 macOS 10.13+ x86-64 |
|
SHA-256 checksum How to use checksums |
88f1fa2ebb12e7803dcf678d63e89c73fadaa4595a85b60ab09ffcbff0790918
|
|
BLAKE2b-256 checksum How to use checksums |
bae77c1d718b5cb44e500e95f4eb46bd81980f18754b350a8b6b7cc1b635cace
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp312-cp312-win_arm64.whl
| Download URL | cborx-0.2.4-cp312-cp312-win_arm64.whl |
|---|---|
| Size | 196.1 kB |
| Tags | CPython 3.12 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
d7b70313d84a2a3808702f9ffa562de9beaf5af6844c0766c4400849df8886ba
|
|
BLAKE2b-256 checksum How to use checksums |
d81fb84976433111a3bbfae5855f72d10dba5a64e9bc3f0d7af0d1d6ea874451
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp312-cp312-win_amd64.whl
| Download URL | cborx-0.2.4-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 201.0 kB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
f717777a2f7cdb9434710d4aa838a0f9f5330bdc3c7142dc13c6142125471f8b
|
|
BLAKE2b-256 checksum How to use checksums |
c123f81f514bbcd8089330f367135c26aaca65a4fa654d170b8534b07dfde211
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | cborx-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 535.7 kB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
b3a29166553bfc56676d5248ca10d5d62aa8697dc5872f46e6aa8f02757b296e
|
|
BLAKE2b-256 checksum How to use checksums |
5cb926d3abce82a6c9654e3113c730d2609c56ef1d673a45a262205953a80d6d
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl
| Download URL | cborx-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 520.8 kB |
| Tags | CPython 3.12 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
49427a2d2d5f5a0decec4e73886f9605c3fe9c7473541b18216cc839570bd6fa
|
|
BLAKE2b-256 checksum How to use checksums |
b51e7523909badfa3d3e2286e2a58ac3712810b23ffcfdf13bd1cc907e903759
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | cborx-0.2.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 540.9 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
443191fbdccb3fd6b7d5be53afcdb3a09d7658dce219c979a6634651ec4fd949
|
|
BLAKE2b-256 checksum How to use checksums |
4d2e1521f4856ba3b7a17c51789203ef24fcd1950707fe1c147eabb78cfa28e0
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | cborx-0.2.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 525.9 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
cb1c94de3aff59e5a20492d8874915bfb081cf1bcdb939e582c923254c03d0c6
|
|
BLAKE2b-256 checksum How to use checksums |
63c241b31022a0a0b202d514eabba767e9507a347a9d9c88486d33256545ca5d
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | cborx-0.2.4-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 207.0 kB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
0158092fd6cde240fd22d25a1a349fc5ff1e63e52eb5653ebf26891cd856870d
|
|
BLAKE2b-256 checksum How to use checksums |
f154c841a912397b19d6fbcc06f4bf45ef4f0d5ec3039a21053e6303c28e1aaf
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp312-cp312-macosx_10_13_x86_64.whl
| Download URL | cborx-0.2.4-cp312-cp312-macosx_10_13_x86_64.whl |
|---|---|
| Size | 207.8 kB |
| Tags | CPython 3.12 macOS 10.13+ x86-64 |
|
SHA-256 checksum How to use checksums |
473424a11e09e2b7268618d14379fb85ef93983acbe4f8c1591c77a90db2e590
|
|
BLAKE2b-256 checksum How to use checksums |
1ccd7ed8c158f478b6bc2cb017d85fd5c3319808221b4cff8764a2e0b42f5b05
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp311-cp311-win_arm64.whl
| Download URL | cborx-0.2.4-cp311-cp311-win_arm64.whl |
|---|---|
| Size | 197.0 kB |
| Tags | CPython 3.11 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
50bb9d7f36e9a4a09d94fa481a655abc347c31cccd5fd255b326be67a8261455
|
|
BLAKE2b-256 checksum How to use checksums |
5834228b720a14c8c42061a74393d75b35eaef5fef3f602d869c88966acffa7a
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp311-cp311-win_amd64.whl
| Download URL | cborx-0.2.4-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 201.6 kB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
998cee0e2af6a027d86b647809f2d5a507f995be54bea5cb70eeddf60353a6a2
|
|
BLAKE2b-256 checksum How to use checksums |
be01d90e5738c0ac343f373e90344b5e65f3204dea03b50b61cb2e8e23445e45
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | cborx-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 545.1 kB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
53338780471e76a1b09e99dfb1cc04a35bdf86920ee0616421b12ff7272bac3c
|
|
BLAKE2b-256 checksum How to use checksums |
decf17e4cdd5355b3ca5de13557917e76b103ba15abec7a6bc34871e60de7818
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl
| Download URL | cborx-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 528.1 kB |
| Tags | CPython 3.11 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
f0ee153025f11e397a1659cae08fb7c51d2a265c161e3462c8520cbd570dcee1
|
|
BLAKE2b-256 checksum How to use checksums |
70ee73155871849adcd4c649a7aff1090ba05944df094d5ac518cf04a1636b6b
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | cborx-0.2.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 544.1 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
ef94c26de312d5f321393c04d1f51d82c9ec43088787d0de371f29ca08fec66a
|
|
BLAKE2b-256 checksum How to use checksums |
d7bd38aebf22f639131613fb131cca3fa4db2dd45efb8c7c6ca54ac2eb8fcb33
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | cborx-0.2.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 531.0 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
fa56d9e07c6e428a6cae4c1f3c4edd009225654ecdb5aaf6417c236f4c64b1a1
|
|
BLAKE2b-256 checksum How to use checksums |
efa351453a4e3f9f9048885d1a98e9c0e926680f0c9e37dad7236b209811ea89
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | cborx-0.2.4-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 207.7 kB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
44c990e582c8c0fda5d6900f72d86d6adb0b53bf94494df4570d14cedc4a5dae
|
|
BLAKE2b-256 checksum How to use checksums |
9731f95deb82c1bc77bfdb41c17e4fe3046cfef14a027eaefcc7ee5430875a18
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | cborx-0.2.4-cp311-cp311-macosx_10_9_x86_64.whl |
|---|---|
| Size | 209.5 kB |
| Tags | CPython 3.11 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
66b15512cd36be40017a5e7b6e0766e4e509ecaece4c5456438f017c42a13efb
|
|
BLAKE2b-256 checksum How to use checksums |
7845e60233cb7d3ac712cc3fcd7e0685851c39bdaf021292a3bdcf2404011038
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp310-cp310-win_amd64.whl
| Download URL | cborx-0.2.4-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 202.1 kB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
0d5819e09e2e9407a77889a88996e8556ce90d9dcfe9ea01a6b41743c5d83fe7
|
|
BLAKE2b-256 checksum How to use checksums |
7c25a4d9e9253214685cbcffc9277d2549e6cd38a6ae1f88856d0c4f67a919cb
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl
| Download URL | cborx-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 526.0 kB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
4fc9a7b2de652aaa6a0be05ebb68d9be8a884c1b095920254bd0043f76fb1b95
|
|
BLAKE2b-256 checksum How to use checksums |
e23a79cb36d098fb365f337f2a49b215a0f1c8699cedb72ba826a0d1f5671195
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl
| Download URL | cborx-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 510.9 kB |
| Tags | CPython 3.10 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
aeba0c172420d4477308474215c673b708ef622e36de0703b1a1190d7aa66456
|
|
BLAKE2b-256 checksum How to use checksums |
afc11bf494c216044717936f33c8341e4c6b1dd98735d1595d07c287b2257952
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | cborx-0.2.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 526.3 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
0752dee4386a69f3482b31198e78228378879d20ba8fd3c34b4b922c53cbf777
|
|
BLAKE2b-256 checksum How to use checksums |
da8f97cc81acfb7e294099296be134204c36db7b1dc40ad77af00d10407008f7
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | cborx-0.2.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 514.0 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
a3291bf0f8ff07c8ba1135a821197ad9420330dd55e82b60e219ef6a6d0cba82
|
|
BLAKE2b-256 checksum How to use checksums |
8a557ade3f0a4a88a9cd64e667ca9d6845ce314d37f40fd3d356e8a969eca1d3
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | cborx-0.2.4-cp310-cp310-macosx_11_0_arm64.whl |
|---|---|
| Size | 208.2 kB |
| Tags | CPython 3.10 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
eb69fe4f2fc0c6a95941cdecb25d6419c8be4bd4dc249053d9777119cc9a2464
|
|
BLAKE2b-256 checksum How to use checksums |
851755bbbe5c6d8c87ce9b7bc13cfb8876e89c0c5d5b1c4e77c6cdd5af126d51
|
| 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 Sep 23, 2026.
Transparency logRelease files / cborx-0.2.4-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | cborx-0.2.4-cp310-cp310-macosx_10_9_x86_64.whl |
|---|---|
| Size | 209.8 kB |
| Tags | CPython 3.10 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
ceb99ba929c86f0a9635a3763ef995ecedd5483602c89e0e08cfb14a4dbb1b1e
|
|
BLAKE2b-256 checksum How to use checksums |
912a22cdc1bd833688ffb5ea7825831f76485afc0e1da81136ba3da25a77aafc
|
| 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 Sep 23, 2026.
Transparency log