Skip to main content

CBOR (de)serializer with extensive tag support

Project description

Testing Status Publish Status Code Coverage Documentation Status Tidelift

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

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

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.9.0.tar.gz (111.2 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.9.0-py3-none-any.whl (24.6 kB view details)

Uploaded Python 3

cbor2-5.9.0-cp314-cp314-win_arm64.whl (67.6 kB view details)

Uploaded CPython 3.14Windows ARM64

cbor2-5.9.0-cp314-cp314-win_amd64.whl (71.9 kB view details)

Uploaded CPython 3.14Windows x86-64

cbor2-5.9.0-cp314-cp314-musllinux_1_2_x86_64.whl (279.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cbor2-5.9.0-cp314-cp314-musllinux_1_2_aarch64.whl (279.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cbor2-5.9.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (285.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

cbor2-5.9.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (287.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

cbor2-5.9.0-cp314-cp314-macosx_11_0_arm64.whl (71.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cbor2-5.9.0-cp313-cp313-win_arm64.whl (65.5 kB view details)

Uploaded CPython 3.13Windows ARM64

cbor2-5.9.0-cp313-cp313-win_amd64.whl (70.1 kB view details)

Uploaded CPython 3.13Windows x86-64

cbor2-5.9.0-cp313-cp313-musllinux_1_2_x86_64.whl (282.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cbor2-5.9.0-cp313-cp313-musllinux_1_2_aarch64.whl (280.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cbor2-5.9.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (288.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

cbor2-5.9.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (287.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

cbor2-5.9.0-cp313-cp313-macosx_11_0_arm64.whl (71.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cbor2-5.9.0-cp312-cp312-win_arm64.whl (65.4 kB view details)

Uploaded CPython 3.12Windows ARM64

cbor2-5.9.0-cp312-cp312-win_amd64.whl (70.0 kB view details)

Uploaded CPython 3.12Windows x86-64

cbor2-5.9.0-cp312-cp312-musllinux_1_2_x86_64.whl (282.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cbor2-5.9.0-cp312-cp312-musllinux_1_2_aarch64.whl (280.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cbor2-5.9.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (288.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

cbor2-5.9.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (287.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

cbor2-5.9.0-cp312-cp312-macosx_11_0_arm64.whl (71.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cbor2-5.9.0-cp311-cp311-win_arm64.whl (65.3 kB view details)

Uploaded CPython 3.11Windows ARM64

cbor2-5.9.0-cp311-cp311-win_amd64.whl (69.4 kB view details)

Uploaded CPython 3.11Windows x86-64

cbor2-5.9.0-cp311-cp311-musllinux_1_2_x86_64.whl (257.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cbor2-5.9.0-cp311-cp311-musllinux_1_2_aarch64.whl (262.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cbor2-5.9.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (262.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

cbor2-5.9.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (268.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

cbor2-5.9.0-cp311-cp311-macosx_11_0_arm64.whl (70.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cbor2-5.9.0-cp310-cp310-win_arm64.whl (65.3 kB view details)

Uploaded CPython 3.10Windows ARM64

cbor2-5.9.0-cp310-cp310-win_amd64.whl (69.4 kB view details)

Uploaded CPython 3.10Windows x86-64

cbor2-5.9.0-cp310-cp310-musllinux_1_2_x86_64.whl (250.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cbor2-5.9.0-cp310-cp310-musllinux_1_2_aarch64.whl (255.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cbor2-5.9.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (255.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

cbor2-5.9.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (261.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

cbor2-5.9.0-cp310-cp310-macosx_11_0_arm64.whl (70.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cbor2-5.9.0-cp39-cp39-win_arm64.whl (65.4 kB view details)

Uploaded CPython 3.9Windows ARM64

cbor2-5.9.0-cp39-cp39-win_amd64.whl (69.5 kB view details)

Uploaded CPython 3.9Windows x86-64

cbor2-5.9.0-cp39-cp39-musllinux_1_2_x86_64.whl (249.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

cbor2-5.9.0-cp39-cp39-musllinux_1_2_aarch64.whl (254.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

cbor2-5.9.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (254.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

cbor2-5.9.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (260.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

cbor2-5.9.0-cp39-cp39-macosx_11_0_arm64.whl (70.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: cbor2-5.9.0.tar.gz
  • Upload date:
  • Size: 111.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cbor2-5.9.0.tar.gz
Algorithm Hash digest
SHA256 85c7a46279ac8f226e1059275221e6b3d0e370d2bb6bd0500f9780781615bcea
MD5 21a7e1096c25ef19a81730e2c0ce05a6
BLAKE2b-256 bdcb09939728be094d155b5d4ac262e39877875f5f7e36eea66beb359f647bd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0.tar.gz:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: cbor2-5.9.0-py3-none-any.whl
  • Upload date:
  • Size: 24.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cbor2-5.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 27695cbd70c90b8de5c4a284642c2836449b14e2c2e07e3ffe0744cb7669a01b
MD5 4bd5ebb762d48a24fbb253540c593be4
BLAKE2b-256 42ffb83492b096fbef26e9cb62c1a4bf2d3cef579ea7b33138c6c37c4ae66f67

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-py3-none-any.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: cbor2-5.9.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 67.6 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cbor2-5.9.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 7221483fad0c63afa4244624d552abf89d7dfdbc5f5edfc56fc1ff2b4b818975
MD5 8436f4527b428cb18ef144afc564a8be
BLAKE2b-256 ffe2c6ba75f3fb25dfa15ab6999cc8709c821987e9ed8e375d7f58539261bcb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp314-cp314-win_arm64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: cbor2-5.9.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 71.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cbor2-5.9.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 86baf870d4c0bfc6f79de3801f3860a84ab76d9c8b0abb7f081f2c14c38d79d3
MD5 3cf1071716be1fbecd3cdd7923b5e7f0
BLAKE2b-256 43d13533a697e5842fff7c2f64912eb251f8dcab3a8b5d88e228d6eebc3b5021

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb7afe77f8d269e42d7c4b515c6fd14f1ccc0625379fb6829b269f493d16eddd
MD5 147e0ded51c7aed20aa7c1e9038904c8
BLAKE2b-256 a444d3362378b16e53cf7e535a3f5aed8476e2109068154e24e31981ef5bde9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a4907e0c3035bb8836116854ed8e56d8aef23909d601fa59706320897ec2551
MD5 cacd82a5a14c1213ef6c19c709614162
BLAKE2b-256 a435dca96818494c0ba47cdd73e8d809b27fa91f8fa0ce32a068a09237687454

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 422817286c1d0ce947fb2f7eca9212b39bddd7231e8b452e2d2cc52f15332dba
MD5 70bcb283d850f034d60ba3282f44b808
BLAKE2b-256 083c24cd5ef488a957d90e016f200a3aad820e4c2f85edd61c9fe4523007a1ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0322296b9d52f55880e300ba8ba09ecf644303b99b51138bbb1c0fb644fa7c3e
MD5 d345c0b6a0c0808908d0f4242fcec0d8
BLAKE2b-256 70e1a6cca2cc72e13f00030c6a649f57ae703eb2c620806ab70c40db8eab33fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23606d31ba1368bd1b6602e3020ee88fe9523ca80e8630faf6b2fc904fd84560
MD5 3c9f88ec93cc99e0fd484782b83a2668
BLAKE2b-256 087d9ccc36d10ef96e6038e48046ebe1ce35a1e7814da0e1e204d09e6ef09b8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: cbor2-5.9.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 65.5 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cbor2-5.9.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f7c9751a9611601ab326d8f5837f01379195bbf06175fb4effeb552140e7c9e8
MD5 b50964cacc601274d0d4ebd81b5021c6
BLAKE2b-256 e27cefadcd5f0102db692490e4e206988a2f98d39a09912090db497a2b800885

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp313-cp313-win_arm64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: cbor2-5.9.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 70.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cbor2-5.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dcf0f695873e5c94bd072d6af8698e72b8fb7f7a18f37e0bced1041b7111a6cf
MD5 96cbcd9f911d9fb54e844b75853f68f3
BLAKE2b-256 9bf689b4627e09d028c8e5fcaf7cb55f225c33ce6e037ec1844e65d02bcfa945

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 380e534482b843e43442b87d8777a7bf9bed20cb7526f89b780c3400f617304b
MD5 35030e5f68bc0c1eb69dd12007214e9f
BLAKE2b-256 4e0a84328d23c3c68874ac6497edb9b1900579a1028efa54734df3f1762bbc15

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4753a6d1bc71054d9179557bc65740860f185095ccb401d46637fff028a5b3ec
MD5 a55d462429e3775743899df36670d56e
BLAKE2b-256 74076236bc25c183a9cf7e8062e5dddf9eae9b0b14ebf14a58a69fe5a1e872c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2a54fbb32cb828c214f7f333a707e4aec61182e7efdc06ea5d9596d3ecee624a
MD5 037ca2627e72f89202b8b58bf152030e
BLAKE2b-256 c60c8aa6b766059ae4a0ca1ec3ff96fe3823a69a7be880dba2e249f7fbe2700b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ac684fe195c39821fca70d18afbf748f728aefbfbf88456018d299e559b8cae0
MD5 151e2e367c8aa49de9f8563c3d6ed5be
BLAKE2b-256 1b10df643a381aebc3f05486de4813662bc58accb640fc3275cb276a75e89694

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbb06f34aa645b4deca66643bba3d400d20c15312d1fe88d429be60c1ab50f27
MD5 8328b865804edeb50dd3be5b385a33a9
BLAKE2b-256 81c54901e21a8afe9448fd947b11e8f383903207cd6dd0800e5f5a386838de5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: cbor2-5.9.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 65.4 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cbor2-5.9.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7d1ddc4541e7367ac58c2470cc0df847f7137167fe4f5729e2d3cc0b993d7da4
MD5 eabe5051307e8ff6360136a58598b612
BLAKE2b-256 c69e695f92d09006614034e25a9f5b10620f3b219f79c1bec3c37b7c6f27a7a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp312-cp312-win_arm64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cbor2-5.9.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 70.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cbor2-5.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 34a6cb15e6ab6a8eae94ad2041731cd3ef786af43a8df99f847969af5b902ee7
MD5 a6a326fa66f4aab0811770eab65d01cc
BLAKE2b-256 cf209a22cfe08be16ddfeef2542cf4eeed1b29f3f57ddbba0b42f7e0bb8331fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 971d425b3a23b75953d8853d5f9911bdeefa09d759ee3b5e6b07b5ff3cbd9073
MD5 3b13ee81da3bd7fe31b5ea4db3fad462
BLAKE2b-256 f7a16fc8f4b15c6a27e7fbb7966c30c2b4b18c274a3221fa2f5e6235502d34bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4aa07b392cc3d76fb31c08a46a226b58c320d1c172ff3073e864409ced7bc50f
MD5 3de2211224bfc481d362b4deb7d4826a
BLAKE2b-256 ce9d588ebc7c5bc5843f609b05fe07be8575c7dec987735b0bbc908ac9c1264a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4cd43d8fc374b31643b2830910f28177a606a7bc84975a62675dd3f2e320fc7b
MD5 e128c8cf27bbc4a916c32c605fff330d
BLAKE2b-256 db9d7ede2cc42f9bb4260492e7d29d2aab781eacbbcfb09d983de1e695077199

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ae6c706ac1d85a0b3cb3395308fd0c4d55e3202b4760773675957e93cdff45fc
MD5 8be276e7718cd4ee9c1a6f0b1bd9ac26
BLAKE2b-256 09fd7ddf3d3153b54c69c3be77172b8d9aa3a9d74f62a7fbde614d53eaeed9a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f223dffb1bcdd2764665f04c1152943d9daa4bc124a576cd8dee1cad4264313
MD5 fdb9b9633dc297fcdb32247975c89925
BLAKE2b-256 ee3972d8a5a4b06565561ec28f4fcb41aff7bb77f51705c01f00b8254a2aca4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: cbor2-5.9.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 65.3 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cbor2-5.9.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 837754ece9052b3f607047e1741e5f852a538aa2b0ee3db11c82a8fa11804aa4
MD5 99062cc30bdd209ff7191246aa0bd7fd
BLAKE2b-256 d4c6eea5829aa5a649db540f47ea35f4bf2313383d28246f0cbc50432cfad6b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp311-cp311-win_arm64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: cbor2-5.9.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 69.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cbor2-5.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1d02b65f070fd726bdc310d927228975bb655d155bf059b6eb7cacefb3dca86f
MD5 9160335df5de663bd705df7788899b0b
BLAKE2b-256 5be410d96a7f73ed9227090ce6e3df5d73329eb6a267dab7d5b989e6fbf6c504

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2372d357d403e7912f104ff085950ffc82a5854d6d717f1ca1ce16a40a0ef5a7
MD5 77f5e6f75d07ed49ac86a8bb38582b04
BLAKE2b-256 3f6852c039a28688baeeb78b0be7483855e6c66ea05884a937444deede0c87b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e702b02d42a5ace45425b595ffe70fe35aebaf9a3cdfdc2c758b6189c744422
MD5 2969333cbfa505bfa7c15b6cd632667e
BLAKE2b-256 422e92acd6f87382fd44a34d9d7e85cc45372e6ba664040b72d1d9df648b25d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5326336f633cc89dfe543c78829c16c3a6449c2c03277d1ddba99086c3323363
MD5 715e1e47234564c72d31401b4982bb00
BLAKE2b-256 0a1ae494568f3d8aafbcdfe361df44c3bcf5cdab5183e25ea08e3d3f9fcf4075

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a9d6e4e0f988b0e766509a8071975a8ee99f930e14a524620bf38083106158d2
MD5 2de6bf3ac6e9d0438003a3ff630a93a9
BLAKE2b-256 3143fe29b1f897770011a5e7497f4523c2712282ee4a6cbf775ea6383fb7afb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for cbor2-5.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0485d3372fc832c5e16d4eb45fa1a20fc53e806e6c29a1d2b0d3e176cedd52b9
MD5 ea89949085031f0e08915a444902edf5
BLAKE2b-256 43aa317c7118b8dda4c9563125c1a12c70c5b41e36677964a49c72b1aac061ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: cbor2-5.9.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 65.3 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cbor2-5.9.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 08388ea54195738602b4c4999966bcaef6f0b17d293c9658658409d9fff96f57
MD5 1c115db68f9e718724b695a16a1ab4a1
BLAKE2b-256 361f57d00cd13e0f9391bcd616795aa78409210a7464570fe21e3b9cd42eb5a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp310-cp310-win_arm64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: cbor2-5.9.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 69.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cbor2-5.9.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d1a21c006760f95acd9509cc5a7d15d6fc82e58f721f94fa9039b4e77189a6e5
MD5 7c5a5da1206decdbce63523271dfdda1
BLAKE2b-256 7c163186084b441c4b0caebfaaa2c66a57bde82ceaacd469570c77c8030b6b95

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 420d2490c7836c81151b4bd591c35cffc55391e33e7e333c50fda391bcea7d31
MD5 16cc21f4b085926a6520c3991ef2465c
BLAKE2b-256 b3d1fa3e158dbe4c08091495b720c604624b285bc272afdbcfac2150725d955b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc5efec69055c3c470997935d95762be7e4bfd1248d88fb1a33bb7e0f45712e9
MD5 a1d41d61005256785d5730fc169c0e9b
BLAKE2b-256 c2409bd7e66dba7aea674a440e004faea406de42c49aeac23453954b67768532

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 25bec7beb2089465382b1be72e78667fe9090598800826559c3e3008cf0db743
MD5 bcbd1989968a34294bd2f74c1c38f2f1
BLAKE2b-256 4b97c496c71422b2ca18ff2acc5f49e8c45cd7294b7df1359eccec78021b428e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3095dc49e75572841a9534cbfdabc2a17487ea4ee33341436abc4a7ac7245a3a
MD5 be7daac7884e953346b0c9430fa19f64
BLAKE2b-256 457b74c524ce81c1ddc6c44b4865028ffb7d3a8e7ae653b1061650375a28cbb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for cbor2-5.9.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55bea0dd9a7d354e35f4e5fe58ceab393e76962713749dc3a0a64a0e5d19545e
MD5 44cef5da7ec274437c3b532051f4a89e
BLAKE2b-256 e0bf12b337e5354e47f6378da18989480c0c1e2cc5fe9b865e6fab45d6332aa6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: cbor2-5.9.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 65.4 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cbor2-5.9.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 d8524a8c142c3cc228e635f8a97499a6c0b18ca91382e8276565658035cdcb6d
MD5 fd3bf0a4374b66802c86419c8a2a32c3
BLAKE2b-256 e7cdb6653d28c6ebb42402c2d22044108ee59ff4d064eae435ce20894a4847ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp39-cp39-win_arm64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: cbor2-5.9.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 69.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cbor2-5.9.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f29e5c3abcc91c1aeefecde0e057bf33f1655588d3065c6560c30ceb3be6f333
MD5 b9e86e870b6b3e4f5436c814f534cb2f
BLAKE2b-256 259e484d2b68f2e720add45e3d0d61976fe2abd86dea31ec13038fb630097ef1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp39-cp39-win_amd64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: cbor2-5.9.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 249.7 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cbor2-5.9.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53cfa49e0df9c639beb871d480de098eedc81eb63ff29f2dc922720d7577b676
MD5 89be5fd403157aeb055a4aa19a2848be
BLAKE2b-256 1d06db0fcac41763153e20aca5a096ee3727bfc591d7825daa5bad493bb99b6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fbdcf4d74acbeb7672e6413e81cd2c1ced1a4a8cf949484ac54e9af5265c3c72
MD5 8eb368e45c80aa1f1de97e6fea7603b1
BLAKE2b-256 d726b96e357ca8554a5458939bc9a7a6f83a494ce15470c96d02f79188fa81c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f797532d13469f2193e5c16e827d8df7a8c33674b19be755790b54ab231e6a73
MD5 3d66eff41db3268e06d983c27c50fb77
BLAKE2b-256 15124013441f8fccca0c5bff043c6ff8b86fde03c5da8b41a22694d49af02b3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cbor2-5.9.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-5.9.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 65f8eac3268c608533f326f0fd9010ab1b2a8a917b05edaf3853116336821669
MD5 f29df14c6b1ec9c05623ddfaf10611e3
BLAKE2b-256 41fb91fa1b15b525577ec20a8904f22d8e97eb81164f6663705539e89acdde8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: cbor2-5.9.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 70.6 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cbor2-5.9.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1da96ce5d852fe3d342c1eb2c202a52d1c97edfddc9230f1be7e02674662bf26
MD5 f1f634d8115153f17385f825052eaf1b
BLAKE2b-256 a017f052f558e29f90ed29f9a42263232f6f059fd7bbf1b5d27e3867f9356375

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-5.9.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish.yml on agronholm/cbor2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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