Skip to main content

Fork of Python 2 and 3 pickle module.

Project description

zodbpickle README

https://travis-ci.org/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.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.0.0.tar.gz (183.1 kB view details)

Uploaded Source

Built Distributions

zodbpickle-2.0.0-cp38-cp38-win_amd64.whl (220.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

zodbpickle-2.0.0-cp38-cp38-win32.whl (212.7 kB view details)

Uploaded CPython 3.8 Windows x86

zodbpickle-2.0.0-cp38-cp38-manylinux2010_x86_64.whl (347.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

zodbpickle-2.0.0-cp38-cp38-manylinux2010_i686.whl (318.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

zodbpickle-2.0.0-cp38-cp38-manylinux1_x86_64.whl (347.8 kB view details)

Uploaded CPython 3.8

zodbpickle-2.0.0-cp38-cp38-manylinux1_i686.whl (318.3 kB view details)

Uploaded CPython 3.8

zodbpickle-2.0.0-cp37-cp37m-win_amd64.whl (219.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

zodbpickle-2.0.0-cp37-cp37m-win32.whl (211.9 kB view details)

Uploaded CPython 3.7m Windows x86

zodbpickle-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl (332.7 kB view details)

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

zodbpickle-2.0.0-cp37-cp37m-manylinux2010_i686.whl (304.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

zodbpickle-2.0.0-cp37-cp37m-manylinux1_x86_64.whl (332.7 kB view details)

Uploaded CPython 3.7m

zodbpickle-2.0.0-cp37-cp37m-manylinux1_i686.whl (304.8 kB view details)

Uploaded CPython 3.7m

zodbpickle-2.0.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.0.0-cp37-cp37m-macosx_10_6_intel.whl (260.8 kB view details)

Uploaded CPython 3.7m macOS 10.6+ intel

zodbpickle-2.0.0-cp36-cp36m-win_amd64.whl (219.3 kB view details)

Uploaded CPython 3.6m Windows x86-64

zodbpickle-2.0.0-cp36-cp36m-win32.whl (211.9 kB view details)

Uploaded CPython 3.6m Windows x86

zodbpickle-2.0.0-cp36-cp36m-manylinux2010_x86_64.whl (331.9 kB view details)

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

zodbpickle-2.0.0-cp36-cp36m-manylinux2010_i686.whl (303.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

zodbpickle-2.0.0-cp36-cp36m-manylinux1_x86_64.whl (331.9 kB view details)

Uploaded CPython 3.6m

zodbpickle-2.0.0-cp36-cp36m-manylinux1_i686.whl (303.9 kB view details)

Uploaded CPython 3.6m

zodbpickle-2.0.0-cp36-cp36m-macosx_10_6_intel.whl (260.8 kB view details)

Uploaded CPython 3.6m macOS 10.6+ intel

zodbpickle-2.0.0-cp35-cp35m-win_amd64.whl (219.3 kB view details)

Uploaded CPython 3.5m Windows x86-64

zodbpickle-2.0.0-cp35-cp35m-win32.whl (211.9 kB view details)

Uploaded CPython 3.5m Windows x86

zodbpickle-2.0.0-cp35-cp35m-manylinux2010_x86_64.whl (331.7 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

zodbpickle-2.0.0-cp35-cp35m-manylinux2010_i686.whl (303.7 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

zodbpickle-2.0.0-cp35-cp35m-manylinux1_x86_64.whl (331.7 kB view details)

Uploaded CPython 3.5m

zodbpickle-2.0.0-cp35-cp35m-manylinux1_i686.whl (303.7 kB view details)

Uploaded CPython 3.5m

zodbpickle-2.0.0-cp35-cp35m-macosx_10_6_intel.whl (260.8 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

zodbpickle-2.0.0-cp27-cp27mu-manylinux2010_x86_64.whl (309.7 kB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

zodbpickle-2.0.0-cp27-cp27mu-manylinux2010_i686.whl (284.6 kB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

zodbpickle-2.0.0-cp27-cp27mu-manylinux1_x86_64.whl (309.7 kB view details)

Uploaded CPython 2.7mu

zodbpickle-2.0.0-cp27-cp27mu-manylinux1_i686.whl (284.6 kB view details)

Uploaded CPython 2.7mu

zodbpickle-2.0.0-cp27-cp27m-win_amd64.whl (212.1 kB view details)

Uploaded CPython 2.7m Windows x86-64

zodbpickle-2.0.0-cp27-cp27m-win32.whl (208.2 kB view details)

Uploaded CPython 2.7m Windows x86

zodbpickle-2.0.0-cp27-cp27m-manylinux2010_x86_64.whl (309.9 kB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ x86-64

zodbpickle-2.0.0-cp27-cp27m-manylinux2010_i686.whl (284.8 kB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

zodbpickle-2.0.0-cp27-cp27m-manylinux1_x86_64.whl (309.9 kB view details)

Uploaded CPython 2.7m

zodbpickle-2.0.0-cp27-cp27m-manylinux1_i686.whl (284.8 kB view details)

Uploaded CPython 2.7m

zodbpickle-2.0.0-cp27-cp27m-macosx_10_6_intel.whl (251.2 kB view details)

Uploaded CPython 2.7m macOS 10.6+ intel

File details

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

File metadata

  • Download URL: zodbpickle-2.0.0.tar.gz
  • Upload date:
  • Size: 183.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/3.7.5

File hashes

Hashes for zodbpickle-2.0.0.tar.gz
Algorithm Hash digest
SHA256 e0d9930f46d41f086a763f40a12d014c46bbc5e19e728c8d66d7a06fef616739
MD5 16004dddd519b025fe091b7438307fae
BLAKE2b-256 fcd98c7837a886f1b52c87e752b872dd0a061b4e94de639c25093a6ec0b8bdb3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zodbpickle-2.0.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 220.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.8.0

File hashes

Hashes for zodbpickle-2.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6d91a079d4d71cbc57a289ffb66f535545bab675f8ba117426a415e66ddeb128
MD5 3da4c33a9ef205fe02c9c20fb39b6058
BLAKE2b-256 ca8505a5f2d0fe3a75822a74f42f4580c12fd13fa3f6468818adf4182b31fffa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zodbpickle-2.0.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 212.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.8.0

File hashes

Hashes for zodbpickle-2.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 61a5351f5a18b45512a90297eefc7eaa4de7c0d2cc7c33a97ad41703dde1bac3
MD5 2c89ed6231bd5a667b1da5461f40718b
BLAKE2b-256 ebf3e4cc401671bf6a68d74f511d7061d69b24910f06c460cbd917161795e052

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 347.8 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2075aa83989f502a21d0421cfd0940d723e7f444130fb559368f40df2e8f2ff5
MD5 face8fa46f08003fdf83437b1ab0c58d
BLAKE2b-256 55a6c68e3e92d1e44c31028a41db2e94045b243bb3fd73baeef3393893e3b017

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 318.3 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 07426bb81f7fee4b872e8298e2e560f5b7696fa43d9640d82c1c8dd2fb75979c
MD5 240a6e765fc8761a82f97bae92777b5b
BLAKE2b-256 a993a77e4fb7f81201c9258ef1a658fc5ad673fbafd5e0b8669ce9a76cbf4a49

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 347.8 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b0039c6d66bec36c1c45293f2b06f48bb8f3700470b53e41e26ba974a843730e
MD5 aea17b6fd82083560566042438c74e32
BLAKE2b-256 7ecc8f4399b2bd9c93da150ab2bdc6712ceb21c372cca73b19e2b53c6a771612

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 318.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 927e799306598a1891c994a4e5fad9f6c7c7c8cab262dc76ed72b1f381b573d3
MD5 e9fe0698f33ca62637e4eddade3b1fbe
BLAKE2b-256 8b303e9c367fc30c55267002fb90b783e179ad38e30b3793ea44470e81499e46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zodbpickle-2.0.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 219.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.5

File hashes

Hashes for zodbpickle-2.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e4d35648c879802ad1499d177da2f9f23c345ec19e4304d2377ad6ce7f2b6045
MD5 70704541e242f4af184d692a20b30f0a
BLAKE2b-256 3d1d904134ac11435c6a4902452507f9c2520636df9f74a6685505933660905b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zodbpickle-2.0.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 211.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.5

File hashes

Hashes for zodbpickle-2.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 973e9fd9b476bb22bd30746054c69166b2b25498800a6e8011b527c1f63b3ea5
MD5 5de0e844c8725ecec11e6b4d6215069f
BLAKE2b-256 f0d7b5dbe620a1c14739a09999a9ad2b10b86efe0eb694cc71604b9d1207099f

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 332.7 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 159cef791efb1614ca827c43f90c667acc946df3ac2a223cf2be170299cbef73
MD5 10c0e58c18ce4693bc7d30a8292ac732
BLAKE2b-256 251f1acf065bbcd325910fa6ef390458a28a6e0845fe8b8acf38f6d68051a3c3

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 304.8 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d4b1664237527900f0df3a490687e7ae9cf307c5a98f30a7e6bafdcf975719ca
MD5 38e859f98f4dfdf82c7fb980835347c3
BLAKE2b-256 8c1bb93d5cd6e032abb50ed0bdef058d2f9465edb83d17a5074286517e9e2f84

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 332.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 14a3044959d98f5bab39c081a2974c1fc40bd8f241cc6c1d838dcd567ce6c8c1
MD5 b6563c85aa5dd55ac183cd8e1bc33e43
BLAKE2b-256 002b2dbe9037dd1f499d34e08b63d218fdba4f147bd9b1b184dda3b9062eb784

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 304.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1c4fd0bca3400124bdb7088fce037b837abf623fc3fe7372a259fba82f2d8e51
MD5 6a018cc8e21d77d7446048a5a9bc3502
BLAKE2b-256 d0be45394d429499c344df63f0dcb09aa5370a6a26b51cc0828248e784838a32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zodbpickle-2.0.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/3.7.5

File hashes

Hashes for zodbpickle-2.0.0-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 77ee3acfc4fa53f73a7d26a197c0e9a574417aa1fa5baa2dcffb0db64c7ef30c
MD5 a62f240604ed91e03f8757f825a514ca
BLAKE2b-256 d7cde5a24ca4e2474f95bf9de5a23c1c6aab29be30688d76a6cd70dbd85ccb53

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp37-cp37m-macosx_10_6_intel.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 260.8 kB
  • Tags: CPython 3.7m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.10

File hashes

Hashes for zodbpickle-2.0.0-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 c041bc2f5b1724d01e81e5a08056cd784235a4e1bbd5dc0b471a1f5594522cfe
MD5 1a2e3a8c3b627749e1c0c19b888f8db8
BLAKE2b-256 32e00cbcee3832859715b753e5b13e2c1281f75fbb0bfd41485ce822988efb20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zodbpickle-2.0.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 219.3 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.8

File hashes

Hashes for zodbpickle-2.0.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a0632c746f4633421f4535276d8843ebe6a3ef31421845dc80d529a73c3d9ba0
MD5 af33b3ee3f6665c373fcd0a6682510b3
BLAKE2b-256 cc61b925d1d69fc1e0b30a7c26e4a35db97108b9088e8e685a2e8d9a0cdc97e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zodbpickle-2.0.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 211.9 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.8

File hashes

Hashes for zodbpickle-2.0.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 c7479ddfccd5f3e6d2dd53074e03b111a3841990a439b819811e40ea379159d8
MD5 5e8e6c9ec31200d504d9dfb05ab05297
BLAKE2b-256 5f6ef09325559378ccaeb7e7fc8b54b167f5d05d3c97d8c660fc6879d68162d6

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 331.9 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e137b217ae0fe37154844c3484db93467c3ff09de5ea58bbbe357a9e31a327ab
MD5 026a0720cad2c106cf4f1d1e03cfa2e6
BLAKE2b-256 33afb2b4c32d3c3bd6cf1178834fa1aec5d8d1708d5b65afba2f62ed914a60dc

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 303.9 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 13d85de2e050c025571906316e500076d0b7db66f8af716cf803e55b2f4bf116
MD5 6e04f0fb0ad69e9630392c42913b2e9f
BLAKE2b-256 fa3cd6c2faf3f789704ba5d59e0379c65d3fa5c74aa24c7f4d49dd7950f0e0ad

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 331.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6fa56012000f855537f485bb5b63fdfcdb0979731e96a44f73671a9c41b65275
MD5 03438e9c986d4172a870c6a1bcd26aac
BLAKE2b-256 455f8271f2fc97fc603371fe0ec2e7d0d8dea21b8553eca62744200a2a5b8fa0

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 303.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 20c072efb83fb640f7b290a41d4cdd012a75962f1424687c407e3e41539416af
MD5 22d8160560dc903f8cb406c411553f29
BLAKE2b-256 3ac21f0a552019e5417570a931821192f8428754180a30dacf585d1605a8a3a1

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp36-cp36m-macosx_10_6_intel.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 260.8 kB
  • Tags: CPython 3.6m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.10

File hashes

Hashes for zodbpickle-2.0.0-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 eccd771516d9dbc902da803331cad83e7a1f0e605a703d0e057c3bfedb892d0c
MD5 9c2bc8d5dc135d24ab16fc816ca29b97
BLAKE2b-256 65986885f6d845c412ac4cb1b3f04f545adbcc3346e6e393b4d4930a0852c187

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zodbpickle-2.0.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 219.3 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.5.4

File hashes

Hashes for zodbpickle-2.0.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 dd6a89106803ccbb49673f52edce45af7d16a2c8c96364dc44ab290cd61f2932
MD5 9285e446ffe54db1e4bcae754fb5c404
BLAKE2b-256 e32b7bc07c057c995af027d4bb2c55e5b7749bd912cda7713fea8368370b7a64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zodbpickle-2.0.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 211.9 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.5.4

File hashes

Hashes for zodbpickle-2.0.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 3071fe1cf5b801a5b7d6e9fdd08b86dcfe28a0a95b0377c4dc686966e6625ef0
MD5 8bba6fe461caf7b7ccfc4034d8c1a8bd
BLAKE2b-256 5f164e598f70e61769f7bfe27255e1e968802ec87c552d0288413c0893089f25

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 331.7 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6475f47fc4e8300ba1ae6291521618f77dc4e625d376c0324d41430ef059a49c
MD5 2e3085f99a830f72cb2c1cdadcaf08ca
BLAKE2b-256 8af6d4a275ad6f155f3afcf1d09d2e68c8f0614394872e9e9fdd2f34c61c5df4

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 303.7 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5ed8373265d2465055cd2535f8ac278958361a0f6f5c01fbc96e614fbc173396
MD5 12060ff81dc35be6ed51d14ab39ca8e5
BLAKE2b-256 c228c0a38b3335174afc59c01fbad19d3ccd11c2745665249926460c7c806c72

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 331.7 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 956d258a24999f9ec3058eb8f2cb83189a0eb28960657e33939d14b4d7641ef5
MD5 fdaa2cded83986cfb53f622f0efe6477
BLAKE2b-256 a93383de27f2f7df240a0e5b949e8201e83f0acb9dd5d47f5cab73e908bf49d8

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 303.7 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 99508306afc15fa22265cfa8e6015a447c7ed9e4b2142a77a09037ba6b2fdac5
MD5 f984484e8e9641b937f1ea7e8a10c4f0
BLAKE2b-256 b39dcbf596772b5dcad366d9e735b14eed136bdd7d58244266fe24d052e44151

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp35-cp35m-macosx_10_6_intel.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 260.8 kB
  • Tags: CPython 3.5m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.10

File hashes

Hashes for zodbpickle-2.0.0-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 c04d3faa2bf4d5eb802617b30214976b648de8d31a848e130d0ae1081ebcee80
MD5 8d3017725c9df4839be6f2e642a8d263
BLAKE2b-256 84072af24043dbf9af8f94d254a3dcb9f4bb3154b07a77bd8cc6b3c8989345f1

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 309.7 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cfccdc2032f7e6558a2dab79035a23b6a8d81c1437b925777d9aafaf5b0b150d
MD5 704574d73f3266dbe5c5672950178530
BLAKE2b-256 4870f1444e7fbdb162e8791cc4706fbd5c042e4ca767e6d1dc4763429728e39e

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 284.6 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 daae681a52c8243ce00ce0c713fab5a602ecd4a8dcc7ef88afb0afcda3f1a48b
MD5 87d31c48001e93a437fa14eac0b0d362
BLAKE2b-256 707eda6cabeb6346e34dcfc07880267bcfaf1f51d52fac597bd3de89e2214295

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 309.7 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8e9d6d7e9b6e422fa9fee3ebade138c487a11943e8a7c530ee1422592c4a85a5
MD5 746c90332554fdbd4064af88f33a8421
BLAKE2b-256 43b5a656cfe2c0cc01e0c03ed7f7e8698ea34946c10e519496badb045b4c2c92

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 284.6 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ca44c619e9a5f9090312f0c2ebd8fea35a971bedde117f6e431266bd7c4d432d
MD5 660f65f4222355ad60bca78e60d12d14
BLAKE2b-256 44c593bcb510e98e17ab7b7af20315b395900222b025a5a1e70f0649abec4ac8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zodbpickle-2.0.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 212.1 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.17

File hashes

Hashes for zodbpickle-2.0.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 3c481d1eea5d9c44dd084760bf487b0d9aec28fc5b8d72c0a93305db40971270
MD5 c1f1434abee19a56e275910e7be9b1f9
BLAKE2b-256 c317c4ce2aa8c3206622ba936c812c6011316a5a59763f14f9e28b9076674214

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zodbpickle-2.0.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 208.2 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.17

File hashes

Hashes for zodbpickle-2.0.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 1c436f2bc74ac8f932bdab0ea418f6faed5794bfc98c066ba57064b5b1247a79
MD5 15cde5abf50d3ce9c8e05d18fb7ca7ff
BLAKE2b-256 4ecef9a904bec665fe2588c2d3d3cfeb8249c55891d6c16c3b4e6125ea40140a

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 309.9 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 eb12c14cbd04c0c4c97fbfdc0014219f1680e2d16165410eada20b9dff0dc02d
MD5 a4f02442dd6460db1ab978debff7b41f
BLAKE2b-256 00bcd9e683ae4cb3c245d04aee2d1eecb2df7a5c1bcbfd189a61d59ba733d423

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 284.8 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4bdfb9077d080c17fa45917ab807dc2a64b45ead15c8a05f9fab72605fda402a
MD5 ec6838aa4e60ec89a9ca9d10310b9531
BLAKE2b-256 4a1245f2daf12648f70fd9dc0964e9e5ca3b5d23a263dbb12b06cc4ab62c07d2

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 309.9 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0c94b57b19afb8a64af489221173d7ae7331ea1085eac24a3b0e1a33d1cd62ea
MD5 a976b389ccf92e3fb12d037bbe077d9d
BLAKE2b-256 f0459b0ac70568fd28f870131d1b5c460cd5f10b249afe08f2a277cb7aca976b

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 284.8 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for zodbpickle-2.0.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2a1435ffd6b10ee84800f779d89d9f298cf13169f5054cc79a592e5d19a55ace
MD5 a8c872c38fe9200785317e480249a120
BLAKE2b-256 2c59fc6bd37374de8703fd5a040f4afd443bb78a5ce30c159312b3c369643159

See more details on using hashes here.

File details

Details for the file zodbpickle-2.0.0-cp27-cp27m-macosx_10_6_intel.whl.

File metadata

  • Download URL: zodbpickle-2.0.0-cp27-cp27m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 251.2 kB
  • Tags: CPython 2.7m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.10

File hashes

Hashes for zodbpickle-2.0.0-cp27-cp27m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 c5355599f298cca7afa3637f8279cb14a04ff335334dcfc6ef406450d65e29e6
MD5 15ef01c95927e82f84744911100fbec4
BLAKE2b-256 636cd6d19585dd204a952d55eece0bedfa723557ee7e80be3d6ca4a1ac4c26ae

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