Skip to main content

cborx

CI CodeQL OpenSSF Scorecard PyPI License: 0BSD

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.5

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

Source distribution (sdist)

Source distribution for cborx 0.2.5
File Size Uploaded
cborx-0.2.5.tar.gz 176.6 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for cborx 0.2.5
File
cborx-0.2.5-cp315-cp315t-win_arm64.whl CPython 3.15 CPython 3.15 free-threading Windows ARM64 Details
cborx-0.2.5-cp315-cp315t-win_amd64.whl CPython 3.15 CPython 3.15 free-threading Windows x86-64 Details
cborx-0.2.5-cp315-cp315t-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64 Details
cborx-0.2.5-cp315-cp315t-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64 Details
cborx-0.2.5-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
cborx-0.2.5-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
cborx-0.2.5-cp315-cp315t-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64 Details
cborx-0.2.5-cp315-cp315t-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64 Details
cborx-0.2.5-cp315-cp315-win_arm64.whl CPython 3.15 CPython 3.15 Windows ARM64 Details
cborx-0.2.5-cp315-cp315-win_amd64.whl CPython 3.15 CPython 3.15 Windows x86-64 Details
cborx-0.2.5-cp315-cp315-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ x86-64 Details
cborx-0.2.5-cp315-cp315-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ ARM64 Details
cborx-0.2.5-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
cborx-0.2.5-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
cborx-0.2.5-cp315-cp315-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 macOS 11.0+ ARM64 Details
cborx-0.2.5-cp315-cp315-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 macOS 10.15+ x86-64 Details
cborx-0.2.5-cp314-cp314t-win_arm64.whl CPython 3.14 CPython 3.14 free-threading Windows ARM64 Details
cborx-0.2.5-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
cborx-0.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
cborx-0.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
cborx-0.2.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
cborx-0.2.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
cborx-0.2.5-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
cborx-0.2.5-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
cborx-0.2.5-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
cborx-0.2.5-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
cborx-0.2.5-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
cborx-0.2.5-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
cborx-0.2.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
cborx-0.2.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
cborx-0.2.5-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
cborx-0.2.5-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
cborx-0.2.5-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
cborx-0.2.5-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
cborx-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
cborx-0.2.5-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
cborx-0.2.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
cborx-0.2.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
cborx-0.2.5-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
cborx-0.2.5-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
cborx-0.2.5-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
cborx-0.2.5-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
cborx-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
cborx-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
cborx-0.2.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
cborx-0.2.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
cborx-0.2.5-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
cborx-0.2.5-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
cborx-0.2.5-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
cborx-0.2.5-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
cborx-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
cborx-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
cborx-0.2.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
cborx-0.2.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
cborx-0.2.5-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
cborx-0.2.5-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
cborx-0.2.5-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
cborx-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
cborx-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
cborx-0.2.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
cborx-0.2.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
cborx-0.2.5-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
cborx-0.2.5-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details

Total release size: 25.1 MB

Release files / cborx-0.2.5.tar.gz

Download URL cborx-0.2.5.tar.gz
Size 176.6 kB
Tags Source
SHA-256 checksum
How to use checksums
2082185b1fbfe1497994379ce86ce5314d3fa7bfa5172c30adcc8aae0bb4d62d
BLAKE2b-256 checksum
How to use checksums
0fc3febf6a229801e47d3fad4166c97c9c0f09fc2306adbb86c1affb974062d6
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp315-cp315t-win_arm64.whl

Download URL cborx-0.2.5-cp315-cp315t-win_arm64.whl
Size 210.5 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
d2f4fe702be649d3b1b9fb83b17fff308c4face31afbde8542120f329877d2b5
BLAKE2b-256 checksum
How to use checksums
3b126456dac7c01192d025d9dbcbca6f092b467128067f248c28b0f415f19756
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp315-cp315t-win_amd64.whl

