Skip to main content
Testing Status Publish Status Code Coverage Documentation Status

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 pure python with an optional C backend.

On PyPy, cbor2 runs with almost identical performance to the C backend.

Features

  • Simple api like 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.

  • Optional C module backend tested on big- and little-endian architectures.

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

Installation

pip install cbor2

Requirements

  • Python >= 3.8 (or PyPy3 3.8+)

  • C-extension: Any C compiler that can build Python extensions. Any modern libc with the exception of Glibc<2.9

Building the C-Extension

To force building of the optional C-extension, set OS env CBOR2_BUILD_C_EXTENSION=1. To disable building of the optional C-extension, set OS env CBOR2_BUILD_C_EXTENSION=0. If this environment variable is unset, setup.py will default to auto detecting a compatible C library and attempt to compile the extension.

Usage

Basic 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 5.6.5

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

Source distribution (sdist)

Source distribution for cbor2 5.6.5
File Size Uploaded
cbor2-5.6.5.tar.gz 100.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for cbor2 5.6.5
File
cbor2-5.6.5-py3-none-any.whl Python 3 none any Details
cbor2-5.6.5-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
cbor2-5.6.5-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
cbor2-5.6.5-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
cbor2-5.6.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
cbor2-5.6.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
cbor2-5.6.5-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
cbor2-5.6.5-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
cbor2-5.6.5-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
cbor2-5.6.5-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
cbor2-5.6.5-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
cbor2-5.6.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
cbor2-5.6.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
cbor2-5.6.5-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
cbor2-5.6.5-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
cbor2-5.6.5-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
cbor2-5.6.5-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
cbor2-5.6.5-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
cbor2-5.6.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
cbor2-5.6.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
cbor2-5.6.5-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
cbor2-5.6.5-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
cbor2-5.6.5-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
cbor2-5.6.5-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
cbor2-5.6.5-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
cbor2-5.6.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
cbor2-5.6.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
cbor2-5.6.5-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
cbor2-5.6.5-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
cbor2-5.6.5-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
cbor2-5.6.5-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
cbor2-5.6.5-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
cbor2-5.6.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
cbor2-5.6.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
cbor2-5.6.5-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
cbor2-5.6.5-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
cbor2-5.6.5-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
cbor2-5.6.5-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
cbor2-5.6.5-cp38-cp38-musllinux_1_2_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARM64 Details
cbor2-5.6.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
cbor2-5.6.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
cbor2-5.6.5-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
cbor2-5.6.5-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details

Total release size:7.5 MB

Release files / cbor2-5.6.5.tar.gz

Download URL cbor2-5.6.5.tar.gz
Size 100.9 kB
Tags Source
SHA-256 checksum
How to use checksums
b682820677ee1dbba45f7da11898d2720f92e06be36acec290867d5ebf3d7e09
BLAKE2b-256 checksum
How to use checksums
e4aaba55b47d51d27911981a18743b4d3cebfabccbb0598c09801b734cec4184
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-py3-none-any.whl

Download URL cbor2-5.6.5-py3-none-any.whl
Size 23.8 kB
Tags Python 3
SHA-256 checksum
How to use checksums
3038523b8fc7de312bb9cdcbbbd599987e64307c4db357cd2030c472a6c7d468
BLAKE2b-256 checksum
How to use checksums
9bef1c4698cac96d792005ef0611832f38eaee477c275ab4b02cbfc4daba7ad3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp313-cp313-win_amd64.whl

