About
This library provides encoding and decoding for the Concise Binary Object Representation (CBOR) (RFC 8949) serialization format. The specification is fully compatible with the original RFC 7049. Read the docs to learn more.
It is implemented in Rust.
Features
Simple API like the json or pickle modules
Support many CBOR tags with stdlib objects
Generic tag decoding
Shared value references including cyclic references
String references compact encoding with repeated strings replaced with indices
Extensible tagged value handling using tag_hook and object_hook on decode and default on encode.
Command-line diagnostic tool, converting CBOR file or stream to JSON python -m cbor2.tool (This is a lossy conversion, for diagnostics only)
Thorough test suite (Tested on big- and little-endian architectures)
Installation
The simplest way to install the library is with pip:
pip install cbor2
If this fails, see the next section.
Build requirements
If you wish to compile the code yourself, or are installing on a yet unsupported Python version or platform where there are no wheels available, you need the following pre-requisites:
Python >= 3.10 (or PyPy3 3.11+)
Rust toolchain (tested with v1.93.0)
Usage
Command-line Usage
The provided command line tool (cbor2) converts CBOR data in raw binary or base64 encoding into a representation that allows printing as JSON. This is a lossy transformation as each datatype is converted into something that can be represented as a JSON value.
The tool can alternatively be invoked with python -m cbor2.tool.
Usage:
# Pass hexadecimal through xxd.
$ echo a16568656c6c6f65776f726c64 | xxd -r -ps | cbor2 --pretty
{
"hello": "world"
}
# Decode Base64 directly
$ echo ggEC | python -m cbor2.tool --decode
[1, 2]
# Read from a file encoded in Base64
$ python -m cbor2.tool -d tests/examples.cbor.b64
{...}
It can be used in a pipeline with json processing tools like jq to allow syntax coloring, field extraction and more.
CBOR data items concatenated into a sequence can be decoded also:
$ echo ggECggMEggUG | cbor2 -d --sequence [1, 2] [3, 4] [5, 6]
Multiple files can also be sent to a single output file:
$ cbor2 -o all_files.json file1.cbor file2.cbor ... fileN.cbor
Security
This library has not been tested against malicious input. In theory it should be as safe as JSON, since unlike pickle the decoder does not execute any code.
Release files for cbor2 6.1.4
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| cbor2-6.1.4.tar.gz | 90.8 kB | Details |
Built distributions (wheels)
| File | Reset | |||
|---|---|---|---|---|
| cbor2-6.1.4-cp314-cp314t-win_arm64.whl | CPython 3.14 | CPython 3.14 free-threading | Windows ARM64 | Details |
| cbor2-6.1.4-cp314-cp314t-win_amd64.whl | CPython 3.14 | CPython 3.14 free-threading | Windows x86-64 | Details |
| cbor2-6.1.4-cp314-cp314t-win32.whl | CPython 3.14 | CPython 3.14 free-threading | Windows x86-32 | Details |
| cbor2-6.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl | CPython 3.14 | CPython 3.14 free-threading | Linux musl 1.2+ x86-64 | Details |
| cbor2-6.1.4-cp314-cp314t-musllinux_1_2_aarch64.whl | CPython 3.14 | CPython 3.14 free-threading | Linux musl 1.2+ ARM64 | Details |
| cbor2-6.1.4-cp314-cp314t-manylinux_2_28_x86_64.whl | CPython 3.14 | CPython 3.14 free-threading | Linux glibc 2.28+ x86-64 | Details |
| cbor2-6.1.4-cp314-cp314t-manylinux_2_28_aarch64.whl | CPython 3.14 | CPython 3.14 free-threading | Linux glibc 2.28+ ARM64 | Details |
| cbor2-6.1.4-cp314-cp314t-macosx_11_0_arm64.whl | CPython 3.14 | CPython 3.14 free-threading | macOS 11.0+ ARM64 | Details |
| cbor2-6.1.4-cp314-cp314-win_arm64.whl | CPython 3.14 | CPython 3.14 | Windows ARM64 | Details |
| cbor2-6.1.4-cp314-cp314-win_amd64.whl | CPython 3.14 | CPython 3.14 | Windows x86-64 | Details |
| cbor2-6.1.4-cp314-cp314-win32.whl | CPython 3.14 | CPython 3.14 | Windows x86-32 | Details |
| cbor2-6.1.4-cp314-cp314-musllinux_1_2_x86_64.whl | CPython 3.14 | CPython 3.14 | Linux musl 1.2+ x86-64 | Details |
| cbor2-6.1.4-cp314-cp314-musllinux_1_2_aarch64.whl | CPython 3.14 | CPython 3.14 | Linux musl 1.2+ ARM64 | Details |
| cbor2-6.1.4-cp314-cp314-manylinux_2_28_x86_64.whl | CPython 3.14 | CPython 3.14 | Linux glibc 2.28+ x86-64 | Details |
| cbor2-6.1.4-cp314-cp314-manylinux_2_28_aarch64.whl | CPython 3.14 | CPython 3.14 | Linux glibc 2.28+ ARM64 | Details |
| cbor2-6.1.4-cp314-cp314-macosx_11_0_arm64.whl | CPython 3.14 | CPython 3.14 | macOS 11.0+ ARM64 | Details |
| cbor2-6.1.4-cp313-cp313-win_arm64.whl | CPython 3.13 | CPython 3.13 | Windows ARM64 | Details |
| cbor2-6.1.4-cp313-cp313-win_amd64.whl | CPython 3.13 | CPython 3.13 | Windows x86-64 | Details |
| cbor2-6.1.4-cp313-cp313-win32.whl | CPython 3.13 | CPython 3.13 | Windows x86-32 | Details |
| cbor2-6.1.4-cp313-cp313-musllinux_1_2_x86_64.whl | CPython 3.13 | CPython 3.13 | Linux musl 1.2+ x86-64 | Details |
| cbor2-6.1.4-cp313-cp313-musllinux_1_2_aarch64.whl | CPython 3.13 | CPython 3.13 | Linux musl 1.2+ ARM64 | Details |
| cbor2-6.1.4-cp313-cp313-manylinux_2_28_x86_64.whl | CPython 3.13 | CPython 3.13 | Linux glibc 2.28+ x86-64 | Details |
| cbor2-6.1.4-cp313-cp313-manylinux_2_28_aarch64.whl | CPython 3.13 | CPython 3.13 | Linux glibc 2.28+ ARM64 | Details |
| cbor2-6.1.4-cp313-cp313-macosx_11_0_arm64.whl | CPython 3.13 | CPython 3.13 | macOS 11.0+ ARM64 | Details |
| cbor2-6.1.4-cp312-cp312-win_arm64.whl | CPython 3.12 | CPython 3.12 | Windows ARM64 | Details |
| cbor2-6.1.4-cp312-cp312-win_amd64.whl | CPython 3.12 | CPython 3.12 | Windows x86-64 | Details |
| cbor2-6.1.4-cp312-cp312-win32.whl | CPython 3.12 | CPython 3.12 | Windows x86-32 | Details |
| cbor2-6.1.4-cp312-cp312-musllinux_1_2_x86_64.whl | CPython 3.12 | CPython 3.12 | Linux musl 1.2+ x86-64 | Details |
| cbor2-6.1.4-cp312-cp312-musllinux_1_2_aarch64.whl | CPython 3.12 | CPython 3.12 | Linux musl 1.2+ ARM64 | Details |
| cbor2-6.1.4-cp312-cp312-manylinux_2_28_x86_64.whl | CPython 3.12 | CPython 3.12 | Linux glibc 2.28+ x86-64 | Details |
| cbor2-6.1.4-cp312-cp312-manylinux_2_28_aarch64.whl | CPython 3.12 | CPython 3.12 | Linux glibc 2.28+ ARM64 | Details |
| cbor2-6.1.4-cp312-cp312-macosx_11_0_arm64.whl | CPython 3.12 | CPython 3.12 | macOS 11.0+ ARM64 | Details |
| cbor2-6.1.4-cp311-cp311-win_arm64.whl | CPython 3.11 | CPython 3.11 | Windows ARM64 | Details |
| cbor2-6.1.4-cp311-cp311-win_amd64.whl | CPython 3.11 | CPython 3.11 | Windows x86-64 | Details |
| cbor2-6.1.4-cp311-cp311-win32.whl | CPython 3.11 | CPython 3.11 | Windows x86-32 | Details |
| cbor2-6.1.4-cp311-cp311-musllinux_1_2_x86_64.whl | CPython 3.11 | CPython 3.11 | Linux musl 1.2+ x86-64 | Details |
| cbor2-6.1.4-cp311-cp311-musllinux_1_2_aarch64.whl | CPython 3.11 | CPython 3.11 | Linux musl 1.2+ ARM64 | Details |
| cbor2-6.1.4-cp311-cp311-manylinux_2_28_x86_64.whl | CPython 3.11 | CPython 3.11 | Linux glibc 2.28+ x86-64 | Details |
| cbor2-6.1.4-cp311-cp311-manylinux_2_28_aarch64.whl | CPython 3.11 | CPython 3.11 | Linux glibc 2.28+ ARM64 | Details |
| cbor2-6.1.4-cp311-cp311-macosx_11_0_arm64.whl | CPython 3.11 | CPython 3.11 | macOS 11.0+ ARM64 | Details |
| cbor2-6.1.4-cp310-cp310-win_arm64.whl | CPython 3.10 | CPython 3.10 | Windows ARM64 | Details |
| cbor2-6.1.4-cp310-cp310-win_amd64.whl | CPython 3.10 | CPython 3.10 | Windows x86-64 | Details |
| cbor2-6.1.4-cp310-cp310-win32.whl | CPython 3.10 | CPython 3.10 | Windows x86-32 | Details |
| cbor2-6.1.4-cp310-cp310-musllinux_1_2_x86_64.whl | CPython 3.10 | CPython 3.10 | Linux musl 1.2+ x86-64 | Details |
| cbor2-6.1.4-cp310-cp310-musllinux_1_2_aarch64.whl | CPython 3.10 | CPython 3.10 | Linux musl 1.2+ ARM64 | Details |
| cbor2-6.1.4-cp310-cp310-manylinux_2_28_x86_64.whl | CPython 3.10 | CPython 3.10 | Linux glibc 2.28+ x86-64 | Details |
| cbor2-6.1.4-cp310-cp310-manylinux_2_28_aarch64.whl | CPython 3.10 | CPython 3.10 | Linux glibc 2.28+ ARM64 | Details |
| cbor2-6.1.4-cp310-cp310-macosx_11_0_arm64.whl | CPython 3.10 | CPython 3.10 | macOS 11.0+ ARM64 | Details |
Total release size: 19.6 MB
Release files / cbor2-6.1.4.tar.gz
| Download URL | cbor2-6.1.4.tar.gz |
|---|---|
| Size | 90.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
01ecc79a28f33d17331943ce508fc1e21f4b06553c73f874f4c77120d72b2ef9
|
|
BLAKE2b-256 checksum How to use checksums |
c614b02446bacfe44351b1689c04937ade007588f44570431880a6937e525e6c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp314-cp314t-win_arm64.whl
| Download URL | cbor2-6.1.4-cp314-cp314t-win_arm64.whl |
|---|---|
| Size | 298.4 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows ARM64 |
|
SHA-256 checksum How to use checksums |
164ca22b509408435b2d8236c80c964e4fc77c085ab034569cd04c40d5cc8883
|
|
BLAKE2b-256 checksum How to use checksums |
295fff2c6da83553a692219a0a62a21b57a27ded4405200e50db758a17fbaf15
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp314-cp314t-win_amd64.whl
| Download URL | cbor2-6.1.4-cp314-cp314t-win_amd64.whl |
|---|---|
| Size | 309.2 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows x86-64 |
|
SHA-256 checksum How to use checksums |
f3fc7d15cba4174373df2496070faa4a927fe3ed772130d281808120aec7b61c
|
|
BLAKE2b-256 checksum How to use checksums |
995dd5db22837cb566de733b9d1c418cdf1912ccb1efc7b179e295430b1d81a2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp314-cp314t-win32.whl
| Download URL | cbor2-6.1.4-cp314-cp314t-win32.whl |
|---|---|
| Size | 281.5 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows x86-32 |
|
SHA-256 checksum How to use checksums |
7deccc50fd0b55c4c7dd265b144c5358a645121e457c0ae3722b5ad59832b257
|
|
BLAKE2b-256 checksum How to use checksums |
cc7c73057e7a38488a816a0d40ff9e7cd9f418800894582e2e48fb2f47ce66a2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl
| Download URL | cbor2-6.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 527.7 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
71fcf4f237d68bf4445bf45070f36f82b333f2e6a62612aa2c256683b51378a9
|
|
BLAKE2b-256 checksum How to use checksums |
8266420991095d9473614b205d4c4e40b5d3b9f1ee4410eb3c48c1e902947837
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp314-cp314t-musllinux_1_2_aarch64.whl
| Download URL | cbor2-6.1.4-cp314-cp314t-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 511.6 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
9b904b8d0f4ddac9259197d21d121fae4cb8b555700d65bc12c5d46a2e6c2025
|
|
BLAKE2b-256 checksum How to use checksums |
238e2015175132a27c1daed434f671ac6d9c1311461995df47f201307700e0da
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp314-cp314t-manylinux_2_28_x86_64.whl
| Download URL | cbor2-6.1.4-cp314-cp314t-manylinux_2_28_x86_64.whl |
|---|---|
| Size | 459.8 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
179a794bf4be1d46ff190695929f65f0b42019c156919846ae539d2a7ec42e54
|
|
BLAKE2b-256 checksum How to use checksums |
603907dd0ea957c1f48673d3947f97ee36826efd4a824053dd0ec4df2f0c89d6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp314-cp314t-manylinux_2_28_aarch64.whl
| Download URL | cbor2-6.1.4-cp314-cp314t-manylinux_2_28_aarch64.whl |
|---|---|
| Size | 445.3 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
8f1019494b0ec81a3df3ebb01b6acb446d5b946fe35845b1726379abd66a71da
|
|
BLAKE2b-256 checksum How to use checksums |
d51aa8624023b84b41c43a150a89517c104aed0e467bd258866f13be4c3ac0c6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp314-cp314t-macosx_11_0_arm64.whl
| Download URL | cbor2-6.1.4-cp314-cp314t-macosx_11_0_arm64.whl |
|---|---|
| Size | 401.0 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
7336ff4cb7d161ec43b65eef43bf3e9bcab44bd152efb54dd637b7afe711254f
|
|
BLAKE2b-256 checksum How to use checksums |
9e413b28184154f6cbf7e47c1b7fb4a7a291c54f27a6f3a0a2f64b078c6a13e1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp314-cp314-win_arm64.whl
| Download URL | cbor2-6.1.4-cp314-cp314-win_arm64.whl |
|---|---|
| Size | 304.1 kB |
| Tags | CPython 3.14 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
c6b28b928c5f2dbf47dffa12dce9c8e36fe6ac1c1358bc326499c0736263b66f
|
|
BLAKE2b-256 checksum How to use checksums |
e5b5e614cee861772f6b5c4d926b066d2e7dbc11e220b50ba716ba91e430fb0f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp314-cp314-win_amd64.whl
| Download URL | cbor2-6.1.4-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 313.0 kB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
855764e02dc60ab9413acd044e997c3170000fdea6155d6c43a923a1d966dbe6
|
|
BLAKE2b-256 checksum How to use checksums |
bb7d4afa096ddc94049f5a514690891b02a18319e146ceb14465ce30c8340a8b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp314-cp314-win32.whl
| Download URL | cbor2-6.1.4-cp314-cp314-win32.whl |
|---|---|
| Size | 285.2 kB |
| Tags | CPython 3.14 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
6abcf072b8c0fdc8ad7902ee26a906cafbf3427d026b662ff21166a253f85e18
|
|
BLAKE2b-256 checksum How to use checksums |
bdc60beac64cb74cd3217f295f9bb0d64675e1809c683a31ea2a49ac9d4d1504
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp314-cp314-musllinux_1_2_x86_64.whl
| Download URL | cbor2-6.1.4-cp314-cp314-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 531.2 kB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
3f4a434c36bb0d33aeb48ddae8e8b673ca7e1f14545ee7cf4a4c7c39380ea9a2
|
|
BLAKE2b-256 checksum How to use checksums |
7d452f5ea5bfe0fd800b3739c7df8679bdffa9f7def6b2f2fee064ada1c63e85
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp314-cp314-musllinux_1_2_aarch64.whl
| Download URL | cbor2-6.1.4-cp314-cp314-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 518.7 kB |
| Tags | CPython 3.14 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
239db0f92d537fd29eaec4e40195fc3b2b48bc34a5887059658162489a9eb6ae
|
|
BLAKE2b-256 checksum How to use checksums |
9252437e4aa4f5df1fb41020d64b3d99a8239f0f99a3a75eb6ffa5cb66004b7f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp314-cp314-manylinux_2_28_x86_64.whl
| Download URL | cbor2-6.1.4-cp314-cp314-manylinux_2_28_x86_64.whl |
|---|---|
| Size | 462.4 kB |
| Tags | CPython 3.14 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
c0f5f2d6d3b58e44146860c049f3c082207a4005588b8926d51bf937ab66773c
|
|
BLAKE2b-256 checksum How to use checksums |
67228224b01f95a6fe07b1a64082aea34d9f49068392b3de93f5f3a10c73c62e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp314-cp314-manylinux_2_28_aarch64.whl
| Download URL | cbor2-6.1.4-cp314-cp314-manylinux_2_28_aarch64.whl |
|---|---|
| Size | 452.2 kB |
| Tags | CPython 3.14 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
0859a0837e6e2d4fe5f5b849f6475797e4db545da98c19db4b1d3487bd47aa22
|
|
BLAKE2b-256 checksum How to use checksums |
46f9b9f12a5e24d5ae355e4c0f6d37330a2bbedad3331247a223a51c4cd39d5e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | cbor2-6.1.4-cp314-cp314-macosx_11_0_arm64.whl |
|---|---|
| Size | 407.5 kB |
| Tags | CPython 3.14 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
24da0a481294ac416e1e369e2d204b2b1d993cbd082d0d99fa3d6f5f27ae5e69
|
|
BLAKE2b-256 checksum How to use checksums |
055dc5374c76471ab41dff4420a276569a56352e83166374fba6f40fd0bde7ad
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp313-cp313-win_arm64.whl
| Download URL | cbor2-6.1.4-cp313-cp313-win_arm64.whl |
|---|---|
| Size | 290.0 kB |
| Tags | CPython 3.13 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
598710183daae69cbdeb177a870ec64aa601de8138a61491fd256826d15a860f
|
|
BLAKE2b-256 checksum How to use checksums |
5f7f35d53ff4252a5a85656480d3a81d5a5af823979ccd0c5cac95196a7548a6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp313-cp313-win_amd64.whl
| Download URL | cbor2-6.1.4-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 299.3 kB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
c08b9c7d2ea013e24a0cb819b872b0119dde404f64a1182c0b24095b7bba781f
|
|
BLAKE2b-256 checksum How to use checksums |
0e67ba140234a6415c16dcfbe0585ce12f905157b70e9cb1bb63a2b6d5721e70
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp313-cp313-win32.whl
| Download URL | cbor2-6.1.4-cp313-cp313-win32.whl |
|---|---|
| Size | 278.1 kB |
| Tags | CPython 3.13 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
d2560c2ba6a95904ba2a0ca257af878c4344409d9b46d8e646d8ebb617b1e0dd
|
|
BLAKE2b-256 checksum How to use checksums |
400888cecf20b8825bdd991c47b317415c08ef9e7d5f05a1def9acd346edabde
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | cbor2-6.1.4-cp313-cp313-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 528.8 kB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
ad4efa23fee6447e56a269191044e06eb39e809458bcd674e164fe9445feafd0
|
|
BLAKE2b-256 checksum How to use checksums |
8286d687cd1c2c9f9a986e8552ad1fdbd22411cc86389b5705dba6ec6f7e3226
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp313-cp313-musllinux_1_2_aarch64.whl
| Download URL | cbor2-6.1.4-cp313-cp313-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 516.5 kB |
| Tags | CPython 3.13 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
69978901302ecbc8cda57b520487c5c5240ed217de783eb7728fceb258311d76
|
|
BLAKE2b-256 checksum How to use checksums |
be262cfdd5ee826205a88a826bb38b7a572c676ec3efa29574be5cdbd04b4859
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp313-cp313-manylinux_2_28_x86_64.whl
| Download URL | cbor2-6.1.4-cp313-cp313-manylinux_2_28_x86_64.whl |
|---|---|
| Size | 460.4 kB |
| Tags | CPython 3.13 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
36ae16d64b1f7b620c1af748e7b6947e20069ef80eee56871c5fbb84cc635905
|
|
BLAKE2b-256 checksum How to use checksums |
e32169e4d37f00319b3d37322355aedc83154b4d8b75dc9e9789c06e1fbd8a92
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp313-cp313-manylinux_2_28_aarch64.whl
| Download URL | cbor2-6.1.4-cp313-cp313-manylinux_2_28_aarch64.whl |
|---|---|
| Size | 449.8 kB |
| Tags | CPython 3.13 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
4bd29f21529e279d50fc14f1a811f7b05b4d8e66a7969163cce98983b6817245
|
|
BLAKE2b-256 checksum How to use checksums |
353d93eed770864540c5c9ea0841008208e9db686b7335f42520705b7d6dc6b2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | cbor2-6.1.4-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 403.7 kB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
c48a7c938fc5fa5300ff82b5df09068dcb4838685ae8556b5ee8279d74f97ab4
|
|
BLAKE2b-256 checksum How to use checksums |
0d170b20c88e76942ede86c98cdce138681690f95908c540c264fff847729cd4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp312-cp312-win_arm64.whl
| Download URL | cbor2-6.1.4-cp312-cp312-win_arm64.whl |
|---|---|
| Size | 290.7 kB |
| Tags | CPython 3.12 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
553a46bda7d09552631a714e22b91e6ff2c867ecd91511596ce290d8879b8d5b
|
|
BLAKE2b-256 checksum How to use checksums |
23f977981e6e63092de19d7306a09a12b0eb3fd2907dc22c10dd5d389eb27faf
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp312-cp312-win_amd64.whl
| Download URL | cbor2-6.1.4-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 300.0 kB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
cc8cd300e236e9797b2e1ce306109dc481fcccf78bfa2682bf36d99e6eab1ec6
|
|
BLAKE2b-256 checksum How to use checksums |
da2787440788fc0d9513534c3c699238e2a9ca6010f8cb72e9c203b7af20a9f6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp312-cp312-win32.whl
| Download URL | cbor2-6.1.4-cp312-cp312-win32.whl |
|---|---|
| Size | 278.8 kB |
| Tags | CPython 3.12 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
2310f07db3f9ba26f2a623774ff9f3dc7185af54f732ea119785a6b1bf7e1e7e
|
|
BLAKE2b-256 checksum How to use checksums |
918e6811e4ee84203ac657f6f461a37c7c9ba0287bde80eb83c7971e9b3fe156
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | cbor2-6.1.4-cp312-cp312-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 529.2 kB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
32a4663425fbca4a4a7aa918eb5789d844c406439e58424cf34511f79f559242
|
|
BLAKE2b-256 checksum How to use checksums |
8c879c0959510f7a402e5995c81ccfd82cb9f314140dc0cce88c12836e5b93f1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
| Download URL | cbor2-6.1.4-cp312-cp312-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 516.9 kB |
| Tags | CPython 3.12 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
5e6c76004d674ad1c620660cb0bc5a8a0b72a5d8c7b70926d8e09e6d7e87332f
|
|
BLAKE2b-256 checksum How to use checksums |
15e44445e6237088d1cca3b8536daeb90d6b4e23776de5609c9fa46773874757
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp312-cp312-manylinux_2_28_x86_64.whl
| Download URL | cbor2-6.1.4-cp312-cp312-manylinux_2_28_x86_64.whl |
|---|---|
| Size | 461.2 kB |
| Tags | CPython 3.12 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
310f3dfb296ba48fe9b63c5cf26e691e3548a1eae6901d2f0c18e941d151f220
|
|
BLAKE2b-256 checksum How to use checksums |
f0a510c6c126d59b07f2bd005094dd12a20afa46146f7e2673ed6f61a57641a7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp312-cp312-manylinux_2_28_aarch64.whl
| Download URL | cbor2-6.1.4-cp312-cp312-manylinux_2_28_aarch64.whl |
|---|---|
| Size | 449.9 kB |
| Tags | CPython 3.12 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
d9ada5a6ccfbb8ea7a3aa2aeb028421b52d8e0cd9323f0a2aeaa9c09d25fbce2
|
|
BLAKE2b-256 checksum How to use checksums |
96acf58b3bafce7c86ada2ad8eaf189453136d2cf5bae526ea0540e1b9bc9d06
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | cbor2-6.1.4-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 404.6 kB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
1fc15061553e4494dc10883237501e3402c645fe509248dd698e1faf2460d68b
|
|
BLAKE2b-256 checksum How to use checksums |
2e76fb64293c19cafb860060310c57b768fd9cfb7cf592449660b756538cc116
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp311-cp311-win_arm64.whl
| Download URL | cbor2-6.1.4-cp311-cp311-win_arm64.whl |
|---|---|
| Size | 296.1 kB |
| Tags | CPython 3.11 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
bd20ecc5c8ece24db952e48a91c8c47319eaa6358af707c85ac2bb388a79abc8
|
|
BLAKE2b-256 checksum How to use checksums |
533cb3839d6213c88b249ba860525df05ff18b27bdc28ebc09cb1547790f001a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp311-cp311-win_amd64.whl
| Download URL | cbor2-6.1.4-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 303.2 kB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
5b99305d4013867e059f147752b95f728680682ab03d75a3f4dcfbb270d8dfe9
|
|
BLAKE2b-256 checksum How to use checksums |
1623d54f679d4b155918f5a0879dab78203ce4fd514d311b7cfeba27dafe480b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp311-cp311-win32.whl
| Download URL | cbor2-6.1.4-cp311-cp311-win32.whl |
|---|---|
| Size | 281.7 kB |
| Tags | CPython 3.11 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
4903f24e0f9087275a0b6606c8b0aa586277001d51e4844fcdbc5b7211330aa8
|
|
BLAKE2b-256 checksum How to use checksums |
c919be98721365edfe6fc23e6bcd1385afa0e960b247c5f0b50bb67f5d05e2d9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | cbor2-6.1.4-cp311-cp311-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 532.2 kB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
316e217a496640418d3137483279d0e70053b000cdd4b52a4dbf20ea478bc40a
|
|
BLAKE2b-256 checksum How to use checksums |
8407cb5fd92834633508d680a5b5695aeaf99d33ca0bdc5b844550d538f335b0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
| Download URL | cbor2-6.1.4-cp311-cp311-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 523.1 kB |
| Tags | CPython 3.11 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
28fa5db05a7eae8fd80709959988d8a7f12838c6d4e5c58ec951414058641195
|
|
BLAKE2b-256 checksum How to use checksums |
b188de524c6c2c91b740e5df6e6955a113fb616e979b26fd2e6a0693082d36e0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp311-cp311-manylinux_2_28_x86_64.whl
| Download URL | cbor2-6.1.4-cp311-cp311-manylinux_2_28_x86_64.whl |
|---|---|
| Size | 464.3 kB |
| Tags | CPython 3.11 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
c204a75f91f8cd9ed0881f6b88ec395c59aeac9fcf4d08155e7f899db2a1c46e
|
|
BLAKE2b-256 checksum How to use checksums |
d50c5796c2ed2dcd0696fc4abedf0ea0dfd5361b3f022a311481f977fa51b2b8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp311-cp311-manylinux_2_28_aarch64.whl
| Download URL | cbor2-6.1.4-cp311-cp311-manylinux_2_28_aarch64.whl |
|---|---|
| Size | 457.3 kB |
| Tags | CPython 3.11 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
e1fe2d62c50df290576280b18247ec63486f78be73e285bae269c2456c6ddff0
|
|
BLAKE2b-256 checksum How to use checksums |
8d96d8e1ed3e79ea20a3423a96b5c89ce794fa02cb428e4429e601f8ebcbac7c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | cbor2-6.1.4-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 414.9 kB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
8156fdeb73c3ff6c8cf67ad414fb5c887cd708ff0af6d61f62629f41cb4c17b2
|
|
BLAKE2b-256 checksum How to use checksums |
a7841e363301c06f509963d134f5479e82b3ade87fb1495ddacf9bf7ff24ac42
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp310-cp310-win_arm64.whl
| Download URL | cbor2-6.1.4-cp310-cp310-win_arm64.whl |
|---|---|
| Size | 296.3 kB |
| Tags | CPython 3.10 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
c435720a25c1de9b241df883b5890b35aff3bf64365efc8037d4d26df085724e
|
|
BLAKE2b-256 checksum How to use checksums |
6bfb969a945d3f3c0bd619d73e7eb375ef1800af33451d7ece2d56d881ef1732
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp310-cp310-win_amd64.whl
| Download URL | cbor2-6.1.4-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 303.8 kB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
deff027a56e04caebfee649029bfd1836f4fb468d2cf66d2a396ae1018f655db
|
|
BLAKE2b-256 checksum How to use checksums |
3aa9a1a88346b44a7fbcd4b4aa4f527fbc5f46649bf0706e994d8e59aada4641
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp310-cp310-win32.whl
| Download URL | cbor2-6.1.4-cp310-cp310-win32.whl |
|---|---|
| Size | 282.3 kB |
| Tags | CPython 3.10 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
41aae72e8863ac0d50705ea8290b72c49db90a6d953110feaa91360ae526fa8d
|
|
BLAKE2b-256 checksum How to use checksums |
d2f473aaf73837bae5c47f01e1a602214a9b9ece6c0687b7b1d6e4ecafe55b74
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
| Download URL | cbor2-6.1.4-cp310-cp310-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 533.4 kB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
e8097e8259b78c8feb5dd5b833b23f83ed588e821ef44cf1455082cfc9434440
|
|
BLAKE2b-256 checksum How to use checksums |
7d7b819912a5192ffdb0261b9c73e57b2ee77b4141132ffac77bf374c738e310
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
| Download URL | cbor2-6.1.4-cp310-cp310-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 524.3 kB |
| Tags | CPython 3.10 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
032ce71cbdc9267e9cec42132f6ac6c40f441ec27ebc87ca9dd209dcab6804ee
|
|
BLAKE2b-256 checksum How to use checksums |
52e1f794155ec864c0e85a2df293adc589e7e45133ab15c0d21ac5ae3a51f804
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp310-cp310-manylinux_2_28_x86_64.whl
| Download URL | cbor2-6.1.4-cp310-cp310-manylinux_2_28_x86_64.whl |
|---|---|
| Size | 464.7 kB |
| Tags | CPython 3.10 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
7b697c2a18eab9a3326447fe0f1c927db065a096febc57f064f0f5ed67fe96fc
|
|
BLAKE2b-256 checksum How to use checksums |
0fd80b2fb7e936b63395ab1acf91074dc0788c575a57e8d808d9e8489de631f4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp310-cp310-manylinux_2_28_aarch64.whl
| Download URL | cbor2-6.1.4-cp310-cp310-manylinux_2_28_aarch64.whl |
|---|---|
| Size | 458.3 kB |
| Tags | CPython 3.10 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
ae14eb3f2f251102d72625ab02a28c83a8d11adf3d0383bd6d7bd9d672e18119
|
|
BLAKE2b-256 checksum How to use checksums |
6b433d8d53f22be9566cbb011bdaaf799a77f52e447b60a54efc9537f271f177
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency logRelease files / cbor2-6.1.4-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | cbor2-6.1.4-cp310-cp310-macosx_11_0_arm64.whl |
|---|---|
| Size | 415.4 kB |
| Tags | CPython 3.10 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
3cfb7eec57406b86aab47183f6dc90ece888e03721d37a4d33315e79e486898d
|
|
BLAKE2b-256 checksum How to use checksums |
667d91e6b680e8ae313e53ae8da1d0b578c668d240c9f294be06d729fc014854
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.
Transparency log