Skip to main content

Fork of Python 3 pickle module

Project description

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.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.4.tar.gz (118.2 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.4-cp314-cp314-win_arm64.whl (142.2 kB view details)

Uploaded CPython 3.14Windows ARM64

zodbpickle-4.4-cp314-cp314-win_amd64.whl (144.2 kB view details)

Uploaded CPython 3.14Windows x86-64

zodbpickle-4.4-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.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (307.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

zodbpickle-4.4-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (303.9 kB view details)

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

zodbpickle-4.4-cp314-cp314-macosx_11_0_arm64.whl (143.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

zodbpickle-4.4-cp314-cp314-macosx_10_9_x86_64.whl (146.7 kB view details)

Uploaded CPython 3.14macOS 10.9+ x86-64

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

Uploaded CPython 3.13Windows ARM64

zodbpickle-4.4-cp313-cp313-win_amd64.whl (143.0 kB view details)

Uploaded CPython 3.13Windows x86-64

zodbpickle-4.4-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.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (307.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

zodbpickle-4.4-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.4-cp313-cp313-macosx_11_0_arm64.whl (143.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zodbpickle-4.4-cp313-cp313-macosx_10_9_x86_64.whl (146.5 kB view details)

Uploaded CPython 3.13macOS 10.9+ x86-64

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

Uploaded CPython 3.12Windows ARM64

zodbpickle-4.4-cp312-cp312-win_amd64.whl (142.9 kB view details)

Uploaded CPython 3.12Windows x86-64

zodbpickle-4.4-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.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (307.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

zodbpickle-4.4-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.4-cp312-cp312-macosx_11_0_arm64.whl (142.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zodbpickle-4.4-cp312-cp312-macosx_10_9_x86_64.whl (145.6 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

zodbpickle-4.4-cp311-cp311-win_arm64.whl (140.5 kB view details)

Uploaded CPython 3.11Windows ARM64

zodbpickle-4.4-cp311-cp311-win_amd64.whl (142.7 kB view details)

Uploaded CPython 3.11Windows x86-64

zodbpickle-4.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (300.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

zodbpickle-4.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (141.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zodbpickle-4.4-cp311-cp311-macosx_10_9_x86_64.whl (142.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

zodbpickle-4.4-cp310-cp310-win_amd64.whl (142.3 kB view details)

Uploaded CPython 3.10Windows x86-64

zodbpickle-4.4-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.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (286.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

zodbpickle-4.4-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.4-cp310-cp310-macosx_11_0_arm64.whl (141.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

zodbpickle-4.4-cp310-cp310-macosx_10_9_x86_64.whl (142.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for zodbpickle-4.4.tar.gz
Algorithm Hash digest
SHA256 79f33cc49a09b28a8b3b40369c14216e8057177eb8c7e898d76afd6b3194cb78
MD5 197e1658c88a3a77164efdffeb19caf3
BLAKE2b-256 6a8b81faefa3c2c2c99f03f490dfbee4163e6347cbd0420ccd2de35de5be397c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4.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.4-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: zodbpickle-4.4-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/6.1.0 CPython/3.13.12

File hashes

Hashes for zodbpickle-4.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d66eabd5feb8125bce0781a1cbf2102650e8e668f71425bd75691e90c259e634
MD5 51012ae4dc224e452ac2d7468fbfe16d
BLAKE2b-256 90f8256322265bb89981293338ffed8fcecedc831166b0ef437b6b1532294805

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: zodbpickle-4.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 144.2 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 zodbpickle-4.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 08d52bb7fcefe932bfcce63cf4cf31bc8d1e78d3502c5d247d3ff1b850b74b6b
MD5 a02cc50575b992ea51ff0d3023d00fb6
BLAKE2b-256 47c120c24feee34365ff84f477100a7012f3eab287696b93374f83a9c6f86a58

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 4e465683b0f2fe55e2151de8c140e3538c893be59e478be0037fb599ef5cd761
MD5 36fe6f320f1ab8aa027c0011b857a920
BLAKE2b-256 eac71fd0adc9db4af2af18427f8ba35f9eecf896de1a197a9f6032ad7f96e5a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9fefbbd225b02892ca355962c68eee99a199af7b1b007eaab74ca192c93df3e3
MD5 e24b856260c475deb8802fbff08c6c89
BLAKE2b-256 7f4ee86ebc3111c3efe8d3d516b391cf5f688b0c26d818fc103304c5f9dc9566

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e38ff2550c946cbe3d23073f1280c969d5cea1f0e89661670c9b1b346cfaa0bf
MD5 43e6c0a80c3df18625e299e183ad47f0
BLAKE2b-256 37d35d3253c03f70aeec414f1c1d74c9b82b7eb0c295f4c67d1e944946a92f33

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b04d9817c18878df17eeeda78cd3657366758ac92ef1e3182fdff16242cf2aaa
MD5 848d9b13875052752cfd9edf1fd6f42b
BLAKE2b-256 ccb7977678aff07d01dc63437896145f6a24e8597425bc6454382328e115457d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp314-cp314-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp314-cp314-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 51f795b787bc54af68c3167862f857d19044fed84d45276c94947820a4feb9dd
MD5 7db3ce12aa121bbc8a66a9c1910d5e23
BLAKE2b-256 c3240ac02789f0cab82fc4580a0495c5bb19000da6e36b4a2311146490c42c61

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: zodbpickle-4.4-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/6.1.0 CPython/3.13.12

File hashes

Hashes for zodbpickle-4.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f38392d315d3ca9afd880ffe16da6d1a4537a0a4efbd0bf5bada5d771f5fce92
MD5 e2b70fb88aab20c77e660be4fb32464e
BLAKE2b-256 642b23b1f691be99afa45aa02b653e20d77038383ddd9aba0032bb00ab723d99

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for zodbpickle-4.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 899bb8c6945e57c0c265c75ecb91571d0395d46486403f9a7bc82ea36eced71b
MD5 a886c203778b847e38c139c57e23d318
BLAKE2b-256 ab08d8ee6c2d85ec836e6bf96aee5bb06e3bdf5ade838e2adfcd9dbfb91015aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 47f029458c15397078552c807a8317173d26ae9b1c47a80729e6677ca4400f1a
MD5 30198b6a34cbff676af786499cfc6f09
BLAKE2b-256 d964dc2c378bbfe350a2000242781903f48cae48807f3c771ed64ec5e9e1b77d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 39ea11e1efee13cb79fab1f3997113f6cd9133d6300e3ad0d7f051c00e5a47a2
MD5 882541d45fc4ba4289d966e75f9970d9
BLAKE2b-256 1eeaae7d5b154e908df9595471f6a29eba27257bdd6f0a10ef67edf658aeb4a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2fd057b0d564cb7bc568caf124fbb90f3bc786bcd1c56b88d744f7ebb9e062b2
MD5 478f80d754eecdee0bbebe5121f45205
BLAKE2b-256 50ee3c72c56e475a6a069f52a98e4e5d6bd84cdf679eff4c5500fbef0b7d67c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf6ffc72cfbb444ab239638685ee3bc3908fdf71092c745d7ab2548bc9180cf3
MD5 29d40f02555ae9679a02f7759eb00ee1
BLAKE2b-256 867814caeb02c5b04655d9d095e796bbc118ccda71b334f581e2c1a234af1236

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp313-cp313-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp313-cp313-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ba6318052e0fd3b596ea86ab03b683effc7107ae8bb633875598dd651e5c9207
MD5 9d437c01386ca9d1b503cb748e18b875
BLAKE2b-256 7c9511a2fe43a49590e16672f799ccad89e7018d3e9bcfc948b9f87ed41fb028

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: zodbpickle-4.4-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/6.1.0 CPython/3.13.12

File hashes

Hashes for zodbpickle-4.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 5eacdffb73daffa4717a0f997261e4309a7060243ca25cadcf93ee9612c65da7
MD5 bcbe7ed5f3d8ea49c2b0819e0a4a16d2
BLAKE2b-256 5e13b4fa90b1d6f4c320d2a02f27b29cdcbf7a6e4222282204744aa4f06bd4e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: zodbpickle-4.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 142.9 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 zodbpickle-4.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 39a5c3d9bcb4354ce7bce5beb41410d49fecd38f811889a3b0017ba887beeaa7
MD5 c79fff1aa915f94d2ed25b4517edaee7
BLAKE2b-256 1236040fe6057b7df21fb192f0e1e064045866095071f2109761dbc5249fdb6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 453b2ab9a573fb4565d1179805328f41d14b944cd212f150b35313491980227d
MD5 4458597c1a991ee14c7cb2570e1dfbac
BLAKE2b-256 dae5856758e1e0c3ba757e4aca57520e7921b632464741b954896221807d32ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 1199053a3a6808b547fb65aae72b5ac5c56a5d2d8595e05d704a44bf820a55d4
MD5 1b14c08a4b237ec86129b3ed129b9e41
BLAKE2b-256 4250778a46be10f9712c4c6076404d3841aaf0aa42ede6afdef336724f458218

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a11a31f025e2b474398a4686bf84517190031bc4145757761b37b86e3100aff7
MD5 f01491d52672c358a301f1f2859586e2
BLAKE2b-256 c93438b6e32f5dd2f1a0af1a2b1acbdb0d988bbaae1a5a064a67cf62038e1791

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ef794adb8cb7bebd27896076b3ef911319004cfdb1e29da29d0c86c099f85ca
MD5 e165afdf278981df13282ef67c15c96c
BLAKE2b-256 a78c40685df525b3473b0890a1f769b8b4416d539f3414077dd0d793f49650af

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0d9c1db02d115ca3c27d5c7bf46b8c4b408531ce16545dd628152fd801288fe9
MD5 edc71b2583aa16df4786d2ba7ec6f981
BLAKE2b-256 1176305048a961ec2a932133f43ef9ff6b9685ad1ce5100e66cb16e0ca2c818f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp311-cp311-win_arm64.whl.

File metadata

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

File hashes

Hashes for zodbpickle-4.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b884442c4c7f9f2b43bd2668721d41a6e88810e16429e4f9a3d23e5c80593761
MD5 fd7104d9b1dff2f19a2d1d66e4fa57d0
BLAKE2b-256 cf5b7ff373587138c90f077d85089de68c483f10746e92ed0c3d84d77de80c8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for zodbpickle-4.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d920659af0035ecb9ccdb6bac87a91ff29c6d819c47023fb62c86ddb3f90fb12
MD5 b41ca6842e5ae441eb73385dfc16e558
BLAKE2b-256 684021a8df0e33573c74b51be80ff23c9eb9c052e95f89ac4eb5c33cf0e9db1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 dee5c106dd287540f9b374e5df044e2b8fa366fa88702743b04665f736d5491f
MD5 0c260c9b1d3d96d4f7b9ce5a2db7eb9a
BLAKE2b-256 e201438dd274f6260602134873ae47e5451c400a031637cf0be85c6fc99ffbe4

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 42d537996f52485daee43fb5bfb034a23bb074f71545613b18af790fd115063a
MD5 e18fe1a3e5595f986975706c1c42278a
BLAKE2b-256 9425ee65799079d38a598b96ce77c935b636d447d8261306ac14bc9f29a38070

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6e2b31bf54e1eae81e84e139382d3910faf19e5d95858bcd1b7be5fd59f56537
MD5 cc26efb1bfd50e1eca2b53dbaafcff40
BLAKE2b-256 a5a82aad11adf406b1805f940668cbb265498e3c33c35ee42824015a9de76cca

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e715b79ec6d1cce8dcce48636d8ad4b2e32cc1336a67be23a0e186f7c3608a6a
MD5 e9e32bb0d2d574c09b00a879aabb0525
BLAKE2b-256 b03c75fb8fedafbea58017aca25ea5d935fa40439728c3f6bb282f1167609e58

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6985a7d4be7078c4ca0d12dd8141860d98ba26ca958c37f6758dce7b3b21c1a9
MD5 50fbbfeed95a675f3d35467a805ed140
BLAKE2b-256 41396cc2fe891e25ac4401ac8d4c46a19514a4dc148989d36bde79441d4c2e78

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for zodbpickle-4.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 23b761c1947635cd57c95ab6dffe7cb00ea14530c24470865c1a7bdf167caa7f
MD5 20f73adcb2321f6d315d870e06afde91
BLAKE2b-256 e13ced5015609ca6ae398c0a70eb84588c999a5b345dd56f07f02e37f1c705b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 49d153eeef08d7e381100d00347f17fcfe375d3527bef23503233ec4c9c5c997
MD5 57ff2d1a6b36af40576dd048904f763f
BLAKE2b-256 f7edaca423bce23671314cfdca050d220f6ec25a655ed7fb7cd1a46bd48f95a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6ffda61059879889e5de4c249f78479bc994853ff31721f9748c683e972b85ab
MD5 9d7d51e4dafc0f87e1384c28c721485e
BLAKE2b-256 80ee7828871795fd7dcc0f8747f6cb276ebeed536c3969152a6094ed855ad392

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1bbe2c9da5023a4764a2219bd91c59813ea2f9892f062930e91e838ecde009b0
MD5 8347300dd35143bbe773eaa9d37ffc2b
BLAKE2b-256 9e8361c70070b30231d9fbbb460eca91e8874426c664cf12df11be203bdaa610

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 181cfc200ebfa77b77ef12d401035199b4f2183ea77cd653f12c8a3bcd141284
MD5 86d4b188312c26ff40d73f3074de280c
BLAKE2b-256 a0d385725d17a26c5383a7659fe278ae568bfbba3b0615d906ee75c014d62f21

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-4.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fdbb1cc76f048fbec5426e9f798a2944e593d696b3dad6abc7969267dab32a2f
MD5 e174f80d65d43ef7282cba10aef9b5cf
BLAKE2b-256 3eb0cf88ba139688ab8e65fa9c940e06ef8a3e8c706b2a69129afabf296ea3ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for zodbpickle-4.4-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 Pingdom Monitoring Sentry Error logging StatusPage Status page