Skip to main content

CBOR (de)serializer with extensive tag support

Reason this release was yanked:

Possible Memory leak please use 5.4.5

Project description

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.7 (or PyPy3 3.7+)

  • 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

python -m cbor2.tool 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.

Usage:

# Pass hexadecimal through xxd.
$ echo a16568656c6c6f65776f726c64 | xxd -r -ps | python -m cbor2.tool --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 | python -m cbor2.tool -d --sequence
[1, 2]
[3, 4]
[5, 6]

Multiple files can also be sent to a single output file:

$ python -m cbor2.tool -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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cbor2-5.4.4.tar.gz (86.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

cbor2-5.4.4-py3-none-any.whl (19.2 kB view details)

Uploaded Python 3

cbor2-5.4.4-cp311-cp311-win_amd64.whl (59.1 kB view details)

Uploaded CPython 3.11Windows x86-64

cbor2-5.4.4-cp311-cp311-musllinux_1_1_x86_64.whl (246.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

cbor2-5.4.4-cp311-cp311-musllinux_1_1_aarch64.whl (250.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

cbor2-5.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (232.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cbor2-5.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (246.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cbor2-5.4.4-cp311-cp311-macosx_11_0_arm64.whl (61.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cbor2-5.4.4-cp311-cp311-macosx_10_9_x86_64.whl (60.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

cbor2-5.4.4-cp310-cp310-win_amd64.whl (59.1 kB view details)

Uploaded CPython 3.10Windows x86-64

cbor2-5.4.4-cp310-cp310-musllinux_1_1_x86_64.whl (236.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

cbor2-5.4.4-cp310-cp310-musllinux_1_1_aarch64.whl (241.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

cbor2-5.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (224.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cbor2-5.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (239.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cbor2-5.4.4-cp310-cp310-macosx_11_0_arm64.whl (61.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cbor2-5.4.4-cp310-cp310-macosx_10_9_x86_64.whl (60.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

cbor2-5.4.4-cp39-cp39-win_amd64.whl (59.2 kB view details)

Uploaded CPython 3.9Windows x86-64

cbor2-5.4.4-cp39-cp39-musllinux_1_1_x86_64.whl (234.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

cbor2-5.4.4-cp39-cp39-musllinux_1_1_aarch64.whl (239.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

cbor2-5.4.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (223.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

cbor2-5.4.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (237.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

cbor2-5.4.4-cp39-cp39-macosx_11_0_arm64.whl (61.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

cbor2-5.4.4-cp39-cp39-macosx_10_9_x86_64.whl (60.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

cbor2-5.4.4-cp38-cp38-win_amd64.whl (59.2 kB view details)

Uploaded CPython 3.8Windows x86-64

cbor2-5.4.4-cp38-cp38-musllinux_1_1_x86_64.whl (252.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

cbor2-5.4.4-cp38-cp38-musllinux_1_1_aarch64.whl (254.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

cbor2-5.4.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (236.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

cbor2-5.4.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (248.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

cbor2-5.4.4-cp38-cp38-macosx_11_0_arm64.whl (60.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

cbor2-5.4.4-cp38-cp38-macosx_10_9_x86_64.whl (59.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

cbor2-5.4.4-cp37-cp37m-win_amd64.whl (58.6 kB view details)

Uploaded CPython 3.7mWindows x86-64

cbor2-5.4.4-cp37-cp37m-musllinux_1_1_x86_64.whl (193.1 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

cbor2-5.4.4-cp37-cp37m-musllinux_1_1_aarch64.whl (193.6 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

cbor2-5.4.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (190.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

cbor2-5.4.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (193.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

cbor2-5.4.4-cp37-cp37m-macosx_10_9_x86_64.whl (58.7 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file cbor2-5.4.4.tar.gz.

File metadata

  • Download URL: cbor2-5.4.4.tar.gz
  • Upload date:
  • Size: 86.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for cbor2-5.4.4.tar.gz
Algorithm Hash digest
SHA256 d5dfe2c4c7d419b13cc70423cd9e312764d0e97de7dbf5583d78edfa8738e1de
MD5 0c87a4ed5dd5ca68188bdb94d23c5d6a
BLAKE2b-256 94f4597696cf18a308f3f2b70ae4b6308fe924b55a13837a90082dc0ec234591

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-py3-none-any.whl.

File metadata

  • Download URL: cbor2-5.4.4-py3-none-any.whl
  • Upload date:
  • Size: 19.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for cbor2-5.4.4-py3-none-any.whl
Algorithm Hash digest
SHA256 aa30e96a8a88a1b3d12f1da1878a5cbbd971d19b61a337cad2aeb90e38cff178
MD5 3798d3ce700e1b7f5350d3a36b5b2167
BLAKE2b-256 5dfb28a9b92f85d31a8d8678f5fe7f3756d51609b53c6ad7c33717176476c31f

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cbor2-5.4.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 59.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for cbor2-5.4.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5aa41379e0aba49d7e2bd2157f5323bf58757b26a99c15a8a55385b323786b66
MD5 e0a4e1e7a7d2540a2eb43a49db032b75
BLAKE2b-256 9ed55e4fc38744782d596421fee63a5c41259be4de359669954e2e652cade90e

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d39db222b6519386d9a1448e2d3f5317a7e089297e8589639c246470268ca864
MD5 9a8cce9d89534c3e330fe712ae3899dd
BLAKE2b-256 11af2ee98f523ebecab2330feea50b1a1ec63ceb4621b6233ca2227be1c66652

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c9bd1f3929494fb9f465bcbdd6fd57934ff735a1ad23c6c7d225baf4b9114843
MD5 dab6d5a63d2f432210aeda58f6c4ec4b
BLAKE2b-256 891b14b1234e8f2534ca93f58483d586b2571719104effcbc129ad569aa00713

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3276e783b11471327303c4354b3473acfdf29b08df65332fa3fb9feed13156f
MD5 0c98efa59e24275f62278c3d5931e371
BLAKE2b-256 d11dc6ffb278e90de3dc280c3d5780ad030385bb38b12806d7c92ec7692b6192

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5699fcd11fe64199006de9ae63f423c5b909c66179a46f86124e28751675c294
MD5 00547768a885ae256430ffe16825a55a
BLAKE2b-256 bf723cb64191409e604f552eca64b73726cf6e756d9f36ccfafea57b5eaac9d7

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1943e818de621d869c91dbbb23772e3faa5d60ad7677e41463156ee065105d0e
MD5 e12d0da13aaa29e52fb2b783b77dbe68
BLAKE2b-256 97d66c40916f993823acb4c8c6f15d96149220555a9be971bf6bca198d80d057

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8d8c957afb2745709b16aa52c6a8a24ed73bf1cdc118d76940d67478f485192b
MD5 20dff936610063c6e81f33e483272008
BLAKE2b-256 3b5ee790e633e728b74f7c73dd9254bf9d6097116cc891a8aa695204a27f2bf9

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: cbor2-5.4.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 59.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for cbor2-5.4.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 084f1454800d7ae18766e5b518d9bca8b0c60d5b9a1cedbc2d4d7a94d96c310a
MD5 d2c7d59d56a8dfaf8538ae66e45a6faa
BLAKE2b-256 3f05e703f07ebcc536d555e20db8a304cc84d33314435a4c908d23a5f8c7562b

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 535cbc57750f612b7e1194e5af0327140226f765bd0b86451f0cae08d73b276b
MD5 51aca781282ab135a912523033188ccc
BLAKE2b-256 3166b775fbe4e5e77b7588b83f9bae553192c60e988a46205a41dfa499e33834

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b8d68a9820246ba9869120d4e5d2ce1078ff9b1b363788783bd223d632481fb8
MD5 0e9e5debd47c2a7519ac72115b7abf1a
BLAKE2b-256 45c91d8a7c7fd42f140aff6c91efa78918f547456372567699776c0c4af6a8b9

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5fa85339ca97cdb85a0fee1845674815423c716dba899e4f64b3cb8414028cf
MD5 16a2ddb6c9b4e6b7808a96b2daac4eb5
BLAKE2b-256 19f619209de3da26318fb566039cef92ca0271a37a25a610d988f6554b8b35e6

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1690094ea93ab2edce83d8f569afc131ad2c94d6a62065430917e0708fd1a963
MD5 8a6517e978208027f39a2fea45033e72
BLAKE2b-256 c075a2ad4fccc051a61eeac304d3916e6323be5ce876020e8bb61fa0ff9d3cdf

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4981fb1661bd4dc842b2ce77444d31d59b142447712884c57b8337d5a95149b
MD5 83bb4ed0ad60728972b98977453e9d88
BLAKE2b-256 31fafb1dd4e96387dbe700ffa41a30408f5adeb0a225aff74fad31e82846cef6

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 284b95b2782eed088167f24c4701616ffc189651db99bf7940b77da0210b571a
MD5 2d7c02532d498a79efc73a244b81f81c
BLAKE2b-256 1c187efd2f709ee4f733e3e01c1e1ab29ba90d4dadcd284033b5539a21560092

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: cbor2-5.4.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 59.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for cbor2-5.4.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c2f7e354f51a762481d3d8fd2b0c6ed664fa443409f8db59b9338b97fef719e8
MD5 9712b292e4957e052faedbf4cac4f8ed
BLAKE2b-256 c4e1661b481601b1f99dcb8ca24a6177eaade50b9bae181bf3c9dab123eeefcd

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e2983bb3527848d3d896793dfd9afb17a9bbacb95fb1b787faecd134b024b1b9
MD5 65748242ca44aa1b73360d6eae31daff
BLAKE2b-256 2f164e300409c7d6c6ca72467678092c873217759f611a3e1c11ea79c6c5cd30

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0be3af6453952db14da0ceb4041e8cf97c25f48373fdd237383f44f6f37f3c8f
MD5 55368e5726fdda064b71562936cce080
BLAKE2b-256 20a22b55135c441b4a1a40c86fab6abf5a476efbd84d94b56b81c2fb9f3fd03d

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a16131b20bcd27d3f53273a1c52a3ae7447b6561c9453158748a05d211d41933
MD5 91ae8406c3bbd0e84556e0ad7ca8a72f
BLAKE2b-256 d656418aaf7004725483bf36c3fb9181130ae5ade1e5e8a8157abf23bdbf473f

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f8e3da1d7f84d78bfd043f2df3898737afa8d86b6d2886849ec753d986ef581
MD5 deeed1a7efe78946aa5a183add11f8ab
BLAKE2b-256 514231110c33276f93a52983bab013c8c4566cc68dd424727f28c9f8230c4257

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: cbor2-5.4.4-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 61.3 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for cbor2-5.4.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96f9df5522f6d2f632cf21fe5d8be4101ccb4669723af74903ca75a7769bec4f
MD5 094025aad8e7cf2510213ae387feacb3
BLAKE2b-256 5c83d08590505c7fec6b99e5472decfe00d9f9bdb9046bf512ce9583effd1956

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d08b871c8106393290041914b8439af19c6fc6647ae36382a146dfec7789ada
MD5 acc3f80865a02161418fd55892b182b9
BLAKE2b-256 2b38b2ddd6c45997128038d470d8a61efef38853696c2638a5c9ab07d02cf9d9

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: cbor2-5.4.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 59.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for cbor2-5.4.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e44468e4a0eea75c65d49032112559237b12ae88c6a2b970c4ca77edac14afb4
MD5 69dce1a836ac68ae6b1e669793006c5b
BLAKE2b-256 0935572471a60b3727e4a49c5544addf31a5e1f97a47b34d4b86bca3a3f1ce60

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 daccc7f509be1cb942f25444fe14d12393dbb418f06cdb2e02cf88ae844ac77d
MD5 f9a9f0d758364bb3fae7f20acf8474dd
BLAKE2b-256 f3b05bb45fff586ce06aa015cce8776ace2c1e4aadeb74b94e8466b4b7aaabea

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 55c36d1fa2087a40c51643bf09d4c7b762ce62f41b177e3672aba337a04da8b8
MD5 b2fac4d639234f13bf1458560d9ed5fe
BLAKE2b-256 e3307b783f3ddb98456a9f7185baa4112b89eeb7021988e136cdf86ea86cb495

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2629fa7ebab220175fec512774a63d244dff9faab78b2df0669a7ce11b3a09f
MD5 550a34e1bc4a63facd2288afacb9f5fb
BLAKE2b-256 4e280a3adaefafc1500a1343071232d569729796cd0a7df34ca7ea1887a013f1

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee98ea91ac88a05721cb5c9f7278d8f39641db552ae608333e915dc6ab96720d
MD5 cd85f1f83b7bbda7b5c6d9bc810eb406
BLAKE2b-256 7808be93de5a7befb6fcd3985c4908a09cda8c43ab86fb7ac40e2af23a1716d3

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: cbor2-5.4.4-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 60.8 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for cbor2-5.4.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d78726e3387e318f402df59898424e40f3d597c4737abf40961279fe5e935e3
MD5 fa0f19f0be7b6368b440d6349b16afd3
BLAKE2b-256 3146f150d0bf89b6e5cb0ed3594f04254acc0378c7028c51dce98cb4eb314753

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 22da91d0b14bfcce4a5c7a317ffb51fb681b1e677e552e12036081a367466cc4
MD5 70f16f63d2a740259e4fc106252bcfe1
BLAKE2b-256 1bc932969a290ae2701a049453180cca2569ace0623cd9e3697f32804a888955

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: cbor2-5.4.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 58.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for cbor2-5.4.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c3087b76fa988c1997aead8d2da0b81794f1ecdbf92e3e2d8bbc54ea58b22a0d
MD5 e3850251be7f8af8419282466cf54dff
BLAKE2b-256 d0dc5f0316f33f596e3717c0a888df2bf6bf2ed4ec2361425bfb0a6efdf26143

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a3d4583dd9a5401350d3f1015b55df62c14b1ee83292487d1c2d08193e6054b7
MD5 06a516c751a331a6287a6496252bdda5
BLAKE2b-256 17b5a90479657f4c687f340d19d23b6aab306fbfd0c1633c1c9625d33ef94a58

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7dd1d4210c7367ac91641acaeb1cf37b389f0c72c56e47d7c7668c8c916dcd09
MD5 5f62172f9ec9117b6088b9b24e71982e
BLAKE2b-256 b7eac392c6246afe8e05d7c3b6d64e7c6df8d57259010f9f7755968d3abdcd94

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 adaaa6cfd03fe41aab16dd19bcb556178f3a43b87e81c7f54b94721c2a706e0f
MD5 23c9240a81d3159f7c898eee97adf464
BLAKE2b-256 71f76d2670f384d5cc6343cadbc77761fce6d210f0790dfe843080d3097a8cb1

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa22b27e312a66d3ce572aaf2fe1185747b1e9f90f53863f1881bbb6285de97b
MD5 f6141ca8fe24950cd985ac952384343b
BLAKE2b-256 020be01952576c54bd3d3fce2f2ecc5474792f192e2d98aa5ac3d8ceee939547

See more details on using hashes here.

File details

Details for the file cbor2-5.4.4-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.4.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 be562f8824a06ca6695ff8364bb63efc5b6f83d408b835728d1eb239f13be865
MD5 d270702a8853ee323ab8cb720072270f
BLAKE2b-256 fb6eb9f0e69495e87aa5511d26f16084b1e8fb1c178b638ed722085f027a3e3e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page