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

Uploaded Source

Built Distributions

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

cbor2-6.1.2-cp314-cp314t-win_arm64.whl (290.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

cbor2-6.1.2-cp314-cp314t-win32.whl (280.4 kB view details)

Uploaded CPython 3.14tWindows x86

cbor2-6.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl (527.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

cbor2-6.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl (511.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cbor2-6.1.2-cp314-cp314t-manylinux_2_28_x86_64.whl (460.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

cbor2-6.1.2-cp314-cp314t-manylinux_2_28_aarch64.whl (446.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

cbor2-6.1.2-cp314-cp314t-macosx_11_0_arm64.whl (402.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

cbor2-6.1.2-cp314-cp314-win_arm64.whl (299.5 kB view details)

Uploaded CPython 3.14Windows ARM64

cbor2-6.1.2-cp314-cp314-win_amd64.whl (308.8 kB view details)

Uploaded CPython 3.14Windows x86-64

cbor2-6.1.2-cp314-cp314-win32.whl (285.9 kB view details)

Uploaded CPython 3.14Windows x86

cbor2-6.1.2-cp314-cp314-musllinux_1_2_x86_64.whl (532.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cbor2-6.1.2-cp314-cp314-manylinux_2_28_x86_64.whl (464.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

cbor2-6.1.2-cp314-cp314-manylinux_2_28_aarch64.whl (453.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

cbor2-6.1.2-cp313-cp313-win_arm64.whl (288.7 kB view details)

Uploaded CPython 3.13Windows ARM64

cbor2-6.1.2-cp313-cp313-win_amd64.whl (300.3 kB view details)

Uploaded CPython 3.13Windows x86-64

cbor2-6.1.2-cp313-cp313-win32.whl (282.3 kB view details)

Uploaded CPython 3.13Windows x86

cbor2-6.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (534.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cbor2-6.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (521.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cbor2-6.1.2-cp313-cp313-manylinux_2_28_x86_64.whl (466.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

cbor2-6.1.2-cp313-cp313-manylinux_2_28_aarch64.whl (454.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

cbor2-6.1.2-cp313-cp313-macosx_11_0_arm64.whl (408.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cbor2-6.1.2-cp312-cp312-win_arm64.whl (289.0 kB view details)

Uploaded CPython 3.12Windows ARM64

cbor2-6.1.2-cp312-cp312-win_amd64.whl (300.8 kB view details)

Uploaded CPython 3.12Windows x86-64

cbor2-6.1.2-cp312-cp312-win32.whl (283.2 kB view details)

Uploaded CPython 3.12Windows x86

cbor2-6.1.2-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.2-cp312-cp312-musllinux_1_2_aarch64.whl (521.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cbor2-6.1.2-cp312-cp312-manylinux_2_28_x86_64.whl (467.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

cbor2-6.1.2-cp312-cp312-manylinux_2_28_aarch64.whl (454.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

cbor2-6.1.2-cp312-cp312-macosx_11_0_arm64.whl (409.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cbor2-6.1.2-cp311-cp311-win_arm64.whl (292.2 kB view details)

Uploaded CPython 3.11Windows ARM64

cbor2-6.1.2-cp311-cp311-win_amd64.whl (301.3 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

cbor2-6.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (534.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cbor2-6.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (523.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cbor2-6.1.2-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.2-cp311-cp311-manylinux_2_28_aarch64.whl (457.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

cbor2-6.1.2-cp311-cp311-macosx_11_0_arm64.whl (411.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cbor2-6.1.2-cp310-cp310-win_arm64.whl (292.3 kB view details)

Uploaded CPython 3.10Windows ARM64

cbor2-6.1.2-cp310-cp310-win_amd64.whl (301.1 kB view details)

Uploaded CPython 3.10Windows x86-64

cbor2-6.1.2-cp310-cp310-win32.whl (284.5 kB view details)

Uploaded CPython 3.10Windows x86

cbor2-6.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (534.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cbor2-6.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (523.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cbor2-6.1.2-cp310-cp310-manylinux_2_28_x86_64.whl (468.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

cbor2-6.1.2-cp310-cp310-manylinux_2_28_aarch64.whl (458.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

cbor2-6.1.2-cp310-cp310-macosx_11_0_arm64.whl (412.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: cbor2-6.1.2.tar.gz
  • Upload date:
  • Size: 86.8 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.2.tar.gz
Algorithm Hash digest
SHA256 6b43037a66947dee5af0abb1a4c3a13b3abac5a4a3f32f9771efbbcd030fd909
MD5 d9d92d204df9e6834305cfa0ea546e91
BLAKE2b-256 75af473c241e41c142ea06ebef8d1f660fa6ff928fb97210e7bec8ee5974f8cd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 290.1 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.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 8c2202fd1906f978bff3f97b21351815753dd9a8fcf4612a5113b6b257089059
MD5 9d913f6803d3cc76d6452ff1e569fb19
BLAKE2b-256 d46e5556939414c0d2bffed7c7a53cf2b32181b55a795944d19835d513a7bc88

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.2-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.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3c6c3d6598c268abf7068ae75b23b19f708e7a4aa294341b356deb65cb2664f1
MD5 b82bf919c041a5c246098920ecbbd75d
BLAKE2b-256 9684b555de26cc01108a72ed1df8eb7ca1d63495a3727045f0f93318dc5f99a8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 280.4 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.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 f93179b4b1ba958b5c37b56969b8f07b4fcf44a83319f47559c59f28a1c564a4
MD5 24602a4feb9a5a503ab1928847bcd6af
BLAKE2b-256 1a89e3210ea45855a8d6173821f712a71a90d23dea0c134c4017c6f666a04fdf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b44eb2f3ea1c8d9cb3e39c345204ec4d9489f8149b78eb5e058b13b14a8c7b07
MD5 dd118b1e6b40ebf552d8bdb5a300e1fc
BLAKE2b-256 db0af1ede587a388f127b9fc3d8ecb2f5d948654fed9fc7698f8b05fd90986bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ca0080e4d8ab0d67c0518ac995d03151a1274b5c295c9e619fb6057c91ae49e
MD5 325f0b4578dae242a45fabbbc585d788
BLAKE2b-256 ed88c1e841ffb39a8e7163d7d432f7ea0e59b812c5134a449c75b6b8eb8aad08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 08a62f69fe0f0ee1428d901423853b56bb5c775430f798401f8fac4b9affdecc
MD5 186ee1ed8f691b65653eb28debf57c9d
BLAKE2b-256 c8123b90820583e9860e35cb5e91f3b2cd2ab1bbdf1c57fc63aa572952f5f75f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 596e238f24bf9ede11a1ad08d2115fe78105ed6dda42ce1dd35872e7e91974fd
MD5 b92e0bf518e20fd190a55d94ce968741
BLAKE2b-256 58f658c86aa6246b3e7de473d8ff79ac8cc986e95cafe208899a70d6916012d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f26e08dd78ee77d103065543a65cfb838948fa8735180ad4d81d939950a1420
MD5 7ea6620cb81eb713010de5ab6cdc6763
BLAKE2b-256 b22befcc6578b4e6142fb8ec9212c0dee5030345db2092f26aa960236067e717

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 299.5 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.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2af1309865000c401755fd4fdd5550f74ac34c3f79eb7db15f3956714769a5a9
MD5 292e687210195cfb10bf883b23358e47
BLAKE2b-256 cd6148f9c5545223dad9d2ea2061a76da739b4047a461297b621fc80ce0f65c0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 308.8 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c02b7d94fe9914798a346a2f089f0f7f85be71d120d40080916d131fa0bd0442
MD5 52fdc2cc2ea4e03055ad1fd04d9d1643
BLAKE2b-256 d90a6303f3e19730450c5a82b97cd2c0ed54855f9108502041305b4c641116cd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 285.9 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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 72ba0ea913ca1a8d916867f1b7d414f140982d2873e5d92f8f51de437e08979e
MD5 952f210e613bb0a76f13f96e25add3f1
BLAKE2b-256 352f5af245e7667b65c6e4a714bb5d89c84de5573b857eba9137533d54bc2e4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8d87fb8a33ff1971cb01511e74b044767cbba1ba536d3dc0b0c48f0d1b62237
MD5 50a606ec38f152e0a19c66379b83312e
BLAKE2b-256 311b0e3f0dac7140d4b94ffbcef765fa4cce0caa1d942060101149de998fa7be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27be1cc0abc42f154a48a315c92feb2bfb50397e51c70860460438ea172198a5
MD5 1a8b795b133350f22ac15bcbb4d1e334
BLAKE2b-256 6d48a06527c3fbed4c32816abba4540e432fe9cd7e739a37fef0f205bd0f1e44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b29d58d8ce00535354d873df170a3e9f0f0a02af65d12102d2552e2129c65dc8
MD5 06aaad2586d9b99857cb077b112cfcd0
BLAKE2b-256 93a5227b785692a8374e3dbdf1fe76d1a9af48239855abd68a4111a1458fd81b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8904deb2849bae40cea970e114398a19da371e1048ae1409e64f167a1205daf6
MD5 b97626d2591fd83f445113626e8d6206
BLAKE2b-256 2fbd5969f9263102d1c15aa370b39802e4a87b1d1703fdb51588daf38b5fbe7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0b65314a0b18c47651e17792447171a858dd77e3f161c451ad850d63f8718a9
MD5 cd8b7a345672c7f95a3669b37f8d4ef5
BLAKE2b-256 6272949bdc7422acd868a2355ae032561a104973fb5de284b36a237b85780dc9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 288.7 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.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8e1478d3b980ddfcaf56e27cecbfe13057e0f67d5e8240fe8a398815acb9c4bf
MD5 4c2886c331e22b1d3e5a6c0c58910904
BLAKE2b-256 0798a13b424fb2f14fe332b57f71f479953b2f291a051f797d42ddab9fcd2027

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 300.3 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d2c8da2c0f821827dcc9eb59a5c9351791a8aa3b389a2ea7ca64c4f97bcb94cf
MD5 9fbdbeb86b20c8fbb6355c70141da1dd
BLAKE2b-256 707929721bc15d38889e7bec214ede2346ee15970bedcc5e6ce1fa30f21e9a4e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 282.3 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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 03440b505882280023db1fedcee6844804e9968bb50f9eb4ff12aaf27777fcfe
MD5 6741155c5cf010c668257f35c84a696a
BLAKE2b-256 1e5e1a872acdeb1ab9a884ec3460f73a43e02154dc20d8ccb627bbd60f4c0ea1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96eb687a62040401668f06a85de8f47361ef44574de1493899e0ec678109fc04
MD5 0271e94dca8b353f006ca75cd8dcf5ae
BLAKE2b-256 c63fe899313371ebeb7a191d751de97ccd8242abc24bbc9d8e2c58e04475cfb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3049b04bddf9a5a2d0e5bb25dccdaf4552fcaf607b404e249d4f78f010fcc7d0
MD5 ab4ad97296a079115dd602463f3f7f6c
BLAKE2b-256 50f636a15beb3915f56a79d6e9213c6d40c0f5cb90cd3462923f555d78068847

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c1eedf3290d88a5f663bd8b4b8f0f0e2103d0594c293fa5f4e62e53100972309
MD5 4bb5906e126bc1320552a48dd6ad63ba
BLAKE2b-256 386b4884b9cf03db14dc5007825d5d1bf8678a75c49d4268d8e0c1c6e9580104

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ff7d0bd8ff432832338a8d2430aee34f8a082342480ff537c0ba90e2b8ff7894
MD5 1b9b12cc2a241b60497c328d0313bb99
BLAKE2b-256 2b36d66f5f0dd98ecbdcfc7da1fbd423f7b3782a27719f0062a560476f00b334

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1aa38c422d87ea61849b2a823b10b64053fb4da8763f19ac78ea9a69d682b2a
MD5 f287d9537591f680dae0dd950c5fdf45
BLAKE2b-256 2bdcbc045c8f36317e4e5f7a60d94b36833139909fc32e3a65f44bc61a36def0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 289.0 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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c871e7266ddc545b258e6f8e5300396985dc485d7ccf8bb4777385782f302153
MD5 342aa25791c96bf19129c409f0b7fa9f
BLAKE2b-256 774a08bd8461f8e2e1ce1de5ae2768f2b7ca39a090e3156c1ee0d9b5fd86e70d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 300.8 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c61c0b2e2cee64497e6c62d1976bc212f62ac0cd2b5b903613610d79b8b06b60
MD5 9236692d44ee0fba878eb0bcd20b169d
BLAKE2b-256 1413e6a677bdc499e43049006cb54fe605b0f7aef621402d31354cc42ef293c9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 283.2 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 618666292900487db4a5abcade3150105c9c9fdd22576e6ff297c9a72eef0c6a
MD5 0cf31ba09a740d4cd05a09bacd878e8c
BLAKE2b-256 b1ea99e466d8bef61a0775a1d8538ae6c9d95f4533fadc01f8f7814cb7ab80ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2652a94224980d47f2a3866dd35b1afe532ecdfaf91f8cfcec39a026c457a844
MD5 ca2f66796246f856ac53a43be7297d96
BLAKE2b-256 cbcf80cc4be132a523f0c92fb4c71813577bb393abea9e27990ca74605e0e930

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ea16a25cc457a92879ff7a36cc50b587bddba09d8176bf1a94803eec5aa27eb
MD5 fbcaa4addd61403b8445d7458fd3bbc9
BLAKE2b-256 7c957992d8ec904c116ad547abb4960cc3fde695d5853c66596b1465d14d2f7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a106f174eda34d8937a621c7f3e6044586cb209170cdc8da0ffbea89d1d6e385
MD5 8f28386af70e983e2b885f64e30ef319
BLAKE2b-256 296762127b22edc6011ba55b76a28ab7c2219a45d01871a8199532e0978b26d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d29a11044b07048e19f39a87fe8fea7ea865eb0ace50dc4c29513d52d40e2ddf
MD5 0b70ce6521182ba493fbce2a91320cca
BLAKE2b-256 29dbe0518153b3228159d9373f3b5785d7ea2d68898e27ee1bce7d03f0b5f7aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92b158d3ff9d9dce70eeb09786a6e518e3cb0ecb927fd23e9a0f7fc4b175c01a
MD5 3931af7a72e623c98bfb7325c27a383a
BLAKE2b-256 5e0ca857b6ca032282b564cf25de18ad92fe0614e8b3fa3422eb10e32a873939

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 292.2 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.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 0e2cfd25a395d454990d67148103107293c6506c3b0b15952a6e97f53d23deda
MD5 325a09b455cc82be9877bc8234431c27
BLAKE2b-256 76cbe5f92271747a0331ca9151fac4098f8e245f1b09623ddff1258967a35b01

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 301.3 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 08cdc03d65e965aafd04c3bf9cb54b8cba55041756bd39d0ba6cd62bd060f959
MD5 afac32a4c3a3462d18ebf11498e1e79e
BLAKE2b-256 55956239187639a875eb83b924c16f4938d3d735c9c45474008c8b962bd55da2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.2-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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0ef832ac8152ca76a69c184fe401329629b7dfd5fdddd713121bf1ff6d21660f
MD5 bfd52fcdc04ac4dfaf0636a8482c1d1f
BLAKE2b-256 b88a447aea5da80847bb17ca4718cd4909a2dc8dfe6f68ede4fe29f94b4ca12c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3099e678283efd2d3cabd6ddcb770da6e2102c0d265f98bca38aa4e720e247cf
MD5 29179683aabe97526ef5a2b9b2dec0e3
BLAKE2b-256 fe7f90faf18c280abb49428ed2e78f672ef0c7f6eb1b9b685bc4fe810f2e5e95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 511999bf3310c6641d3d15ee3853daa7ebd6ef3130bb0d63b9a7e2fd720a3714
MD5 a64af6afcd0161fa7bae40e82f7128b1
BLAKE2b-256 a1e9bb31f04c5afa53eb55927da1399cc596d7e84e7053de7abf2c3aba0ea3a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a429fc61db768c3b4739eb8532556eed86913ad64fe6ebbc1f3a646fb9a4f22
MD5 92fe27feb23ca59512333cd6276357ea
BLAKE2b-256 3af37fed7cee8456932d38e7b11d5034470ee9e91378d16f762c552e78df34fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9f81ab0e74671b0ff9b7e30386e2ab8d40ee1049d13c1680b57ab1b1cd95c81a
MD5 b2e18886272534cd1e14b672815ca388
BLAKE2b-256 3fd3a96162ac244e074f9c188ffd29c086c51466e71c7c360189f6204900db3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ce8f6d9e234bdf36b5300bf3da98fafc198b253f8dfe77747327806bdb37d97
MD5 4f4bebfbcc00f695c58fda5f4d560c19
BLAKE2b-256 c01e687d7a712755c84a4b823ca79622dceef7ddfb0a3387b6ac1cad10835e07

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 292.3 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.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 925ebc6d26a0d3aa81377bdcfd8d44d166f4f6a5ee77467a9d6f3ed1487fc499
MD5 c84b009b4532da59f8883a4e31c6feb7
BLAKE2b-256 cbcd92f77e8bdfef427c6617cd4b02898e9d88861db8dcc973cc8b2c29a51582

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 301.1 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a3d1699de84d8aec4e9c6c3fdd450d86fac183a542733f0cac36a4317db2375a
MD5 deb5ae308665bc844918ab618867999a
BLAKE2b-256 d23eecce89144cd820ba6f528debedff4948b6022996d3fcc4715e69f6acb483

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cbor2-6.1.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 284.5 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 464abc44b6863f888c9e263078e52395bddc03f20a3bd59f58fff581788fea51
MD5 0cd57c1845be5a2c084886840491c632
BLAKE2b-256 a0e88b454b8d405d9a66935b47bf5d9b045147bcf86f7747161598a32e5169ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95e3d99160f105b8b6bccb1033c9c14e8ca7c450d8999363882d87357313b78e
MD5 dbb472d0e96b21b3737c4d5e958b4d69
BLAKE2b-256 b271cfe388abc06d59e8393a1a5fa260d5412b5a68963de0ef0e79f6395a3cb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe007e47f6edb828cc97af256ce3452f57431cb8841302c3c28543efc7c9e037
MD5 71b69b28b51de948adf84a41c3c36ae4
BLAKE2b-256 6bed2b2446767225078c023fd32523f84dceecb2a94e7ac7259b27d1527a5eac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 86b030a6accec1b4a58387e27edb656921c4b6d5d36d60f05d19915526233402
MD5 bd0b604826e4d212e7f983fd5d75557a
BLAKE2b-256 c7a9443cb3f0b086cbb78e3df098bce6f8fb6cabc39b9ea5b46bca27b7adf4ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 715112c1087bc65f26d50ed4ffaaa214cbd398fbfb0d1a45f7edf555e77c7ca6
MD5 23b2856c1df6fbf55ff55b001345865a
BLAKE2b-256 13aba10563c43a937a5fc0c5c52ee14f8380c7ba66634294759cc3dd3697d521

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cbor2-6.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ffda338fe434d8d37e92e0d2e8f66432f0aa983f769dd2417f1eb6dfce634d3
MD5 0a3e89ad0067940ad88e408f2e2e3cf5
BLAKE2b-256 523f37771defcae022510d640df8e420b7968c01804c084ff8cd2b9021c8873b

See more details on using hashes here.

Provenance

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