Download URL cbor2-5.6.5-cp313-cp313-win_amd64.whl
Size 66.8 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
54c72a3207bb2d4480c2c39dad12d7971ce0853a99e3f9b8d559ce6eac84f66f
BLAKE2b-256 checksum
How to use checksums
a8cd793dc041395609f5dd1edfdf0aecde504dc0fd35ed67eb3b2db79fb8ef4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL cbor2-5.6.5-cp313-cp313-musllinux_1_2_x86_64.whl
Size 266.3 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
5ce13a27ef8fddf643fc17a753fe34aa72b251d03c23da6a560c005dc171085b
BLAKE2b-256 checksum
How to use checksums
77cb9b4f7890325eaa374c21fcccfee61a099ccb9ea0bc0f606acf7495f9568c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL cbor2-5.6.5-cp313-cp313-musllinux_1_2_aarch64.whl
Size 264.7 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f91e6d74fa6917df31f8757fdd0e154203b0dd0609ec53eb957016a2b474896a
BLAKE2b-256 checksum
How to use checksums
f48d0d5ad3467f70578b032b3f52eb0f01f0327d5ae6b1f9e7d4d4e01a73aa95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL cbor2-5.6.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 269.1 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7f6d69f38f7d788b04c09ef2b06747536624b452b3c8b371ab78ad43b0296fab
BLAKE2b-256 checksum
How to use checksums
6404f64bda3eea649fe6644c59f13d0e1f4666d975ce305cadf13835233b2a26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL cbor2-5.6.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 275.9 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
97a7e409b864fecf68b2ace8978eb5df1738799a333ec3ea2b9597bfcdd6d7d2
BLAKE2b-256 checksum
How to use checksums
5c3fe16a1e29994483c751b714cdf61d2956290b0b30e94690fa714a9f155c5c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp313-cp313-macosx_11_0_arm64.whl

Download URL cbor2-5.6.5-cp313-cp313-macosx_11_0_arm64.whl
Size 67.7 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
61ceb77e6aa25c11c814d4fe8ec9e3bac0094a1f5bd8a2a8c95694596ea01e08
BLAKE2b-256 checksum
How to use checksums
8483cb941d4fd10e4696b2c0f6fb2e3056d9a296e5765b2000a69e29a507f819
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp313-cp313-macosx_10_13_x86_64.whl

Download URL cbor2-5.6.5-cp313-cp313-macosx_10_13_x86_64.whl
Size 67.6 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
f0d0a9c5aabd48ecb17acf56004a7542a0b8d8212be52f3102b8218284bd881e
BLAKE2b-256 checksum
How to use checksums
2b6977e93caae71d1baee927c9762e702c464715d88073133052c74ecc9d37d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp312-cp312-win_amd64.whl

Download URL cbor2-5.6.5-cp312-cp312-win_amd64.whl
Size 66.7 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
a3ac50485cf67dfaab170a3e7b527630e93cb0a6af8cdaa403054215dff93adf
BLAKE2b-256 checksum
How to use checksums
10183866693a87c90cb12f7942e791d0f03a40ba44887dde7b7fc85319647efe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL cbor2-5.6.5-cp312-cp312-musllinux_1_2_x86_64.whl
Size 266.8 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f2764804ffb6553283fc4afb10a280715905a4cea4d6dc7c90d3e89c4a93bc8d
BLAKE2b-256 checksum
How to use checksums
a89c76b11a5ea7548bccb0dfef3e8fb3ede48bfeb39348f0c217519e0c40d33a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL cbor2-5.6.5-cp312-cp312-musllinux_1_2_aarch64.whl
Size 264.9 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
ae2b49226224e92851c333b91d83292ec62eba53a19c68a79890ce35f1230d70
BLAKE2b-256 checksum
How to use checksums
f19008800367e920aef31b93bd7b0cd6fadcb3a3f2243f4ed77a0d1c76f22b99
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL cbor2-5.6.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 270.0 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
38886c41bebcd7dca57739439455bce759f1e4c551b511f618b8e9c1295b431b
BLAKE2b-256 checksum
How to use checksums
cfcb70751377d94112001d46c311b5c40b45f34863dfa78a6bc71b71f40c8c7f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL cbor2-5.6.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 276.6 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a8947c102cac79d049eadbd5e2ffb8189952890df7cbc3ee262bbc2f95b011a9
BLAKE2b-256 checksum
How to use checksums
77ac5fb79db6e882ec29680f4a974d35c098020a1b4709cad077667a8c3f4676
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp312-cp312-macosx_11_0_arm64.whl

Download URL cbor2-5.6.5-cp312-cp312-macosx_11_0_arm64.whl
Size 67.6 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fde21ac1cf29336a31615a2c469a9cb03cf0add3ae480672d4d38cda467d07fc
BLAKE2b-256 checksum
How to use checksums
f2d6f63a840c68fed4de67d5441947af2dc695152cc488bb0e57312832fb923a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp312-cp312-macosx_10_13_x86_64.whl