Download URL cborx-0.2.5-cp315-cp315t-win_amd64.whl
Size 215.8 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
68be01ec02b2822f5b6af33a0fa60178eaa4c7d689cf02c45499dcc503a8fab8
BLAKE2b-256 checksum
How to use checksums
11a4b26d4f2fa7a9dd70f84c63d0257190f51a0d90b097816d3140301c9ac864
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp315-cp315t-musllinux_1_2_x86_64.whl

Download URL cborx-0.2.5-cp315-cp315t-musllinux_1_2_x86_64.whl
Size 597.3 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
270990e7abc64d503d0a0f8ddc28dd05110d31dfbbfdd6005b12382032ed1456
BLAKE2b-256 checksum
How to use checksums
cc217cf5f07a1b3c97e822242ca80f8413b511cd2de9f10d3957d8e3c643cdb8
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp315-cp315t-musllinux_1_2_aarch64.whl

Download URL cborx-0.2.5-cp315-cp315t-musllinux_1_2_aarch64.whl
Size 580.1 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
942bea4c2d97983714ca0b9006f85edb0a93e875f151365fce7dadc9b3c5d5cd
BLAKE2b-256 checksum
How to use checksums
999c81e2358298926040c34daf6cb94cad7870d03a6fac1d9814a1fdcd45d7c0
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL cborx-0.2.5-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 602.4 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
da399dfa5c3543ae36a4d85d6284eae08963164179c38fec92cc875f1dc4807b
BLAKE2b-256 checksum
How to use checksums
c24d41a90471125c2a7545e0f2951d2e2d6436c69f81c3bb543c85cf3683066a
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL cborx-0.2.5-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 593.0 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
ef85fb3b8c87a37d674a63253a5681927c847d57c02596583d9d1e6e993434b1
BLAKE2b-256 checksum
How to use checksums
882ee58c30610df504c1eee0b76c1fa2245990a591bf89587dd8cba8d945448b
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp315-cp315t-macosx_11_0_arm64.whl

Download URL cborx-0.2.5-cp315-cp315t-macosx_11_0_arm64.whl
Size 223.8 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fef7f26a86331793c4239caa7095a2950a4981bce02cc8dde73be0da73f5fe05
BLAKE2b-256 checksum
How to use checksums
e20940de4c4e0da8796c5e68f2e754d91e4e6f7780549d0d76524244da0f9d02
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp315-cp315t-macosx_10_15_x86_64.whl

Download URL cborx-0.2.5-cp315-cp315t-macosx_10_15_x86_64.whl
Size 221.8 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
7a46c083e6676dd1e592f1e8ad3977269bfee125e2927689c2187a5a482ed985
BLAKE2b-256 checksum
How to use checksums
0da72ffb65ca6a5f2b95eb753005ab4bf8e7d8048b47f85db750660fa4a4f2d2
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp315-cp315-win_arm64.whl

Download URL cborx-0.2.5-cp315-cp315-win_arm64.whl
Size 207.1 kB
Tags CPython 3.15 Windows ARM64
SHA-256 checksum
How to use checksums
4243e5312446f13191c940571dc2e79e7962a43aee582175e938fee8b5d54d73
BLAKE2b-256 checksum
How to use checksums
1483a4c80e36f3980f058fb13ecdcc5aaaeed4f8f6149218670852e7fbeb97c5
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp315-cp315-win_amd64.whl

Download URL cborx-0.2.5-cp315-cp315-win_amd64.whl
Size 212.1 kB
Tags CPython 3.15 Windows x86-64
SHA-256 checksum
How to use checksums
22a7dc20ebd32cf691d33fd9ffdc146987cc3b18af3d3d37ef99e97154b129c5
BLAKE2b-256 checksum
How to use checksums
5a2c4e83d3bba87b4ced4f70069605a3905a7bc058c21f2bd33d0abefae845a6
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp315-cp315-musllinux_1_2_x86_64.whl

Download URL cborx-0.2.5-cp315-cp315-musllinux_1_2_x86_64.whl
Size 568.3 kB
Tags CPython 3.15 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
68e5b8a5c52436439692575e192dd22728aa586efb2db2e887f8ba9dd61ab189
BLAKE2b-256 checksum
How to use checksums
81c686528e4298cda9dc29017e315562caf074dc7c6884886563a4d671d09752
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp315-cp315-musllinux_1_2_aarch64.whl

