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

Features

  • Simple API like the json or pickle modules

  • Support many CBOR tags with stdlib objects

  • Generic tag decoding

  • Shared value references including cyclic references

  • String references compact encoding with repeated strings replaced with indices

  • Extensible tagged value handling using tag_hook and object_hook on decode and default on encode.

  • Command-line diagnostic tool, converting CBOR file or stream to JSON python -m cbor2.tool (This is a lossy conversion, for diagnostics only)

  • Thorough test suite (Tested on big- and little-endian architectures)

Installation

The simplest way to install the library is with pip:

pip install cbor2

If this fails, see the next section.

Build requirements

If you wish to compile the code yourself, or are installing on a yet unsupported Python version or platform where there are no wheels available, you need the following pre-requisites:

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-6.1.0.tar.gz (85.9 kB view details)

Uploaded Source

Built Distributions

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

cbor2-6.1.0-cp314-cp314t-win_arm64.whl (290.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

cbor2-6.1.0-cp314-cp314t-win_amd64.whl (302.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

cbor2-6.1.0-cp314-cp314t-win32.whl (279.5 kB view details)

Uploaded CPython 3.14tWindows x86

cbor2-6.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (526.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

cbor2-6.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (511.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cbor2-6.1.0-cp314-cp314t-manylinux_2_28_x86_64.whl (459.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

cbor2-6.1.0-cp314-cp314t-manylinux_2_28_aarch64.whl (445.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

cbor2-6.1.0-cp314-cp314t-macosx_11_0_arm64.whl (402.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

cbor2-6.1.0-cp314-cp314-win_arm64.whl (299.4 kB view details)

Uploaded CPython 3.14Windows ARM64

cbor2-6.1.0-cp314-cp314-win_amd64.whl (308.9 kB view details)

Uploaded CPython 3.14Windows x86-64

cbor2-6.1.0-cp314-cp314-win32.whl (285.6 kB view details)

Uploaded CPython 3.14Windows x86

cbor2-6.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (531.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cbor2-6.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (519.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cbor2-6.1.0-cp314-cp314-manylinux_2_28_x86_64.whl (464.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

cbor2-6.1.0-cp314-cp314-manylinux_2_28_aarch64.whl (452.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

cbor2-6.1.0-cp314-cp314-macosx_11_0_arm64.whl (407.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cbor2-6.1.0-cp313-cp313-win_arm64.whl (287.2 kB view details)

Uploaded CPython 3.13Windows ARM64

cbor2-6.1.0-cp313-cp313-win_amd64.whl (299.6 kB view details)

Uploaded CPython 3.13Windows x86-64

cbor2-6.1.0-cp313-cp313-win32.whl (281.9 kB view details)

Uploaded CPython 3.13Windows x86

cbor2-6.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (533.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cbor2-6.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (520.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cbor2-6.1.0-cp313-cp313-manylinux_2_28_x86_64.whl (466.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

cbor2-6.1.0-cp313-cp313-manylinux_2_28_aarch64.whl (453.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

cbor2-6.1.0-cp313-cp313-macosx_11_0_arm64.whl (408.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cbor2-6.1.0-cp312-cp312-win_arm64.whl (288.4 kB view details)

Uploaded CPython 3.12Windows ARM64

cbor2-6.1.0-cp312-cp312-win_amd64.whl (300.2 kB view details)

Uploaded CPython 3.12Windows x86-64

cbor2-6.1.0-cp312-cp312-win32.whl (282.5 kB view details)

Uploaded CPython 3.12Windows x86

cbor2-6.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (534.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cbor2-6.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (520.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cbor2-6.1.0-cp312-cp312-manylinux_2_28_x86_64.whl (466.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

cbor2-6.1.0-cp312-cp312-manylinux_2_28_aarch64.whl (453.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

cbor2-6.1.0-cp312-cp312-macosx_11_0_arm64.whl (409.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cbor2-6.1.0-cp311-cp311-win_arm64.whl (291.3 kB view details)

Uploaded CPython 3.11Windows ARM64

cbor2-6.1.0-cp311-cp311-win_amd64.whl (300.4 kB view details)

Uploaded CPython 3.11Windows x86-64

cbor2-6.1.0-cp311-cp311-win32.whl (284.3 kB view details)

Uploaded CPython 3.11Windows x86

cbor2-6.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (535.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cbor2-6.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (523.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cbor2-6.1.0-cp311-cp311-manylinux_2_28_x86_64.whl (468.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

cbor2-6.1.0-cp311-cp311-manylinux_2_28_aarch64.whl (457.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

cbor2-6.1.0-cp311-cp311-macosx_11_0_arm64.whl (411.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cbor2-6.1.0-cp310-cp310-win_arm64.whl (291.5 kB view details)

Uploaded CPython 3.10Windows ARM64

cbor2-6.1.0-cp310-cp310-win_amd64.whl (300.3 kB view details)

Uploaded CPython 3.10Windows x86-64

cbor2-6.1.0-cp310-cp310-win32.whl (284.2 kB view details)

Uploaded CPython 3.10Windows x86

cbor2-6.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (535.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cbor2-6.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (523.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cbor2-6.1.0-cp310-cp310-manylinux_2_28_x86_64.whl (468.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

cbor2-6.1.0-cp310-cp310-manylinux_2_28_aarch64.whl (458.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

cbor2-6.1.0-cp310-cp310-macosx_11_0_arm64.whl (411.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for cbor2-6.1.0.tar.gz
Algorithm Hash digest
SHA256 7a988431ef0e0e24dab2c701d78b48d23389c24b96a7c82dbd90353af335e141
MD5 9c07e2a24e1aea02ba3dd24f94185224
BLAKE2b-256 043174b54539251d2c617875bee73df0b0473dc0b2eabcafa274a85eb69227f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp314-cp314t-win_arm64.whl.

File metadata

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

File hashes

Hashes for cbor2-6.1.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 3e8829dc8b3cd2000d5501018b1668162435eb56a5b77f5110c23b48547bd925
MD5 5da12b63981a15d9d30003d7dc9d6a76
BLAKE2b-256 c6a148d9483ada705f60342c75522e3e37831e8eca6b18bd076a701dc0c7ad55

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.0-cp314-cp314t-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-6.1.0-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for cbor2-6.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ba12e97579d430f1169f853fa8e7b930cd7011abcdae63eb015f42856d0ea92f
MD5 b05039323b806d9334542c6328886694
BLAKE2b-256 77ca0b2fa62b1e30b0c5f0fc7f3691b69bf57ced35425c314285e055b99a5b02

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.0-cp314-cp314t-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-6.1.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: cbor2-6.1.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 279.5 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cbor2-6.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 c427f262ce7c3096a259c7dc599581d0a6648d84b268070cd4eaf8b3d0230753
MD5 8dae5545f71038359090e973fed8f7f8
BLAKE2b-256 cf28221315e7ee92413de1dd2cb5962a1a589d8d6657ee12c2798d0e5049b0ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.0-cp314-cp314t-win32.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-6.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7310f218712795cb33432933d4c44cd0b2d455e4f822b59ce78d96a6a9714383
MD5 8eb6be5a774b26040a07c4de3d6615a6
BLAKE2b-256 e960ac09e9b2b115f788eb0e2af06c931e77ddbfd002200e071e8caccfd3ec99

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.0-cp314-cp314t-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-6.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 75532e16e8cd8f0637881ac254e689805f38cd7d08a1cbeeb09c21cb6a10d4f9
MD5 c73ba84025efc19f68362051767f1e2b
BLAKE2b-256 07c282df8d95f9bd0eed8154f2929df25ee5c488a8ba3067bc213ec0f349634b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.0-cp314-cp314t-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-6.1.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9b691ae53eb6f708bc760685a72cc472fe21e899324d7a4bb0cd1a4aa64932cb
MD5 b38e0770734a1c064e1ea4b32ec1fd79
BLAKE2b-256 7437258163912225532acac508c2c0a6a534d2ad4cd14a29768b6006569bcc35

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.0-cp314-cp314t-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-6.1.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b001f272431555f9e61c93fd8fb76ced431e01fc6a672efc339a646d18a08fa5
MD5 5a0878eace1384d9ac885c10fc9f4658
BLAKE2b-256 06c9d3afb0db49cf98b0079a69f03cd757028392ca6f63fa7c106c0d1fdc04f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.0-cp314-cp314t-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-6.1.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5be6ec0c838e429d02062b1252dca91086ace8849a6c61cfd3200e79192fc238
MD5 d783b5db772a052012c66c2b1138f606
BLAKE2b-256 477fffef5ce6e7eba7c663e1cb4dc37ec6552151026259e336d5053dde2dc302

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.0-cp314-cp314t-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-6.1.0-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for cbor2-6.1.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 29113addf431fd376fe6c269d2a7d16ef558f8575a450b83b3f433ed42b3d029
MD5 e9cc1cf7ffde76523781f00eb9588151
BLAKE2b-256 3461d6fc33c736d6cb992b5e177d654444a743f867c424549ef493bee7e1754f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for cbor2-6.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 893acbe1e1de7f1e3ba172d8cf0d37e7a631167cf40bd760280a7e01ed60344f
MD5 c367d78ed599e3c43c2366cb28f7b1f1
BLAKE2b-256 b832fe8bd1e196673378782f635566e7c62fd54503b1c0d13dd4dd42ba9bbd2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: cbor2-6.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 285.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cbor2-6.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b4ad2a13d11760045b32d74b662e3088635d81b3597c20e7ad41f4fd7da9271a
MD5 b386a4fe0b60d10d987b45db9faecd44
BLAKE2b-256 50556d1273a854467d4c06e390afd3984cb400a49fcf46db4da6e7eff2944e43

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.0-cp314-cp314-win32.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-6.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75ab21a66189c99f0007685c9c40c3e2f37aed7e9d5c9015b39e20a2df2f4be4
MD5 a6e32cb0e50b9b45104045e614f8100d
BLAKE2b-256 213a15a988a7ac392dee5a654e89937f9b36477595c0d76e7718c90d2ace8c19

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32ca627b48114a47af97dc6f2ca55905835b8b1813e33efa4f9448cdfe5f9ec3
MD5 d20823bb6054d0b09c9ffcce61ee5dcb
BLAKE2b-256 6eeb54f5a2bbbf1eedbb4fec829978f5797b5950969f1aa8665c43b3572cd3c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 780c5c769e8cdca5ea26e1b0835e7a339fa9bd514ccdcecc948c4b189d8bf426
MD5 fd4be8f35739c98192d54cc30ea63237
BLAKE2b-256 f3e638c5504a7d00a5803df70ebf840459693e94999c42790bf5ca18f9212bf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.0-cp314-cp314-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-6.1.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a313df1367d7f57259e59a86fa77ad6eaff957097738c12e860bee391558fe6a
MD5 54f5b92c98cda3403b2c484b9c3c24f9
BLAKE2b-256 d13f5db67547c6fb3b1fb74711d30cf0ea970b085295c4477959340f3e36ab6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.0-cp314-cp314-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-6.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 634b6b9bd1197946a88fcc10e49eb205a3fe663dcbffc068949444bd4d1c3522
MD5 16a82b6d6721fe997e24d7aa58630c42
BLAKE2b-256 dbaaf0640584752ea4f6c575acc4b3e04d5e074e02e2aa8cd59b3bdc538f35d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for cbor2-6.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e713bbbd025683a096f5dbcd958b1b172a224d7f0bdcab45c138870f712bf281
MD5 270c38659f7de22da884031237b1028b
BLAKE2b-256 b0504bd8574f8a6c79ba328ca22b870274d83e57b1a8ec61c37bf7ad876ae9bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for cbor2-6.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e9c35a71bf2f1d1405704839bfa590d1ea82125a2afda963e834c68548cad83f
MD5 4d12f6985ba189fb152582c2efd1bfa3
BLAKE2b-256 f95bbad7006957b99ce12a17708cf3941feb75e39551da15b4dfd52ed93945f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: cbor2-6.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 281.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cbor2-6.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 dbe926724deb339f35b247f6e24d82966076ef2c41c00066576f4c3d3630d731
MD5 5f21abda826ed0a8022ac395e27b6a31
BLAKE2b-256 30138605f161ad89da2a67fcc03405a51bfbfd57d5bf234f1797703ba66a25f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.0-cp313-cp313-win32.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-6.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 032f06d4c04143db657c598470c3069406f897cd817c24c3b6aefb87cd1329b1
MD5 e7ea3757de981b1829ed8bd1f38f148d
BLAKE2b-256 973e0ee1f52f83195f9a5e35fe7897360da1822c696712cdf265c44030db03ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6f72aafa65184363e208aea5aacd81beafa07c9949e1c4d402ff46a76beb627
MD5 34cda5ce2837f3c3310fe190c33b544c
BLAKE2b-256 743989b749a9031b1b00c1373560a891bb25b2d282057fb3b157385dbd8744ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 17f874920590da73d564092b813267c47493eec96e6765b72b5499500b9bff35
MD5 fe316809b85fc6578528cd03e58b855b
BLAKE2b-256 95f72b84ead95cd71c30b85975e85bdfdcb70ac09679c52ea5af2354d3538ef7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.0-cp313-cp313-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-6.1.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0d3a629eb6747964e20132d78581177b3df381c345156751cc4cb4176a058ea4
MD5 afa04f9d62204d7a7e330f326f32dd93
BLAKE2b-256 efd5686b6d04157aec18a13a3bc185b68e5200e5cd93b78ad1f3b0dbc9dd5cdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.0-cp313-cp313-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-6.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54d11fafdf6adf02c08c0ef20bdd11097c1a2c9a20b300c7fc66b07a85eb1a12
MD5 e77fedd5b32db801bc818e61e68abcab
BLAKE2b-256 8685ec95a68b26199e218937836b3700177382a17dc9dc355fc6c687a3d8ebcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for cbor2-6.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 23737b6a04a7cc0c216686c580cba70bc944ae8fcc13639c237489b4d693223c
MD5 5737a35f53702eeee108cce460073b6b
BLAKE2b-256 1ef0423e1705946cf50f4c5e2b6bb1a806e0d28cd5e68561fb32c65fd79db151

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for cbor2-6.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 190dd9631e800900ecab301745fd4278c530fdb1e7fb0a56000e568e272dd13b
MD5 584fdd06912f08afdcd6ea20f993e202
BLAKE2b-256 c613713b2a59349b20915de7c9dbb0ded3a6ddeaedf541885d7b5ffd46799de4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: cbor2-6.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 282.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cbor2-6.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 927b7effc7eabdccca64240f87248e41792430efb5cc9b578b793d0a7b3616e1
MD5 386887e25832b8e961fcc170fd7b5163
BLAKE2b-256 5c526914f4652cd0a14e96622688b54611519925d2dbf0f372bee225560317e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.0-cp312-cp312-win32.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-6.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba05594132277b4cadbb2e321ea6d1c84cc1cf1a38deaf2deb1a401f2e567d7f
MD5 29f58fded3d6a96f79b31dea6bee4cf6
BLAKE2b-256 de578a6f64811d5b425ed93c247ae7415d9243a864462939c825763588fb4af3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ebf05e8086b5afa6d829dd19d3fd1680217f043ded24a49c510a064df02fc4ed
MD5 8638a5c86a5c6d162c974815831f53e8
BLAKE2b-256 59200b67f0269583a0f6af9c9d22914b503515a74c78a40f737785cdf0fad00b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1e905a4bb44c2a5eb465cfef374e3d6866d5b1b8923f4d387e5fae5eb985ccfd
MD5 33ce43327f77d482963311d0b4c389de
BLAKE2b-256 39133089fb602f574c407c7047751162ec9c0dda74bc601332d2cf4ef5b65c99

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.0-cp312-cp312-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-6.1.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 386758adf697172aa40fe4c81172ba858f32a6409e7dffa8541fdd790505b372
MD5 1e23319b7dcf41180129995ad15c3a8e
BLAKE2b-256 95a4bf5a54cc6ccda2d5e8043f38f34c1eefd814cebf40b5812a40a39d1318c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.0-cp312-cp312-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-6.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f9013b20e13441d8b9f535631d38b1ff654af7f45af6423c4b7ddd8c494a967
MD5 2cbd0b2696dbf6c198a7628149ae73d4
BLAKE2b-256 965d4d82bd835c130825b3ce0fa66339379d417d0379272e03773c230842c765

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp311-cp311-win_arm64.whl.

File metadata

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

File hashes

Hashes for cbor2-6.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 1f200815fa95cb119410655fda5f428f13a5b1877e710ca92c158fae98022483
MD5 fdb1d94d900c9f33cf55f58160c0ab11
BLAKE2b-256 6c37f09d626f2edce335ce488a2f020a6f0c148a1aa198a4cf0749b0410c52c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for cbor2-6.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 962d6379710e801ada58c47f13df8bdba41022db9fe77a9e7a59a421823cb773
MD5 f5b4169d0d8245fe257a34930ef430e8
BLAKE2b-256 32f2a9b74e184295496bab7126767cd003489ad1816a9b78851f1316b1427141

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: cbor2-6.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 284.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cbor2-6.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7c93f391dac11fb61c68f33e7fd5c23d96d0eb37fb45db83e381f9a9fd726979
MD5 e42dcdc6964c21695826bbe2e93106da
BLAKE2b-256 4eb8cc4769f30a437b5f4e2b359b28eaa7bfe75a6d04c010f748539ef1f9d296

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.0-cp311-cp311-win32.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-6.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 618c24f8b578d84dab663770d4da6c6dd3b8a87a75bec48c8bfbd264c883a745
MD5 d22a3c601e1d1e329a2f5297ec0f40b9
BLAKE2b-256 8209726421471d4f782a399738906193c5cba26f96d45283dc42ba260d5d1d55

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 344966e8899f548bfd31bf3c7f880b05a64369ace7ff74dec89f6687e2b74909
MD5 33a362d83534095358fb3e4399ba10b3
BLAKE2b-256 8e9c2b371ab2341ff51006ad637175adb8d1940c2baa5d17f03b737314a681d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9eb17decdb225f245ec404b718cf6b01dc95447aff6182c0a6c822a6c1e5a048
MD5 a83cf847cca3ba738aebd7964346190e
BLAKE2b-256 0e9478c5944a02fe86c0b9dc46150f098e240e142a19b96c2fc4f896bc77d74b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.0-cp311-cp311-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-6.1.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 42b48ac73494634de9e0b778f5048ead49f291eda793a9b95d0238053172c3f9
MD5 fa977f56e6548cc03d0e17501464186d
BLAKE2b-256 2977163973dde484a1fa6c8a8daa68a36dc56b61194b84b6ed8e7d02090f59aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.0-cp311-cp311-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-6.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bcb87ed40533434f229c5f9f6cdcbd54230adcae5205e219736beb72d9b2b10f
MD5 6f277773e364f4c714e697d372915f66
BLAKE2b-256 978861652404b18e9db45d17d286f04e004a9a16dbd877377f57ed668424f6ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp310-cp310-win_arm64.whl.

File metadata

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

File hashes

Hashes for cbor2-6.1.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 74458adcf2d5681b202c99009d81f7e815a1ebb65ba79ff7e386f21b4a761726
MD5 d37a42b8779a619262e91e6b6bd80204
BLAKE2b-256 0bc09f2ce8f19113e0e8e24df42769ca5989745e391146c01006014c9ca8f9fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for cbor2-6.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 13191298a8ef34b35be4c81add189b055771cfbc51dddb94b7c475b4b085111d
MD5 aa8ff4dc28be63a4fd4c18278d8094a1
BLAKE2b-256 8905deadc9f5b90f83345d3f1d5278e46565d45d97ed354b1155229500417417

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: cbor2-6.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 284.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cbor2-6.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e54834a413553b34c628264c8bbbc073f96390e278b01a1711308565eb761208
MD5 89febeeb17b2d18f91f753c6c46b59d2
BLAKE2b-256 fb5edaaa0b6f3d2ab46418738164c661ca6d29164881c0fe02e9025577192b6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.0-cp310-cp310-win32.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-6.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a5101ab7f0fac57b77c34def107e809759320549180bd5ed8662c67b2d708675
MD5 4a745ddc24f6399d419230c6475707d0
BLAKE2b-256 68cbb5ff5d20be10df024dcfbfc0a48b5d8fecb9162f40812fcdc67797624e09

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce5408ae99aa44eecb039437cf2c8370a4a129add990025782b1b1225f1f296e
MD5 7fe1b856dd1244fbcc45973bb05e5c5e
BLAKE2b-256 128b6347c1da74f46b0d2e6f960b7cc4453cb753f48967133a0093ffc877e7fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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-6.1.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c6c3f1134bcfac88a6af9e90f8984b7b241843e884b4a6e257f62e43b85a72b1
MD5 fdcaf6eb63b67ad403dee9e5e7952980
BLAKE2b-256 61625f945365f868525b21d600c4f0f599053fc818f36360433775c072d8f20e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.0-cp310-cp310-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-6.1.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4294246096ff528981db137473ea90f99475f25be7e5e1e1c402bb468bc972fb
MD5 e10078c3b4e7b271f952c2dc5a901dea
BLAKE2b-256 575588a214490d8c6e803ea7e6ef12f9b7f9952e069d844c65368d7c6e4e20dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.0-cp310-cp310-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-6.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cbor2-6.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b0472da47777fef7b5b81c1773172026be47871f0ff8ba7258fc4b85f0c1630
MD5 2fb70fa77e649e251a68eaffef852020
BLAKE2b-256 1416053cf8163062ecc29232b5cdfc7ce9df0b3dd61e26a35ae6ea792aba0b37

See more details on using hashes here.

Provenance

The following attestation bundles were made for cbor2-6.1.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.

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