Skip to main content

zodbpickle README

https://github.com/zopefoundation/zodbpickle/actions/workflows/tests.yml/badge.svg Coverage status PyPI Python versions

This package presents a uniform pickling interface for ZODB:

  • Under Python2, this package forks both Python 2.7’s pickle and cPickle modules, adding support for the protocol 3 opcodes. It also provides a new subclass of bytes, zodbpickle.binary, which Python2 applications can use to pickle binary values such that they will be unpickled as bytes under Py3k.

  • Under Py3k, this package forks the pickle module (and the supporting C extension) from both Python 3.2 and Python 3.3. The fork add support for the noload operations used by ZODB.

Caution

zodbpickle relies on Python’s pickle module. The pickle module is not intended to be secure against erroneous or maliciously constructed data. Never unpickle data received from an untrusted or unauthenticated source as arbitrary code might be executed.

Also see https://docs.python.org/3.6/library/pickle.html

General Usage

To get compatibility between Python 2 and 3 pickling, replace:

import pickle

by:

from zodbpickle import pickle

This provides compatibility, but has the effect that you get the fast implementation in Python 3, while Python 2 uses the slow version.

To get a more deterministic choice of the implementation, use one of:

from zodbpickle import fastpickle # always C
from zodbpickle import slowpickle # always Python

Both modules can co-exist which is helpful for comparison.

But there is a bit more to consider, so please read on!

Loading/Storing Python 2 Strings

In all their wisdom, the Python developers have decided that Python 2 str instances should be loaded as Python 3 str objects (i.e. unicode strings). Patches were proposed in Python issue 6784 but were never applied. This code base contains those patches.

Example 1: Loading Python 2 pickles on Python 3

$ python2
>>> import pickle
>>> pickle.dumps('\xff', protocol=0)
"S'\\xff'\np0\n."
>>> pickle.dumps('\xff', protocol=1)
'U\x01\xffq\x00.'
>>> pickle.dumps('\xff', protocol=2)
'\x80\x02U\x01\xffq\x00.'

$ python3
>>> from zodbpickle import pickle
>>> pickle.loads(b"S'\\xff'\np0\n.", encoding='bytes')
b'\xff'
>>> pickle.loads(b'U\x01\xffq\x00.', encoding='bytes')
b'\xff'
>>> pickle.loads(b'\x80\x02U\x01\xffq\x00.', encoding='bytes')
b'\xff'

Example 2: Loading Python 3 pickles on Python 2

$ python3
>>> from zodbpickle import pickle
>>> pickle.dumps(b"\xff", protocol=0)
b'c_codecs\nencode\np0\n(V\xff\np1\nVlatin1\np2\ntp3\nRp4\n.'
>>> pickle.dumps(b"\xff", protocol=1)
b'c_codecs\nencode\nq\x00(X\x02\x00\x00\x00\xc3\xbfq\x01X\x06\x00\x00\x00latin1q\x02tq\x03Rq\x04.'
>>> pickle.dumps(b"\xff", protocol=2)
b'\x80\x02c_codecs\nencode\nq\x00X\x02\x00\x00\x00\xc3\xbfq\x01X\x06\x00\x00\x00latin1q\x02\x86q\x03Rq\x04.'

$ python2
>>> import pickle
>>> pickle.loads('c_codecs\nencode\np0\n(V\xff\np1\nVlatin1\np2\ntp3\nRp4\n.')
'\xff'
>>> pickle.loads('c_codecs\nencode\nq\x00(X\x02\x00\x00\x00\xc3\xbfq\x01X\x06\x00\x00\x00latin1q\x02tq\x03Rq\x04.')
'\xff'
>>> pickle.loads('\x80\x02c_codecs\nencode\nq\x00X\x02\x00\x00\x00\xc3\xbfq\x01X\x06\x00\x00\x00latin1q\x02\x86q\x03Rq\x04.')
'\xff'

Example 3: everything breaks down

