Skip to main content

Fast pickle to JSON transcoder for ZODB, implemented in Rust

Project description

zodb-json-codec

Fast pickle-to-JSON transcoder for ZODB, implemented in Rust via PyO3.

Converts ZODB pickle records into human-readable, JSONB-queryable JSON while maintaining full roundtrip fidelity. Designed as the codec layer for zodb-pgjsonb, a PostgreSQL JSONB storage backend for ZODB.

Key capabilities:

  • Full roundtrip fidelity: encode to JSON and back produces identical pickle bytes
  • Human-readable JSON with compact type markers (@dt, @ref, @kv, ...)
  • JSONB-queryable output for PostgreSQL
  • Faster than CPython's C pickle extension on most operations
  • GIL released during Rust phases for multi-threaded Python
  • Escape hatch (@pkl) ensures any pickle data roundtrips safely

Installation

pip install zodb-json-codec

For building from source, see the documentation.

Quick Example

import zodb_json_codec

# ZODB records (two concatenated pickles: class + state)
record = zodb_json_codec.decode_zodb_record(data)
# -> {"@cls": ["myapp.models", "Document"], "@s": {"title": "Hello", ...}}
data = zodb_json_codec.encode_zodb_record(record)

# Standalone pickle <-> JSON string
json_str = zodb_json_codec.pickle_to_json(pickle_bytes)
pickle_bytes = zodb_json_codec.json_to_pickle(json_str)

Documentation

Full documentation is available at https://bluedynamics.github.io/zodb-json-codec/

  • Tutorials — Getting started, working with ZODB records
  • How-To Guides — Install, integrate, benchmark, build from source
  • Reference — Python API, JSON format, BTree format, project structure
  • Explanation — Architecture, performance, optimization journal, security

Source Code and Contributions

The source code is managed in a Git repository, with its main branches hosted on GitHub. Issues can be reported there too.

We'd be happy to see many forks and pull requests to make this package even better. We welcome AI-assisted contributions, but expect every contributor to fully understand and be able to explain the code they submit. Please don't send bulk auto-generated pull requests.

Maintainers are Jens Klein and the BlueDynamics Alliance developer team. We appreciate any contribution and if a release on PyPI is needed, please just contact one of us. We also offer commercial support if any training, coaching, integration or adaptations are needed.

License

MIT

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

zodb_json_codec-1.6.1.tar.gz (2.1 MB view details)

Uploaded Source

Built Distributions

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

zodb_json_codec-1.6.1-cp314-cp314-win_amd64.whl (435.7 kB view details)

Uploaded CPython 3.14Windows x86-64