Download URL cbor2-5.6.5-cp312-cp312-macosx_10_13_x86_64.whl
Size 67.6 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
e25c2aebc9db99af7190e2261168cdde8ed3d639ca06868e4f477cf3a228a8e9
BLAKE2b-256 checksum
How to use checksums
57af84ced14c541451696825b7b8ccbb7668f688372ad8ee74aaca4311e79672
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp311-cp311-win_amd64.whl

Download URL cbor2-5.6.5-cp311-cp311-win_amd64.whl
Size 66.3 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
6e14a1bf6269d25e02ef1d4008e0ce8880aa271d7c6b4c329dba48645764f60e
BLAKE2b-256 checksum
How to use checksums
6f76478c12193de9517ce691bb8a3f7c00eafdd6a1bc3f7f23282ecdd99d02ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL cbor2-5.6.5-cp311-cp311-musllinux_1_2_x86_64.whl
Size 247.2 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
73b9647eed1493097db6aad61e03d8f1252080ee041a1755de18000dd2c05f37
BLAKE2b-256 checksum
How to use checksums
b21e12d887fb1a8227a16181eeec5d43057e251204626d73e1c20a77046ac1b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL cbor2-5.6.5-cp311-cp311-musllinux_1_2_aarch64.whl
Size 249.1 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6797b824b26a30794f2b169c0575301ca9b74ae99064e71d16e6ba0c9057de51
BLAKE2b-256 checksum
How to use checksums
3875ebfdbb281104b46419fe7cb65979de9927b75acebcb6afa0af291f728cd2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL cbor2-5.6.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 249.2 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
34cf5ab0dc310c3d0196caa6ae062dc09f6c242e2544bea01691fe60c0230596
BLAKE2b-256 checksum
How to use checksums
e184e177d9bef4749d14f31c513b25e341ac84e403e2ffa2bde562eac9e6184b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL cbor2-5.6.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 260.8 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
f4c7dbcdc59ea7f5a745d3e30ee5e6b6ff5ce7ac244aa3de6786391b10027bb3
BLAKE2b-256 checksum
How to use checksums
0f1e2010f6d02dd117df88df64baf3eeca6aa6614cc81bdd6bfabf615889cf1f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp311-cp311-macosx_11_0_arm64.whl

Download URL cbor2-5.6.5-cp311-cp311-macosx_11_0_arm64.whl
Size 67.4 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5cff06464b8f4ca6eb9abcba67bda8f8334a058abc01005c8e616728c387ad32
BLAKE2b-256 checksum
How to use checksums
41205a9d93f86b1e8fd9d9db33aff39c0e3a8459e0803ec24bd837d8b56d4a1d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp311-cp311-macosx_10_9_x86_64.whl

Download URL cbor2-5.6.5-cp311-cp311-macosx_10_9_x86_64.whl
Size 66.5 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
863e0983989d56d5071270790e7ed8ddbda88c9e5288efdb759aba2efee670bc
BLAKE2b-256 checksum
How to use checksums
bdb7ef045245180510305648fd604244d3bb1ecf1b20de68f42ab5bc20198024
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp310-cp310-win_amd64.whl

Download URL cbor2-5.6.5-cp310-cp310-win_amd64.whl
Size 66.3 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
5b856fda4c50c5bc73ed3664e64211fa4f015970ed7a15a4d6361bd48462feaf
BLAKE2b-256 checksum
How to use checksums
2055bd657fdedb0d046762f9bf567b262b233175995d40302cdaa71d9aadcec8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL cbor2-5.6.5-cp310-cp310-musllinux_1_2_x86_64.whl
Size 240.5 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
559dcf0d897260a9e95e7b43556a62253e84550b77147a1ad4d2c389a2a30192
BLAKE2b-256 checksum
How to use checksums
b2d527eced2cee4725bb876875f26d659063e2b7750d0dfb7572f451b569c4d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL cbor2-5.6.5-cp310-cp310-musllinux_1_2_aarch64.whl
Size 241.7 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
47261f54a024839ec649b950013c4de5b5f521afe592a2688eebbe22430df1dc
BLAKE2b-256 checksum
How to use checksums
0bba5c07b001bb26bd91d96e4b3b720676a909e1acdbaf7d250a47c5d7a5a0f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL cbor2-5.6.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 242.1 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b9d15b638539b68aa5d5eacc56099b4543a38b2d2c896055dccf7e83d24b7955
BLAKE2b-256 checksum
How to use checksums
bb41debb6f35d240caa8078a4a27c03e7eed09737575c564d619e1ee0e829616
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL cbor2-5.6.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 253.9 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a88f029522aec5425fc2f941b3df90da7688b6756bd3f0472ab886d21208acbd
BLAKE2b-256 checksum
How to use checksums
fa889b5fc312f21a10e048c348cead933e9f891cc09a295757957d8a5726641f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp310-cp310-macosx_11_0_arm64.whl