Download URL cborx-0.2.5-cp315-cp315-musllinux_1_2_aarch64.whl
Size 546.6 kB
Tags CPython 3.15 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
2dea7a50de352b061b455f4146ef8650e00abbe98bf890dda6e7e52e4f9a53dc
BLAKE2b-256 checksum
How to use checksums
44d1768ee9d253af03c736f725ec9420d51d0fc75f4ce81b2425d7578ac834b8
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL cborx-0.2.5-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 568.5 kB
Tags CPython 3.15 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
3fc61bd6692acb3776b81d2245cc88d7dc4cee5988afc534f2b6cfe6aafaed15
BLAKE2b-256 checksum
How to use checksums
ddd7f42e68f8bd26358999b1ee975a17455d25ae8bf22ad6c2ae4f33078146c5
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL cborx-0.2.5-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 549.6 kB
Tags CPython 3.15 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
aa275db272cb454488009cb4d7ec14e52b2ad4a4a5779660857629648857624e
BLAKE2b-256 checksum
How to use checksums
2dba92c94a5c2da4b5b5530f5bcfa95dd3c5085b387c0d98e9fa8fc7fd61f3b3
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp315-cp315-macosx_11_0_arm64.whl

Download URL cborx-0.2.5-cp315-cp315-macosx_11_0_arm64.whl
Size 219.4 kB
Tags CPython 3.15 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
da831e0967161ec663cb2ed382d02efa8bf26de0a8e6c45b2b91be1a8ab7c957
BLAKE2b-256 checksum
How to use checksums
cbbe216cd60cf30add9b98e562822d81dc95ab0e0b460abd21716badd56fdb89
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp315-cp315-macosx_10_15_x86_64.whl

Download URL cborx-0.2.5-cp315-cp315-macosx_10_15_x86_64.whl
Size 219.5 kB
Tags CPython 3.15 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
6fcbba5cffc1e33f77d2813a4f342538ffff0e7e2667fef8b9aea1135c4ad602
BLAKE2b-256 checksum
How to use checksums
59ebc90e2ff4e6e509eac02923f98708f2d5ed7430be5a5cf36e129fd297b99e
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp314-cp314t-win_arm64.whl

Download URL cborx-0.2.5-cp314-cp314t-win_arm64.whl
Size 210.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
e5a43bbbdc0bbb4a9129c8df53aa987160ef4637078560cae2beebfd8dd88743
BLAKE2b-256 checksum
How to use checksums
450c6c74672d4b8db7a026af4f0d1e9adecad784bbdabbb56fee55e862fe219e
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp314-cp314t-win_amd64.whl

Download URL cborx-0.2.5-cp314-cp314t-win_amd64.whl
Size 216.4 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
d4d4a33f336956514c3661f7df07cc1986d6434e5d8c8ec5d1af2158dc35d4e5
BLAKE2b-256 checksum
How to use checksums
735b9ccff0ae9614be2b9a876e4caf8956b8e2b0b157b1265dad2df90f3c46ce
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL cborx-0.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 601.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b089b6b078aeffc46d047bae25f353460963db18f68389ccaf2dde8afd06854f
BLAKE2b-256 checksum
How to use checksums
117bdf1bfbdd4a545dbe15820d2384d36ea9c4941556a81468fcb94ebe5c06d1
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL cborx-0.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 582.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
df710cbda37a24a9b212071ce59e8627902defca607e9a79fd6e6e1a8e1e2882
BLAKE2b-256 checksum
How to use checksums
5ae7b9ff7231a0b5b0de830fbbee5890ea4818c96d473e831602dac519c5a306
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL cborx-0.2.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 603.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
cf0e4787604a47fc79ea66f29ee9bd8904282b43396fdfe1f7d41633a921e618
BLAKE2b-256 checksum
How to use checksums
c4de83c31895333935a719ea9194ca5dd1c27455f4045475fc9289509486a753
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL cborx-0.2.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 595.8 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
e94748587af6bf1acb90becc26518a6f206abe2dfa4d679a2c0b86c06d747025
BLAKE2b-256 checksum
How to use checksums
80a3d0ffadf071b87a72ea394ffc935e3c64566bb2360fcce297e4b884810ce3
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp314-cp314t-macosx_11_0_arm64.whl

