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

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.3
File Size Uploaded
cborx-0.2.3.tar.gz 166.7 kB Details

Built distributions (wheels)

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

Total release size: 23.6 MB

Release files / cborx-0.2.3.tar.gz

Download URL cborx-0.2.3.tar.gz
Size 166.7 kB
Tags Source
SHA-256 checksum
How to use checksums
3149823489edce352ba5f3533dc241ffbb195219da5fbbe41c2fd1b968c09d36
BLAKE2b-256 checksum
How to use checksums
6d991c44d7daff1938db50d115d411b5e4eb9b76e70535836e75167e326305d7
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

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

Download URL cborx-0.2.3-cp315-cp315t-win_arm64.whl
Size 199.5 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
c46c0761cd6120fcd181d21c683359524b43811d0a4056df82183123ca957e87
BLAKE2b-256 checksum
How to use checksums
0ebc53bde3a213e36c000fa39f99a2fcae1cfb9f7fa5b81e008130126b7dc40e
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

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

Download URL cborx-0.2.3-cp315-cp315t-win_amd64.whl
Size 204.5 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
1afdaf85b0822141d86417d9c77a785efe6f4c0967ec4ba3af1a6cb39ec18df1
BLAKE2b-256 checksum
How to use checksums
122e81295169f51ce617901eb1016969b4dd4cd3182c56b900e5802a98a54143
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

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

Download URL cborx-0.2.3-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
1a695e072f2d392f7d3b969fd701afee0f4dbb37cd84e124ca14b672994693e4
BLAKE2b-256 checksum
How to use checksums
da0926ad3bc106db02441ee619d7a268395a6870c2d26d02264f0b9064f0a7b2
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

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

Download URL cborx-0.2.3-cp315-cp315t-musllinux_1_2_aarch64.whl
Size 542.1 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6404154595a30b803bb091b346b5d6db61b6196ed6ff2d0c372dbbeef60b2dfc
BLAKE2b-256 checksum
How to use checksums
090e16559f38169fde47ece806ef85d8d989e8fc305509239e5bc3de8d376adc
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

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

Download URL cborx-0.2.3-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 560.2 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
b7e2e71ca2832407e6faf872d2600d7ad5bc694a9f000aa1f56e1b0877671ad2
BLAKE2b-256 checksum
How to use checksums
b6b2f3c373e660f0dbfdcbef9e5925ececc32ef7cbeb524591cf3bb47420c445
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

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

Download URL cborx-0.2.3-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 552.3 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
71b2970000edfbf0e4c87d8ee99e65be2d3457147ef2744821b969f921b9dbbb
BLAKE2b-256 checksum
How to use checksums
2276a5a12cbfdb9b18993d43ae626e6f4d5f3af6ee26d7185f447d402fc2b088
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

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

Download URL cborx-0.2.3-cp315-cp315t-macosx_11_0_arm64.whl
Size 211.9 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a8b892bc2430adf5288f6e3d03c8a9ae368627bb5bff9c19cf6675bdc7f80b5b
BLAKE2b-256 checksum
How to use checksums
bb4957c3aef9d791e75d7de697a0acb23f4b0c188f506ea51f87b9fac7d890e6
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

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

Download URL cborx-0.2.3-cp315-cp315t-macosx_10_15_x86_64.whl
Size 209.8 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
a6337d5bbb38eff80ff7ad6f53c20d53a7accea73baead871c6824b301087864
BLAKE2b-256 checksum
How to use checksums
4ef63b5492cceb6b1f85fded1bd2d040f309cae0349203fe6283334fe5eeab3b
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

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

Download URL cborx-0.2.3-cp315-cp315-win_arm64.whl
Size 196.5 kB
Tags CPython 3.15 Windows ARM64
SHA-256 checksum
How to use checksums
7f9ad7e58233e6983efadcb30326d5fc4a82a7fca8967af666142b060c43d31b
BLAKE2b-256 checksum
How to use checksums
9325390bf1d33c17a47fc415513028cc78572bee4287fea99969ca14e859687a
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

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

