{ "info": { "author": "Zope Corporation", "author_email": "zodb-dev@zope.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 6 - Mature", "Framework :: ZODB", "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": "============\nTransactions\n============\n\n.. image:: https://travis-ci.org/zopefoundation/transaction.svg?branch=master\n :target: https://travis-ci.org/zopefoundation/transaction\n\n.. image:: https://readthedocs.org/projects/transaction/badge/?version=latest\n :target: http://transaction.readthedocs.org/en/latest/\n :alt: Documentation Status\n\n.. image:: https://img.shields.io/pypi/v/transaction.svg\n :target: https://pypi.python.org/pypi/transaction\n :alt: PyPI\n\n.. image:: https://img.shields.io/pypi/pyversions/transaction.svg\n :target: https://pypi.python.org/pypi/transaction\n :alt: Python versions\n\nThis package contains a generic transaction implementation for Python. It is\nmainly used by the ZODB.\n\nSee http://transaction.readthedocs.org/en/latest for narrative documentation\non its usage.\n\n\n\n=========\n Changes\n=========\n\n2.4.0 (2018-10-23)\n==================\n\n- Changed the implementation of ThreadTransactionManager to be a\n thread.local that wraps a TransactionManager rather than a\n thread.local that inherits from TransactionManager. It now exposes a\n manager attribute that allows access to the wrapped transaction\n manager to allow cross thread calls. See `issue 68\n `_.\n\n\n2.3.0 (2018-10-19)\n==================\n\n- Add support for Python 3.7.\n\n- Reach 100% test coverage.\n\n- Fix ``transaction.manager.run`` formatting transaction notes when\n given a mix of byte and text strings, such as can happen in Python 2\n with ``unicode_literals``.\n\n2.2.1 (2018-03-27)\n==================\n\n- Make documentation index more user friendly; move old docs to developer\n section.\n\n- Don't crash when printing tracebacks in IPython on Python 2.\n (This addresses https://github.com/zopefoundation/transaction/issues/5.)\n\n\n2.2.0 (2018-02-27)\n==================\n\n- Add support for Python 3.6.\n\n- Drop support for Python 3.3.\n\n- Add ``isRetryableError`` to the\n ``transaction.interfaces.ITransaction`` interface to allow external\n systems to query whether an exception is retryable (transient) by\n any of the attached data managers. Any\n ``transaction.interfaces.TransientError`` is considered retryable\n but a data manager may also consider other exceptions on a\n per-instance basis.\n\n See https://github.com/zopefoundation/transaction/pull/38\n\n\n2.1.2 (2017-03-11)\n==================\n\n- To avoid leaking memory, don't include unexpected value in warnings\n about non-text transaction meta data.\n\n\n2.1.1 (2017-03-11)\n==================\n\n- For backward compatibility, relax the requirements that transaction\n meta data (user or description) be text:\n\n - If None is assigned, the assignment is ignored.\n\n - If a non-text value is assigned, a warning is issued and the value\n is converted to text. If the value is a binary string, it will be\n decoded with the UTF-8 encoding the ``replace`` error policy.\n\n\n2.1.0 (2017-02-08)\n==================\n\nAdded a transaction-manager explicit mode. Explicit mode makes some\nkinds of application bugs easier to detect and potentially allows data\nmanagers to manage resources more efficiently.\n\n(This addresses https://github.com/zopefoundation/transaction/issues/35.)\n\n2.0.3 (2016-11-17)\n==================\n\n- The user and description fields must now be set with text (unicode)\n data. Previously, if bytes were provided, they'd be decoded as\n ASCII. It was decided that this would lead to bugs that were hard\n to test for.\n\n Also, the transaction meta-data field, ``extended_info`` has been\n renamed to ``extension``.\n\n2.0.2 (2016-11-13)\n==================\n\n- Fixed: Some legacy applications expect the transaction _extension\n attribute to be mutable and it wasn't.\n\n2.0.1 (2016-11-11)\n==================\n\n- The transaction ``user`` and ``description`` attributes are now\n defined to be text (unicode) as opposed to Python the ``str`` type.\n\n- Added the ``extended_info`` transaction attribute which contains\n transaction meta data. (The ``_extension`` attribute is retained as\n an alias for backward compatibility.)\n\n The transaction interface, ``ITransaction``, now requires\n ``extended_info`` keys to be text (unicode) and values to be\n JSON-serializable.\n\n- Removed setUser from ITransaction. We'll keep the method\n indefinitely, but it's unseemly in ITransaction. :)\n\nThe main purpose of these changes is to tighten up the text\nspecification of user, description and extended_info keys, and to give\nus more flexibility in the future for serializing extended info. It's\npossible that these changes will be breaking, so we're also increasing\nthe major version number.\n\n1.7.0 (2016-11-08)\n==================\n\n- Added a transaction-manager ``run`` method for running a function as a\n transaction, retrying as necessary on transient errors.\n\n- Fixed the transaction manager ``attempts`` method. It didn't stop\n repeating when there wasn't an error.\n\n- Corrected ITransaction by removing beforeCommitHook (which is no longer\n implemented) and removing 'self' from two methods.\n\n1.6.1 (2016-06-10)\n==================\n\n- Fixed: Synchonizers that registered with transaction managers when\n transactions were in progress didn't have their newTransaction\n methods called to let them know of the in-progress transactions.\n\n1.6.0 (2016-05-21)\n==================\n\n- New transaction API for storing data on behalf of objects, such as\n data managers.\n\n- Drop references to data managers joined to a transaction when it is\n committed or aborted.\n\n1.5.0 (2016-05-05)\n==================\n\n- Drop support for Python 2.6 and 3.2.\n\n- Add support for Python 3.5.\n\n- Added APIs for interogating and clearing internal state to support\n client tests.\n\n1.4.4 (2015-05-19)\n==================\n\n- Use the standard ``valuerefs()`` method rather than relying on\n implementation details of ``WeakValueDictionary`` in ``WeakSet``.\n\n- Add support for PyPy3.\n\n- Require 100% branch coverage (in addition to 100% statement coverage).\n\n1.4.3 (2014-03-20)\n==================\n\n- Add support for Python 3.4.\n\n1.4.2 (skipped)\n===============\n\n- Released in error as 1.4.3.\n\n1.4.1 (2013-02-20)\n==================\n\n- Document that values returned by ``sortKey`` must be strings, in order\n to guarantee total ordering.\n\n- Fix occasional RuntimeError: dictionary changed size during iteration errors\n in transaction.weakset on Python 3.\n\n1.4.0 (2013-01-03)\n==================\n\n- Updated Trove classifiers.\n\n1.4.0b1 (2012-12-18)\n====================\n\n- Converted existing doctests into Sphinx documentation (snippets are\n exercised via 'tox').\n\n- 100% unit test coverage.\n\n- Backward incompatibility: raise ValueError rather than AssertionError\n for runtime errors:\n\n - In ``Transaction.doom`` if the transaction is in a non-doomable state.\n\n - In ``TransactionManager.attempts`` if passed a non-positive value.\n\n - In ``TransactionManager.free`` if passed a foreign transaction.\n\n- Declared support for Python 3.3 in ``setup.py``, and added ``tox`` testing.\n\n- When a non-retryable exception was raised as the result of a call to\n ``transaction.manager.commit`` within the \"attempts\" machinery, the\n exception was not reraised properly. Symptom: an unrecoverable exception\n such as ``Unsupported: Storing blobs in is not supported.``\n would be swallowed inappropriately.\n\n1.3.0 (2012-05-16)\n==================\n\n- Added Sphinx API docuementation.\n\n- Added explicit support for PyPy.\n\n- Dropped use of Python3-impatible ``zope.interface.implements`` class\n advisor in favor of ``zope.interface.implementer`` class decorator.\n\n- Added support for continuous integration using ``tox`` and ``jenkins``.\n\n- Added ``setup.py docs`` alias (installs ``Sphinx`` and dependencies).\n\n- Added ``setup.py dev`` alias (runs ``setup.py develop`` plus installs\n ``nose`` and ``coverage``).\n\n- Python 3.3 compatibility.\n\n- Fix \"for attempt in transaction.attempts(x)\" machinery, which would not\n retry a transaction if its implicit call to ``.commit()`` itself raised a\n transient error. Symptom: seeing conflict errors even though you thought\n you were retrying some number of times via the \"attempts\" machinery (the\n first attempt to generate an exception during commit would cause that\n exception to be raised).\n\n1.2.0 (2011-12-05)\n==================\n\nNew Features:\n\n- Python 3.2 compatibility.\n\n- Dropped Python 2.4 and 2.5 compatibility (use 1.1.1 if you need to use\n \"transaction\" under these Python versions).\n\n1.1.1 (2010-09-16)\n==================\n\nBug Fixes:\n\n- Code in ``_transaction.py`` held on to local references to traceback\n objects after calling ``sys.exc_info()`` to get one, causing\n potential reference leakages.\n\n- Fixed ``hexlify`` NameError in ``transaction._transaction.oid_repr``\n and add test.\n\n1.1.0 (1010-05-12)\n==================\n\nNew Features:\n\n- Transaction managers and the transaction module can be used with the\n with statement to define transaction boundaries, as in::\n\n with transaction:\n ... do some things ...\n\n See transaction/tests/convenience.txt for more details.\n\n- There is a new iterator function that automates dealing with\n transient errors (such as ZODB confict errors). For example, in::\n\n for attempt in transaction.attempts(5):\n with attempt:\n ... do some things ..\n\n If the work being done raises transient errors, the transaction will\n be retried up to 5 times.\n\n See transaction/tests/convenience.txt for more details.\n\nBugs fixed:\n\n- Fixed a bug that caused extra commit calls to be made on data\n managers under certain special circumstances.\n\n https://mail.zope.org/pipermail/zodb-dev/2010-May/013329.html\n\n- When threads were reused, transaction data could leak accross them,\n causing subtle application bugs.\n\n https://bugs.launchpad.net/zodb/+bug/239086\n\n1.0.1 (2010-05-07)\n==================\n\n- LP #142464: remove double newline between log entries: it makes doing\n smarter formatting harder.\n\n- Updated tests to remove use of deprecated ``zope.testing.doctest``.\n\n1.0.0 (2009-07-24)\n==================\n\n- Fix test that incorrectly relied on the order of a list that was generated\n from a dict.\n\n- Remove crufty DEPENDENCIES.cfg left over from zpkg.\n\n1.0a1 (2007-12-18)\n==================\n\n= Initial release, branched from ZODB trunk on 2007-11-08 (aka\n \"3.9.0dev\").\n\n- Remove (deprecated) support for beforeCommitHook alias to\n addBeforeCommitHook.\n\n- Add weakset tests.\n\n- Remove unit tests that depend on ZODB.tests.utils from\n test_transaction (these are actually integration tests).\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/zopefoundation/transaction", "keywords": "", "license": "ZPL 2.1", "maintainer": "", "maintainer_email": "", "name": "transaction", "package_url": "https://pypi.org/project/transaction/", "platform": "any", "project_url": "https://pypi.org/project/transaction/", "project_urls": { "Homepage": "https://github.com/zopefoundation/transaction" }, "release_url": "https://pypi.org/project/transaction/2.4.0/", "requires_dist": [ "zope.interface", "Sphinx; extra == 'docs'", "repoze.sphinx.autointerface; extra == 'docs'", "mock; extra == 'test'", "nose; extra == 'testing'", "coverage; extra == 'testing'", "mock; extra == 'testing'" ], "requires_python": "", "summary": "Transaction management for Python", "version": "2.4.0" }, "last_serial": 4406651, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "10b5d02dcded26f6f265771e6d68fc06", "sha256": "5c282e0f846a4d90d7435341b9e68e731f43cdf5879f897c1336057976584adc" }, "downloads": -1, "filename": "transaction-1.0.0.tar.gz", "has_sig": false, "md5_digest": "10b5d02dcded26f6f265771e6d68fc06", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35623, "upload_time": "2009-07-24T13:54:35", "url": "https://files.pythonhosted.org/packages/8f/92/6990764b7f4b363364b1c6dc33a2994a2744d447211c17197493c7fa7d59/transaction-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "d8f3fc90e3a270b17960a1e0665a316e", "sha256": "ccaa50c05d2a950a53fc14092fc220c7fec53777d80711804dc82aacbdf6668c" }, "downloads": -1, "filename": "transaction-1.0.1.tar.gz", "has_sig": false, "md5_digest": "d8f3fc90e3a270b17960a1e0665a316e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34890, "upload_time": "2010-05-07T17:40:02", "url": "https://files.pythonhosted.org/packages/e2/7e/86e8b864d0cfc44d5b5ed9effd55b67b5ea00a11c05858db7b80b6f25d0e/transaction-1.0.1.tar.gz" } ], "1.0a1": [ { "comment_text": "", "digests": { "md5": "93b4f5d753b4ba99b201cce05c25e549", "sha256": "0e2f2900217b9bfa22b884ad92a9dbab8dd1245a263456039815bcfe4fa2394b" }, "downloads": -1, "filename": "transaction-1.0a1.tar.gz", "has_sig": false, "md5_digest": "93b4f5d753b4ba99b201cce05c25e549", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35392, "upload_time": "2007-12-19T01:02:53", "url": "https://files.pythonhosted.org/packages/14/1d/32b762d5007bc4e3ba800289a5752db2be615140e281997d1a197a70f858/transaction-1.0a1.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "0447d43034d24b8d43576ea16acf37e2", "sha256": "c84606443d306fd8252b5ac4f7dd1b2bd6f5f989a3af301db32b6ba1164dae38" }, "downloads": -1, "filename": "transaction-1.1.0.tar.gz", "has_sig": false, "md5_digest": "0447d43034d24b8d43576ea16acf37e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39712, "upload_time": "2010-05-13T00:25:04", "url": "https://files.pythonhosted.org/packages/17/45/147580570b85a4ba4137b8095ba2405cb43b15e193dd10b26834d6bb60e6/transaction-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "30b062baa34fe1521ad979fb088c8c55", "sha256": "3e00f6db97297cd2ff869b3d32109019bf898d925593926d729d546a47660ca9" }, "downloads": -1, "filename": "transaction-1.1.1.tar.gz", "has_sig": false, "md5_digest": "30b062baa34fe1521ad979fb088c8c55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37391, "upload_time": "2010-09-17T03:52:44", "url": "https://files.pythonhosted.org/packages/01/95/ef0ffb1d9cd39072dc4c38ddfe181d95de696f0567eb0f862935887fd497/transaction-1.1.1.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "48bb47e69df085d01ebec185705b3a7f", "sha256": "41ac906c58c4cbf3635956f0cf5b4dee783dec285ac037852484f0a21181c773" }, "downloads": -1, "filename": "transaction-1.2.0.tar.gz", "has_sig": false, "md5_digest": "48bb47e69df085d01ebec185705b3a7f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42272, "upload_time": "2011-12-05T22:14:42", "url": "https://files.pythonhosted.org/packages/42/1b/189e34b5b1a6e4324ed85c4e8f7417bed0dffba090dd0d40e8e710628375/transaction-1.2.0.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "79c7a2b1e8232c1014e6dacbf3fc4742", "sha256": "9e210b5bc459e62d7d1ef879c21231a4d864bc24977d25ad2e2d2ebc25e54760" }, "downloads": -1, "filename": "transaction-1.3.0.tar.gz", "has_sig": false, "md5_digest": "79c7a2b1e8232c1014e6dacbf3fc4742", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49603, "upload_time": "2012-05-16T23:18:28", "url": "https://files.pythonhosted.org/packages/01/15/c80c4fdeb516c7a30c77e252594e3824446cb5be78788491df33f57786a8/transaction-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "b7c2ff135939f605a8c54e1c13cd5d66", "sha256": "19d41c018f1c012768c6cb3f3a79a9c7668bf34a323099318607d3dced8d2c9a" }, "downloads": -1, "filename": "transaction-1.4.0.tar.gz", "has_sig": false, "md5_digest": "b7c2ff135939f605a8c54e1c13cd5d66", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58550, "upload_time": "2013-01-03T21:39:05", "url": "https://files.pythonhosted.org/packages/ba/9b/a743137e8e6e894d8ff7958fc7805c0c585286cb128351ad4648f01c7bc4/transaction-1.4.0.tar.gz" } ], "1.4.0b1": [ { "comment_text": "", "digests": { "md5": "9bacf3e7b2f9edf1fa8d01ac2c401e49", "sha256": "4250f3f43c4cf71a5a00393a698d222609a1580ac769e456ef1512dd67dd1c7e" }, "downloads": -1, "filename": "transaction-1.4.0b1.tar.gz", "has_sig": false, "md5_digest": "9bacf3e7b2f9edf1fa8d01ac2c401e49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58435, "upload_time": "2012-12-18T05:43:41", "url": "https://files.pythonhosted.org/packages/42/3b/805de412cd9d7f5896cf9be6f3fb8714f0a163a2f5a04ad2a11a7ad49402/transaction-1.4.0b1.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "8db2680bc0f999219861a67b8f335a88", "sha256": "252d51aa0540a7af4097ff2e1829495e4744563f4b82dd054307eb40734b29de" }, "downloads": -1, "filename": "transaction-1.4.1.zip", "has_sig": false, "md5_digest": "8db2680bc0f999219861a67b8f335a88", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77817, "upload_time": "2013-02-20T15:45:11", "url": "https://files.pythonhosted.org/packages/d3/32/e2ec076a92c9a672362b988d61fe4136edc41046746b1629eb95d723c6c2/transaction-1.4.1.zip" } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "b4ca5983c9e3a0808ff5ff7648092c76", "sha256": "1b2304a886a85ad014f73d93346c14350fc214ae22a4f565f42f6761cfb9ecc5" }, "downloads": -1, "filename": "transaction-1.4.3.tar.gz", "has_sig": false, "md5_digest": "b4ca5983c9e3a0808ff5ff7648092c76", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 332882, "upload_time": "2014-03-20T19:35:11", "url": "https://files.pythonhosted.org/packages/9d/9d/afb5c4904fb41edc14029744ff030ac0596846262bda6145edf23791c880/transaction-1.4.3.tar.gz" } ], "1.4.4": [ { "comment_text": "", "digests": { "md5": "a6d6d6fa18e44d1644518bb7d61eac92", "sha256": "1781a0c74e3d2320a2a7fc048ff0d51b790d4f81062c8fcb12e3d29968646f34" }, "downloads": -1, "filename": "transaction-1.4.4.tar.gz", "has_sig": true, "md5_digest": "a6d6d6fa18e44d1644518bb7d61eac92", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60886, "upload_time": "2015-05-19T21:12:58", "url": "https://files.pythonhosted.org/packages/87/53/b2b35be9aea0f4cb361c92e71fb6d0ced5ce896df24b7a56d75579caa8dc/transaction-1.4.4.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "dd9998c1ab75db32c4e2f7fd3ac535f0", "sha256": "142a658b6f384fb01ba8f0904815a55d30e4ba3db91db768cb5809fad046c0fe" }, "downloads": -1, "filename": "transaction-1.5.0.tar.gz", "has_sig": false, "md5_digest": "dd9998c1ab75db32c4e2f7fd3ac535f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58912, "upload_time": "2016-05-05T12:38:46", "url": "https://files.pythonhosted.org/packages/af/f4/9f42d9f917a859d7075fade8e7d10ef6236355ece57b54d4a3fe66ac3266/transaction-1.5.0.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "eb4d2a5b5d6c9d1ba44c4afaa625faa3", "sha256": "3a053d39b393fa0577d529c3f45ee711f988ec95903a6bfd67842bc4a5307855" }, "downloads": -1, "filename": "transaction-1.6.0.tar.gz", "has_sig": false, "md5_digest": "eb4d2a5b5d6c9d1ba44c4afaa625faa3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66819, "upload_time": "2016-05-21T20:29:45", "url": "https://files.pythonhosted.org/packages/da/2a/8ecce8abd6a361b937d488c53fd69302533bb7a56015304c0cd8645e0eb2/transaction-1.6.0.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "c4d06a981434735f6d750013a1cfa0c5", "sha256": "fde4b9f76343a232744ed333ec98dd32d70982be1ccd2c131115324b73ace9c9" }, "downloads": -1, "filename": "transaction-1.6.1.tar.gz", "has_sig": false, "md5_digest": "c4d06a981434735f6d750013a1cfa0c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67472, "upload_time": "2016-06-10T21:47:30", "url": "https://files.pythonhosted.org/packages/b8/55/7dfb7a5701b25459dc9e0d2d21a965b59a2bd818b229fa35467b61c068da/transaction-1.6.1.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "241329c80b3123a45b962df15452356b", "sha256": "e500d002d4c0fa2c7947a31bac433803198e5dd436ae68037929a9972597f194" }, "downloads": -1, "filename": "transaction-1.7.0.tar.gz", "has_sig": false, "md5_digest": "241329c80b3123a45b962df15452356b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70081, "upload_time": "2016-11-08T17:57:07", "url": "https://files.pythonhosted.org/packages/be/13/adbd15c6c92ae60079aac322db2d4e6424ec98b68a00b442419bfe6a1ab9/transaction-1.7.0.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "91a7ba1e6ec726d86eb1b051f8108bb6", "sha256": "b465fb13e6fa4f8723300d61e63868a7689f48acb8e35fba31d8140bc370a893" }, "downloads": -1, "filename": "transaction-2.0.0.tar.gz", "has_sig": false, "md5_digest": "91a7ba1e6ec726d86eb1b051f8108bb6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71818, "upload_time": "2016-11-11T21:11:37", "url": "https://files.pythonhosted.org/packages/5e/5a/a5a9f98e1109ae02ff1ba568b987acabc0a60bdaeff5ea343a994c15823f/transaction-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "c72efbf7c0386633d3f4407ac657df39", "sha256": "c361fc9eb228728c04de7d3395fd68b896c07674444a367fcd09e79f4564c38d" }, "downloads": -1, "filename": "transaction-2.0.1.tar.gz", "has_sig": false, "md5_digest": "c72efbf7c0386633d3f4407ac657df39", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71830, "upload_time": "2016-11-11T21:13:58", "url": "https://files.pythonhosted.org/packages/0b/da/21a7af23721a5b31ae522c12b14fd34ae575994fc521bca4cdaeef2f06dc/transaction-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "0663d9567622cfe50f8b1e81a1664988", "sha256": "6ec899bde259f42b318bc906091bf58d6cb3ca4a1346de2cbfc22da04e6e6af6" }, "downloads": -1, "filename": "transaction-2.0.2.tar.gz", "has_sig": false, "md5_digest": "0663d9567622cfe50f8b1e81a1664988", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72222, "upload_time": "2016-11-13T21:12:19", "url": "https://files.pythonhosted.org/packages/e0/96/9e8fca2d777b9e47c94079d7bc5f3297140430f09c54cf16baa6f201d471/transaction-2.0.2.tar.gz" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "4d4b4a886227e9b079a93b7f898452ad", "sha256": "67bfb81309ba9717edbb2ca2e5717c325b78beec0bf19f44e5b4b9410f82df7f" }, "downloads": -1, "filename": "transaction-2.0.3.tar.gz", "has_sig": false, "md5_digest": "4d4b4a886227e9b079a93b7f898452ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72859, "upload_time": "2016-11-17T20:51:36", "url": "https://files.pythonhosted.org/packages/8c/af/3ffafe85bcc93ecb09459f3f2bd8fbe142e9ab34048f9e2774543b470cbd/transaction-2.0.3.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "81be1e3436eac18e1ce798baf71985fb", "sha256": "a44f2676b6b0b7a286fc35fb4defb5d4bd9e9dce328c5e8d85ee3a4215ead0e5" }, "downloads": -1, "filename": "transaction-2.1.0.tar.gz", "has_sig": false, "md5_digest": "81be1e3436eac18e1ce798baf71985fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64001, "upload_time": "2017-02-08T15:34:47", "url": "https://files.pythonhosted.org/packages/d9/ca/06be0d87541ef489eda72039cc1f290c41150fc631b74668abbb2139a08f/transaction-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "d98e00a2a41a300ba9ab56f36e92e9ae", "sha256": "f3e11aefb2a73c9d6d9c8bd89eb69939932cc453f14ad1cafe32a227e45b0a76" }, "downloads": -1, "filename": "transaction-2.1.1.tar.gz", "has_sig": false, "md5_digest": "d98e00a2a41a300ba9ab56f36e92e9ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65019, "upload_time": "2017-03-11T13:17:54", "url": "https://files.pythonhosted.org/packages/1c/29/bd34ebe5acbbe88f0cf1aa2cd929f23bd708432036c59520938a1ac304ff/transaction-2.1.1.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "0db3eb2861b24ff6e92f6c0e39c0e4ab", "sha256": "994ba6b5d0bb9aeb573624ff55e6ca286128decec3ecaa4cb02e864e60ccfe63" }, "downloads": -1, "filename": "transaction-2.1.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "0db3eb2861b24ff6e92f6c0e39c0e4ab", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 51978, "upload_time": "2017-06-13T21:06:13", "url": "https://files.pythonhosted.org/packages/e8/c9/bc6d102efdd89ba4b661d7efdcf18df62bab5fcb630c896e6551ca85f1e4/transaction-2.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "375a7f9d434ad0e9bf2039a3a0588e2b", "sha256": "b9bc365e7dba3877e0f6fdee32aa029b8c0c1eb4fe227f524bffd5fc46064bd5" }, "downloads": -1, "filename": "transaction-2.1.2.tar.gz", "has_sig": false, "md5_digest": "375a7f9d434ad0e9bf2039a3a0588e2b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65104, "upload_time": "2017-03-11T19:39:21", "url": "https://files.pythonhosted.org/packages/27/c5/27f1953db67de21832fd977684e639e41c7738dc449886419bb2aa235094/transaction-2.1.2.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "d2307b022052e66dc163598aaa1f2a2a", "sha256": "49db1c301a7d081842d4315389d213d1463f352751136d3128007df3e6e82122" }, "downloads": -1, "filename": "transaction-2.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d2307b022052e66dc163598aaa1f2a2a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 52212, "upload_time": "2018-02-27T14:44:10", "url": "https://files.pythonhosted.org/packages/df/fa/3ff0580e506076626d51d3eb3d4a84826f45c1c0bb771a351c7cafba06a2/transaction-2.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4ec755de2c56467a5940070775b68dcb", "sha256": "714d6883dfd5f41f454afce716c58bb59ba10af3d23562b5be781cbbd6fb5100" }, "downloads": -1, "filename": "transaction-2.2.0.tar.gz", "has_sig": false, "md5_digest": "4ec755de2c56467a5940070775b68dcb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67145, "upload_time": "2018-02-27T14:44:11", "url": "https://files.pythonhosted.org/packages/ba/58/7c938343ee52cae4c1d3b857ad7546b839a4dc507b3b6363f2a774a1f71d/transaction-2.2.0.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "3cd4ab7600dc0d77bbfb296b129715df", "sha256": "9de0f93f833713270fbceaf6092194313c1de0afb660e66dea8e089855eb281c" }, "downloads": -1, "filename": "transaction-2.2.1-py2-none-any.whl", "has_sig": false, "md5_digest": "3cd4ab7600dc0d77bbfb296b129715df", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 52591, "upload_time": "2018-03-27T16:15:31", "url": "https://files.pythonhosted.org/packages/f9/e1/179c5b97e7a59270bde00345ea4ce10460965a45aa73efd59a2f7989a757/transaction-2.2.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "29cd33a81608ea1a1e4081f713c42bdb", "sha256": "269601a3493cd3eddeb869419ceadfc5e6d2bc931e9970d11fc4649dab189c3c" }, "downloads": -1, "filename": "transaction-2.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "29cd33a81608ea1a1e4081f713c42bdb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 52593, "upload_time": "2018-03-27T16:17:49", "url": "https://files.pythonhosted.org/packages/2e/fb/e4fd7f99e2349c86275037fa5ddd9a3700174df4779e6fd4b61408726f75/transaction-2.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d53fe02ba01b60787a86f9fb996ef04d", "sha256": "f2242070e437e5d555ea3df809cb517860513254c828f33847df1c5e4b776c7a" }, "downloads": -1, "filename": "transaction-2.2.1.tar.gz", "has_sig": false, "md5_digest": "d53fe02ba01b60787a86f9fb996ef04d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72930, "upload_time": "2018-03-27T16:15:32", "url": "https://files.pythonhosted.org/packages/a6/5e/09da91cb9373c73aae41721e5571c47db72fa9e11b259ca8fd3b01e306e9/transaction-2.2.1.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "c335bc3fe9a8b49420883b998bd70f31", "sha256": "dada6d14a175959bfbdb2ffdf889bf7929a77bd6ee29954ce714b08002dfcffe" }, "downloads": -1, "filename": "transaction-2.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c335bc3fe9a8b49420883b998bd70f31", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 47884, "upload_time": "2018-10-19T11:08:47", "url": "https://files.pythonhosted.org/packages/88/b6/b2171eb214e0829378774deb6f4c51909208dfdbb9d44ee8cd3e2afbd822/transaction-2.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fd8266fa7861b55dbad9a5300599bdb9", "sha256": "f917cbdf9f730e9d7f312746c5724c7bce0c6d13b75b93db1d2c6fe5393b53d9" }, "downloads": -1, "filename": "transaction-2.3.0.tar.gz", "has_sig": false, "md5_digest": "fd8266fa7861b55dbad9a5300599bdb9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70291, "upload_time": "2018-10-19T11:08:49", "url": "https://files.pythonhosted.org/packages/61/a2/79aa16998bf8641b81e3cc5e096ac820f4e7174b73eac54e533ef788c400/transaction-2.3.0.tar.gz" } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "f0009760a8725996ca325f237e4ca5d4", "sha256": "b96a5e9aaa73f905759bc9ccf0021bf4864c01ac36666e0d28395e871f6d584a" }, "downloads": -1, "filename": "transaction-2.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f0009760a8725996ca325f237e4ca5d4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 48770, "upload_time": "2018-10-23T14:27:13", "url": "https://files.pythonhosted.org/packages/21/38/499bcc737411b00ea969fdc82e1ff56925a0ea634fe03173e18fbdd59015/transaction-2.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "214cf505a4cf8c190fc334569be2f659", "sha256": "726059c461b9ec4e69e5bead6680667a3db01bf2adf901f23e4031228a0f9f9f" }, "downloads": -1, "filename": "transaction-2.4.0.tar.gz", "has_sig": false, "md5_digest": "214cf505a4cf8c190fc334569be2f659", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71514, "upload_time": "2018-10-23T14:27:14", "url": "https://files.pythonhosted.org/packages/9d/7d/0e8af0d059e052b9dcf2bb5a08aad20ae3e238746bdd3f8701a60969b363/transaction-2.4.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f0009760a8725996ca325f237e4ca5d4", "sha256": "b96a5e9aaa73f905759bc9ccf0021bf4864c01ac36666e0d28395e871f6d584a" }, "downloads": -1, "filename": "transaction-2.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f0009760a8725996ca325f237e4ca5d4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 48770, "upload_time": "2018-10-23T14:27:13", "url": "https://files.pythonhosted.org/packages/21/38/499bcc737411b00ea969fdc82e1ff56925a0ea634fe03173e18fbdd59015/transaction-2.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "214cf505a4cf8c190fc334569be2f659", "sha256": "726059c461b9ec4e69e5bead6680667a3db01bf2adf901f23e4031228a0f9f9f" }, "downloads": -1, "filename": "transaction-2.4.0.tar.gz", "has_sig": false, "md5_digest": "214cf505a4cf8c190fc334569be2f659", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71514, "upload_time": "2018-10-23T14:27:14", "url": "https://files.pythonhosted.org/packages/9d/7d/0e8af0d059e052b9dcf2bb5a08aad20ae3e238746bdd3f8701a60969b363/transaction-2.4.0.tar.gz" } ] }