Download URL cborx-0.2.5-cp314-cp314t-macosx_11_0_arm64.whl
Size 224.3 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
12e27fed8e139bbb043e09431adc9e35f926c02fe68311e4f609fc9efe52e954
BLAKE2b-256 checksum
How to use checksums
148ceba21882c1961fab5c01ccc8e6f23483894a778e807d3e349c6a9f9e770b
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL cborx-0.2.5-cp314-cp314t-macosx_10_15_x86_64.whl
Size 222.3 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
06bbdf07ded8dc061be5bc6a980f7789bb0feb353a483954e2afadf18ccfd61c
BLAKE2b-256 checksum
How to use checksums
f7856ca28dc5644614e2c0c01876b058ac3eb4d988f65d130a0a904ded0e4fe1
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp314-cp314-win_arm64.whl

Download URL cborx-0.2.5-cp314-cp314-win_arm64.whl
Size 207.2 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
393655a815045e66c9b9669e66e8e4e0aa50cdd25aa174062ce5b378688962f8
BLAKE2b-256 checksum
How to use checksums
bb96e72a1606579b06d1724debacb15ee10dbb9761228aec64c6a0d5238506ab
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp314-cp314-win_amd64.whl

Download URL cborx-0.2.5-cp314-cp314-win_amd64.whl
Size 212.3 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
61ffc230c409ee23cdea25f8fe42ea0f8a338e44fe180dd39fa50df6f63bfda3
BLAKE2b-256 checksum
How to use checksums
34273a6264c022e2f8f338ced61972a753f835ef22cf2524e44c3af8fd87333d
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL cborx-0.2.5-cp314-cp314-musllinux_1_2_x86_64.whl
Size 564.7 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
c36d7375e812bcc3323405291077a557a4aec56e2ab87831873e00ffe7906fd3
BLAKE2b-256 checksum
How to use checksums
3028103a4789cf630b53f43878fa31a97a64d5251a5b4e2663aedb20ca5237dc
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL cborx-0.2.5-cp314-cp314-musllinux_1_2_aarch64.whl
Size 547.6 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0d432e56bf676f4592b4b6528fa9c1536389d51c5f0a15d8807f8e9434335e9d
BLAKE2b-256 checksum
How to use checksums
84779782b70592f1ce899c65ecd2741b2cf6bdccc6d1b7c34a5ac8fab8891eca
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL cborx-0.2.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 561.9 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
e13818578a0c5e46021ef67fb03a58387aedf266bfea4bfd28fd4a2312126c11
BLAKE2b-256 checksum
How to use checksums
00a2abe5568b6509a56e522f9cbf2150d25c4053400a5aead839a58e89549b5b
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL cborx-0.2.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 552.2 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
84883c5898760f7dd8137fba95d76b9ad991c85a2478a5ebc76513140dc776c7
BLAKE2b-256 checksum
How to use checksums
45cb2728101dde57f833f91906ef2cff3e97121130688e543e95b996f6255692
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp314-cp314-macosx_11_0_arm64.whl

Download URL cborx-0.2.5-cp314-cp314-macosx_11_0_arm64.whl
Size 219.5 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
75042f98b1790ea178ed3d7f18d0798d1fff96bbdaa47bfedad30eb495fa49d8
BLAKE2b-256 checksum
How to use checksums
6eb1515fd058fafad517e98a2bc013beed1d43077069126aecbca371d0d3d00e
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp314-cp314-macosx_10_15_x86_64.whl