Download URL cborx-0.2.3-cp315-cp315-win_amd64.whl
Size 200.8 kB
Tags CPython 3.15 Windows x86-64
SHA-256 checksum
How to use checksums
1f8320737d9d3375d03585e82bc05c9844e3a627128dfc3716b17678dbf63f99
BLAKE2b-256 checksum
How to use checksums
401d467ba1777e0f0a8b247afb0cdc7e3d91e3dc6e1bd4496cde7fc486255dc3
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

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

Download URL cborx-0.2.3-cp315-cp315-musllinux_1_2_x86_64.whl
Size 529.0 kB
Tags CPython 3.15 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
487bc3f5df2e02172d0b27c651d1870ae03499349412176fda4f14ef1b7f2f97
BLAKE2b-256 checksum
How to use checksums
4e521620557a4fef698f1b60c0c8e06404c35850f2606203fc15a2744534d8cc
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

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

Download URL cborx-0.2.3-cp315-cp315-musllinux_1_2_aarch64.whl
Size 514.2 kB
Tags CPython 3.15 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
4f41f82d39533be074421d544dab60c67a3c0a85ab39941abb8734c9e2ec927e
BLAKE2b-256 checksum
How to use checksums
f453bb9183fb11e3d4dbbd083365085027e47ad33f394c2b8891d16fae3af6b7
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

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

Download URL cborx-0.2.3-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 528.3 kB
Tags CPython 3.15 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
9ea18bcc15e788065d207e96200904739b702b92f0339afd6609a4b09ae652f4
BLAKE2b-256 checksum
How to use checksums
ce6c677d52d698d85d203c9e75c0cde1e85fcedd3b2ab0f81013c7e545cdd0be
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

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

Download URL cborx-0.2.3-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 519.2 kB
Tags CPython 3.15 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
8e5246ee0c65574847b4a9f9fb0d806031c9082a6d3602e9fbe2bc4d46ed946e
BLAKE2b-256 checksum
How to use checksums
0819a32d7f8e8a01c71ba1ed93f75ed119991caeb9ed5af24b314eb157be8d80
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

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

Download URL cborx-0.2.3-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
cb2d7a554643d5ba9f9909ddfa284f7bf6df765fd844fb0974202bffcfc58c26
BLAKE2b-256 checksum
How to use checksums
d7b711f02824fd8cf307b2a292c2d38bebc17aa0a4984a8a03279a2468bc4b7b
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

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

Download URL cborx-0.2.3-cp315-cp315-macosx_10_15_x86_64.whl
Size 208.2 kB
Tags CPython 3.15 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
0e6bb751ae8b6de9c4c4db891764ccf52492707eb9cafdaed01853a9622c0f05
BLAKE2b-256 checksum
How to use checksums
a91b337661cb33654ba0b8df1e9b6bb17370ea009a2aa6d4cf8b18f63e21cd76
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

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

Download URL cborx-0.2.3-cp314-cp314t-win_arm64.whl
Size 200.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
ffcda647eec0d5b92462f46f77b7d3c3119492cbaa3bc88ada9431428dda9796
BLAKE2b-256 checksum
How to use checksums
f2f3340184d3e6ff2db7fca0b9066a43e822e1ed6c5a3f89f0355757f2b0a546
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

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

Download URL cborx-0.2.3-cp314-cp314t-win_amd64.whl
Size 204.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
421c7fca371f473cbc42d3b52590714a22121df0a1f7d43bd399d0e8c3b3be20
BLAKE2b-256 checksum
How to use checksums
26007ca447e1939905c97cfba5bb9fb6b1a3591c131d8c44c227c81eb910999f
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

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

Download URL cborx-0.2.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 559.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
2afb89e9015b74e5e09b04fc900a40d9c1a046fd1dd767b0399f6e7b28e7bc54
BLAKE2b-256 checksum
How to use checksums
4d5694b2be4a340d7dc6ffa85d398be544a4644950a783ab869f981cf5f67eae
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

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