zodb_json_codec-1.6.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (509.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

zodb_json_codec-1.6.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (495.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

zodb_json_codec-1.6.1-cp314-cp314-macosx_11_0_arm64.whl (500.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

zodb_json_codec-1.6.1-cp314-cp314-macosx_10_12_x86_64.whl (537.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

zodb_json_codec-1.6.1-cp313-cp313-win_amd64.whl (435.3 kB view details)

Uploaded CPython 3.13Windows x86-64

zodb_json_codec-1.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (508.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

zodb_json_codec-1.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (495.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

zodb_json_codec-1.6.1-cp313-cp313-macosx_11_0_arm64.whl (500.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zodb_json_codec-1.6.1-cp313-cp313-macosx_10_12_x86_64.whl (537.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

zodb_json_codec-1.6.1-cp312-cp312-win_amd64.whl (436.1 kB view details)

Uploaded CPython 3.12Windows x86-64

zodb_json_codec-1.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (508.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

zodb_json_codec-1.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (495.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

zodb_json_codec-1.6.1-cp312-cp312-macosx_11_0_arm64.whl (501.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zodb_json_codec-1.6.1-cp312-cp312-macosx_10_12_x86_64.whl (538.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

zodb_json_codec-1.6.1-cp311-cp311-win_amd64.whl (436.4 kB view details)

Uploaded CPython 3.11Windows x86-64

zodb_json_codec-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (507.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

zodb_json_codec-1.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (495.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

zodb_json_codec-1.6.1-cp311-cp311-macosx_11_0_arm64.whl (501.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zodb_json_codec-1.6.1-cp311-cp311-macosx_10_12_x86_64.whl (538.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

zodb_json_codec-1.6.1-cp310-cp310-win_amd64.whl (436.2 kB view details)

Uploaded CPython 3.10Windows x86-64

zodb_json_codec-1.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (507.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

zodb_json_codec-1.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (495.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

zodb_json_codec-1.6.1-cp310-cp310-macosx_11_0_arm64.whl (501.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

zodb_json_codec-1.6.1-cp310-cp310-macosx_10_12_x86_64.whl (539.0 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file zodb_json_codec-1.6.1.tar.gz.

File metadata

  • Download URL: zodb_json_codec-1.6.1.tar.gz
  • Upload date:
  • Size: 2.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zodb_json_codec-1.6.1.tar.gz
Algorithm Hash digest
SHA256 9fbe545f5d94ea469fea10b2fdf62440279aa7804e909c6f46fc61512fdd0b24
MD5 71207fe9baef7314db7d9c904189a21e
BLAKE2b-256 bafa7bc6fb3e387f8d019a191f6bb69e54b1fd0aed76c7359a67b9e7ad06357a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1.tar.gz:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bd5bb8e0762d5b0d0c2f86dc2ef73e0cc1fbc795a2e321fd162b620f21f07a29
MD5 68e448a4473956a3c02aba2e1b726581
BLAKE2b-256 1eaec63d20ae7e50aa4cc3697521b6c26cd5b2190f95d0c2a1b1d6c1ff06b46f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp314-cp314-win_amd64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5ae9be0844dd52e81c05f0185303c46426d7a2e17d873c3116fb56a7724f773
MD5 1986ad013e49c847fc673a27863b23ff
BLAKE2b-256 da6bf482773ab4c5b4ff2a256674ee310313ef8f850671db3607a76392bee6d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30396035638a082a232a7915264b18893a7e12d52cadb2eaf8b9149133842c37
MD5 b0648fe67d0e5c8eead3f63932ce5695
BLAKE2b-256 0271742b4efdd16a00566071d495d57ab1a807ab70e9de3cb35745955746518a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36894ed44f1fe7f3573aca2af15e12380b5d8f98b77a13c7ad0917c458cd0d4f
MD5 d5ec7e3b6b972ec2292d05b31e0a36c0
BLAKE2b-256 164ed6d0d259b8f217940210fd2a37df556844fd626446bfc7c34ec040348f0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a8ac503b939e24a7eda3ee3f823909ac56e4d72d4dde09f740b0fdc0cd01dde2
MD5 1644a0f2f70bb71e1079d81acef3a6f9
BLAKE2b-256 16da4a1222c93d056ac9c54b11a5d95085923653620852c1710af6322d8bddcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dd1c0845180242afd76a0026373e674a1278ef3c42b35d865e603e4496f9b442
MD5 2b2077948a180a0b82683032e4fdc8fe
BLAKE2b-256 a73b74b55c45c68efae9946cd3133a7ebe0a7245db116501e5937e7434bb2e15

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb3d4f819e9506a2926ba0cd76798af6423fb41df2b0ba1e23cc4d73e2d01ea1
MD5 0bcd4e355ee8b3f2c215c4acf7b59aa4
BLAKE2b-256 af345e323d0f4563467e661b41d53ed9307db72428828a3cb4c459866552fa17

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7bc169b05ee32236818787180501e97fedd6ac4e015454c9778fe3796a744ffd
MD5 2539478fe009a285c94976cc0d3c6844
BLAKE2b-256 2e7303210195b21c9d1dac993d0c1353020ea62e0aa9114f1e858e0d4970904d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1dfbd1416560aac9865888832c67f57db441537771f83270ccd067a3a75bbe43
MD5 9c122eec0fd9ddfebbadad82b3b4c3e0
BLAKE2b-256 7a8be78963061e9e96829db0d3e228d5b6a122fc26d1019547efcb3ef8c881e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2012947528e9cce2cc2d26f040596c68c1de757d2aee72aca62980a872add3c7
MD5 b06037834ff21e9b9361b095b29d9b05
BLAKE2b-256 03ebdffe522d9d10bbe58af1c03e6da274fad044272cc205ae1253cc03061cea

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 165412be1cdb3634d3ed7f8f089ad2388a67550565a7a5e6c5bb146779cb7819
MD5 e3d8979dc1f87a93b8971e74e62e9bc0
BLAKE2b-256 91d4cbef06979b95e7562b9471e3f771c16d38d084e355dd33cbdeaedd4c257f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3533548608331200d378b82c83b3832847ce27e1f6baaba924fc95cbd0e6e9e
MD5 a41cfdfb289ee8c88cf863f860ea5770
BLAKE2b-256 ebdb05bb8861f818ef6cbf6554e85889a1a76d8e4aa0720a5010db136e5baf24

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e32bd5d6901e03328ba5225f88f007cfb69627f48265755162f99afa89fa8eb6
MD5 25bfde373cfe3d8e2d32ccbad46c7a13
BLAKE2b-256 64e4b0c36a93622a48376bc69c17998a2f6e0a3491868d02f58c8d8e91fce6b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49f54581441f230f987bbcc301ea8ba70538124a6fa1b3e1e5cee8d927053863
MD5 e67e4ed933cad98413cfede1c5baeb54
BLAKE2b-256 eb503ccb8f1c471fdf772121ca9c812bbe2e1d64aabf9db2962a92b13ad99d73

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dda6bdd02b278dc77ba4f9cc7f3d22700236fe226e6950c63d22be59a5b69216
MD5 f4ea6509eabab8a6df0a3493f765e3a8
BLAKE2b-256 ba132b017cc03533b1ddb13a5dfd2da7a488e21a2b035f23a4bc6094e6bab5fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8a415c6924d56f4638df71368d84e0076b786f4e9d5c5c0db60512afef0aa73d
MD5 5770d77bfba74bbb8dd64c33f392c4a0
BLAKE2b-256 93b6cecc1980ea11a31180d694206e322b5243e23fee7dde182feb3ea7d1c947

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f15cc6cf011b252d08299bb1f016543069be3aeca4e64263448956bb30bf6c55
MD5 525028bb46077f2ab6aebd531f2d3af1
BLAKE2b-256 2337015d1658282d2f7a8481ae4197b0438fe9a13950dc6c93c1df881eb07c13

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 097cc98a410b72fb178ac7d5ff9f04d8c4493c7dc3b5dee1ae8dad672e66be27
MD5 e934f31328b7d5415fc9faac3c53a7fa
BLAKE2b-256 de6731ff5e2a56ac67ba76d6e7113a96ac018a75c7845e3ec9b8814e4f44f425

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3896b4b88f2b2480248b7fae6497fa80c5fbaeb26c5ddeb852b3e66f6df08ea
MD5 16dcfc46263b6e04bf8b0ed1d8a9ba97
BLAKE2b-256 968c93e3950fb9c92a60858591113fdd634ad39478124b4175f27543add9df5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ecb81d8186acde7cd66d9871b9bd2717331755003ffd9c3dce8868b96ccbb23e
MD5 50ab9cf6a5955ce5f70caa9ab60bf284
BLAKE2b-256 cc9eb3d76a1fe3c446979b897604d4db40bf82f0ef2704d098d6df9630cafb43

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b1b338253c0cadc097eaaf34d06e3db0be7d6601bf2d83c0b9a22caba3246bd8
MD5 e9c26cae5f94d4d014077cde2e3f32e4
BLAKE2b-256 9fca3d8786d0ab151ab0b1c6969172e642336dad6bcd3f0ed8852dc513cc36ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19a93f713b28628128814b272c2c58b24862321e139216ccd07695fb329776de
MD5 0b994da774a7010a730f41c987d7f7ad
BLAKE2b-256 a3f377c7f607f9453687492a2e0268eb1255eb16612ed3bebd81ac3ca0305062

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d26b201464f4ca8d3ef1aac83f9e5a941082188ce8134a242c7b1e4bf29a164a
MD5 38deee4e0b9cc62b697da3de385d1420
BLAKE2b-256 f4425b5f0fd6b69cb064bf367e04053dbe120fba0dec4cb7d8e78ec243505668

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e08729c3f04fcc9fd3081870e563becdf27424735afc623441d4f9173975fdbf
MD5 b9ddad98b45f73c143325e28eb94401f
BLAKE2b-256 53af5b08ba9c77d8eb9499f14f05fdb43fe3793a4ca67648580dce9a66598022

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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

File details

Details for the file zodb_json_codec-1.6.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for zodb_json_codec-1.6.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e028058829f7fc750565fd29601bd2799df705f2fe3d927c5d8ba3c0e8f07feb
MD5 84e5c19467f8b335c956c1a03e1c1cfd
BLAKE2b-256 774bcfa4a65ad319edce4e131ed7694e6a231e4dc8e0d291e3cd312229dcabb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodb_json_codec-1.6.1-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yml on bluedynamics/zodb-json-codec

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