Skip to main content

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".

Release files for zodbpickle 2.0.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for zodbpickle 2.0.0
File Size Uploaded
zodbpickle-2.0.0.tar.gz 183.1 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for zodbpickle 2.0.0
File
zodbpickle-2.0.0-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
zodbpickle-2.0.0-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
zodbpickle-2.0.0-cp38-cp38-manylinux2010_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-64 Details
zodbpickle-2.0.0-cp38-cp38-manylinux2010_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-32 Details
zodbpickle-2.0.0-cp38-cp38-manylinux1_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-64 Details
zodbpickle-2.0.0-cp38-cp38-manylinux1_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32 Details
zodbpickle-2.0.0-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
zodbpickle-2.0.0-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
zodbpickle-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64 Details
zodbpickle-2.0.0-cp37-cp37m-manylinux2010_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32 Details
zodbpickle-2.0.0-cp37-cp37m-manylinux1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64 Details
zodbpickle-2.0.0-cp37-cp37m-manylinux1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32 Details
zodbpickle-2.0.0-cp37-cp37m-macosx_10_14_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.14+ x86-64 Details
zodbpickle-2.0.0-cp37-cp37m-macosx_10_6_intel.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.6+ Intel (x86-64, i386) Details
zodbpickle-2.0.0-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
zodbpickle-2.0.0-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
zodbpickle-2.0.0-cp36-cp36m-manylinux2010_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64 Details
zodbpickle-2.0.0-cp36-cp36m-manylinux2010_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32 Details
zodbpickle-2.0.0-cp36-cp36m-manylinux1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 Details
zodbpickle-2.0.0-cp36-cp36m-manylinux1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32 Details
zodbpickle-2.0.0-cp36-cp36m-macosx_10_6_intel.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.6+ Intel (x86-64, i386) Details
zodbpickle-2.0.0-cp35-cp35m-win_amd64.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-64 Details
zodbpickle-2.0.0-cp35-cp35m-win32.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-32 Details
zodbpickle-2.0.0-cp35-cp35m-manylinux2010_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-64 Details
zodbpickle-2.0.0-cp35-cp35m-manylinux2010_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-32 Details
zodbpickle-2.0.0-cp35-cp35m-manylinux1_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64 Details
zodbpickle-2.0.0-cp35-cp35m-manylinux1_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32 Details
zodbpickle-2.0.0-cp35-cp35m-macosx_10_6_intel.whl CPython 3.5 CPython 3.5 pymalloc macOS 10.6+ Intel (x86-64, i386) Details
zodbpickle-2.0.0-cp27-cp27mu-manylinux2010_x86_64.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-64 Details
zodbpickle-2.0.0-cp27-cp27mu-manylinux2010_i686.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-32 Details
zodbpickle-2.0.0-cp27-cp27mu-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64 Details
zodbpickle-2.0.0-cp27-cp27mu-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32 Details
zodbpickle-2.0.0-cp27-cp27m-win_amd64.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-64 Details
zodbpickle-2.0.0-cp27-cp27m-win32.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-32 Details
zodbpickle-2.0.0-cp27-cp27m-manylinux2010_x86_64.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-64 Details
zodbpickle-2.0.0-cp27-cp27m-manylinux2010_i686.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-32 Details
zodbpickle-2.0.0-cp27-cp27m-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64 Details
zodbpickle-2.0.0-cp27-cp27m-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32 Details
zodbpickle-2.0.0-cp27-cp27m-macosx_10_6_intel.whl CPython 2.7 CPython 2.7 pymalloc macOS 10.6+ Intel (x86-64, i386) Details

Total release size: 11.1 MB

Release files / zodbpickle-2.0.0.tar.gz

Download URL zodbpickle-2.0.0.tar.gz
Size 183.1 kB
Tags Source
SHA-256 checksum
How to use checksums
e0d9930f46d41f086a763f40a12d014c46bbc5e19e728c8d66d7a06fef616739
BLAKE2b-256 checksum
How to use checksums
fcd98c7837a886f1b52c87e752b872dd0a061b4e94de639c25093a6ec0b8bdb3
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp38-cp38-win_amd64.whl

Download URL zodbpickle-2.0.0-cp38-cp38-win_amd64.whl
Size 220.1 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
6d91a079d4d71cbc57a289ffb66f535545bab675f8ba117426a415e66ddeb128
BLAKE2b-256 checksum
How to use checksums
ca8505a5f2d0fe3a75822a74f42f4580c12fd13fa3f6468818adf4182b31fffa
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp38-cp38-win32.whl