Download URL cborx-0.2.5-cp314-cp314-macosx_10_15_x86_64.whl
Size 219.5 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
ab003824867b6fe670e9b0efe16c15ecec87f90b6eb22573d36ac863fea0163a
BLAKE2b-256 checksum
How to use checksums
84156bebfba06176b5458820873d044c641ed69d0ea55c085f42b8c08f63ee7b
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp313-cp313-win_arm64.whl

Download URL cborx-0.2.5-cp313-cp313-win_arm64.whl
Size 207.0 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
305e5ea5c847be438d6f90139a69284f0d261da19515fc72a2016e12d97de459
BLAKE2b-256 checksum
How to use checksums
b36a15c535ce246f617e790204f70ef8a92aece2037fa0e575d04cd27c18c24f
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp313-cp313-win_amd64.whl

Download URL cborx-0.2.5-cp313-cp313-win_amd64.whl
Size 213.5 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
148e94db1c5101d52c0faad7b165a0500faded13d79fc13b92d09413fe9dbfb1
BLAKE2b-256 checksum
How to use checksums
a811631ee5101b83222cc6e722b203c8f26db6ba01f1640ca8470191509a3255
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL cborx-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl
Size 571.6 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
5f6c33b56e090c114c89abb4bea6ec84c1d7f5de28523128c8f5fbfda297e9bf
BLAKE2b-256 checksum
How to use checksums
4b9bea3517b918941b829cbbc4bdcdcd05b40e5452999f644b1c235c3359c13c
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL cborx-0.2.5-cp313-cp313-musllinux_1_2_aarch64.whl
Size 548.4 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
4dca347f57ea8fd2bab2bd9d7741f13967e5ebb6270f9299a27d574587256299
BLAKE2b-256 checksum
How to use checksums
0d0e2ec6435b92ba9de858cadb90d769b49723f2533c8c6557b1aca01112e093
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL cborx-0.2.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 570.5 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4ca9a63be5bd6e7b22c55c12c033f6de0aea21e87bf96385df469fac0af3f40d
BLAKE2b-256 checksum
How to use checksums
12f89123133b3ef33a3c0b12686d5686642d2e84285a3edec7ae1ccfa6f8dd59
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL cborx-0.2.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 553.3 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
c2eabe5bd70db91ec2ed9769fc8bcdd9835038b38b097c5219bcc604d473216a
BLAKE2b-256 checksum
How to use checksums
9ce9988c1fe4f776ff2a0f3453be5244d7c6f2bb03de1fd91f0a0a7af5e2a216
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp313-cp313-macosx_11_0_arm64.whl

Download URL cborx-0.2.5-cp313-cp313-macosx_11_0_arm64.whl
Size 219.2 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8b4eaab5d92d6815ccb380a160c10a08a95caa88466562be25137aa7c41cece9
BLAKE2b-256 checksum
How to use checksums
17bbc9bc7154bdf38feb22cf98d252b3d9ce95de31a16432d4f27c360cf8f47e
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp313-cp313-macosx_10_13_x86_64.whl

Download URL cborx-0.2.5-cp313-cp313-macosx_10_13_x86_64.whl
Size 219.1 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
d4e78db77cce112169c4b86f178f3bc755795b39925d37810364e887f4de0d6e
BLAKE2b-256 checksum
How to use checksums
50bb6884275c4da1db1f6d17db0bdb78d42b7915e84a8ab5c4c229ad19ebd143
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp312-cp312-win_arm64.whl

Download URL cborx-0.2.5-cp312-cp312-win_arm64.whl
Size 207.1 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
f32e1d4c8604b51149c02b618259aa6555b99a7a8e9386a4960b8de459f51c4c
BLAKE2b-256 checksum
How to use checksums
9b56a417ceff823ef98dcc6facb8cbfa3de0b614bde9d25c74ab93d47b23691a
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp312-cp312-win_amd64.whl