Download URL cborx-0.2.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 543.2 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
79c065c145204ecc8e2fd9990d3b7243bf7ea6b4598d66c9918e2839b9bdfd65
BLAKE2b-256 checksum
How to use checksums
48b05be34d2642c48991332c9bf831cc8cc4729a0346dbec03b3e2a8247fe8e5
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

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

Download URL cborx-0.2.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 559.1 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
4688a1ef9c51292a99f0b0ffac45b92af881d9aaf3aba1084114a6baf1cbf220
BLAKE2b-256 checksum
How to use checksums
5f669bc3faee31fc8d2aed7b1b2ecccdb76af5186d5927e5308c4032d2860cbd
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

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

Download URL cborx-0.2.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 554.3 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
02a02f761d85f4304b14ea8fccb58213e58215ba53c29fcd874500741b956929
BLAKE2b-256 checksum
How to use checksums
488bc8daa4aa050ea9299c9ff55de23ecfa5adc254381b858db4cda3c595c102
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

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

Download URL cborx-0.2.3-cp314-cp314t-macosx_11_0_arm64.whl
Size 212.1 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
584852953b82fb9966bf1efdea4cd3b8fd4f7074b31802d8354e6e633959f45c
BLAKE2b-256 checksum
How to use checksums
dd14485a5d75860025e06e8e920aaba83bbf559f12bba86dac5aa79604d173db
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

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

Download URL cborx-0.2.3-cp314-cp314t-macosx_10_15_x86_64.whl
Size 210.3 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
ec5d9bd416df2e29044208298624acb80e51421e0d62bca32587322af0cc5eb5
BLAKE2b-256 checksum
How to use checksums
ff970ff8f59d8c3b2b78986adf76b713c39e5778ea8135338a1a911f2069e584
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

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

Download URL cborx-0.2.3-cp314-cp314-win_arm64.whl
Size 196.5 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
fb2d54e745e0b6fdbbddc701d6e1c69cc1cec1be6aafde1386358929b519b119
BLAKE2b-256 checksum
How to use checksums
5c224c9b2dd412337bbd3ea03c8b08ef4c67ae9fa07f47d51eeb9257ded5e8ef
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

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

Download URL cborx-0.2.3-cp314-cp314-win_amd64.whl
Size 201.0 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
5af608a8b4ad9a926f77e3ee7d032817e2b7feb72fd49a4afc899141d63a55fc
BLAKE2b-256 checksum
How to use checksums
b3f4c529d2599c36416a5d5ded1beff34e144bc5796add4f58a49b80b1c31d99
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

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

Download URL cborx-0.2.3-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
a22c03b64b11de545d168b74a3c75a561e1e3f2e9cb812d48f4f43afea05d5fe
BLAKE2b-256 checksum
How to use checksums
286f1c9884e68a7d6597a10844ff679c992220c02d27bf7a671b88ec5ae78f8e
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

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

Download URL cborx-0.2.3-cp314-cp314-musllinux_1_2_aarch64.whl
Size 513.9 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
fcfa784fadba58ff0d145192e56f737a09ecca2dc8d1426b379f68f7c3c1319b
BLAKE2b-256 checksum
How to use checksums
49e49d7960f59980a2bf7c754ba04bd261f0a52273a2f59cb7f09338cf41e0a1
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

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

Download URL cborx-0.2.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 530.0 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4b3e750035545ccfa65f1c6106745efc5ddeea74188fd654f450d4ca0e1b2bfb
BLAKE2b-256 checksum
How to use checksums
7a027568436816097390e4ede0abd28e5ef838da38af5e53945f598db7fc1990
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

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

Download URL cborx-0.2.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 518.9 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
1f4c923d9687c2465bc1f244f135aa9c280466a9dc74cb439800a58b2b36f27e
BLAKE2b-256 checksum
How to use checksums
45e0338a053e108a10edc229e0f8bde0883475f173c7843e4714479cf13acfba
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

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