Download URL zodbpickle-2.0.0-cp38-cp38-win32.whl
Size 212.7 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
61a5351f5a18b45512a90297eefc7eaa4de7c0d2cc7c33a97ad41703dde1bac3
BLAKE2b-256 checksum
How to use checksums
ebf3e4cc401671bf6a68d74f511d7061d69b24910f06c460cbd917161795e052
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp38-cp38-manylinux2010_x86_64.whl

Download URL zodbpickle-2.0.0-cp38-cp38-manylinux2010_x86_64.whl
Size 347.8 kB
Tags CPython 3.8 Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
2075aa83989f502a21d0421cfd0940d723e7f444130fb559368f40df2e8f2ff5
BLAKE2b-256 checksum
How to use checksums
55a6c68e3e92d1e44c31028a41db2e94045b243bb3fd73baeef3393893e3b017
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp38-cp38-manylinux2010_i686.whl

Download URL zodbpickle-2.0.0-cp38-cp38-manylinux2010_i686.whl
Size 318.3 kB
Tags CPython 3.8 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
07426bb81f7fee4b872e8298e2e560f5b7696fa43d9640d82c1c8dd2fb75979c
BLAKE2b-256 checksum
How to use checksums
a993a77e4fb7f81201c9258ef1a658fc5ad673fbafd5e0b8669ce9a76cbf4a49
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp38-cp38-manylinux1_x86_64.whl

Download URL zodbpickle-2.0.0-cp38-cp38-manylinux1_x86_64.whl
Size 347.8 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
b0039c6d66bec36c1c45293f2b06f48bb8f3700470b53e41e26ba974a843730e
BLAKE2b-256 checksum
How to use checksums
7ecc8f4399b2bd9c93da150ab2bdc6712ceb21c372cca73b19e2b53c6a771612
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp38-cp38-manylinux1_i686.whl

Download URL zodbpickle-2.0.0-cp38-cp38-manylinux1_i686.whl
Size 318.3 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
927e799306598a1891c994a4e5fad9f6c7c7c8cab262dc76ed72b1f381b573d3
BLAKE2b-256 checksum
How to use checksums
8b303e9c367fc30c55267002fb90b783e179ad38e30b3793ea44470e81499e46
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp37-cp37m-win_amd64.whl

Download URL zodbpickle-2.0.0-cp37-cp37m-win_amd64.whl
Size 219.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
e4d35648c879802ad1499d177da2f9f23c345ec19e4304d2377ad6ce7f2b6045
BLAKE2b-256 checksum
How to use checksums
3d1d904134ac11435c6a4902452507f9c2520636df9f74a6685505933660905b
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp37-cp37m-win32.whl

Download URL zodbpickle-2.0.0-cp37-cp37m-win32.whl
Size 211.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
973e9fd9b476bb22bd30746054c69166b2b25498800a6e8011b527c1f63b3ea5
BLAKE2b-256 checksum
How to use checksums
f0d7b5dbe620a1c14739a09999a9ad2b10b86efe0eb694cc71604b9d1207099f
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl

Download URL zodbpickle-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl
Size 332.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
159cef791efb1614ca827c43f90c667acc946df3ac2a223cf2be170299cbef73
BLAKE2b-256 checksum
How to use checksums
251f1acf065bbcd325910fa6ef390458a28a6e0845fe8b8acf38f6d68051a3c3
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp37-cp37m-manylinux2010_i686.whl

Download URL zodbpickle-2.0.0-cp37-cp37m-manylinux2010_i686.whl
Size 304.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
d4b1664237527900f0df3a490687e7ae9cf307c5a98f30a7e6bafdcf975719ca
BLAKE2b-256 checksum
How to use checksums
8c1bb93d5cd6e032abb50ed0bdef058d2f9465edb83d17a5074286517e9e2f84
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp37-cp37m-manylinux1_x86_64.whl

Download URL zodbpickle-2.0.0-cp37-cp37m-manylinux1_x86_64.whl
Size 332.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
14a3044959d98f5bab39c081a2974c1fc40bd8f241cc6c1d838dcd567ce6c8c1
BLAKE2b-256 checksum
How to use checksums
002b2dbe9037dd1f499d34e08b63d218fdba4f147bd9b1b184dda3b9062eb784
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp37-cp37m-manylinux1_i686.whl