$ python2
>>> class Foo(object):
...     def __init__(self):
...         self.x = 'hello'
...
>>> import pickle
>>> pickle.dumps(Foo(), protocol=0)
"ccopy_reg\n_reconstructor\np0\n(c__main__\nFoo\np1\nc__builtin__\nobject\np2\nNtp3\nRp4\n(dp5\nS'x'\np6\nS'hello'\np7\nsb."
>>> pickle.dumps(Foo(), protocol=1)
'ccopy_reg\n_reconstructor\nq\x00(c__main__\nFoo\nq\x01c__builtin__\nobject\nq\x02Ntq\x03Rq\x04}q\x05U\x01xq\x06U\x05helloq\x07sb.'
>>> pickle.dumps(Foo(), protocol=2)
'\x80\x02c__main__\nFoo\nq\x00)\x81q\x01}q\x02U\x01xq\x03U\x05helloq\x04sb.'

$ python3
>>> from zodbpickle import pickle
>>> class Foo(object): pass
...
>>> foo = pickle.loads("ccopy_reg\n_reconstructor\np0\n(c__main__\nFoo\np1\nc__builtin__\nobject\np2\nNtp3\nRp4\n(dp5\nS'x'\np6\nS'hello'\np7\nsb.", encoding='bytes')
>>> foo.x
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'Foo' object has no attribute 'x'

wait what?

>>> foo.__dict__
{b'x': b'hello'}

oooh. So we use encoding='ASCII' (the default) and errors='bytes' and hope it works:

>>> foo = pickle.loads("ccopy_reg\n_reconstructor\np0\n(c__main__\nFoo\np1\nc__builtin__\nobject\np2\nNtp3\nRp4\n(dp5\nS'x'\np6\nS'hello'\np7\nsb.", errors='bytes')
>>> foo.x
'hello'

falling back to bytes if necessary

>>> pickle.loads(b'\x80\x02U\x01\xffq\x00.', errors='bytes')
b'\xff'

Support for noload()

The ZODB uses cPickle’s noload() method to retrieve all persistent references from a pickle without loading any objects. This feature was removed from Python 3’s pickle. Unfortuantely, this unnecessarily fills the pickle cache.

This module provides a noload() method again.

Change log

4.5 (2026-08-20)

  • Add support for Python 3.15.

4.4 (2026-05-04)

  • Add support for automatically building and publishing Windows/ARM64 wheels.

  • Add support for automatically building and publishing source distributions.

  • Fix compilation on free-threaded Python 3.14t: use Py_REFCNT() macro instead of direct ob_refcnt struct access, and Py_TYPE() instead of direct ob_type struct access.

  • Add CI testing for free-threaded Python 3.14t (Linux).

4.3 (2025-11-20)

  • Added support for pickling the types of built-in singletons. Fixes #103.

  • Move all supported package metadata into pyproject.toml.

  • Drop support for Python 3.9.

  • Add support for Python 3.14.

4.2 (2025-02-12)

  • Drop support for Python 3.8.

  • Add preliminary support for Python 3.14 as of 3.14a4.

  • Remove unused setuptools install requirement.

4.1.1 (2024-10-02)

  • Fix NameError which occurred when importing zodbpickle.fastpickle.

4.1 (2024-09-17)

  • Add final support for Python 3.13.

4.0 (2024-05-30)

  • Drop support for Python 3.7.

3.3 (2024-04-16)

  • Build Windows wheels on GHA.

  • Add preliminary support for Python 3.13 as of 3.13a5.

3.2 (2024-02-16)

  • Add preliminary support for Python 3.13 as of 3.13a3.

3.1 (2023-10-05)

  • Add support for Python 3.12.

3.0.1 (2023-03-28)

  • Fix NameError in .fastpickle and .slowpickle.

3.0 (2023-03-24)

  • Build Linux binary wheels for Python 3.11.

  • Add preliminary support for Python 3.12a5.

  • Drop support for Python 2.7, 3.5, 3.6.

  • Drop support for deprecated python setup.py test.

2.6 (2022-11-17)

  • Add support for building arm64 wheels on macOS.

2.5 (2022-11-03)

  • Add support for the final Python 3.11 release.

2.4 (2022-09-15)

  • Add support for Python 3.11 (as of 3.11.0b3).

  • Disable unsafe math optimizations in C code. See pull request 73.

2.3 (2022-04-22)

  • Add support for Python 3.11 (as of 3.11.0a7).

2.2.0 (2021-09-29)

  • Add support for Python 3.10.

2.1.0 (2021-09-24)

  • Add support for Python 3.9.

2.0.0 (2019-11-13)

  • CPython 2: Make zodbpickle.binary objects smaller and untracked by the garbage collector. Now they behave more like the native bytes object. Just like it, and just like on Python 3, they cannot have arbitrary attributes or be weakly referenced. See issue 53.