Download URL cbor2-5.6.5-cp310-cp310-macosx_11_0_arm64.whl
Size 67.4 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
87026fc838370d69f23ed8572939bd71cea2b3f6c8f8bb8283f573374b4d7f33
BLAKE2b-256 checksum
How to use checksums
62d833ec188eeff9c5e2e8ee8e214d15a0edf8fd001eefa01730e27834cfd410
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp310-cp310-macosx_10_9_x86_64.whl

Download URL cbor2-5.6.5-cp310-cp310-macosx_10_9_x86_64.whl
Size 66.5 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
e16c4a87fc999b4926f5c8f6c696b0d251b4745bc40f6c5aee51d69b30b15ca2
BLAKE2b-256 checksum
How to use checksums
f1f2eada1d3fcaeddbd0f9a25381eed6b150f2858cf615d33ef7c14f9f86218a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp39-cp39-win_amd64.whl

Download URL cbor2-5.6.5-cp39-cp39-win_amd64.whl
Size 66.4 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
a34ee99e86b17444ecbe96d54d909dd1a20e2da9f814ae91b8b71cf1ee2a95e4
BLAKE2b-256 checksum
How to use checksums
c722d0c40558aa227b44b3cd80d313cee76dc36779cba3bdb7307ef9743c6322
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL cbor2-5.6.5-cp39-cp39-musllinux_1_2_x86_64.whl
Size 239.5 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7488aec919f8408f9987a3a32760bd385d8628b23a35477917aa3923ff6ad45f
BLAKE2b-256 checksum
How to use checksums
f7f88febf9a0073f617b23c97fce819a6878c7310c40482c55a411a6075ed327
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL cbor2-5.6.5-cp39-cp39-musllinux_1_2_aarch64.whl
Size 240.8 kB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
824f202b556fc204e2e9a67d6d6d624e150fbd791278ccfee24e68caec578afd
BLAKE2b-256 checksum
How to use checksums
98fa9c83eae3b45428f76444b23919ed8cd922d37d3281a953a8b41268a85d7b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL cbor2-5.6.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 240.5 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
fa61a02995f3a996c03884cf1a0b5733f88cbfd7fa0e34944bf678d4227ee712
BLAKE2b-256 checksum
How to use checksums
942298eec0f27e0dec07222fcbf31f276631b8224c69ac979836cf3c184d9d6d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL cbor2-5.6.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 252.4 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
66dd25dd919cddb0b36f97f9ccfa51947882f064729e65e6bef17c28535dc459
BLAKE2b-256 checksum
How to use checksums
972c1b08c060d1369113bbda8ba699effd049d7ef58ba9dc35dd6ba6b9fcccda
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp39-cp39-macosx_11_0_arm64.whl

Download URL cbor2-5.6.5-cp39-cp39-macosx_11_0_arm64.whl
Size 67.4 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fe11c2eb518c882cfbeed456e7a552e544893c17db66fe5d3230dbeaca6b615c
BLAKE2b-256 checksum
How to use checksums
0defdbc6cd298cc96ec51fe71d4b15d3ddb30692071f86fdc2a65fdbdeadfb11
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp39-cp39-macosx_10_9_x86_64.whl