Download URL zodbpickle-2.0.0-cp37-cp37m-manylinux1_i686.whl
Size 304.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
1c4fd0bca3400124bdb7088fce037b837abf623fc3fe7372a259fba82f2d8e51
BLAKE2b-256 checksum
How to use checksums
d0be45394d429499c344df63f0dcb09aa5370a6a26b51cc0828248e784838a32
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp37-cp37m-macosx_10_14_x86_64.whl

Download URL zodbpickle-2.0.0-cp37-cp37m-macosx_10_14_x86_64.whl
Size 220.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.14+ x86-64
SHA-256 checksum
How to use checksums
77ee3acfc4fa53f73a7d26a197c0e9a574417aa1fa5baa2dcffb0db64c7ef30c
BLAKE2b-256 checksum
How to use checksums
d7cde5a24ca4e2474f95bf9de5a23c1c6aab29be30688d76a6cd70dbd85ccb53
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp37-cp37m-macosx_10_6_intel.whl

Download URL zodbpickle-2.0.0-cp37-cp37m-macosx_10_6_intel.whl
Size 260.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
c041bc2f5b1724d01e81e5a08056cd784235a4e1bbd5dc0b471a1f5594522cfe
BLAKE2b-256 checksum
How to use checksums
32e00cbcee3832859715b753e5b13e2c1281f75fbb0bfd41485ce822988efb20
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp36-cp36m-win_amd64.whl

Download URL zodbpickle-2.0.0-cp36-cp36m-win_amd64.whl
Size 219.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
a0632c746f4633421f4535276d8843ebe6a3ef31421845dc80d529a73c3d9ba0
BLAKE2b-256 checksum
How to use checksums
cc61b925d1d69fc1e0b30a7c26e4a35db97108b9088e8e685a2e8d9a0cdc97e1
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp36-cp36m-win32.whl

Download URL zodbpickle-2.0.0-cp36-cp36m-win32.whl
Size 211.9 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
c7479ddfccd5f3e6d2dd53074e03b111a3841990a439b819811e40ea379159d8
BLAKE2b-256 checksum
How to use checksums
5f6ef09325559378ccaeb7e7fc8b54b167f5d05d3c97d8c660fc6879d68162d6
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp36-cp36m-manylinux2010_x86_64.whl

Download URL zodbpickle-2.0.0-cp36-cp36m-manylinux2010_x86_64.whl
Size 331.9 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
e137b217ae0fe37154844c3484db93467c3ff09de5ea58bbbe357a9e31a327ab
BLAKE2b-256 checksum
How to use checksums
33afb2b4c32d3c3bd6cf1178834fa1aec5d8d1708d5b65afba2f62ed914a60dc
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp36-cp36m-manylinux2010_i686.whl

Download URL zodbpickle-2.0.0-cp36-cp36m-manylinux2010_i686.whl
Size 303.9 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
13d85de2e050c025571906316e500076d0b7db66f8af716cf803e55b2f4bf116
BLAKE2b-256 checksum
How to use checksums
fa3cd6c2faf3f789704ba5d59e0379c65d3fa5c74aa24c7f4d49dd7950f0e0ad
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp36-cp36m-manylinux1_x86_64.whl

Download URL zodbpickle-2.0.0-cp36-cp36m-manylinux1_x86_64.whl
Size 331.9 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
6fa56012000f855537f485bb5b63fdfcdb0979731e96a44f73671a9c41b65275
BLAKE2b-256 checksum
How to use checksums
455f8271f2fc97fc603371fe0ec2e7d0d8dea21b8553eca62744200a2a5b8fa0
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp36-cp36m-manylinux1_i686.whl

Download URL zodbpickle-2.0.0-cp36-cp36m-manylinux1_i686.whl
Size 303.9 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
20c072efb83fb640f7b290a41d4cdd012a75962f1424687c407e3e41539416af
BLAKE2b-256 checksum
How to use checksums
3ac21f0a552019e5417570a931821192f8428754180a30dacf585d1605a8a3a1
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp36-cp36m-macosx_10_6_intel.whl

Download URL zodbpickle-2.0.0-cp36-cp36m-macosx_10_6_intel.whl
Size 260.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
eccd771516d9dbc902da803331cad83e7a1f0e605a703d0e057c3bfedb892d0c
BLAKE2b-256 checksum
How to use checksums
65986885f6d845c412ac4cb1b3f04f545adbcc3346e6e393b4d4930a0852c187
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp35-cp35m-win_amd64.whl