Download URL cborx-0.2.5-cp312-cp312-win_amd64.whl
Size 213.5 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
a9cb9b0feb27f74ed961f8341f3ffbcfe6c6286d52b5409dda4fa0305a69cd94
BLAKE2b-256 checksum
How to use checksums
3cbce05de0fd12e007dc5e29e00c29c2af9d31799aeecc25af44c23f6935794b
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL cborx-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl
Size 575.1 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f471ba5afc22d8efcca0ea506b9be6e8d2feaf1e5a90d4bb19ba466b7fd5c0eb
BLAKE2b-256 checksum
How to use checksums
8fcd3e0e55a80d3c475acd35ac9e41bc31dbbeb7e49f5b9e320f3ed897819507
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL cborx-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl
Size 551.4 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
dff1000d038e598320dce545b9ea5f081dc908135efe0235dce5e1ac2f5621c0
BLAKE2b-256 checksum
How to use checksums
e7d633f5a68186e15a22ddf8144da8263d456381f9363b1cdec696c900f511c5
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL cborx-0.2.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 575.7 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
61b31116810d4a2a00223b8767b5820ea1583bb3319857ed22ee8da0355b5c9f
BLAKE2b-256 checksum
How to use checksums
6d902ebebde765483581329bc289dbe7971004427b5079f4d29403d0fda18a83
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL cborx-0.2.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 557.0 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
69596c954b864db10509fe270bd1ffa4a8953c2ee5811a81640cb78ecc0b383d
BLAKE2b-256 checksum
How to use checksums
48c2287176598f410a67a67b14fb1e5fd5d6422e73edf2be8038bc54db058a9c
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp312-cp312-macosx_11_0_arm64.whl

Download URL cborx-0.2.5-cp312-cp312-macosx_11_0_arm64.whl
Size 218.6 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4e9228d949cd22de393995afcdfb3c2db2f2b2857bc61197f53cb22c44ed08c8
BLAKE2b-256 checksum
How to use checksums
3d46e15a6a3cf86752692db46a7b9107ac4afd6382e1d008a373b225acdcfd4a
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp312-cp312-macosx_10_13_x86_64.whl

Download URL cborx-0.2.5-cp312-cp312-macosx_10_13_x86_64.whl
Size 218.6 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
5473b02dd0a0fb1fd91a4042c9cf8ac3e5453f43e35f28c2871c07d012570893
BLAKE2b-256 checksum
How to use checksums
3450e0d207fd5bc9133e17e210717d41e4ccf1a38953e32067e096c7c6750ade
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp311-cp311-win_arm64.whl

Download URL cborx-0.2.5-cp311-cp311-win_arm64.whl
Size 208.8 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
f7a4ef2adf6122b2fe0e21fc5632375ea5cd90f008dd008d3bba785698cc8b7c
BLAKE2b-256 checksum
How to use checksums
46a12820619817bd99532b9c62150f58364d2cbde4f546a4ac5f8048541f83b9
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp311-cp311-win_amd64.whl

Download URL cborx-0.2.5-cp311-cp311-win_amd64.whl
Size 213.9 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
101e138830d2b4ee12304dac68293ff85ab5c7e82cfdc00a8304cf06bd433f0c
BLAKE2b-256 checksum
How to use checksums
a3078637eca93fba2247857b0bff4f0c9dd3e6695cf5fe366c0232ad96e48487
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL cborx-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl
Size 591.8 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
019e78be046f7951f653e9a005a882c0cfbb17a7f4f6113eed6baf7156db4733
BLAKE2b-256 checksum
How to use checksums
bd364d08ee52466f5b33ec2c731b6754b6733eac5467df229f696cbd16dd02e4
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL cborx-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl
Size 567.1 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f7e431722575dfe28ca434bc32a5d94409521e92cb02265cd7807a21c6b8b970
BLAKE2b-256 checksum
How to use checksums
fb4c7c48b7cf7ae7227125324d91026a36bf0fc9e0c2b4ac5b84d945bcbc0ae7
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL cborx-0.2.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 582.9 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c4c8e0cf5350d87aba42622c298b1f529a3051b20952d60f6a8bcc062927b325
BLAKE2b-256 checksum
How to use checksums
6f573a235122c562f6d06c7f4532395dd95459e3720160f8253604a249b5d34a
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL cborx-0.2.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 570.7 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
93dcaa2d2266fac50aea313ecad3048d07ebbf15434c3705f0acb0f6a5309439
BLAKE2b-256 checksum
How to use checksums
6ad9296ddc4508a367e4ab35cb403f2f93fcc72a4f31761061acb51e9f06070c
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp311-cp311-macosx_11_0_arm64.whl