1.1 (2019-11-09)

  • Add support for Python 3.8.

  • Drop support for Python 3.4.

1.0.4 (2019-06-12)

1.0.3 (2018-12-18)

  • Fix a bug: zodbpickle.slowpickle assigned _Pickler to Unpickler.

1.0.2 (2018-08-10)

  • Add support for Python 3.7.

1.0.1 (2018-05-16)

  • Fix a memory leak in pickle protocol 3 under Python 2. See issue 36.

1.0 (2018-02-09)

  • Add a warning to the readme not to use untrusted pickles.

  • Drop support for Python 3.3.

0.7.0 (2017-09-22)

  • Drop support for Python 2.6 and 3.2.

  • Add support for Jython 2.7.

  • Add support for Python 3.5 and 3.6.

0.6.0 (2015-04-02)

  • Restore the noload behaviour from Python 2.6 and provide the noload method on the non-C-accelerated unpicklers under PyPy and Python 2.

  • Add support for PyPy, PyPy3, and Python 3.4.

0.5.2 (2013-08-17)

0.5.1 (2013-07-06)

  • Update all code and tests to Python 2.6.8, 2.7.5, 3.2.5, 3.3.2 .

  • Add the modules zodbpickle.fastpickle and zodbpickle.slowpickle. This provides a version-independent choice of the C or Python implementation.

  • Fix a minor bug on OS X

0.5.0 (2013-06-14)

  • Removed support for the bytes_as_strings arguments to pickling APIs: the pickles created when that argument was true might not be unpickled without passing encoding='bytes', which ZODB couldn’t reliably enforce. On Py3k, ZODB will be using protocol=3 pickles anyway.

0.4.4 (2013-06-07)

  • Add protocol 3 opcodes to the C version of the noload() dispatcher.

0.4.3 (2013-06-07)

  • Packaging error: remove spurious -ASIDE file from sdist.

0.4.2 (2013-06-07)

  • Fix NameError in pure-Python version of Unpickler.noload_appends.

  • Fix NameError in pure-Python version of Unpickler.noload_setitems.

0.4.1 (2013-04-29)

  • Fix typo in Python2 version of zodbpickle.pickle module.

0.4 (2013-04-28)

  • Support the common pickle module interface for Python 2.6, 2.7, 3.2, and 3.3.

  • Split the Python implementations / tests into Python2- and Py3k-specific variants.

  • Added a fork of the Python 2.7 _pickle.c, for use under Python2. The fork adds support for the Py3k protocol 3 opcodes.

  • Added a custom binary type for use in Python2 apps. Derived from bytes, the binary type allows Python2 apps to pickle binary data using opcodes which will cause it to be unpickled as bytes on Py3k. Under Py3k, the binary type is just an alias for bytes.

0.3 (2013-03-18)

  • Added noload code to Python 3.2 version of Unpickler. As with the Python 3.3 version, this code remains untested.

  • Added bytes_as_strings option to the Python 3.2 version of Pickler, dump, and dumps.

0.2 (2013-03-05)

  • Added bytes_as_strings option to Pickler, dump, and dumps.

  • Incomplete support for Python 3.2:

    • Move _pickle.c -> _pickle_33.c.

    • Clone Python 3.2.3’s _pickle.c -> _pickle_32.c and apply the same patch.

    • Choose between them at build time based on sys.version_info.

    • Disable some tests of 3.3-only features.

    • Missing: implementation of noload() in _pickle_32.c.

    • Missing: implementation of bytes_as_strings=True in _pickle_32.c.

0.1.0 (2013-02-27)

  • Initial release of Python 3.3’s pickle with the patches of Python issue 6784 applied.

  • Added support for errors="bytes".

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zodbpickle-4.5.tar.gz (118.3 kB view details)

Uploaded Source

Built Distributions

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