Download URL cbor2-5.6.5-cp39-cp39-macosx_10_9_x86_64.whl
Size 66.5 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
94885903105eec66d7efb55f4ce9884fdc5a4d51f3bd75b6fedc68c5c251511b
BLAKE2b-256 checksum
How to use checksums
acd2cf0f7357912c51a2e8405797093b8c50f4aba3b113344782bafd4910e403
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp38-cp38-win_amd64.whl

Download URL cbor2-5.6.5-cp38-cp38-win_amd64.whl
Size 66.3 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
8f747b7a9aaa58881a0c5b4cd4a9b8fb27eca984ed261a769b61de1f6b5bd1e6
BLAKE2b-256 checksum
How to use checksums
b443b1d235a841ec35066815fedc39c6f1317b06b17ce93bd599a540281963a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL cbor2-5.6.5-cp38-cp38-musllinux_1_2_x86_64.whl
Size 254.0 kB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
93676af02bd9a0b4a62c17c5b20f8e9c37b5019b1a24db70a2ee6cb770423568
BLAKE2b-256 checksum
How to use checksums
d24d4c11d6adfc1f5cd06f543a3b3a523d883f48ed8c4097c5feec38a617cb4b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp38-cp38-musllinux_1_2_aarch64.whl

Download URL cbor2-5.6.5-cp38-cp38-musllinux_1_2_aarch64.whl
Size 254.7 kB
Tags CPython 3.8 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
37096663a5a1c46a776aea44906cbe5fa3952f29f50f349179c00525d321c862
BLAKE2b-256 checksum
How to use checksums
8b7b95f8930ad9e8299f4f8ba105f9d9ea840bc2f0403f349a062ae4f2267983
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL cbor2-5.6.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 256.2 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
90bfa36944caccec963e6ab7e01e64e31cc6664535dc06e6295ee3937c999cbb
BLAKE2b-256 checksum
How to use checksums
a03bb58d95dff6c8b1dd150451356fadac8294f1b8e73124863d7b9abb03a359
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL cbor2-5.6.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 264.3 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a83b76367d1c3e69facbcb8cdf65ed6948678e72f433137b41d27458aa2a40cb
BLAKE2b-256 checksum
How to use checksums
c20bd55db4214f093a966d31e4a4ee737fbf02ea81c88fc7fc743612e62a4dea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp38-cp38-macosx_11_0_arm64.whl

Download URL cbor2-5.6.5-cp38-cp38-macosx_11_0_arm64.whl
Size 67.5 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3d1a18b3a58dcd9b40ab55c726160d4a6b74868f2a35b71f9e726268b46dc6a2
BLAKE2b-256 checksum
How to use checksums
9668efca8d029f334e61767268e37184fb04138bd9e0b1d55b4512dd32c8ce8d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / cbor2-5.6.5-cp38-cp38-macosx_10_9_x86_64.whl

Download URL cbor2-5.6.5-cp38-cp38-macosx_10_9_x86_64.whl
Size 66.7 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
4586a4f65546243096e56a3f18f29d60752ee9204722377021b3119a03ed99ff
BLAKE2b-256 checksum
How to use checksums
cce4f33809edd874dc16edce3929abc4830d9d703894b265b77581035f12d362
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Release history Release notifications | RSS feed

6.1.1

49 release files

6.1.0

49 release files

6.0.1

43 release files

6.0.0

43 release files

5.9.0

44 release files

5.8.0

44 release files

5.7.1

50 release files

5.7.0

50 release files

This release

5.6.5 This release

44 release files

5.6.3

37 release files

5.6.2

37 release files

5.6.0

37 release files

5.5.0

37 release files

5.4.5

36 release files

5.4.4

36 release files

5.4.2

13 release files

5.4.1

13 release files

5.3.0

13 release files

5.2.0

1 release file

5.1.2

1 release file

5.1.1

1 release file

5.1.0

1 release file

5.0.1

1 release file

5.0.0

1 release file

4.1.2

2 release files

4.1.1

2 release files

4.1.0

2 release files

4.0.1

2 release files

4.0.0

2 release files

3.0.4

2 release files

3.0.3

2 release files

3.0.2

2 release files

3.0.1

2 release files

3.0.0

2 release files

2.0.0

2 release files

1.1.0

2 release files

1.0.0

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