Download URL zodbpickle-2.0.0-cp35-cp35m-win_amd64.whl
Size 219.3 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
dd6a89106803ccbb49673f52edce45af7d16a2c8c96364dc44ab290cd61f2932
BLAKE2b-256 checksum
How to use checksums
e32b7bc07c057c995af027d4bb2c55e5b7749bd912cda7713fea8368370b7a64
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp35-cp35m-win32.whl

Download URL zodbpickle-2.0.0-cp35-cp35m-win32.whl
Size 211.9 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
3071fe1cf5b801a5b7d6e9fdd08b86dcfe28a0a95b0377c4dc686966e6625ef0
BLAKE2b-256 checksum
How to use checksums
5f164e598f70e61769f7bfe27255e1e968802ec87c552d0288413c0893089f25
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp35-cp35m-manylinux2010_x86_64.whl

Download URL zodbpickle-2.0.0-cp35-cp35m-manylinux2010_x86_64.whl
Size 331.7 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
6475f47fc4e8300ba1ae6291521618f77dc4e625d376c0324d41430ef059a49c
BLAKE2b-256 checksum
How to use checksums
8af6d4a275ad6f155f3afcf1d09d2e68c8f0614394872e9e9fdd2f34c61c5df4
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp35-cp35m-manylinux2010_i686.whl

Download URL zodbpickle-2.0.0-cp35-cp35m-manylinux2010_i686.whl
Size 303.7 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
5ed8373265d2465055cd2535f8ac278958361a0f6f5c01fbc96e614fbc173396
BLAKE2b-256 checksum
How to use checksums
c228c0a38b3335174afc59c01fbad19d3ccd11c2745665249926460c7c806c72
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp35-cp35m-manylinux1_x86_64.whl

Download URL zodbpickle-2.0.0-cp35-cp35m-manylinux1_x86_64.whl
Size 331.7 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
956d258a24999f9ec3058eb8f2cb83189a0eb28960657e33939d14b4d7641ef5
BLAKE2b-256 checksum
How to use checksums
a93383de27f2f7df240a0e5b949e8201e83f0acb9dd5d47f5cab73e908bf49d8
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp35-cp35m-manylinux1_i686.whl

Download URL zodbpickle-2.0.0-cp35-cp35m-manylinux1_i686.whl
Size 303.7 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
99508306afc15fa22265cfa8e6015a447c7ed9e4b2142a77a09037ba6b2fdac5
BLAKE2b-256 checksum
How to use checksums
b39dcbf596772b5dcad366d9e735b14eed136bdd7d58244266fe24d052e44151
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp35-cp35m-macosx_10_6_intel.whl

Download URL zodbpickle-2.0.0-cp35-cp35m-macosx_10_6_intel.whl
Size 260.8 kB
Tags CPython 3.5 CPython 3.5 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
c04d3faa2bf4d5eb802617b30214976b648de8d31a848e130d0ae1081ebcee80
BLAKE2b-256 checksum
How to use checksums
84072af24043dbf9af8f94d254a3dcb9f4bb3154b07a77bd8cc6b3c8989345f1
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp27-cp27mu-manylinux2010_x86_64.whl

Download URL zodbpickle-2.0.0-cp27-cp27mu-manylinux2010_x86_64.whl
Size 309.7 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
cfccdc2032f7e6558a2dab79035a23b6a8d81c1437b925777d9aafaf5b0b150d
BLAKE2b-256 checksum
How to use checksums
4870f1444e7fbdb162e8791cc4706fbd5c042e4ca767e6d1dc4763429728e39e
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp27-cp27mu-manylinux2010_i686.whl

Download URL zodbpickle-2.0.0-cp27-cp27mu-manylinux2010_i686.whl
Size 284.6 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
daae681a52c8243ce00ce0c713fab5a602ecd4a8dcc7ef88afb0afcda3f1a48b
BLAKE2b-256 checksum
How to use checksums
707eda6cabeb6346e34dcfc07880267bcfaf1f51d52fac597bd3de89e2214295
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp27-cp27mu-manylinux1_x86_64.whl

Download URL zodbpickle-2.0.0-cp27-cp27mu-manylinux1_x86_64.whl
Size 309.7 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
8e9d6d7e9b6e422fa9fee3ebade138c487a11943e8a7c530ee1422592c4a85a5
BLAKE2b-256 checksum
How to use checksums
43b5a656cfe2c0cc01e0c03ed7f7e8698ea34946c10e519496badb045b4c2c92
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp27-cp27mu-manylinux1_i686.whl