Download URL cborx-0.2.3-cp314-cp314-macosx_11_0_arm64.whl
Size 207.1 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
042d9fbe048efeee1c037ee8e24f2ee00e28e2cff641fe6d80d3bbd0cd29212b
BLAKE2b-256 checksum
How to use checksums
9445f75f5875db8b1d6a11893f901f69ab0bf48d5c588f242438c238011e81e2
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

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

Download URL cborx-0.2.3-cp314-cp314-macosx_10_15_x86_64.whl
Size 208.2 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
5aa026cb65a3ec880017f4bb6516ab78dbc6da06093ecec7b7d9d9a900819516
BLAKE2b-256 checksum
How to use checksums
1b0a9e68206357425c57c1d338cfffc43c8b38ea5d9ed119c138bcf954ffbd68
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

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

Download URL cborx-0.2.3-cp313-cp313-win_arm64.whl
Size 196.0 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
f6a3c1cd840e48d96c0f26b5cb9e898dae5c49e7ef7a57439c613aa57bdca7d6
BLAKE2b-256 checksum
How to use checksums
fe557c4e972dde70c79bf463c6ae575f73f8ee7aa7eda2762ef60f4852163d23
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

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

Download URL cborx-0.2.3-cp313-cp313-win_amd64.whl
Size 200.8 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
0435fdaf1c5842b410a7cfef2510015ac43dda48761686f7568871f37f7636af
BLAKE2b-256 checksum
How to use checksums
4a76ba8962b75b91ccdf23bb5b5bac46d3b262abd0134d34033a0d212de8a513
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

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

Download URL cborx-0.2.3-cp313-cp313-musllinux_1_2_x86_64.whl
Size 534.2 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
311cf0f715fe79521bdfb371e78f3d67d6e7a85700e3f609fb312066eb50e0bd
BLAKE2b-256 checksum
How to use checksums
d533fba3312dc2d868e17bf4c174af77d17859b821c1a8ca4ed2912935427e8d
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

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

Download URL cborx-0.2.3-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
c20f4fac2df76c3876c7d68570794a7073542c5a3c338b9ed5f4741b2a42ab7e
BLAKE2b-256 checksum
How to use checksums
33df89e0123115c2630c86b984085a7959ee994b4e681596d07ce0bdd312f78d
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

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

Download URL cborx-0.2.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 536.3 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f5bfb5467996f83cfc6a14ce4b774eb3c952f5c9057188412dc8e21b8f6dbd11
BLAKE2b-256 checksum
How to use checksums
afcfaefa68381b13457b32cc88c2f3aef61a56b3160920ccf6ee9677661e571c
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

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

Download URL cborx-0.2.3-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
a0baecf7de08aa31febdb873773ab660d45fc96cac548f92fef7fa2b99ecf960
BLAKE2b-256 checksum
How to use checksums
fb311ae9a2360b9e090a70161cb6920d28a90abad53b7c548eb9daf427df541b
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

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

Download URL cborx-0.2.3-cp313-cp313-macosx_11_0_arm64.whl
Size 206.8 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6168a6466914b8092ef9e4c80a6421ae620b54e5ad086c3c21eabb7648f0ba00
BLAKE2b-256 checksum
How to use checksums
6ef3e4f78f7b7642d370b51dd709ab2f75c1024041f4bbd294826e263e9fc3ed
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

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

Download URL cborx-0.2.3-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
b34eb6f729c69514f307c7eebe575695d13b59b24b96b1ffd6b911adb2fb2d2e
BLAKE2b-256 checksum
How to use checksums
0376957488ee305ec1c05caa14c11e5f2cd79f9fc0875d34412432654fdb41a6
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

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

Download URL cborx-0.2.3-cp312-cp312-win_arm64.whl
Size 196.0 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
ea3c2cf2c389e6519a82e23b86c98e5755930872779cb787949b8c97ae8ddfba
BLAKE2b-256 checksum
How to use checksums
0ed9e29c60d6fedaddd53a213f3e7a8588bd7477ed7d682e782dfa0a886dd7a8
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

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