Download URL cborx-0.2.5-cp311-cp311-macosx_11_0_arm64.whl
Size 219.7 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9a000b73b5cbb61b17b6a170f310d9cce04cb85c97408f1285cc9ec77717040a
BLAKE2b-256 checksum
How to use checksums
0acdf5e7bbccc8c234a4334b49b00ada28a305d8a5e1dfbd7b37acd1c22a341f
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp311-cp311-macosx_10_9_x86_64.whl

Download URL cborx-0.2.5-cp311-cp311-macosx_10_9_x86_64.whl
Size 221.2 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
8c46ab3541eb7761248ca5cea4c51a857864479656478ad73f4437df83598768
BLAKE2b-256 checksum
How to use checksums
4212b6511f4d71d61799ada23cb705c85e95bf9dfca52db510b574e94946141d
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp310-cp310-win_amd64.whl

Download URL cborx-0.2.5-cp310-cp310-win_amd64.whl
Size 213.3 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
5fb529c0c321810628157650a181869ae6a9efca18702aef9a3b8a0643157b03
BLAKE2b-256 checksum
How to use checksums
be27d821aa26690c4a0012130ad82ea3c55d4f4a4be536f1e4cf924c8af7c62a
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL cborx-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl
Size 564.2 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ddf6f37ca288d216b1fce86daa10e6ea4c26200a44ea2f9031606e0437061189
BLAKE2b-256 checksum
How to use checksums
13201ecdad57fdb7acf8d5dc2f07cc3415eba0d44ceae0c2ec95867034a7cf26
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL cborx-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl
Size 545.6 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
d172410b7034c55bd7a1fc4026cf6bfddf358cb559de6f7170c5997e8b5708e5
BLAKE2b-256 checksum
How to use checksums
e26e98b8054e80a88f56f078e9e10be463cda4beab69207a76077228d01c9679
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL cborx-0.2.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 560.6 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4a2ba0dcb9ed74c1439b158e86171f63df756fe9c18cecd2e6b672a6440425de
BLAKE2b-256 checksum
How to use checksums
395e9744f50497e5f4a98f64e2724495e78c9cba0af85aa42422cbe74c06e7b0
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL cborx-0.2.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 549.1 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
1f975e2bd356402861ea6ab39af462f0735689ff0fb083d6c94ffe6f11c6b83f
BLAKE2b-256 checksum
How to use checksums
a4ab754fb2fa46de06f1adbb842358cbbff9020af3ac0a65c6773f3d74672b2a
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp310-cp310-macosx_11_0_arm64.whl

Download URL cborx-0.2.5-cp310-cp310-macosx_11_0_arm64.whl
Size 220.2 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
aee6f9160aecdd49ee009efb49583dbe5233fa0aa3d1bcfaad8bb4e3c196ca8b
BLAKE2b-256 checksum
How to use checksums
aa5a0a9f6dc96d98a96830b1597bcfca8c20f4a7f04bbb47d5c56edadc6e0bc0
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 24, 2026.

Transparency log

Release files / cborx-0.2.5-cp310-cp310-macosx_10_9_x86_64.whl

Download URL cborx-0.2.5-cp310-cp310-macosx_10_9_x86_64.whl
Size 221.6 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9fcaf3a7612b332c4a5ea9e1f59df2a650c8f872488d4c21cc8bc64b76a16456
BLAKE2b-256 checksum
How to use checksums
936ceb3a19d1305a3b7cb38840127ec7fd0e87647c19c2516cdfb0a3dfe81acd
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 24, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.2.5 This release

64 release files

0.2.4

64 release files

0.2.3

64 release files

0.1.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page