Download URL zodbpickle-2.0.0-cp27-cp27mu-manylinux1_i686.whl
Size 284.6 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
ca44c619e9a5f9090312f0c2ebd8fea35a971bedde117f6e431266bd7c4d432d
BLAKE2b-256 checksum
How to use checksums
44c593bcb510e98e17ab7b7af20315b395900222b025a5a1e70f0649abec4ac8
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp27-cp27m-win_amd64.whl

Download URL zodbpickle-2.0.0-cp27-cp27m-win_amd64.whl
Size 212.1 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
3c481d1eea5d9c44dd084760bf487b0d9aec28fc5b8d72c0a93305db40971270
BLAKE2b-256 checksum
How to use checksums
c317c4ce2aa8c3206622ba936c812c6011316a5a59763f14f9e28b9076674214
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp27-cp27m-win32.whl

Download URL zodbpickle-2.0.0-cp27-cp27m-win32.whl
Size 208.2 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
1c436f2bc74ac8f932bdab0ea418f6faed5794bfc98c066ba57064b5b1247a79
BLAKE2b-256 checksum
How to use checksums
4ecef9a904bec665fe2588c2d3d3cfeb8249c55891d6c16c3b4e6125ea40140a
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp27-cp27m-manylinux2010_x86_64.whl

Download URL zodbpickle-2.0.0-cp27-cp27m-manylinux2010_x86_64.whl
Size 309.9 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
eb12c14cbd04c0c4c97fbfdc0014219f1680e2d16165410eada20b9dff0dc02d
BLAKE2b-256 checksum
How to use checksums
00bcd9e683ae4cb3c245d04aee2d1eecb2df7a5c1bcbfd189a61d59ba733d423
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp27-cp27m-manylinux2010_i686.whl

Download URL zodbpickle-2.0.0-cp27-cp27m-manylinux2010_i686.whl
Size 284.8 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
4bdfb9077d080c17fa45917ab807dc2a64b45ead15c8a05f9fab72605fda402a
BLAKE2b-256 checksum
How to use checksums
4a1245f2daf12648f70fd9dc0964e9e5ca3b5d23a263dbb12b06cc4ab62c07d2
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp27-cp27m-manylinux1_x86_64.whl

Download URL zodbpickle-2.0.0-cp27-cp27m-manylinux1_x86_64.whl
Size 309.9 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
0c94b57b19afb8a64af489221173d7ae7331ea1085eac24a3b0e1a33d1cd62ea
BLAKE2b-256 checksum
How to use checksums
f0459b0ac70568fd28f870131d1b5c460cd5f10b249afe08f2a277cb7aca976b
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp27-cp27m-manylinux1_i686.whl

Download URL zodbpickle-2.0.0-cp27-cp27m-manylinux1_i686.whl
Size 284.8 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
2a1435ffd6b10ee84800f779d89d9f298cf13169f5054cc79a592e5d19a55ace
BLAKE2b-256 checksum
How to use checksums
2c59fc6bd37374de8703fd5a040f4afd443bb78a5ce30c159312b3c369643159
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / zodbpickle-2.0.0-cp27-cp27m-macosx_10_6_intel.whl

Download URL zodbpickle-2.0.0-cp27-cp27m-macosx_10_6_intel.whl
Size 251.2 kB
Tags CPython 2.7 CPython 2.7 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
c5355599f298cca7afa3637f8279cb14a04ff335334dcfc6ef406450d65e29e6
BLAKE2b-256 checksum
How to use checksums
636cd6d19585dd204a952d55eece0bedfa723557ee7e80be3d6ca4a1ac4c26ae
Upload date
Uploaded using Trusted Publishing?
What is 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

Release history Release notifications | RSS feed

4.5

41 release files

4.4

35 release files

4.3

31 release files

4.2

31 release files

4.1

37 release files

4.0

34 release files

3.3

30 release files

3.2

36 release files

3.1

36 release files

3.0.1

30 release files

3.0

30 release files

2.6

36 release files

2.5

39 release files

2.4

37 release files

2.3

36 release files

2.2.0

38 release files

2.1.0

30 release files

This release

2.0.0 This release

40 release files

1.1

26 release files

1.0.4

29 release files

1.0.3

28 release files

1.0.2

28 release files

1.0.1

9 release files

1.0

23 release files

0.7.0

11 release files

0.5.2

1 release file

0.5.1

1 release file

0.5.0

1 release file

0.4.4

1 release file

0.4.3

1 release file

0.4.2

1 release file

0.4.1

1 release file

0.4

1 release file

0.3

1 release file

0.2

1 release file

0.1.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page