Download URL cborx-0.2.3-cp312-cp312-win_amd64.whl
Size 200.9 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
9bb49f67babb32a62f416658d36fc13f29ba45436ceee79213dec2a8a1576a51
BLAKE2b-256 checksum
How to use checksums
a317de4a894ef84316280a48296be10f607343e243583f4185e2597305f9e795
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

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

Download URL cborx-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl
Size 535.6 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
01483f34209a509eb41b645ec8f2f4f8f202dddd6afd8544f6465a829753a623
BLAKE2b-256 checksum
How to use checksums
c6590ce0c28ef0bced3f843820004ef7582e570aa87b334b1fd75e62aee008cf
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

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

Download URL cborx-0.2.3-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
a82373f75e01ca925899c8d988ebc2d6793b533dcae5c003df67da53aa4d67fb
BLAKE2b-256 checksum
How to use checksums
53c1328a79d90251d39f19f4c10b67c246334241ab11926bb810c2f6f025ac13
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

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

Download URL cborx-0.2.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 540.8 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
cb8b5e9810894d04c6e02f977035afedfeb919e3caab0644a8de80a6df435570
BLAKE2b-256 checksum
How to use checksums
b1b12c98581f3e6bb8f4e5369dbd00aa9fad80ae291db4b6af8667a14fa738d7
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

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

Download URL cborx-0.2.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 525.8 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5b536fc29b0083b55cf54799b476c8e781433c61833b2c51f2d6b5d96b6a8393
BLAKE2b-256 checksum
How to use checksums
5e752cdd46f3e52bbc3bb6b112bf240feb8095b1bab411215074b0b9a88beacc
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

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

Download URL cborx-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
Size 206.9 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
22d27af34903298fa77007fb0f26e0e07a2a42f832b46f6825dc8dec5cd75e62
BLAKE2b-256 checksum
How to use checksums
7e6d29e40205ae3d667a8d449282a120df077a8255f7732a54ef89af8791ceac
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

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

Download URL cborx-0.2.3-cp312-cp312-macosx_10_13_x86_64.whl
Size 207.7 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
d9efa8e2941391741524453083e9069f1707156c22ebd55b140c26450651324e
BLAKE2b-256 checksum
How to use checksums
1345328667181cbe1b504a80aab539cfd0d3c45a22868a0de9be3ad9eaf691bf
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

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

Download URL cborx-0.2.3-cp311-cp311-win_arm64.whl
Size 197.0 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
1efcdcd730d3371865fce08c404dda9251097641e88f4b2ebea43968778ba1bc
BLAKE2b-256 checksum
How to use checksums
9e3a59b97fd0c8dee4bc2a6b7fd9e7a0fffa2cac3bc37b9dc2512d4d4b93ac98
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

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

Download URL cborx-0.2.3-cp311-cp311-win_amd64.whl
Size 201.5 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
80a6528706682cda0c7b3a6a59bebb173bf4a720cfe50e3e7b0400ef40f6103d
BLAKE2b-256 checksum
How to use checksums
24d6de1e17b0fb2e308f5ceb56c5f149335ca541ab3f24fcfdbe4f5a61a2aaf6
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

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

Download URL cborx-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl
Size 545.0 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
c855cb68e75e7eeca5db6b0c505b63eb9151283cf765064a9a061abafcbbd84b
BLAKE2b-256 checksum
How to use checksums
922670696ebcd748f78668c4cd015fa601dbe543574f3e8915715cca9da6c3f7
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

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

Download URL cborx-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl
Size 528.0 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
28264eb66f95a81c7f1d887e602ff0b9c949eb65d54ba5e11324199731aad7dd
BLAKE2b-256 checksum
How to use checksums
75c138271d19b0c17c34d20464b6064a0b514a2f991fa3de75b4da4f9b8e6ccf
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

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

