{ "info": { "author": "Jim Fulton", "author_email": "jim@zope.com", "bugtrack_url": null, "classifiers": [ "Framework :: ZODB", "Intended Audience :: Developers", "License :: OSI Approved :: Zope Public License", "Operating System :: Microsoft :: Windows", "Operating System :: Unix", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Database", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "=======================================\nZODB, a Python object-oriented database\n=======================================\n\n.. image:: https://img.shields.io/pypi/v/ZODB.svg\n :target: https://pypi.python.org/pypi/ZODB/\n :alt: Latest release\n\n.. image:: https://img.shields.io/pypi/pyversions/ZODB.svg\n :target: https://pypi.org/project/ZODB/\n :alt: Supported Python versions\n\n.. image:: https://travis-ci.org/zopefoundation/ZODB.svg?branch=master\n :target: https://travis-ci.org/zopefoundation/ZODB\n :alt: Build status\n\n.. image:: https://coveralls.io/repos/github/zopefoundation/ZODB/badge.svg\n :target: https://coveralls.io/github/zopefoundation/ZODB\n :alt: Coverage status\n\n.. image:: https://readthedocs.org/projects/zodb/badge/?version=latest\n :target: https://zodb.readthedocs.io/en/latest/\n :alt: Documentation status\n\nZODB provides an object-oriented database for Python that provides a\nhigh-degree of transparency. ZODB runs on Python 2.7 or Python 3.4 and\nabove. It also runs on PyPy.\n\n- no separate language for database operations\n\n- very little impact on your code to make objects persistent\n\n- no database mapper that partially hides the database.\n\n Using an object-relational mapping **is not** like using an\n object-oriented database.\n\n- almost no seam between code and database.\n\nZODB is an ACID Transactional database.\n\nTo learn more, visit: http://www.zodb.org\n\nThe github repository is: at https://github.com/zopefoundation/zodb\n\nIf you're interested in contributing to ZODB itself, see the\n`developer notes\n`_.\n\n\n================\n Change History\n================\n\n5.5.1 (2018-10-25)\n==================\n\n- Fix KeyError on releasing resources of a Connection when closing the DB.\n This requires at least version 2.4 of the `transaction` package.\n See `issue 208 `.\n\n5.5.0 (2018-10-13)\n==================\n\n- Add support for Python 3.7.\n\n- Bump the dependency on zodbpickle to at least 1.0.1. This is\n required to avoid a memory leak on Python 2.7. See `issue 203\n `_.\n\n- Bump the dependency on persistent to at least 4.4.0.\n\n- Make the internal support functions for dealing with OIDs (``p64``\n and ``u64``) somewhat faster and raise more informative\n exceptions on certain types of bad input. See `issue 216\n `_.\n\n- Remove support for ``python setup.py test``. It hadn't been working\n for some time. See `issue #218\n `_.\n\n- Make the tests run faster by avoiding calls to ``time.sleep()``.\n\n5.4.0 (2018-03-26)\n==================\n\n- ZODB now uses pickle protocol 3 for both Python 2 and Python 3.\n\n (Previously, protocol 2 was used for Python 2.)\n\n The zodbpickle package provides a `zodbpickle.binary` string type\n that should be used in Python 2 to cause binary strings to be saved\n in a pickle binary format, so they can be loaded correctly in\n Python 3. Pickle protocol 3 is needed for this to work correctly.\n\n- Object identifiers in persistent references are saved as\n `zodbpickle.binary` strings in Python 2, so that they are loaded\n correctly in Python 3.\n\n- If an object is missing from the index while packing a ``FileStorage``,\n report its full ``oid``.\n\n- Storage imports are a bit faster.\n\n- Storages can be important from non-seekable sources, like\n file-wrapped pipes.\n\n5.3.0 (2017-08-30)\n==================\n\n- Add support for Python 3.6.\n\n- Drop support for Python 3.3.\n\n- Ensure that the ``HistoricalStorageAdapter`` forwards the ``release`` method to\n its base instance. See `issue 78 `_.\n\n- Use a higher pickle protocol (2) for serializing objects on Python\n 2; previously protocol 1 was used. This is *much* more efficient for\n new-style classes (all persistent objects are new-style), at the\n cost of being very slightly less efficient for old-style classes.\n\n .. note:: On Python 2, this will now allow open ``file`` objects\n (but **not** open blobs or sockets) to be pickled (loading\n the object will result in a closed file); previously this\n would result in a ``TypeError``. Doing so is not\n recommended as they cannot be loaded in Python 3.\n\n See `issue 179 `_.\n\n5.2.4 (2017-05-17)\n==================\n\n- ``DB.close`` now explicitly frees internal resources. This is\n helpful to avoid false positives in tests that check for leaks.\n\n- Optimize getting the path to a blob file. See\n `issue 161 `_.\n\n- All classes are new-style classes on Python 2 (they were already\n new-style on Python 3). This improves performance on PyPy. See\n `issue 160 `_.\n\n5.2.3 (2017-04-11)\n==================\n\n- Fix an import error. See `issue 158 `_.\n\n5.2.2 (2017-04-11)\n==================\n\n- Fixed: A blob misfeature set blob permissions so that blobs and blob\n directories were only readable by the database process owner, rather\n than honoring user-controlled permissions (e.g. ``umask``).\n See `issue 155 `_.\n\n5.2.1 (2017-04-08)\n==================\n\n- Fixed: When opening FileStorages in read-only mode, non-existent\n files were silently created. Creating a read-only file-storage\n against a non-existent file errors.\n\n5.2.0 (2017-02-09)\n==================\n\n- Call new afterCompletion API on storages to allow them to free\n resources after transaction complete.\n See `issue 147 `__.\n- Take advantage of the new transaction-manager explicit mode to avoid\n starting transactions unnecessarily when transactions end.\n\n- ``Connection.new_oid`` delegates to its storage, not the DB. This is\n helpful for improving concurrency in MVCC storages like RelStorage.\n See `issue 139 `_.\n\n- ``persistent`` is no longer required at setup time.\n See `issue 119 `_.\n\n- ``Connection.close`` and ``Connection.open`` no longer race on\n ``self.transaction_manager``, which could lead to\n ``AttributeError``. This was a bug introduced in 5.0.1. See `issue\n 142 `_.\n\n\n5.1.1 (2016-11-18)\n==================\n\n- Fixed: ``ZODB.Connection.TransactionMetaData`` didn't support custom data\n storage that some storages rely on.\n\n5.1.0 (2016-11-17)\n==================\n\n- ZODB now translates transaction meta data, ``user`` and\n ``description`` from text to bytes before passing them to storages,\n and converts them back to text when retrieving them from storages in\n the ``history``, ``undoLog`` and ``undoInfo`` methods.\n\n The ``IDatabase`` interface was updated to reflect that ``history``,\n ``undoLog`` and ``undoInfo`` are available on database objects.\n (They were always available, but not documented in the interface.)\n\n5.0.1 (2016-11-17)\n==================\n\n- Fix an AttributeError that DemoStorage could raise if it was asked\n to store a blob into a temporary changes before reading a blob. See\n `issue 103 `_.\n\n- Call _p_resolveConflict() even if a conflicting change doesn't change the\n state. This reverts to the behaviour of 3.10.3 and older.\n\n- Closing a Connection now reverts its ``transaction_manager`` to\n None. This helps prevent errors and release resources when the\n ``transaction_manager`` was the (default) thread-local manager. See\n `issue 114 `_.\n\n- Many docstrings have been improved.\n\n5.0.0 (2016-09-06)\n==================\n\nMajor internal improvements and cleanups plus:\n\n- Added a connection ``prefetch`` method that can be used to request\n that a storage prefetch data an application will need::\n\n conn.prefetch(obj, ...)\n\n Where arguments can be objects, object ids, or iterables of objects\n or object ids.\n\n Added optional ``prefetch`` methods to the storage APIs. If a\n storage doesn't support prefetch, then the connection prefetch\n method is a noop.\n\n- fstail: print the txn offset and header size, instead of only the data offset.\n fstail can now be used to truncate a DB at the right offset.\n\n- Drop support for old commit protocol. All of the build-in storages\n implement the new protocol. This new protocol allows storages to\n provide better write performance by allowing multiple commits to\n execute in parallel.\n\n5.0.0b1 (2016-08-04)\n====================\n\n- fstail: print the txn offset and header size, instead of only the data offset.\n fstail can now be used to truncate a DB at the right offset.\n\nNumerous internal cleanups, including:\n\n- Changed the way the root object was created. Now the root object is\n created using a database connection, rather than by making low-level\n storage calls.\n\n- Drop support for the old commit protocol.\n\n- Internal FileStorage-undo fixes that should allow undo in some cases\n where it didn't work before.\n\n- Drop the ``version`` argument to some methods where it was the last\n argument and optional.\n\n5.0.0a6 (2016-07-21)\n====================\n\n- Added a connection ``prefetch`` method that can be used to request\n that a storage prefect data an application will need::\n\n conn.prefetch(obj, ...)\n\n Where arguments can be objects, object ids, or iterables of objects\n or object ids.\n\n Added optional ``prefetch`` methods to the storage APIs. If a\n storage doesn't support prefetch, then the connection prefetch\n method is a noop.\n\n5.0.0a5 (2016-07-06)\n====================\n\nDrop support for old commit protocol. All of the build-in storages\nimplement the new protocol. This new protocol allows storages to\nprovide better write performance by allowing multiple commits to\nexecute in parallel.\n\n5.0.0a4 (2016-07-05)\n====================\n\nSee 4.4.2.\n\n5.0.0a3 (2016-07-01)\n====================\n\nSee 4.4.1.\n\n5.0.0a2 (2016-07-01)\n====================\n\nSee 4.4.0.\n\n5.0.0a1 (2016-06-20)\n====================\n\nMajor **internal** implementation changes to the Multi Version\nConcurrency Control (MVCC) implementation:\n\n- For storages that implement IMVCCStorage (RelStorage), no longer\n implement MVCC in ZODB.\n\n- For other storages, MVCC is implemented using an additional storage\n layer. This underlying layer works by calling ``loadBefore``. The\n low-level storage ``load`` method isn't used any more.\n\n This change allows server-based storages like ZEO and NEO to be\n implemented more simply and cleanly.\n\n4.4.3 (2016-08-04)\n==================\n\n- Internal FileStorage-undo fixes that should allow undo in some cases\n where it didn't work before.\n\n- fstail: print the txn offset and header size, instead of only the data offset.\n fstail can now be used to truncate a DB at the right offset.\n\n4.4.2 (2016-07-08)\n==================\n\nBetter support of the new commit protocol. This fixes issues with blobs and\nundo. See pull requests #77, #80, #83\n\n4.4.1 (2016-07-01)\n==================\n\nAdded IMultiCommitStorage to directly represent the changes in the 4.4.0\nrelease and to make complient storages introspectable.\n\n4.4.0 (2016-06-30)\n==================\n\nThis release begins evolution to a more effcient commit protocol that\nallows storage implementations, like `NEO `_,\nto support multiple transactions committing at the same time, for\ngreater write parallelism.\n\nThis release updates IStorage:\n\n- The committed transaction's ID is returned by ``tpc_finish``, rather\n than being returned in response store and tpc_vote results.\n\n- ``tpc_vote`` is now expected to return ``None`` or a list of object\n ids for objects for which conflicts were resolved.\n\nThis release works with storages that implemented the older version of\nthe storage interface, but also supports storages that implement the\nupdated interface.\n\n4.3.1 (2016-06-06)\n==================\n\n- Fixed: FileStorage loadBefore didn't handle deleted/undone data correctly.\n\n4.3.0 (2016-05-31)\n==================\n\n- Drop support for Python 2.6 and 3.2.\n\n- Make the ``zodbpickle`` dependency required and not conditional.\n This fixes various packaging issues involving pip and its wheel\n cache. zodbpickle was only optional under Python 2.6 so this change\n only impacts users of that version. See\n https://github.com/zopefoundation/ZODB/pull/42.\n\n- Add support for Python 3.5.\n\n- Avoid failure during cleanup of nested databases that provide MVCC\n on storage level (Relstorage).\n https://github.com/zopefoundation/ZODB/issues/45\n\n- Remove useless dependency to `zdaemon` in setup.py. Remove ZEO documentation.\n Both were leftovers from the time where ZEO was part of this repository.\n\n- Fix possible data corruption after FileStorage is truncated to roll back a\n transaction.\n https://github.com/zopefoundation/ZODB/pull/52\n\n- DemoStorage: add support for conflict resolution and fix history()\n https://github.com/zopefoundation/ZODB/pull/58\n\n- Fixed a test that depended on implementation-specific behavior in tpc_finish\n\n4.2.0 (2015-06-02)\n==================\n\n- Declare conditional dependencies using PEP-426 environment markers\n (fixing interation between pip 7's wheel cache and tox). See\n https://github.com/zopefoundation/ZODB/issues/36.\n\n4.2.0b1 (2015-05-22)\n====================\n\n- Log failed conflict resolution attempts at ``DEBUG`` level. See:\n https://github.com/zopefoundation/ZODB/pull/29.\n\n- Fix command-line parsing of ``--verbose`` and ``--verify`` arguments.\n (The short versions, ``-v`` and ``-V``, were parsed correctly.)\n\n- Add support for PyPy.\n\n- Fix the methods in ``ZODB.serialize`` that find object references\n under Python 2.7 (used in scripts like ``referrers``, ``netspace``,\n and ``fsrecover`` among others). This requires the addition of the\n ``zodbpickle`` dependency.\n\n- FileStorage: fix an edge case when disk space runs out while packing,\n do not leave the ``.pack`` file around. That would block any write to the\n to-be-packed ``Data.fs``, because the disk would stay at 0 bytes free.\n See https://github.com/zopefoundation/ZODB/pull/21.\n\n4.1.0 (2015-01-11)\n==================\n\n- Fix registration of custom logging level names (\"BLATHER\", \"TRACE\").\n\n We have been registering them in the wrong order since 2004. Before\n Python 3.4, the stdlib ``logging`` module masked the error by registering\n them in *both* directions.\n\n- Add support for Python 3.4.\n\n4.0.1 (2014-07-13)\n==================\n\n- Fix ``POSKeyError`` during ``transaction.commit`` when after\n ``savepoint.rollback``. See\n https://github.com/zopefoundation/ZODB/issues/16\n\n- Ensure that the pickler used in PyPy always has a ``persistent_id``\n attribute (``inst_persistent_id`` is not present on the pure-Python\n pickler). (PR #17)\n\n- Provide better error reporting when trying to load an object on a\n closed connection.\n\n4.0.0 (2013-08-18)\n==================\n\nFinally released.\n\n4.0.0b3 (2013-06-11)\n====================\n\n- Switch to using non-backward-compatible pickles (protocol 3, without\n storing bytes as strings) under Python 3. Updated the magic number\n for file-storage files under Python3 to indicate the incompatibility.\n\n- Fixed: A ``UnicodeDecodeError`` could happen for non-ASCII OIDs\n when using bushy blob layout.\n\n4.0.0b2 (2013-05-14)\n====================\n\n- Extended the filename renormalizer used for blob doctests to support\n the filenames used by ZEO in non-shared mode.\n\n- Added ``url`` parameter to ``setup()`` (PyPI says it is required).\n\n4.0.0b1 (2013-05-10)\n=====================\n\n- Skipped non-unit tests in ``setup.py test``. Use the buildout to run tests\n requiring \"layer\" support.\n\n- Included the filename in the exception message to support debugging in case\n ``loadBlob`` does not find the file.\n\n- Added support for Python 3.2 / 3.3.\n\n.. note::\n\n ZODB 4.0.x is supported on Python 3.x for *new* applications only.\n Due to changes in the standard library's pickle support, the Python3\n support does **not** provide forward- or backward-compatibility\n at the data level with Python2. A future version of ZODB may add\n such support.\n\n Applications which need migrate data from Python2 to Python3 should\n plan to script this migration using separte databases, e.g. via a\n \"dump-and-reload\" approach, or by providing explicit fix-ups of the\n pickled values as transactions are copied between storages.\n\n\n4.0.0a4 (2012-12-17)\n=====================\n\n- Enforced usage of bytes for ``_p_serial`` of persistent objects (fixes\n compatibility with recent persistent releases).\n\n4.0.0a3 (2012-12-01)\n=====================\n\n- Fixed: An elaborate test for trvial logic corrupted module state in a\n way that made other tests fail spuriously.\n\n4.0.0a2 (2012-11-13)\n=====================\n\nBugs Fixed\n----------\n\n- An unneeded left-over setting in setup.py caused installation with\n pip to fail.\n\n4.0.0a1 (2012-11-07)\n=====================\n\nNew Features\n------------\n\n- The ``persistent`` and ``BTrees`` packages are now released as separate\n distributions, on which ZODB now depends.\n\n- ZODB no longer depends on zope.event. It now uses ZODB.event, which\n uses zope.event if it is installed. You can override\n ZODB.event.notify to provide your own event handling, although\n zope.event is recommended.\n\n- BTrees allowed object keys with insane comparison. (Comparison\n inherited from object, which compares based on in-process address.)\n Now BTrees raise TypeError if an attempt is made to save a key with\n comparison inherited from object. (This doesn't apply to old-style\n class instances.)\n\nBugs Fixed\n----------\n\n- Ensured that the export file and index file created by ``repozo`` share\n the same timestamp.\n\n https://bugs.launchpad.net/zodb/+bug/993350\n\n- Pinned the ``transaction`` and ``manuel`` dependencies to Python 2.5-\n compatible versions when installing under Python 2.5.\n\n\n.. note::\n Please see https://github.com/zopefoundation/ZODB/blob/master/HISTORY.rst\n for older versions of ZODB.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://www.zodb.org/", "keywords": "database nosql python zope", "license": "ZPL 2.1", "maintainer": "Zope Foundation and Contributors", "maintainer_email": "zodb-dev@zope.org", "name": "ZODB", "package_url": "https://pypi.org/project/ZODB/", "platform": "any", "project_url": "https://pypi.org/project/ZODB/", "project_urls": { "Homepage": "http://www.zodb.org/" }, "release_url": "https://pypi.org/project/ZODB/5.5.1/", "requires_dist": [ "persistent (>=4.4.0)", "BTrees (>=4.2.0)", "ZConfig", "transaction (>=2.4)", "six", "zc.lockfile", "zope.interface", "zodbpickle (>=1.0.1)", "manuel; extra == 'test'", "zope.testing; extra == 'test'", "zope.testrunner (>=4.4.6); extra == 'test'", "mock; (python_version == \"2.7\") and extra == 'test'" ], "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "summary": "ZODB, a Python object-oriented database", "version": "5.5.1" }, "last_serial": 4415743, "releases": { "4.0.0": [ { "comment_text": "", "digests": { "md5": "508ee0dfb42d9606eacf6155f63664ba", "sha256": "f5874f434c171824d70f57b2b61bfe1526f97ea019e7f9743fd72370029b7075" }, "downloads": -1, "filename": "ZODB-4.0.0.tar.gz", "has_sig": false, "md5_digest": "508ee0dfb42d9606eacf6155f63664ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 390414, "upload_time": "2013-09-18T11:03:13", "url": "https://files.pythonhosted.org/packages/5a/79/d2f21bcd7e9218ca2aebc3bdef94aea49927376d7675f7c0a0711fb3e4f8/ZODB-4.0.0.tar.gz" } ], "4.0.0a1": [ { "comment_text": "", "digests": { "md5": "b8fcddb7b2824604445f6f3bc89eb029", "sha256": "9b811ef699ffd7ac2d94db4e3cac6cfdd0a425355bb87f17b3bcbd4ed5a5d095" }, "downloads": -1, "filename": "ZODB-4.0.0a1.tar.gz", "has_sig": false, "md5_digest": "b8fcddb7b2824604445f6f3bc89eb029", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 393714, "upload_time": "2012-11-07T20:54:10", "url": "https://files.pythonhosted.org/packages/cb/12/26cfcdeda7c5197900c687b7c447599eed40db92d0f3e653e7603a218607/ZODB-4.0.0a1.tar.gz" } ], "4.0.0a2": [ { "comment_text": "", "digests": { "md5": "140bca628688d722918779644e252d90", "sha256": "725fc8710749d9fb7348fcfdf4ceb06ad24aa5610036e993db6d51a3bcb52447" }, "downloads": -1, "filename": "ZODB-4.0.0a2.tar.gz", "has_sig": false, "md5_digest": "140bca628688d722918779644e252d90", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 393766, "upload_time": "2012-11-13T12:25:56", "url": "https://files.pythonhosted.org/packages/cf/49/33173ee4cdeb4a1b3cc586bc1099a706ea99323882d269f73609a57e913d/ZODB-4.0.0a2.tar.gz" } ], "4.0.0a3": [ { "comment_text": "", "digests": { "md5": "37abaa37a059bc224bd484b1e795166a", "sha256": "bc18652936277d4c9966907ae740b671515c2ebed932af2578e06dff9c293650" }, "downloads": -1, "filename": "ZODB-4.0.0a3.tar.gz", "has_sig": false, "md5_digest": "37abaa37a059bc224bd484b1e795166a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 393389, "upload_time": "2012-12-01T16:46:06", "url": "https://files.pythonhosted.org/packages/51/44/4db95a770dcd804c4875f9ca1a09de13d7f447c88ec455810719b27f8a5b/ZODB-4.0.0a3.tar.gz" } ], "4.0.0a4": [ { "comment_text": "", "digests": { "md5": "c6418f599f499d257da1c281c8f219d1", "sha256": "aede8ef8b0c6a96b2fb60a2c995fdf42893a84f5699e17b17b6e170ce481c7eb" }, "downloads": -1, "filename": "ZODB-4.0.0a4.tar.gz", "has_sig": false, "md5_digest": "c6418f599f499d257da1c281c8f219d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 397093, "upload_time": "2012-12-17T16:56:25", "url": "https://files.pythonhosted.org/packages/82/ce/4ffd634bafa17545008e3232d7e50675e8b312aa3dceab8df40bb9f08765/ZODB-4.0.0a4.tar.gz" } ], "4.0.0b1": [ { "comment_text": "", "digests": { "md5": "fad2f5f2be8b331f422ffa7eb684acee", "sha256": "1e06a2719672b74a5e4ec81d283d40051975d108323c2e70383b7983327ebee9" }, "downloads": -1, "filename": "ZODB-4.0.0b1.tar.gz", "has_sig": false, "md5_digest": "fad2f5f2be8b331f422ffa7eb684acee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 397307, "upload_time": "2013-05-10T19:37:14", "url": "https://files.pythonhosted.org/packages/d2/96/f0c978b3cba1212a6bbe7a1d2e020cc0bda430930407a45d39e760b4e0c4/ZODB-4.0.0b1.tar.gz" } ], "4.0.0b2": [ { "comment_text": "", "digests": { "md5": "d3c59ac5aa64fb3d903f72e9912f3baf", "sha256": "1b73187b901f74c365f22eb89dcafa0043caef4b4f9946619069e9e3eca76c47" }, "downloads": -1, "filename": "ZODB-4.0.0b2.tar.gz", "has_sig": false, "md5_digest": "d3c59ac5aa64fb3d903f72e9912f3baf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 397594, "upload_time": "2013-05-14T21:06:50", "url": "https://files.pythonhosted.org/packages/3e/e1/90175c251788c1c32ba88fec72e5946c70a99affeaef5acf25bbd9ca0d65/ZODB-4.0.0b2.tar.gz" } ], "4.0.0b3": [ { "comment_text": "", "digests": { "md5": "9ee2ad1573097e7be8858befcaf90c5d", "sha256": "8eafbe3e851741c18925752d172c944f955ff566412eac6f20351d8801768e81" }, "downloads": -1, "filename": "ZODB-4.0.0b3.tar.gz", "has_sig": false, "md5_digest": "9ee2ad1573097e7be8858befcaf90c5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 398300, "upload_time": "2013-06-11T23:34:08", "url": "https://files.pythonhosted.org/packages/8e/70/0238baaee8b2308aaf2e5519b3ad2530fd6e23cc960abba35e9640e82225/ZODB-4.0.0b3.tar.gz" } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "092d787524b095164231742c96b32f50", "sha256": "c5d8ffcca37ab4d0a9bfffead6228d58c00cf1c78135abc98a8dbf05b8c8fb58" }, "downloads": -1, "filename": "ZODB-4.0.1.tar.gz", "has_sig": false, "md5_digest": "092d787524b095164231742c96b32f50", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 414566, "upload_time": "2014-07-13T21:02:28", "url": "https://files.pythonhosted.org/packages/a2/47/419071c21f0d6c44fd528214688b2f3a48c82cc8b96f1c5f7107ee3587a7/ZODB-4.0.1.tar.gz" } ], "4.1.0": [ { "comment_text": "", "digests": { "md5": "f3bafaa62e5beca29e616516a897a617", "sha256": "ee85731439e34994e1471a4f27fc556cc24fff58a1b4664baa9250e8bd0ee85f" }, "downloads": -1, "filename": "ZODB-4.1.0.tar.gz", "has_sig": false, "md5_digest": "f3bafaa62e5beca29e616516a897a617", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 461347, "upload_time": "2015-01-11T19:11:50", "url": "https://files.pythonhosted.org/packages/b1/a2/87aa9c753a5e2398764d8ecaf65e1995131eb58599cd651fb25d48cf1a76/ZODB-4.1.0.tar.gz" } ], "4.2.0": [ { "comment_text": "", "digests": { "md5": "2149fd897dac140ea9abbd6ad67b0774", "sha256": "0cadd0f0410c8c7e9a7311cbbc00231cb9376ac8e5d83332574fbcc938a7c6c5" }, "downloads": -1, "filename": "ZODB-4.2.0.tar.gz", "has_sig": true, "md5_digest": "2149fd897dac140ea9abbd6ad67b0774", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 408834, "upload_time": "2015-06-02T14:27:22", "url": "https://files.pythonhosted.org/packages/5b/45/cf219d22b8135c9766a12f10f8ce065128947e8979b4cbc033d6a2f45945/ZODB-4.2.0.tar.gz" } ], "4.2.0b1": [ { "comment_text": "", "digests": { "md5": "a8b6e1658bc99d3f0558c42ea2a77d5e", "sha256": "9639aeb0165d08898546c876d6dd0a6850ad935d623b47a9373b446884f99d83" }, "downloads": -1, "filename": "ZODB-4.2.0b1.tar.gz", "has_sig": true, "md5_digest": "a8b6e1658bc99d3f0558c42ea2a77d5e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 408693, "upload_time": "2015-05-22T12:41:28", "url": "https://files.pythonhosted.org/packages/7a/cf/4ca980bee21649ce2783d8b0e2dca28d76629f843dd1f31b6c8ff4288468/ZODB-4.2.0b1.tar.gz" } ], "4.3.0": [ { "comment_text": "", "digests": { "md5": "b54597b5fde57efccb33044ee151b9fc", "sha256": "feaab1164e2bed88a735355aad679493a9192d2155b1f406722d1bd776bd8352" }, "downloads": -1, "filename": "ZODB-4.3.0.tar.gz", "has_sig": false, "md5_digest": "b54597b5fde57efccb33044ee151b9fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 490370, "upload_time": "2016-05-31T14:30:00", "url": "https://files.pythonhosted.org/packages/58/cb/c07f67f2de420b5943269123f28d85e933bf71a88fe17dbe4e1f95ce4910/ZODB-4.3.0.tar.gz" } ], "4.3.1": [ { "comment_text": "", "digests": { "md5": "96b0e85e21e7cf507bdf3e0626efcdcf", "sha256": "fd1d44b703f6bb3e6add8a81a445c267162939a0c9d347b1493af9e0ffa371d2" }, "downloads": -1, "filename": "ZODB-4.3.1.tar.gz", "has_sig": false, "md5_digest": "96b0e85e21e7cf507bdf3e0626efcdcf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 490502, "upload_time": "2016-06-06T17:36:31", "url": "https://files.pythonhosted.org/packages/35/8e/2d4325004474165700082f39987fc3650a9d16b5de4bd059825fbc875aaa/ZODB-4.3.1.tar.gz" } ], "4.4.0": [ { "comment_text": "", "digests": { "md5": "2000e8c3ac6ec029b65d2dce6c6a2d80", "sha256": "15f99593c0664e353beb72ca04ad185d91d714b7db0ed98a86ef7e4342428e92" }, "downloads": -1, "filename": "ZODB-4.4.0.tar.gz", "has_sig": false, "md5_digest": "2000e8c3ac6ec029b65d2dce6c6a2d80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 430982, "upload_time": "2016-06-30T18:04:32", "url": "https://files.pythonhosted.org/packages/40/14/c6377dc00fcdab9dbbfabdab7fbb65b82a07b388c2e5aa1ee10325530f0f/ZODB-4.4.0.tar.gz" } ], "4.4.1": [ { "comment_text": "", "digests": { "md5": "05e6814af9c938df2f7eb1c538528ed0", "sha256": "355f5a51cfd4b8daac3151444bbfb2bb0134e89fdc8b1790c00abb9db851817f" }, "downloads": -1, "filename": "ZODB-4.4.1.tar.gz", "has_sig": false, "md5_digest": "05e6814af9c938df2f7eb1c538528ed0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 444249, "upload_time": "2016-07-01T19:23:01", "url": "https://files.pythonhosted.org/packages/80/08/82e0fc84f235f6d0e80f6e761b9ce51a6a2a4deda562247b7a04a5525904/ZODB-4.4.1.tar.gz" } ], "4.4.2": [ { "comment_text": "", "digests": { "md5": "205417bf5671c28db2217aeee8791c84", "sha256": "6355d2004add827901cf4bc4b547834544a6ab0c0ab6c49b66e8440e9e89d4bd" }, "downloads": -1, "filename": "ZODB-4.4.2.tar.gz", "has_sig": false, "md5_digest": "205417bf5671c28db2217aeee8791c84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 500396, "upload_time": "2016-07-08T22:11:36", "url": "https://files.pythonhosted.org/packages/55/35/e870ee6d933d02ff532f1bba761ef2c2397c642230f06a01d8904d7df73d/ZODB-4.4.2.tar.gz" } ], "4.4.3": [ { "comment_text": "", "digests": { "md5": "284a4dd1146fbb006af23ae54439fd4a", "sha256": "d7116c1ed83daf23fdbca9527512c2ba3d0058098b83e726fb2e62a228a3a451" }, "downloads": -1, "filename": "ZODB-4.4.3.tar.gz", "has_sig": false, "md5_digest": "284a4dd1146fbb006af23ae54439fd4a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 509710, "upload_time": "2016-08-04T13:25:18", "url": "https://files.pythonhosted.org/packages/da/1a/309fc273a7db21b55a5dbeb4ff97977f66643753b5f7006aff865b11233c/ZODB-4.4.3.tar.gz" } ], "4.4.4": [ { "comment_text": "", "digests": { "md5": "36b7a895d76a17fe01b066c621b891c5", "sha256": "b4de8c051a7eb609fcff54370690f17c5ffb4533024026d2e7a8f8b3d781782d" }, "downloads": -1, "filename": "ZODB-4.4.4.tar.gz", "has_sig": false, "md5_digest": "36b7a895d76a17fe01b066c621b891c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 470068, "upload_time": "2016-11-27T17:36:29", "url": "https://files.pythonhosted.org/packages/c1/ba/f77037a1b3ab929fb202d240758754b0bc11b0604b95e0046c19a58bb095/ZODB-4.4.4.tar.gz" } ], "4.4.5": [ { "comment_text": "", "digests": { "md5": "ef21e58f2460129b02c59fff59968fc2", "sha256": "0ee07a2ffa40a4af49b45af7c7ed8a313f8192fef4efeca884b07a50f9128564" }, "downloads": -1, "filename": "ZODB-4.4.5.tar.gz", "has_sig": true, "md5_digest": "ef21e58f2460129b02c59fff59968fc2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 398221, "upload_time": "2017-02-06T19:11:19", "url": "https://files.pythonhosted.org/packages/6e/07/b52e22bc37326e7f415906dc413d6a63749c6b707ccf26850dafe2fce863/ZODB-4.4.5.tar.gz" } ], "5.0.0": [ { "comment_text": "", "digests": { "md5": "bfa8d45206d9b98ec095194643614e3f", "sha256": "21844fff014021e801b30d50cdcd2128542e4edf4862efd4eaeccb2aa3505707" }, "downloads": -1, "filename": "ZODB-5.0.0.tar.gz", "has_sig": false, "md5_digest": "bfa8d45206d9b98ec095194643614e3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 467323, "upload_time": "2016-09-06T15:12:05", "url": "https://files.pythonhosted.org/packages/a5/b3/0577df5cc2be1a4efceb4d5f1375968595072e9e4889d71605d36e410a14/ZODB-5.0.0.tar.gz" } ], "5.0.0a1": [ { "comment_text": "", "digests": { "md5": "284e2bb021b4d30bf843c3e5c6ad21ab", "sha256": "c702a552a34e3a3a35a7e8b6d4b8e188e1479db5c533c246131b14244d832f48" }, "downloads": -1, "filename": "ZODB-5.0.0a1.tar.gz", "has_sig": false, "md5_digest": "284e2bb021b4d30bf843c3e5c6ad21ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 493642, "upload_time": "2016-06-20T20:42:12", "url": "https://files.pythonhosted.org/packages/f7/6e/a962cf6777a76e793841090fd680360f05ccc60cf7b198b34bee4e1f59b6/ZODB-5.0.0a1.tar.gz" } ], "5.0.0a2": [ { "comment_text": "", "digests": { "md5": "e77d9be165ff09216e037d806a3a49e6", "sha256": "6fcc707a8c4267f405f71e571092ee70d2e034797edf483888678d1c8d508ea7" }, "downloads": -1, "filename": "ZODB-5.0.0a2.tar.gz", "has_sig": false, "md5_digest": "e77d9be165ff09216e037d806a3a49e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 495805, "upload_time": "2016-07-01T18:31:03", "url": "https://files.pythonhosted.org/packages/03/46/7712711c459ddbc03edca155edc6b5939ce1d6a9cbb63752c9e988052052/ZODB-5.0.0a2.tar.gz" } ], "5.0.0a3": [ { "comment_text": "", "digests": { "md5": "c638453705c5363729bc574909c12089", "sha256": "2271364e628307b5447fded9730d1dfa5a88c58e65f3ed1e49e5f20ff315abcc" }, "downloads": -1, "filename": "ZODB-5.0.0a3.tar.gz", "has_sig": false, "md5_digest": "c638453705c5363729bc574909c12089", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 496268, "upload_time": "2016-07-01T19:25:02", "url": "https://files.pythonhosted.org/packages/83/68/8d8ef8eded4aff0b4e608a39e9caf63eeb9ee90d7fed59a0df3f9627f826/ZODB-5.0.0a3.tar.gz" } ], "5.0.0a4": [ { "comment_text": "", "digests": { "md5": "30d0696d8f908aff3019772c869eab9b", "sha256": "af8d9f2bde6c3157a64435e258c27987e5843052798da0a56ad5e1f6a3d11cd6" }, "downloads": -1, "filename": "ZODB-5.0.0a4.tar.gz", "has_sig": false, "md5_digest": "30d0696d8f908aff3019772c869eab9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 498973, "upload_time": "2016-07-05T18:01:43", "url": "https://files.pythonhosted.org/packages/ff/d1/c4b1521efd6392404e280bf01304d57e423e3637ea2772e175e5596e9ef7/ZODB-5.0.0a4.tar.gz" } ], "5.0.0a5": [ { "comment_text": "", "digests": { "md5": "0271721ef665779ef32eac16847bf9c2", "sha256": "1d7557bb40b50e131f8d5df2dcacf75f46061bfce3d412e7c2091dce0bfd411d" }, "downloads": -1, "filename": "ZODB-5.0.0a5.tar.gz", "has_sig": false, "md5_digest": "0271721ef665779ef32eac16847bf9c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 499238, "upload_time": "2016-07-06T12:55:49", "url": "https://files.pythonhosted.org/packages/d5/74/b949120bad290ee054ae288242968277e13f3a8063ef602f87ab05d7534a/ZODB-5.0.0a5.tar.gz" } ], "5.0.0a6": [ { "comment_text": "", "digests": { "md5": "476377d2919866694feae9d345dc2c3f", "sha256": "3d9b710fa9ed6f466144cca72c3e47af94c0d0baee372de19d69b1373cc8d85e" }, "downloads": -1, "filename": "ZODB-5.0.0a6.tar.gz", "has_sig": false, "md5_digest": "476377d2919866694feae9d345dc2c3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 507427, "upload_time": "2016-07-21T16:04:58", "url": "https://files.pythonhosted.org/packages/6f/b7/0baa13df908bd4e7bf0a2d91e4aaf7991d94bf4656c5e7f6c77e7b8d677a/ZODB-5.0.0a6.tar.gz" } ], "5.0.0b1": [ { "comment_text": "", "digests": { "md5": "98b36ff5f06f1a6a7dce6fb142778a0e", "sha256": "4669ffc7bf99137d74d2b5a2e831480b0f09292e646dac0db96fba345121fb40" }, "downloads": -1, "filename": "ZODB-5.0.0b1.tar.gz", "has_sig": false, "md5_digest": "98b36ff5f06f1a6a7dce6fb142778a0e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 507798, "upload_time": "2016-08-04T13:32:45", "url": "https://files.pythonhosted.org/packages/44/75/8d45e2594218941b1e51c3196e6cce431e18be93f6dbd0dc869a1fd0ee5e/ZODB-5.0.0b1.tar.gz" } ], "5.0.1": [ { "comment_text": "", "digests": { "md5": "c2aa7e59a45104021829a7e3cb3b96e5", "sha256": "04e0595ad62cde0fe967d66b539bd7c0a879e2b5f05d980be455c8bafb302b27" }, "downloads": -1, "filename": "ZODB-5.0.1.tar.gz", "has_sig": false, "md5_digest": "c2aa7e59a45104021829a7e3cb3b96e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 569592, "upload_time": "2016-11-17T12:20:57", "url": "https://files.pythonhosted.org/packages/57/b7/455de22336f6b4c52d6dde008788cc7ae66a19766c25772a7a050ae093ea/ZODB-5.0.1.tar.gz" } ], "5.1.0": [ { "comment_text": "", "digests": { "md5": "86d3d7593de67e1a3e222cc689256b12", "sha256": "744d79443c14cf502e76abc380d0d3950c284479cc46291737695ffa434321a9" }, "downloads": -1, "filename": "ZODB-5.1.0.tar.gz", "has_sig": false, "md5_digest": "86d3d7593de67e1a3e222cc689256b12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 571822, "upload_time": "2016-11-17T23:57:57", "url": "https://files.pythonhosted.org/packages/ab/d8/8fa8362335ad7c87c195b342b924f45495fac910ffcc47a921177232605b/ZODB-5.1.0.tar.gz" } ], "5.1.1": [ { "comment_text": "", "digests": { "md5": "3de98d3125634549a1b9d540a3592ba4", "sha256": "b0bbe6dfe60e2bdcf842a87abcc53b5cd15ad88ae2824c0c526cbb01ca0b90e5" }, "downloads": -1, "filename": "ZODB-5.1.1.tar.gz", "has_sig": false, "md5_digest": "3de98d3125634549a1b9d540a3592ba4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1247485, "upload_time": "2016-11-18T17:35:41", "url": "https://files.pythonhosted.org/packages/08/67/62d42c704edd64bcecddc29442a70535ebc7af46e232a5efa9fc572953f0/ZODB-5.1.1.tar.gz" } ], "5.2.0": [ { "comment_text": "", "digests": { "md5": "dea77c52836744ba05c509409015b527", "sha256": "1d7c5a06109acc72ca2efb6914ae7fe86acb31db1e0549d5be4e54ef69498486" }, "downloads": -1, "filename": "ZODB-5.2.0.tar.gz", "has_sig": false, "md5_digest": "dea77c52836744ba05c509409015b527", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 511490, "upload_time": "2017-02-09T18:06:23", "url": "https://files.pythonhosted.org/packages/1e/47/2f17075ca94a4a537ebd8e195c458456ef49aa67355ec805e478b8ad1959/ZODB-5.2.0.tar.gz" } ], "5.2.1": [ { "comment_text": "", "digests": { "md5": "18bf7a7e3e4faea3a1a6e36540f05951", "sha256": "a224c06b015d4c577f54f3ea0dba6c4de12071f5707b446fdd0fbd615853c351" }, "downloads": -1, "filename": "ZODB-5.2.1.tar.gz", "has_sig": false, "md5_digest": "18bf7a7e3e4faea3a1a6e36540f05951", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 510503, "upload_time": "2017-04-08T12:42:19", "url": "https://files.pythonhosted.org/packages/a4/b3/05cd18b04efd708d3cea0b5ac68d35945d52844f1bc68ce2a2d6d4790a45/ZODB-5.2.1.tar.gz" } ], "5.2.2": [ { "comment_text": "", "digests": { "md5": "0450d5afaf69c87f9c793150f5727be7", "sha256": "98442c676fd990e0e5201f234d499c91b90f10ce2ddfcee1993b917712fee350" }, "downloads": -1, "filename": "ZODB-5.2.2.tar.gz", "has_sig": false, "md5_digest": "0450d5afaf69c87f9c793150f5727be7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 509840, "upload_time": "2017-04-11T18:56:55", "url": "https://files.pythonhosted.org/packages/5a/08/aff03bec4e2df5a0f06dfc309f94be276c4266d870c0cacc883e13482ce7/ZODB-5.2.2.tar.gz" } ], "5.2.3": [ { "comment_text": "", "digests": { "md5": "47fc386cbe30ea4895acaaaba52ea8aa", "sha256": "74f984eac25cbe5d5cb825d716ac04fa4ef38733fa6166ede28c63a02a1615e1" }, "downloads": -1, "filename": "ZODB-5.2.3.tar.gz", "has_sig": false, "md5_digest": "47fc386cbe30ea4895acaaaba52ea8aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 509886, "upload_time": "2017-04-11T21:46:56", "url": "https://files.pythonhosted.org/packages/18/df/d6a373d7cdc1cd885779c47c9cf0c2493fcb8c81ce812a6483c09788c15f/ZODB-5.2.3.tar.gz" } ], "5.2.4": [ { "comment_text": "", "digests": { "md5": "1cf957ea57c457657583b888f62e477f", "sha256": "ecc1c9c1ef494a70ccfc03184bccb72421d72233e9dc4742ac58f5396d04cadf" }, "downloads": -1, "filename": "ZODB-5.2.4.tar.gz", "has_sig": false, "md5_digest": "1cf957ea57c457657583b888f62e477f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 510498, "upload_time": "2017-05-17T13:25:45", "url": "https://files.pythonhosted.org/packages/15/5a/1ffa400b7ca7b1df5dc0de2bd25e1d4946c258c797216b2aef6f0bf946b0/ZODB-5.2.4.tar.gz" } ], "5.3.0": [ { "comment_text": "", "digests": { "md5": "606b51a7a027d5bba2ed4269f3187c67", "sha256": "633c2f89481d8ebc55639b59216f7d16d07b44a94758850c0b887006967214f3" }, "downloads": -1, "filename": "ZODB-5.3.0.tar.gz", "has_sig": false, "md5_digest": "606b51a7a027d5bba2ed4269f3187c67", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "size": 509429, "upload_time": "2017-08-30T12:55:14", "url": "https://files.pythonhosted.org/packages/1f/c3/588e4e4aa8340ce7c81eb0e3d1ef5d2b8daa9dfc126c9f8509d7a8e70c8c/ZODB-5.3.0.tar.gz" } ], "5.4.0": [ { "comment_text": "", "digests": { "md5": "9e9b00fe3a81943445c9b3a07474c073", "sha256": "0b306042f4f0d558a477d65c34b0dd6e7604c6e583f55dfda52befa2fa13e076" }, "downloads": -1, "filename": "ZODB-5.4.0.tar.gz", "has_sig": false, "md5_digest": "9e9b00fe3a81943445c9b3a07474c073", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 514222, "upload_time": "2018-03-26T13:29:08", "url": "https://files.pythonhosted.org/packages/6a/8a/22c3b38ae95a61c861c1086609be9bdcddfe7ad4a912a5a74ee66e3bf638/ZODB-5.4.0.tar.gz" } ], "5.5.0": [ { "comment_text": "", "digests": { "md5": "684cab482e25b52154fb43ba65592a99", "sha256": "bde73b49803de4564bc426850ca84346357f899bd5cb6a772f99f7e603068356" }, "downloads": -1, "filename": "ZODB-5.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "684cab482e25b52154fb43ba65592a99", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 417875, "upload_time": "2018-10-13T17:59:45", "url": "https://files.pythonhosted.org/packages/a6/2f/53ec76f6526505e952f07eb87f8f0d8375ae6f4a0042fb472ed50512fb7d/ZODB-5.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5c4ca97f2f093b8718cd482ee1ca5394", "sha256": "a1fc0f925f5e9f0d43f6385ecd4aa653c8ee9f9b64dfedd54ab28f15c6b4c2a0" }, "downloads": -1, "filename": "ZODB-5.5.0.tar.gz", "has_sig": false, "md5_digest": "5c4ca97f2f093b8718cd482ee1ca5394", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 517632, "upload_time": "2018-10-13T17:59:47", "url": "https://files.pythonhosted.org/packages/c1/e0/1305c99998e25c48566087cb4e8956560b2f5199b91b432e76578b6a4386/ZODB-5.5.0.tar.gz" } ], "5.5.1": [ { "comment_text": "", "digests": { "md5": "680a9423d0ba37d6be5d018714dc9ca6", "sha256": "7b25ecb452033e1b26be30ec5a65ebb004044c9ed4312d62f94b0d0de8e185b5" }, "downloads": -1, "filename": "ZODB-5.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "680a9423d0ba37d6be5d018714dc9ca6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 412583, "upload_time": "2018-10-25T15:53:22", "url": "https://files.pythonhosted.org/packages/78/27/346776a8c1d9bcdfa1559688ae8461ccb2e5e876f275732d71aaf8529c9b/ZODB-5.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d26fac33b6d7898bc86bf0cac8900dcb", "sha256": "20155942fa326e89ad8544225bafd74237af332ce9d7c7105a22318fe8269666" }, "downloads": -1, "filename": "ZODB-5.5.1.tar.gz", "has_sig": false, "md5_digest": "d26fac33b6d7898bc86bf0cac8900dcb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 512395, "upload_time": "2018-10-25T15:53:24", "url": "https://files.pythonhosted.org/packages/f4/e5/7b4e40341d3f4bf5d3de88ac5670be34c017810dcb4266b809698cf7655a/ZODB-5.5.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "680a9423d0ba37d6be5d018714dc9ca6", "sha256": "7b25ecb452033e1b26be30ec5a65ebb004044c9ed4312d62f94b0d0de8e185b5" }, "downloads": -1, "filename": "ZODB-5.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "680a9423d0ba37d6be5d018714dc9ca6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 412583, "upload_time": "2018-10-25T15:53:22", "url": "https://files.pythonhosted.org/packages/78/27/346776a8c1d9bcdfa1559688ae8461ccb2e5e876f275732d71aaf8529c9b/ZODB-5.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d26fac33b6d7898bc86bf0cac8900dcb", "sha256": "20155942fa326e89ad8544225bafd74237af332ce9d7c7105a22318fe8269666" }, "downloads": -1, "filename": "ZODB-5.5.1.tar.gz", "has_sig": false, "md5_digest": "d26fac33b6d7898bc86bf0cac8900dcb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 512395, "upload_time": "2018-10-25T15:53:24", "url": "https://files.pythonhosted.org/packages/f4/e5/7b4e40341d3f4bf5d3de88ac5670be34c017810dcb4266b809698cf7655a/ZODB-5.5.1.tar.gz" } ] }