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.1.tar.gz (86.3 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.1-cp314-cp314t-win_arm64.whl (290.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

cbor2-6.1.1-cp314-cp314t-win_amd64.whl (302.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

cbor2-6.1.1-cp314-cp314t-win32.whl (279.9 kB view details)

Uploaded CPython 3.14tWindows x86

cbor2-6.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl (527.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

cbor2-6.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl (511.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cbor2-6.1.1-cp314-cp314t-manylinux_2_28_x86_64.whl (459.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

cbor2-6.1.1-cp314-cp314t-manylinux_2_28_aarch64.whl (446.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

cbor2-6.1.1-cp314-cp314t-macosx_11_0_arm64.whl (403.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

cbor2-6.1.1-cp314-cp314-win_arm64.whl (299.7 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

cbor2-6.1.1-cp314-cp314-win32.whl (285.4 kB view details)

Uploaded CPython 3.14Windows x86

cbor2-6.1.1-cp314-cp314-musllinux_1_2_x86_64.whl (532.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cbor2-6.1.1-cp314-cp314-musllinux_1_2_aarch64.whl (520.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cbor2-6.1.1-cp314-cp314-manylinux_2_28_x86_64.whl (465.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

cbor2-6.1.1-cp314-cp314-manylinux_2_28_aarch64.whl (453.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

cbor2-6.1.1-cp313-cp313-win_arm64.whl (287.8 kB view details)

Uploaded CPython 3.13Windows ARM64

cbor2-6.1.1-cp313-cp313-win_amd64.whl (300.0 kB view details)

Uploaded CPython 3.13Windows x86-64

cbor2-6.1.1-cp313-cp313-win32.whl (281.7 kB view details)

Uploaded CPython 3.13Windows x86

cbor2-6.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (533.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cbor2-6.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (520.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cbor2-6.1.1-cp313-cp313-manylinux_2_28_x86_64.whl (466.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

cbor2-6.1.1-cp313-cp313-manylinux_2_28_aarch64.whl (453.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

cbor2-6.1.1-cp313-cp313-macosx_11_0_arm64.whl (409.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cbor2-6.1.1-cp312-cp312-win_arm64.whl (288.8 kB view details)

Uploaded CPython 3.12Windows ARM64

cbor2-6.1.1-cp312-cp312-win_amd64.whl (300.7 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

cbor2-6.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (534.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cbor2-6.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (521.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cbor2-6.1.1-cp312-cp312-manylinux_2_28_x86_64.whl (467.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

cbor2-6.1.1-cp312-cp312-manylinux_2_28_aarch64.whl (453.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

cbor2-6.1.1-cp312-cp312-macosx_11_0_arm64.whl (410.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cbor2-6.1.1-cp311-cp311-win_arm64.whl (291.5 kB view details)

Uploaded CPython 3.11Windows ARM64

cbor2-6.1.1-cp311-cp311-win_amd64.whl (300.7 kB view details)

Uploaded CPython 3.11Windows x86-64

cbor2-6.1.1-cp311-cp311-win32.whl (284.6 kB view details)

Uploaded CPython 3.11Windows x86

cbor2-6.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (535.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cbor2-6.1.1-cp311-cp311-manylinux_2_28_x86_64.whl (469.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

cbor2-6.1.1-cp311-cp311-manylinux_2_28_aarch64.whl (457.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

cbor2-6.1.1-cp311-cp311-macosx_11_0_arm64.whl (411.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cbor2-6.1.1-cp310-cp310-win_arm64.whl (291.7 kB view details)

Uploaded CPython 3.10Windows ARM64

cbor2-6.1.1-cp310-cp310-win_amd64.whl (300.5 kB view details)

Uploaded CPython 3.10Windows x86-64

cbor2-6.1.1-cp310-cp310-win32.whl (284.1 kB view details)

Uploaded CPython 3.10Windows x86

cbor2-6.1.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl (523.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cbor2-6.1.1-cp310-cp310-manylinux_2_28_x86_64.whl (469.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

cbor2-6.1.1-cp310-cp310-macosx_11_0_arm64.whl (411.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: cbor2-6.1.1.tar.gz
  • Upload date:
  • Size: 86.3 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.1.tar.gz
Algorithm Hash digest
SHA256 6f0644869e0fdcd6f3874330b8f1cebd009f33191de43acf609dc2409cd362c4
MD5 36c0b234b987ff588b801ad06d06a661
BLAKE2b-256 bedb810437bcfe13cf5e09b68bad1ce57c8fa04ca9272c68946bbf2f4fa522c8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 290.3 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.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 f0bc04543c562bd0b35fc79a29528017fe63104757c1b421d8c1ddfbe6761eca
MD5 e36c4c7373ac7d0b1a54a615b3e8db6f
BLAKE2b-256 4f29e257a381d494615348c7266fc173a36edce142533a5befe3c0967fd45ab4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 302.5 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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 81af6e3a031191b483ca42b16d152627c6a9dc61c1fbef270403820ab587fc86
MD5 ea8901e608e60551b4432609af0f513f
BLAKE2b-256 e39709053af3e4825aa3b83b1ec2306c9228efe665fbfb90229e441b9c1b3cd5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 279.9 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.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 cba9a9ebc031267b76c2bdfd4a5a491874c27339d6ec9d0895fc4fde8f519565
MD5 1cf06b9307c5d3792be1f5812aa069ad
BLAKE2b-256 be9642275a7d34baa8457a686c5e5a3bf5240e753595a6bd79c2c419347a2083

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d63181b5b213ab72eed01e62bfa4c994fe7de68433d12548d54156411ba0aac4
MD5 05a809f2990845ae4d92ed87df99e042
BLAKE2b-256 40e832e529bd938c71456d38d7c6a62d0d75399e720553d6514a467fee9b004d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8df2a530b45c7769ed43c02e3f7c9841ed4990887e1c29858b08363a35067bf5
MD5 7abebc5490a32ef3b8a9d6c41bf0a3ab
BLAKE2b-256 f137e4d95459d48e8a739c086249884b27458541df5a7fc149debdb0e0c7becb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b8594563ccfd56f2bb56cdd8445f7a1f00d3065d84ea06f8e361da765abee08f
MD5 2059a7c6a6c4b812fd7762108709e647
BLAKE2b-256 a15dcc298ed16745995cf21caeec52213d157be8d5bfb405ee8ed420ffb5e038

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fd9d300ad983b860fbfb0ab148ddd3a379be25430bb141ad41344adc1c0792c1
MD5 a31c61aac29b840e2d69af07b72384ec
BLAKE2b-256 c628780af53231e1a6afc36f2b922ff587a9e1a25df7756628101a6070a9312f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47d2616d30212bd3db8c2897b453176401569e0e4ec3434b770e9652604d74c5
MD5 8edb4143835321aa6a6325dac055fd5f
BLAKE2b-256 53dcecc0797db8b627f889389d8ea8a4af389bdff7500685e56969a6c4449c01

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 299.7 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.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 be5ccd594ea6f1998cd83afb53b47e383e5efd7661a316a528216412109221c7
MD5 0e50ff05d82aa4fd4034a2f93b7d6f5a
BLAKE2b-256 ea881797af54eca15bca2d963cd2d3a7337758961a31fd03438f2e82ec94ea87

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.1-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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 91dac40fc0b8e0592a3e8d766377af3186e2736448c684465cca8606486e58ae
MD5 f27f1ade76a959c6494691a4bb981afb
BLAKE2b-256 4fed995a3830ce4429be1ffeb57d2f11b2f06987573c04a4ea4112bd5d7de643

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 285.4 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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0d0831b449567ee27afa25ff2756ac8719f11491f700396edb1dc1647ece7111
MD5 695bfffe958dc313e94232bd06439c77
BLAKE2b-256 7394ab4ad4fd5929c1df56899c1135cc6957239a74a5b418e760502c9aadfb17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16e6df5a4971c2006805669be472a43bb382d0f3464c2236634b4e93095d7dd6
MD5 64e2789d3201f49fabcdbe3f4400dceb
BLAKE2b-256 f0704b2ac02e0aa09419c13c434ce535cf508f08d5c411c6912d760c480ed8e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a731277d123cee9c87e649077376f694892e4a2c3b0b1cb97132205c620947d8
MD5 eecbb0985dae0e9191e4d354bf719d05
BLAKE2b-256 c8613069cee66bc4bedb95dce49b5e90d07e6c1ddf712435facf84ce0353da4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 74bf0c3f48d215d49a99eb253fef6c00c19033339da22da4c29b53fe854093b8
MD5 7efc49b41ad71d75ec6fcd5f9625662e
BLAKE2b-256 81ff43ef5f16a1a97ef4575c407d077d9355c01dfc54b1b1b8c5329b793c436b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 350beaac7a6049fe0a48309d7acd24611ab1176b4db1515f7fbcad20f5c09821
MD5 660f9b273238aff438ec8413008334e9
BLAKE2b-256 c37d08644318380306e0809ecc4756e67fb684b5e78a938ca9ff1c8c7f57fe73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86c65976e9e69154700ea5a447013f37ff8cb76431adf9df3ebbabe341b68b06
MD5 9660ff2c4760eb39f7c88353ebe76104
BLAKE2b-256 aa74d2d6e0e3da305a625d710a932080bf70f390c867dce73bd35ca6cd5a8d10

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 287.8 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.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7b193d2d024bb5d037e613272f5e436d53f02301101f0ce3916117688643181f
MD5 5576ca46d1bbe089fd720cdba5c899e7
BLAKE2b-256 b9c267f2e3a83acfcecad947784bb1590d1978662b5472fcbf7d73e219813456

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 300.0 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 616bc0538095860fe5607cc06d7b2de3e261a6caccd01ff3f1d4a4a9ad29adbf
MD5 7b6726fc2655df8bec81d0602c7e3dc7
BLAKE2b-256 4d399232731f161b2dfe2dc28b06bbacfc2b6a85f1255bf58ebc578ae760ef38

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 281.7 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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4642780d27c0b411f4669fcb82e0d7a6b93a0c41c03a0c51296fd6f6858f63fa
MD5 dfb1c484db5c2ad093796ad213175e95
BLAKE2b-256 5732c1c9f435b109ded86ef2e90ff73b95624c84c6edf01489941363a6069725

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf3ef1fae6f14081a15f178e933ab846d3181f059ee4090975518b71f58bb09f
MD5 5baaa2d06299bc6f2d6a67026e7b28d5
BLAKE2b-256 cd83577bbafef3bc887d654a73f3f4ab11e1bd5320abd9108bfc51fbea1498a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f4898b5463a567775a05310407dbea5b4a8d7ae8e81337ae9084f5fe226938ff
MD5 27d77ed1a58859340360a6d7633a4abc
BLAKE2b-256 9c44fe0543996d53538c074f8ee18f7391b5458c528b1717740d750a9e472e1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6690f7df210386866e120475183132df98f77bf6df624097f66e3214e775084
MD5 d42866cd688cad5745fdb92893e1d229
BLAKE2b-256 9f79bdcb9d43ed537abaa89e662d6340244207ec85b6e66e3bd7f40856c3a5d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 559025ad8e1f9f5d019a40dc8f14f43c111c11207b4dde852e943a3002b43ec0
MD5 22e9f0a20367909cc98f5b0bcdcac8ef
BLAKE2b-256 b7a5653193249a64ca46def52798e8f10ddbc918f11818a977b2aa7248062520

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f027e077345ba7d1a88cbed9168196e77f5ce8e8c816305bb1c7a2e4894bddf
MD5 2da9a171b4e3f178e1529ad498c1f3bb
BLAKE2b-256 a0ec30a52d7f6844cefd37601311a226d091268564a47b0dac56bc0469573681

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 288.8 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.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 199cbe1fa0326ec06f1d986bdfe488b3cafd2b1b5367a81c8f53c8364cab4803
MD5 8b9d3d2bb2f3138cb99d6217bc7c6460
BLAKE2b-256 b8f82534292515d113b1fb319e0bdc2ee508be9d9d2ce2389dbee00a66dfb97e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 300.7 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 63ab065ae26e48d39fc6f4d7f44dd0780afdb91a70ffb8f33e281f54ee35ad14
MD5 12c8cbfe550118a7612fcf1be3f104ce
BLAKE2b-256 c4e4f1e480dbe8c11f5edf86c123adc25cfaf2eea1e80740da99e9cef735ae8f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.1-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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 835f789f526ca7e729a8957da5ff6f33dfbda6c0b068695d01872fd6e35bbec2
MD5 f9f70a14b1984dba2997c57b8234eb27
BLAKE2b-256 d2feeaac5df152999aad4f3b4c4a25d0268b422dfebdbec28ebde8d3668604c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce0e9a33d7ee2c8f47ae216be68a3a0a4d6d9832594a69e34be070cf6d13a9d8
MD5 73179cf507df48da90a131fe4bbfafed
BLAKE2b-256 c0281d8cdb754def050e0d0674a556540d4a26bab0d7cfc3e11df14f2e4a2830

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 596418d033cff6eb0de9cb4ae63dd91c80e68d4ed01e1d0c61ad51709acc8ed2
MD5 c8694b72c7b326520357c94bb252cb20
BLAKE2b-256 176da0472d99d9a38728498c9bcb4c65687383a948b0152e0bd7a20c1a87c949

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 911b34263f39300dd8ec6b78f247b257caba0bbcd278bd2421a54d45595ff602
MD5 9f73d97fabdea153d7df805def61c1e5
BLAKE2b-256 874cf5b3feb35e942998f60545199ff9c4c80d552a8b783d07f7ff70e78e8b1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a409b0b6de923f68f5e35287f25ec654fc68135991e41ae9a1c500ddd982c1fb
MD5 672f08cafc43fd69f36dbe4dc582a874
BLAKE2b-256 133aae0df2f8e4f8fac9212a3a9684a6213b6ba3190cd7762d78e5bd5043dddb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f72e5f7e42a92f5ad2486dd14431bd09f966d167fc9e61cecef6740acf1b451
MD5 92f7d4c2a63ab755efdf69c7b58ae806
BLAKE2b-256 1916ac4710211e506a522bfe522dc02d676f308cff24c512b375b10e1cff62ed

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 291.5 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.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 710b4b33f525c7e005e62f28d7c512bfd1e7c208105e3a21f56f8051e55bb020
MD5 73a6599d97d4ca5376e81c73d6665705
BLAKE2b-256 5d5db2b550c65f0dbe74eeeec7ad0823fea2859346161d1f712b631f20801911

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 300.7 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d97e577d93e15a50c3eeb0da6cf0b94e8aea4a1c541d9b41d06d1c96ce83dbd3
MD5 26b42309aa335a7b69c469b87cc5f631
BLAKE2b-256 1910bdb8be6357cfdc3eb319821aba2b603205887b5d198710ef0b17bd47b151

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 284.6 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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fa143540f6e7240360755d95e34b4faa0ef921cc37cbb5f5d5d508b7368b0ebc
MD5 9b0567881ac888b6da5539265c936dc0
BLAKE2b-256 3d8ae76adfd70827f0525d80b2ac9678e34326314b6d800e21c0261ec1c22687

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 770d52631e2e6e4f988000f134cc98c1efc32a3b8723ec3ac8d13d871ebf5c62
MD5 0b7ea25b57de4ad2e13ad05cfa666c11
BLAKE2b-256 e9c3a6b3fe0c21af566e62819fb6ee644fed83528951de0570a31f0cc0b5b5aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a091b723d94bbd5072edc2d07786b413b967f62365853f6daef9fa1bee6de0d1
MD5 b62ea2de5adb1b037867a6c32fb0528d
BLAKE2b-256 d71ca510f123b6a482ddddf95e6abcbd640ffc934ce66651434ba6cf55067482

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fc389db70aa0f4b639bf4605b6d7f8ffcce5a613fbfece84a6312e89e6bb417b
MD5 140b711a4c7b3594f36cfcfcc5f68abe
BLAKE2b-256 02196e96d8fee9abb3064eb12ebdfd1961bec9e8289ba4a87c8548c901397c1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2fc17da21cbb9b13fabe2d6e18dfa9b7f37b2e9d08f8c07b63950c3528b3329d
MD5 93867fc779e3123114a2f10d8705fc11
BLAKE2b-256 1f7661c63119e5b362e452afd3066dc915e1fe43cceebc6d05e2728e16de8cb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06730f23bf0754456b90b9879eaae0d42521168529f216aa8915c0fc81a0a31c
MD5 8e4c51b158fe734672b5ba919da6adcb
BLAKE2b-256 8b9576ff805fec74222eaa3d9ed69041f9aeb36b2a01968ec6c9c705f52cce58

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 291.7 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.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 4a43ca8a587c63eab26c4fae8ebf1984eff678a7a700f59c7bc07408ea62ba32
MD5 6ea20a011ca6cb37a4f0dd8e79ff468b
BLAKE2b-256 ff337faa72a4f267853ec1b8df51337e13bc046d8ff753dcfa76adadf889ba34

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 300.5 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fc9379958c0ecd27b2a23f340d886ab70dbea0639934545084f0d3aea996e11b
MD5 de2ed547f9e490326d934cca57018a73
BLAKE2b-256 53711d5cf3813380e5aea5382b5b6e89f7a6fb3764091b19d4518ee78f058254

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 284.1 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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e3192f3d806478d510860d4f908a70bffaf74135afa7575d96aa76531bd71c5c
MD5 b1182f3b2ef58a5448c29eb322e57c0b
BLAKE2b-256 405f09cc27438e9ca5006ab1dd5a3497186d4a923f19f51cc07a454c02d8013d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53ce298844c57b987c7d829d7e9c4ee48e0386d30e5ac32e44654a398fa27313
MD5 bb4fa83bd83e77a6f243ea4af976e0e3
BLAKE2b-256 73ccbe88b7d6db1bb21ff991b52b29c6f5386d48bdc6bd3be5c0827823de783d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a73b3128565a94d40e97a6f4740b0c344a6fa55e1c5642f6d2d97bfb63e192f5
MD5 48d786b30fee48642d54d28750327f86
BLAKE2b-256 f9c5d0c945dd32eb264f960d2798fbb32c716f38e99109a08e9a7a7ad4b3cb0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 25f48c105e5f1a7fec1986044804a235153d3204722a49ad57f3494e6c16286a
MD5 1affca1b298069c54d2f5f7418b8b697
BLAKE2b-256 45989959fdc88286791324eb6def124cfede1bd6a6aa89bbeeeecc4369e4275b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 02364d8fc86b6840c104238f1165ac9d5b35c767c2178d2b18ee0bf3d4b50549
MD5 ba7ce481e67ce0782d916040480b57b0
BLAKE2b-256 0f6d61fb6756e889bbb114be8ddbddf8b3a7da4ebdc002b4e167f72eff673784

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 926c75f849e7cfcbedf0bf76bf812ca87c9e48e3fa441706c704ad3440629e82
MD5 7403fbcef222ead552c08c8d5713695f
BLAKE2b-256 9cd350d9799a1929b150cc8786a8c836ef40f024cf043300f13a9eb645e598fe

See more details on using hashes here.

Provenance

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