Download URL cborx-0.2.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 544.0 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
7f132704e4d7d9f1a8923ec8f46d0fea6b0719fa5147a48246669dcb41cb123d
BLAKE2b-256 checksum
How to use checksums
6dd78d0c61804a813bb1a6bff931df590f874b51696fcc794a64f1aca77cef64
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

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

Download URL cborx-0.2.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 530.9 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
f0504f2615368aba859f9e34844ca38ea0f44363ccb82f93039a5ce61f78594c
BLAKE2b-256 checksum
How to use checksums
2fd493058a2c7936cd8a482f9eb40287ad1d3dd5f609f2a514176fb8b34f2844
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

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

Download URL cborx-0.2.3-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
f15164008159f15aaf559235d989fee2f30c4aa7d4e8e56d1bfd2d81c74668e1
BLAKE2b-256 checksum
How to use checksums
92e567f37c303f19a5940d6038032f6f6ba9b21797b7084ef7e5bbe766031ba6
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

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

Download URL cborx-0.2.3-cp311-cp311-macosx_10_9_x86_64.whl
Size 209.4 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
042e4cfc71a0c2d20b24edb73553145b763e3c26d89595c99fcf03cabdcaad0e
BLAKE2b-256 checksum
How to use checksums
77647219fd308d353e1c8883cec7ec684066fbcb6dc051602acd342bdd47b34d
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

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

Download URL cborx-0.2.3-cp310-cp310-win_amd64.whl
Size 202.0 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
c5220e00fb5e2f64c32ee249481c92a67ff4d41a386433c14d37210c7e449d36
BLAKE2b-256 checksum
How to use checksums
b0d5952ae7978666a8b076fdde8ea32a15fe779d2da3383468bf759a26b5433d
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

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

Download URL cborx-0.2.3-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
d6b799b83d69891ab740aa1a8e2d4ca0369b30b01b0ebdf05a361cd597538f55
BLAKE2b-256 checksum
How to use checksums
b67cc9c488b50ecd031f00374e7adb3f6170d0d4f38d13f1c21c443c18210324
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

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

Download URL cborx-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl
Size 510.8 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
691b9d27154309fd75e37e44d9e428c9ff800fdaa64bf8bfb309a2a11818690d
BLAKE2b-256 checksum
How to use checksums
6843e35af00b44c12f365038a18fb0211e4f35d81b82f325a73067a99a081f4a
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

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

Download URL cborx-0.2.3-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
54935e821b0ac970215bf3951c7f596b4f3a80d09781425759e2c96b06821920
BLAKE2b-256 checksum
How to use checksums
73cf5fbec93a85d18cd3d18abcb710948bcdb899e173351fecd51d9bb9388975
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

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

Download URL cborx-0.2.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 513.9 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
7e2f93838637b0bee1a37a29d4f4045a4107ba4aa82810bddc6f2b97047b809c
BLAKE2b-256 checksum
How to use checksums
b1dce6c011d006fa97af9958d8b118624ef3d285c7730ef4b0f604be2e97d5f8
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

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

Download URL cborx-0.2.3-cp310-cp310-macosx_11_0_arm64.whl
Size 208.1 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
327308da5402f0bb2c8d1cb41578ee98e50d24d47afdb14a86cae5810eb77569
BLAKE2b-256 checksum
How to use checksums
7a3f8deee86fd7a1e1d9faad1f47f4ba395ffa1843357dbfc78e4013acf279aa
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

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

Download URL cborx-0.2.3-cp310-cp310-macosx_10_9_x86_64.whl
Size 209.7 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
bbfe2ee685bbb6f27fcc4f32c06b96c1cbda2c2c20e20f06244fcb585478024b
BLAKE2b-256 checksum
How to use checksums
a43f3dd16e429030dd5a3c17d878cdf487ed58bd7c16cf2fb36d57d045471b81
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

Release history Release notifications | RSS feed

0.2.5

64 release files

0.2.4

64 release files

This release

0.2.3 This release

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