zodbpickle-4.5-cp314-cp314t-win_amd64.whl (143.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

zodbpickle-4.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (301.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

zodbpickle-4.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (305.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

zodbpickle-4.5-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (298.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zodbpickle-4.5-cp314-cp314t-macosx_11_0_arm64.whl (146.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

zodbpickle-4.5-cp314-cp314t-macosx_10_9_x86_64.whl (150.0 kB view details)

Uploaded CPython 3.14tmacOS 10.9+ x86-64

zodbpickle-4.5-cp314-cp314-win_arm64.whl (142.2 kB view details)

Uploaded CPython 3.14Windows ARM64

zodbpickle-4.5-cp314-cp314-win_amd64.whl (142.3 kB view details)

Uploaded CPython 3.14Windows x86-64

zodbpickle-4.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (306.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

zodbpickle-4.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (307.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

zodbpickle-4.5-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (304.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zodbpickle-4.5-cp314-cp314-macosx_11_0_arm64.whl (143.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

zodbpickle-4.5-cp314-cp314-macosx_10_9_x86_64.whl (146.9 kB view details)

Uploaded CPython 3.14macOS 10.9+ x86-64

zodbpickle-4.5-cp313-cp313-win_arm64.whl (140.7 kB view details)

Uploaded CPython 3.13Windows ARM64

zodbpickle-4.5-cp313-cp313-win_amd64.whl (141.5 kB view details)

Uploaded CPython 3.13Windows x86-64

zodbpickle-4.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (307.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

zodbpickle-4.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (307.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

zodbpickle-4.5-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (303.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zodbpickle-4.5-cp313-cp313-macosx_11_0_arm64.whl (143.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zodbpickle-4.5-cp313-cp313-macosx_10_9_x86_64.whl (146.7 kB view details)

Uploaded CPython 3.13macOS 10.9+ x86-64

zodbpickle-4.5-cp312-cp312-win_arm64.whl (140.7 kB view details)

Uploaded CPython 3.12Windows ARM64

zodbpickle-4.5-cp312-cp312-win_amd64.whl (141.5 kB view details)

Uploaded CPython 3.12Windows x86-64

zodbpickle-4.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (306.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

zodbpickle-4.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (307.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

zodbpickle-4.5-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (303.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zodbpickle-4.5-cp312-cp312-macosx_11_0_arm64.whl (143.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zodbpickle-4.5-cp312-cp312-macosx_10_9_x86_64.whl (145.8 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

zodbpickle-4.5-cp311-cp311-win_arm64.whl (140.6 kB view details)

Uploaded CPython 3.11Windows ARM64

zodbpickle-4.5-cp311-cp311-win_amd64.whl (141.2 kB view details)

Uploaded CPython 3.11Windows x86-64

zodbpickle-4.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (300.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

zodbpickle-4.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (300.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

zodbpickle-4.5-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (297.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zodbpickle-4.5-cp311-cp311-macosx_11_0_arm64.whl (141.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zodbpickle-4.5-cp311-cp311-macosx_10_9_x86_64.whl (143.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

zodbpickle-4.5-cp310-cp310-win_amd64.whl (140.9 kB view details)

Uploaded CPython 3.10Windows x86-64

zodbpickle-4.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (285.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

zodbpickle-4.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (286.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

zodbpickle-4.5-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (282.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zodbpickle-4.5-cp310-cp310-macosx_11_0_arm64.whl (142.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

zodbpickle-4.5-cp310-cp310-macosx_10_9_x86_64.whl (142.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file zodbpickle-4.5.tar.gz.

File metadata

  • Download URL: zodbpickle-4.5.tar.gz
  • Upload date:
  • Size: 118.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zodbpickle-4.5.tar.gz
Algorithm Hash digest
SHA256 67d4295ddb68b2410fe417094ffe1a8b0ed41834ee308020f58ee1b633e1f751
MD5 40a5b46a71fbc7898338b7b9d34e4c67
BLAKE2b-256 fa55e96f0860b2fcb00c1791467104d331489695fe4cbc87b2c9fe7a3a4fa46b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5.tar.gz:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: zodbpickle-4.5-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 143.6 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zodbpickle-4.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2bc3507a5ef661a8db1c2fc2053425b18c92cbc239fcd260b81911fd19ec0e69
MD5 5cb91d536fa31ac0a9254be97079dda3
BLAKE2b-256 f6d6f613781640947fea0a8e10648b3caf551f080a4095195396e24b8ac3ea28

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp314-cp314t-win_amd64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e18f1ad0d6382dd2c1ceac2ca93abac9007d6fe2985b6e267b796bc1c4d4630b
MD5 f9c3da1b15c48feab6918b8edcfa5246
BLAKE2b-256 bc97a192b508ead018afbf60fccb890d90d2f0ce8b37564b8fb203345d8f0a95

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b3d6ee7e7da2779e700e9cdfc903160aababdf17af0ef04f19df9f717add89d0
MD5 448535a23688153034f2c536af6c8b20
BLAKE2b-256 2c01263eb46ab84b6bdc421a1fbe248d7471dd5b1eabb2a5542e0aaf3f0d9d49

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e242b1c48bf7ad7701355b93c60feaf7a5ac2812c82b77b8d04fa2821740bb5b
MD5 fd0ea11b4374a16949dd8226c04a55cc
BLAKE2b-256 e6ecad98db7a01344fb49054de1f1b3cc4cd3c26acc146fc6e83964d3c3ff069

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a50b83f35a05837a46f4daece7df64ac629047580528b43e07cb31d4f9027a6b
MD5 561809365c00ebbe306b033238d03bc9
BLAKE2b-256 d31a98ef79fca4b49f7f849255497b6f04e0d99d5dd2581d52cf54d6ae3fa517

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp314-cp314t-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp314-cp314t-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 173b7c10bddf31511a44b154e7fbea69134b110634c485b12fb88b1de179898b
MD5 8e8f3cc7eda555183952b9a5a1e522b4
BLAKE2b-256 4e357e0b5c16389f6f0204d717ffd93b072720255f70c013ac46fc84a0b017a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp314-cp314t-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: zodbpickle-4.5-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 142.2 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zodbpickle-4.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a361732fed94e5181bb31c280ff4527bfcb8ad9c216623a1476a3471b19daa1e
MD5 1e9e1acc8819066434f520a459705573
BLAKE2b-256 6b2d72090c80ceae91d622c6615bbb1929efaaf3ade29feb27d947dc08c9521a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp314-cp314-win_arm64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: zodbpickle-4.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 142.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zodbpickle-4.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1ec7b32a85508111646c253fe38f8fae761cd48e2965a30a97afcf3141dee472
MD5 52ceaf207df033be119958266d5dd325
BLAKE2b-256 4f8c481bcf37e1f159e8eb155b897e1786fc4c7c9497bdef92872ab3436eaa77

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp314-cp314-win_amd64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6b4d372fd3f8e2782f3d6d631b47a68ff2b4f169dbc661f78e9aac2ae4a41248
MD5 7a3e824b15fb81a73f03a347af2f28ce
BLAKE2b-256 ab21f52535043193de0aa9e261ccc53797d5bb8a85bb5c960bdced02c02ee45e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 90d5b0ed22b6f08b1fcb6fa5ba8244faa5bab3ceafb60af69063934f79aa7da9
MD5 1c28f254d8ec8dbab0fb0d9a64fb98f1
BLAKE2b-256 6d5446df5b5494eea5fd2477886e7252e816dbf37680b219f1190ed5c4f64d33

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ef348b1255f9415842736c81ab5cad1d63a004df654fa8f5d287e5eaec735af2
MD5 9e7ed911b9aad7f57ee98ab68b169d5a
BLAKE2b-256 a6c93fb811a3e749399f7925ea07d9323f91e74293c3a83b6d2a4b9ae786618d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f91ccccad738a06385e546729a584e171093048cddea6ad2fd672bb7c67b0de9
MD5 9df97422bb6eebe52f10bb8e24304b13
BLAKE2b-256 de894e2c81d7e11426e99cd21bc7e8dec1218b1b5f0b4b54caf0abda318c97a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp314-cp314-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp314-cp314-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6e5b2a19c28c87c53d52f85dc803699dfc5bfce1fa1bd3f75f6ea189c2bed0ca
MD5 07ef707f6ffd277f92958622e03a4dd3
BLAKE2b-256 c0273ba5ffd31af83b60b6b817f624ed0eb700391c98f86e191b4cdd407d6682

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp314-cp314-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: zodbpickle-4.5-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 140.7 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zodbpickle-4.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 6c41c7067ff55bf4624c3f86173dfc3642383d0434a0009e4abcdc34bef6d1f8
MD5 6a63f5eda25523df1473d1bd9d3269a5
BLAKE2b-256 8b05f988ccd261bbcbfaaaf6284c3f748e42d9739a47ab05073de8a8499e4ece

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp313-cp313-win_arm64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: zodbpickle-4.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 141.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zodbpickle-4.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a8304d7e531323751305cb36f03b94393d1dc244bcb72ae470408c8d8c0d579f
MD5 487042c60f3176c4881ff74192e2c07d
BLAKE2b-256 fe10c955213c4ee792024e588b79f53e23c96067319c6bfb13d335c2bd166c8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp313-cp313-win_amd64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 673508c28bb762f7d2ede2a63724061c23cae0d685197fb6ca260b74a7a0bda9
MD5 2163f4d62aa33464422bb7335e149cd2
BLAKE2b-256 cd08bf6ff40d72fc449a92eabbb1b98fed92daa370c6321754f7ef7c74058deb

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 71d6d97a30a2871632b3b5e4de5fb563f3d506e5a978fd91c93a133d36281c21
MD5 582e12fd4765da0a0f4a0b01916e0eba
BLAKE2b-256 0ee72311187a0d508a5b31c93896b1b292b8a67f89a2ac68d141cf55a84e0351

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b3f866f3caaf13f23c513dc0d5ec79896340a5f7f2cc669868d15f08916c985f
MD5 6ecc53d518e9d526e8910616525ebb61
BLAKE2b-256 3bb53d1c4d0bb05d748391e5a646fcd80e9ce644e06ee8869753d27901a1da5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93069bd3e60f3e099d99d691a5d6c4a829d1a6b2c53a66c132aca25e178d0c7a
MD5 4ea21b3de86eb8e3e229cb32d3a0b489
BLAKE2b-256 81e3ac6bf334a374f38773317deb6c029189a74d6ba5ad96140e8a6f4d5d8ceb

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp313-cp313-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp313-cp313-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 24e97718e93cb8236baa8004036ef087371cee7a1202cd9c7b7367bef83daf40
MD5 cc609629d22b7d033ffb8096148779ad
BLAKE2b-256 b66459e05c83b2a24a09412515ed1a608c57e5ba0c36613760fb7d70b48fe0d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp313-cp313-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: zodbpickle-4.5-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 140.7 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zodbpickle-4.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 f230a9116f053fc8fdf9b0cd17f1bd4a2e3708b376dc6a80865f95e5cf6cd1ae
MD5 4250966086ad59793663062c59f20376
BLAKE2b-256 8f80643461506704c909053f36761865632d4849775baefd13464b07d3d28f7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp312-cp312-win_arm64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: zodbpickle-4.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 141.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zodbpickle-4.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ed7aad91352fa66fe60704c802ca260d67da967dfa74622c74844b7891cd31bb
MD5 d1fa4fcc3d02484673083b9fbb6221dc
BLAKE2b-256 72efd59bf8bab316ed6d7eec0bdfcd65229b2d2b7eeda974d21078cc4a41ee2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp312-cp312-win_amd64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b15e9385b41d4453e11006cbcf31d312d9163967ed41561ba51bdf0332167a65
MD5 cae593566c995a04e9a9d834421cf05f
BLAKE2b-256 f1bbb86da4e4c241322b1ffa3226ccb43ce6072c441decd510048aaedb7ce4e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 ed82ee7f67952aeb10ce354c88b4135a5583c3d1220baf3833a4c5f8ea9db425
MD5 6b412b51cb44aabd15c8bd8fe15afbdd
BLAKE2b-256 ccd4d62b380bf93c523bd93d44774a2f113d2b228ea10175668a12cd9e91e161

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 be2b28a7203d933bfcabbff8e5ccd2db6cfd39f53be0fec0127feacb1bbbf26f
MD5 0aeaba7c24c163ddb18c7224f58bdddf
BLAKE2b-256 fd2e82d7ac37cf06c3bd238f286ff58c4be1fc3f125b0df9f10a1b79e5c2ace7

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca5978f0c31bd3d16a804f6baf99452189b99fffb15ec4922c66d93596277524
MD5 a0f5afaedff2620b8726c748a532d040
BLAKE2b-256 f75501f3a0a74b32295e86928022df9b47c5d47f71df9ce89321bcc8d3e184d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5774ff98010725377df77258b09748d41e68c096d0e710975bea7a7ffeddcc1d
MD5 9f593046c97e0de5fc893f25444cc320
BLAKE2b-256 9d96b50d44768bab5e560ffca862c501e0edd9f326d643ab0725104c3a29119a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp312-cp312-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: zodbpickle-4.5-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 140.6 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zodbpickle-4.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 eb11f570144c58cf482114e4cf6a13faba99076fd8cf03b7fa3e7d25577c8f4f
MD5 f2729e7e4e45102c287598f479884b31
BLAKE2b-256 bae23562766a02bce91941bc9b5a5957db22cbedad9e6702fd79a3fc157ca6f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp311-cp311-win_arm64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: zodbpickle-4.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 141.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zodbpickle-4.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bb41f08db9bcb14d1ada0977c6bd857fdf0c38ac97250680e4c75806bc053a42
MD5 5567b9ec8713c9646b113361261fb64a
BLAKE2b-256 a9086252e53e2f1f38d0a3e197cf18974d2fe65e16207a982989b51d644f2f91

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp311-cp311-win_amd64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6afdc282579c9cf12f7cae3ca16cc395528b739a2997e56319e17b1b704d0201
MD5 ba387d7b059c8a865a2cfd296243f666
BLAKE2b-256 6649425c6e0f5cf9eb2a7670302577da01f1ff819c8d8bac599a9f267c447664

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 0d79d03466bf6d6dce355f84ad6d892b15e1b641d93984eb0af4eef6c80e5a07
MD5 bf867d08e3f26fb6e831853bba6a5926
BLAKE2b-256 537e2b507e088920ca95a585deabfc8a7a5149b392974c60080a1822a6261be1

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 43cabec189dfe9338c516e2dee9e16d635e1062f68a71a0478bcba4878c1eac6
MD5 588fc80f1ed441b10904570cd327a356
BLAKE2b-256 edbfe165dfde323876cfd75ea02c9425ddc64f638e1e9eeb2fb20bcc44ffdb10

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a031c8483237175df6a2024971b34363bfbb39a20e1b1190861ab2cb401afe88
MD5 677c8c528e7c841d6d31b93ef63bd7a7
BLAKE2b-256 f11a4121d4510db3e2864b3a3a99ce16151801a479a8373db52960658068f469

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6710d727e7bdd782915d9e8918e51a732aabf4aaa1b4007f254459949d7a874b
MD5 b5908b343e8e3e6cf44e4c08167894a9
BLAKE2b-256 712c9f5b45ee887f84bc3b53abc87f0571177984db23f34ecb621a34db3d29de

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: zodbpickle-4.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 140.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zodbpickle-4.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b74fc3acf4faf0608575a24e4b7641104dd1a0518e9d4b88546f28fff504a5c8
MD5 75456cfb00f949bf4dddbfa4f4a88058
BLAKE2b-256 8abd58328d1ca17e88875e346b6ac02213867718da0f0574fc97841a53b66911

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp310-cp310-win_amd64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 4208bc6ec254eabf9566dc563ecaf20559e609d40ea4b83376f6afc8fb544b60
MD5 a37f6d0a7c0c4abecc326f193d68e9dc
BLAKE2b-256 fcf35b8d2fed7ea3da30a7e3cf762edd7c16a47c1bf3788b225ec99b3de1dc75

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 0371778a8b7c378236a5f4282726549f651e6ba93b0e1b650fe4f844c5b55cef
MD5 02a3c8a78d63d806f93b4bf2f3f12d48
BLAKE2b-256 bbd9191e46db225a06ae6dc3df5bdd81aadd373507ad71a4a375338574758dd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2f8232b8ff0e945ad1384cccd77fe34a444524dd2e8d5a083b662427e49d0540
MD5 c6c309195430c030cbf45d2dbc9944b0
BLAKE2b-256 c9c930def8c4f23f88765c71785de6ace3b32f51c3aa7570de83c8b745d0bff3

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac366aa458b749032c0833038fd747c5ab44d6682fe17e56cc64c4a8d855d58d
MD5 c09456d017529dac45611cd2c6a20933
BLAKE2b-256 244cad743e1093fdf0d121b85bb88c6c7a239976f526b723e4454adcea950637

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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

File details

Details for the file zodbpickle-4.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 de1f241e48352c47d45a18ebd8485ae0a498239f171af8e771bb63e92fbebf22
MD5 17de6c61334f1339c0e3dd19ae2ce75c
BLAKE2b-256 9c0432bfbec4ad6b21256742253fa31217f64cfeab99a622965b18adb749096e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.5-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/zodbpickle

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 Sentry Error logging StatusPage Status page