Skip to main content

Fork of Python 2 and 3 pickle module.

Project description

zodbpickle README

https://travis-ci.com/zopefoundation/zodbpickle.svg?branch=master 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.

Changelog

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

Uploaded Source

Built Distributions

zodbpickle-2.2.0-cp310-cp310-win_amd64.whl (219.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

zodbpickle-2.2.0-cp310-cp310-win32.whl (212.2 kB view details)

Uploaded CPython 3.10 Windows x86

zodbpickle-2.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (356.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

zodbpickle-2.2.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (345.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

zodbpickle-2.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (340.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

zodbpickle-2.2.0-cp310-cp310-macosx_10_15_x86_64.whl (221.5 kB view details)

Uploaded CPython 3.10 macOS 10.15+ x86-64

zodbpickle-2.2.0-cp310-cp310-macosx_10_14_x86_64.whl (221.5 kB view details)

Uploaded CPython 3.10 macOS 10.14+ x86-64

zodbpickle-2.2.0-cp39-cp39-win_amd64.whl (220.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

zodbpickle-2.2.0-cp39-cp39-win32.whl (213.2 kB view details)

Uploaded CPython 3.9 Windows x86

zodbpickle-2.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (355.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

zodbpickle-2.2.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (344.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

zodbpickle-2.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (339.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

zodbpickle-2.2.0-cp39-cp39-macosx_10_15_x86_64.whl (221.4 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

zodbpickle-2.2.0-cp39-cp39-macosx_10_14_x86_64.whl (221.4 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

zodbpickle-2.2.0-cp38-cp38-win_amd64.whl (221.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

zodbpickle-2.2.0-cp38-cp38-win32.whl (213.7 kB view details)

Uploaded CPython 3.8 Windows x86

zodbpickle-2.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (361.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

zodbpickle-2.2.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (351.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

zodbpickle-2.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (345.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

zodbpickle-2.2.0-cp38-cp38-macosx_10_14_x86_64.whl (221.5 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

zodbpickle-2.2.0-cp37-cp37m-win_amd64.whl (220.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

zodbpickle-2.2.0-cp37-cp37m-win32.whl (212.9 kB view details)

Uploaded CPython 3.7m Windows x86

zodbpickle-2.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (347.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

zodbpickle-2.2.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (336.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

zodbpickle-2.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (331.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

zodbpickle-2.2.0-cp37-cp37m-macosx_10_14_x86_64.whl (220.9 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

zodbpickle-2.2.0-cp36-cp36m-win_amd64.whl (220.2 kB view details)

Uploaded CPython 3.6m Windows x86-64

zodbpickle-2.2.0-cp36-cp36m-win32.whl (212.9 kB view details)

Uploaded CPython 3.6m Windows x86

zodbpickle-2.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (346.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

zodbpickle-2.2.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (335.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

zodbpickle-2.2.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (330.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

zodbpickle-2.2.0-cp36-cp36m-macosx_10_14_x86_64.whl (220.9 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

zodbpickle-2.2.0-cp35-cp35m-win_amd64.whl (220.2 kB view details)

Uploaded CPython 3.5m Windows x86-64

zodbpickle-2.2.0-cp35-cp35m-win32.whl (212.8 kB view details)

Uploaded CPython 3.5m Windows x86

zodbpickle-2.2.0-cp27-cp27m-win_amd64.whl (213.0 kB view details)

Uploaded CPython 2.7m Windows x86-64

zodbpickle-2.2.0-cp27-cp27m-win32.whl (209.1 kB view details)

Uploaded CPython 2.7m Windows x86

zodbpickle-2.2.0-cp27-cp27m-macosx_10_14_x86_64.whl (215.0 kB view details)

Uploaded CPython 2.7m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: zodbpickle-2.2.0.tar.gz
  • Upload date:
  • Size: 183.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/None requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.12

File hashes

Hashes for zodbpickle-2.2.0.tar.gz
Algorithm Hash digest
SHA256 584127173db0a2647af0fc8cb935130b1594398c611e94fb09a719e09e1ed4bd
MD5 67f4a5b44bad2f127cbd4ba65d7e6690
BLAKE2b-256 950cf1bcc7294cb6c1ea09aa6df4640079ecd73b8ab7fd97ba25ac96888a94bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zodbpickle-2.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 219.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for zodbpickle-2.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4882612fa8b4177a914dca001aa4126f3bfba15102df017752b794e718caedd6
MD5 f5cc535faac3f0224e14244f1fb3d366
BLAKE2b-256 990e60b2c27cb98f104a86f99df5a8e81b885e9267f49119426e84c80f1d5e44

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: zodbpickle-2.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 212.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0

File hashes

Hashes for zodbpickle-2.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cae05054de6eb5cd708ff9275db7cc99410328541f82569215c3046805287cc4
MD5 12205dfe8c408aa53d6d45fe9464145d
BLAKE2b-256 5fd46c7f24d85370659c48b0b5bab9c0aa6d68b5f923540d0eac4f8bd6f72806

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zodbpickle-2.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e6c1dc9460bf2d732ebc3bef086a129a0ca2d10c9c7646ccab7c21a5d6ad4111
MD5 fd1f1b88b36197424cb52e31652db443
BLAKE2b-256 b4772c900bc0ffd39ceec7776c24580dd1591ec034604f4fd7bd0a31c340f406

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-2.2.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e0640e426416fb9efa23b2b2a08fe5472fa361de78322e444072f4d73dc1996e
MD5 bdfa01a730841f68852a4fbc0ec45aab
BLAKE2b-256 551fc8f3a06e9bf76a921e13d980e84a2618d73aaa140590bc07e646e38a3ad1

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zodbpickle-2.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0e7ba6e065a1a29d8de8cc4b5e2bdacaeaa3927833892df6bfbbf6d820478227
MD5 469a5d357817ed06736a83942b4a259c
BLAKE2b-256 df6de3c262df25d918acc7d6d9b1c97a118cb72be3c2df779aa77b02597db3c7

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: zodbpickle-2.2.0-cp310-cp310-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 221.5 kB
  • Tags: CPython 3.10, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for zodbpickle-2.2.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 78cfb28b39b815daee1beac37f8966e3e172313b47b9bfc3713fff1dced04942
MD5 3122727e24082e7bbeb15e20d2a7d57e
BLAKE2b-256 99b117160e34fa8723a379018ad828c7332db08aa03ed091ae6ad55ce4fb5bdf

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp310-cp310-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: zodbpickle-2.2.0-cp310-cp310-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 221.5 kB
  • Tags: CPython 3.10, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0rc2

File hashes

Hashes for zodbpickle-2.2.0-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 2191008a102785396eced7f026f7e9f5857afc3f53a76c4d449e90e1b3689afd
MD5 aa073ac94a1bde8139711a92f76cd72c
BLAKE2b-256 2ae2661a6099bbbe1ed3e150510402ba5b5226942ef64c4fa7fdadfcb488ec9f

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: zodbpickle-2.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 220.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.0

File hashes

Hashes for zodbpickle-2.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1bc16d13e6332834cdab66be8180f528940095569f28758f661dde97d6bd55ea
MD5 083d712ae048bd6df1cb112f679a5372
BLAKE2b-256 171c557d680bbcdaf2c34465aaf3990de972ff4d79230a30f2147cd83f245e57

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: zodbpickle-2.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 213.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.0

File hashes

Hashes for zodbpickle-2.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1bfc0438315222c20486e6971cee9a237f6c0654b808b04fade1ad94a2aeea8d
MD5 4874843dd983e2f7cc7deee6e9b481ff
BLAKE2b-256 ef674ee3d9b7703957d2aa65681c47b487065a2ee251fa3eb923b82531439cd3

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zodbpickle-2.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff95ffabbee1751ae793f969fadcf1a78244bb451d1274ac49aaf62dba7379f7
MD5 2be4797b50cf7d979d27c0ceb761eae4
BLAKE2b-256 f39a43c40a9de6762f924c9a4376c8ceee05932ddcbfb98bb7d763c531c3de42

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-2.2.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8126ab6e18478a5aa4b4fee066bdf3615a61f91924492162c471453a0340877c
MD5 563ee36b0d48201f2c50eb4aec98a511
BLAKE2b-256 b5cd4bf6f00aa7f73bfa409854a0d718fa7fa918fa9686e6e059512fe8a77f86

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zodbpickle-2.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3bc7adcfe38b9632876f3b993d19f12bd69ef801789faa5f2384b88201891023
MD5 75b774fde09e347ed3f1f337ca66eded
BLAKE2b-256 aa42addb558d14b8d93bf59d1fbe3754672662d08256836a1a924aa5505510c1

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: zodbpickle-2.2.0-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 221.4 kB
  • Tags: CPython 3.9, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for zodbpickle-2.2.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 84c65732868b29bde9bcde9611b62a072f4ebae6907467a1713df3c5f00924ca
MD5 0c9f924cc883c70ec277911a4b956057
BLAKE2b-256 cc642d702216804d06838ecf92c2def151e02adf2a3626614015060a06a03f56

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: zodbpickle-2.2.0-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 221.4 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for zodbpickle-2.2.0-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 1706674abc6fc63d0db81ba3bf641c088591f89927058c1915d316873cd477d7
MD5 7ffddc3b411d2ecedff757fcc0f3fa82
BLAKE2b-256 80e0f4b65f60c377cdcd9a617686ffe90969f0b06b0e093144fe924483609836

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: zodbpickle-2.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 221.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.0

File hashes

Hashes for zodbpickle-2.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b3360b47b9968f16519edc9aaca49689bd1ee4926fb5cc1e6088fc20355238fb
MD5 5c6d8f93ea99524104e3b34978d0b458
BLAKE2b-256 b0530ccf2f53c10b437defd2375a9c7b61757a787c0b9c0d0b681f92ee7d0d68

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: zodbpickle-2.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 213.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.0

File hashes

Hashes for zodbpickle-2.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3f33cd0f3c941f65ef65568f32a5552d54daead0e7d3039e28f9508be800c46e
MD5 d13a074accbebfb92cd9dd96ba798ad8
BLAKE2b-256 a4d7ed90d937bc3cd2d3f0c0d2c48d64e2e55555d14a42e8cddc3e72a6febfa5

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zodbpickle-2.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e18acd8c6487566f30a4dfd8bcd3b5d82172f1fa6bebe4bc6e9909b74f07505
MD5 d8c7c7bb5723dff1923ca454f1521472
BLAKE2b-256 66da5b8ec42a53ca9f9c83065d61f067b24a12f11d374c08daaf32dc302b9789

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-2.2.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 48e328793e46053713dab89de2f838391a5ce45b7f0dd3947d700d439a640d3f
MD5 444fc0d44405e18e2ebac8f83f150db2
BLAKE2b-256 020d4629626a39f162a124c941716f9bf57f6877414954ebe410ef436a50d5b5

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zodbpickle-2.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 962675aa63c4e92090a9d75f359d0dbf3fbc0020bfa242258b176c44bf7abbff
MD5 97005a0ee1dee10f20069596e36b8755
BLAKE2b-256 4cecf231176330befafd41ed6349d0adb5c88642388e22cb576aa4ef297cf061

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: zodbpickle-2.2.0-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 221.5 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for zodbpickle-2.2.0-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f5077a563dda4dc1b7a68a1968dd014eeafdbf36c9998acbcd60f8063db2576f
MD5 162cdeee0bdda7fe3c23abbe3ff016f9
BLAKE2b-256 28f9c749a5ad0b61531ed2e1986cfdab9dc4ad5efe27688fef0f01f757a63afe

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: zodbpickle-2.2.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 220.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.5

File hashes

Hashes for zodbpickle-2.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 67e73a7f11c9d5a52432db1414fe4eddf99c84b3135134b9cae43533874eb4dc
MD5 d9e6aa61a80952ff52c6fcb3eb4519ca
BLAKE2b-256 71e0eedc111b5e02fd2682c918afe06b5cb4893d94636e591f11643a5937a5bf

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: zodbpickle-2.2.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 212.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.5

File hashes

Hashes for zodbpickle-2.2.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a886b623a33856af43a8b3736ae5dbbe8d73d7903efbe0a4b817060ed486980e
MD5 9179df1df5ffaae7017c73051357492d
BLAKE2b-256 52ca5a0c093cacc6c4be39e4d206080dcce2a82b3d3d129d38fa442fafac0a71

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zodbpickle-2.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f27117d549cc9e3c3c05a8ea8afce93a2f24e2410fb56ab9671dee249f035bf9
MD5 574af08ea571bd51d082a0eed288501b
BLAKE2b-256 1734f5688d4999a336a7dce14d96119dcaca781673d4e0ad1b3ac4b38b769c83

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-2.2.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6ec3d511cb4a8703de93d1e26917e20e3f33c5fb52a4d0615ee7ad6c5e843764
MD5 84b98c8bebc2817e072ae0aca56475cf
BLAKE2b-256 e2c83b1a0b25c8b3159979b52c1045ff8037e1a1ba040e3542a447d6f6bdd5ff

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zodbpickle-2.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 18a329303d09722c888499a13f31cc140c2a7dc1218d864b17ab0bf2ebb06dc3
MD5 63e5db9bfff620487b15ddef833c2e92
BLAKE2b-256 e23df67380f2791fd31c12741d96140d5bc052bcf3edfe19e2c663db20455d3b

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: zodbpickle-2.2.0-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 220.9 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for zodbpickle-2.2.0-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 cf57772217ca26d545ee88c646c57f23d5292d582fdb2160d4febce09e346a84
MD5 f36874d2be54e81082c8638d0ff176d9
BLAKE2b-256 7c684ccfc16276460347429b2dfbed6058ef6b676fe2ce93790eab7ad37e92e3

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: zodbpickle-2.2.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 220.2 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.8

File hashes

Hashes for zodbpickle-2.2.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 152360b07056863b544a19a5247ea887c428d0e92b2d308556f57f181130cc41
MD5 3c23c0da1514e12d20d569cac372c49b
BLAKE2b-256 f25a6ee780074d5f7f23c54dad50618076b63f0170ae380461be0fa43fac642f

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: zodbpickle-2.2.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 212.9 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.8

File hashes

Hashes for zodbpickle-2.2.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 83efbbcd4494cdd59fa23e87f66a312aca9a1964cefb504628d5b7291ff1ad70
MD5 839ad1498d86978ffae3685f2389bc7a
BLAKE2b-256 ad95f2b6d08c93674b116c3139379088421473933db865c80d44d147f62da4e4

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zodbpickle-2.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa469a32dffea413f7a8523bf1b7c427a99644682e36a6782a7b5a9721692b4a
MD5 ebf73cb634c04f12ac5072f016ededf5
BLAKE2b-256 9fec22c9fc087a24ab4a4d1cff8d2deeb3efe8475d9dfa667f3c4164d0b183d7

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for zodbpickle-2.2.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1a226eda93eb3421659be406e0cffec43f257222b28a59daa515c7cddf55e3d0
MD5 08e8d9d5205235630c2c3906cca1857e
BLAKE2b-256 73a14827f373e26270fcd6b5a11202f02ac42b10b06000aa4befb5a6ac568e4f

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zodbpickle-2.2.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 69513bd3cc95389edd3c00b65df3af047f9edd12a619b2c46e2a8a53c4aa8f3d
MD5 86c7bbca00d14a8a7fd1f96e741570ca
BLAKE2b-256 920a30f157a4785b90e6b6b2a9f61a8516b108f0d55a28cff52775856a38e1e6

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: zodbpickle-2.2.0-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 220.9 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.15

File hashes

Hashes for zodbpickle-2.2.0-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 d163877427b574633c867f981c7657c595e293a4bf3e5639d895b1e644bc526a
MD5 40f08d5cdb3b0d7c07940c317faa899e
BLAKE2b-256 b3ea0cfa1860d49841987b5d89faabb400f66129e8cbd65ff20a68a66cce33a9

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: zodbpickle-2.2.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 220.2 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.1 requests/2.25.1 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.5.4

File hashes

Hashes for zodbpickle-2.2.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 5811d503db8995642d9dca18a396c5054366d26e1e633b249e151f80d88151b0
MD5 562556bbef5cf1a10a885092d0917c1a
BLAKE2b-256 783d0fc8f69fe667991cb8c4fede8f30b6db4ea74612c83469b86362e05d127f

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: zodbpickle-2.2.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 212.8 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.1 requests/2.25.1 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.5.4

File hashes

Hashes for zodbpickle-2.2.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 e33639e1db54b0d049cd50b924cc3ce61f62bbab2f68fc0831805cacef02cad2
MD5 8cb3114194a93cb5ecfc95d2d25e82bd
BLAKE2b-256 fec7b546501211d8af5a6cd1634954f96723bd4e478ffb3ef69c0aab09b29602

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: zodbpickle-2.2.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 213.0 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.1 requests/2.26.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/2.7.17

File hashes

Hashes for zodbpickle-2.2.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 1f148b90c562af56cbb385d1b897aa6126acc7aa0048dd4a0e0ec4a3be87ba57
MD5 6bfbee77b2cdc056eaf4e49392ba495a
BLAKE2b-256 c9be42a7ddd70803d3c55ec00cd35c153f72c13fbec1a784d67110edf85c8ed9

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: zodbpickle-2.2.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 209.1 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.1 requests/2.26.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/2.7.17

File hashes

Hashes for zodbpickle-2.2.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 45bb1b0701d7fffbf0a594a5ea4572fedd60b084a579f9605054fba9c832cae7
MD5 5663ac99d669b7bd7cd1bc404daa57ce
BLAKE2b-256 e4dd081dd13f0c5a4f77dad81f5b248c99e1113968c8ed71302057cdf28ae915

See more details on using hashes here.

File details

Details for the file zodbpickle-2.2.0-cp27-cp27m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: zodbpickle-2.2.0-cp27-cp27m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 215.0 kB
  • Tags: CPython 2.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.1 requests/2.26.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/2.7.18

File hashes

Hashes for zodbpickle-2.2.0-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 826eb4f93e9b3227855fbff9c3edd282847eacc416d61bd3bfee00a1216e41db
MD5 41cb4a45b2ec21843e6db906237d0ace
BLAKE2b-256 0fd8007c6e4a47a25acadecf9d6dfd790b86fc7906a6058c423ec7b6242aedfa

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page