{ "info": { "author": "Zope Foundation and Contributors", "author_email": "zope-dev@zope.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Zope :: 3", "Intended Audience :: Developers", "License :: OSI Approved :: Zope Public License", "Natural Language :: English", "Operating System :: OS Independent", "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 :: Internet :: WWW/HTTP" ], "description": "==============\n zope.session\n==============\n\n.. image:: https://img.shields.io/pypi/v/zope.session.svg\n :target: https://pypi.python.org/pypi/zope.session/\n :alt: Latest release\n\n.. image:: https://img.shields.io/pypi/pyversions/zope.session.svg\n :target: https://pypi.org/project/zope.session/\n :alt: Supported Python versions\n\n.. image:: https://travis-ci.org/zopefoundation/zope.session.svg?branch=master\n :target: https://travis-ci.org/zopefoundation/zope.session\n\n.. image:: https://coveralls.io/repos/github/zopefoundation/zope.session/badge.svg?branch=master\n :target: https://coveralls.io/github/zopefoundation/zope.session?branch=master\n\n.. image:: https://readthedocs.org/projects/zopesession/badge/?version=latest\n :target: https://zopesession.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\nThis package provides interfaces for client identification and session\nsupport and their implementations for the request objects of\n`zope.publisher `_.\n\nDocumentation is hosted at https://zopesession.readthedocs.io/\n\n\n=========\n CHANGES\n=========\n\n4.3.0 (2018-10-19)\n==================\n\n- Add support for Python 3.7.\n\n- Host documentation at https://zopesession.readthedocs.io\n\n\n4.2.0 (2017-09-22)\n==================\n\n- Add support for Python 3.5 and 3.6.\n\n- Drop support for Python 2.6 and 3.3\n\n- Reach 100% code coverage and maintain it via tox.ini and Travis CI.\n\n4.1.0 (2015-06-02)\n==================\n\n- Add support for PyPy and PyPy3.\n\n\n4.0.0 (2014-12-24)\n==================\n\n- Add support for Python 3.4.\n\n- Add support for testing on Travis.\n\n\n4.0.0a2 (2013-08-27)\n====================\n\n- Fix test that fails on any timezone east of GMT\n\n\n4.0.0a1 (2013-02-21)\n====================\n\n- Add support for Python 3.3\n\n- Replace deprecated ``zope.component.adapts`` usage with equivalent\n ``zope.component.adapter`` decorator.\n\n- Replace deprecated ``zope.interface.implements`` usage with equivalent\n ``zope.interface.implementer`` decorator.\n\n- Drop support for Python 2.4 and 2.5.\n\n\n3.9.5 (2011-08-11)\n==================\n\n- LP #824355: enable support for HttpOnly cookies.\n\n- Fix a bug in ``zope.session.session.Session`` that would trigger an\n infinite loop if either iteration or a containment test were\n attempted on an instance.\n\n\n3.9.4 (2011-03-07)\n==================\n\n- Add an explicit `provides` to the IClientId adapter declaration in\n adapter.zcml.\n\n- Add option to disable implicit sweeps in\n PersistentSessionDataContainer.\n\n\n3.9.3 (2010-09-25)\n==================\n\n- Add test extra to declare test dependency on ``zope.testing``.\n\n- Use Python's ``doctest`` module instead of depreacted\n ``zope.testing.doctest``.\n\n\n3.9.2 (2009-11-23)\n==================\n\n- Fix Python 2.4 hmac compatibility issue by only using hashlib in\n Python versions 2.5 and above.\n\n- Use the CookieClientIdManager's secret as the hmac key instead of the\n message when constructing and verifying client ids.\n\n- Make it possible to construct CookieClientIdManager passing cookie namespace\n and/or secret as constructor's arguments.\n\n- Use zope.schema.fieldproperty.FieldProperty for \"namespace\" attribute of\n CookieClientIdManager, just like for other attributes in its interface.\n Also, make ICookieClientIdManager's \"namespace\" field an ASCIILine, so\n it accepts only non-unicode strings for cookie names.\n\n\n3.9.1 (2009-04-20)\n==================\n\n- Restore compatibility with Python 2.4.\n\n\n3.9.0 (2009-03-19)\n==================\n\n- Don't raise deprecation warnings on Python 2.6.\n\n- Drop dependency on ``zope.annotation``. Instead, we make classes implement\n `IAttributeAnnotatable` in ZCML configuration, only if ``zope.annotation``\n is available. If your code relies on annotatable `CookieClientIdManager`\n and `PersistentSessionDataContainer` and you don't include the zcml classes\n configuration of this package, you'll need to use `classImplements` function\n from ``zope.interface`` to make those classes implement `IAttributeAnnotatable`\n again.\n\n- Drop dependency on zope.app.http, use standard date formatting function\n from the ``email.utils`` module.\n\n- Zope 3 application bootstrapping code for session utilities was moved into\n zope.app.appsetup package, thus drop dependency on zope.app.appsetup in this\n package.\n\n- Drop testing dependencies, as we don't need anything behind zope.testing and\n previous dependencies was simply migrated from zope.app.session before.\n\n- Remove zpkg files and zcml slugs.\n\n- Update package's description a bit.\n\n\n3.8.1 (2009-02-23)\n==================\n\n- Add an ability to set cookie effective domain for CookieClientIdManager.\n This is useful for simple cases when you have your application set up on\n one domain and you want your identification cookie be active for subdomains.\n\n- Python 2.6 compatibility change. Encode strings before calling hmac.new()\n as the function no longer accepts the unicode() type.\n\n\n3.8.0 (2008-12-31)\n==================\n\n- Add missing test dependency on ``zope.site`` and\n ``zope.app.publication``.\n\n\n3.7.1 (2008-12-30)\n==================\n\n- Specify i18n_domain for titles in apidoc.zcml\n\n- ZODB 3.9 no longer contains\n ZODB.utils.ConflictResolvingMappingStorage, fixed tests, so they\n work both with ZODB 3.8 and 3.9.\n\n\n3.7.0 (2008-10-03)\n==================\n\nNew features:\n\n- Added a 'postOnly' option on CookieClientIdManagers to only allow setting\n the client id cookie on POST requests. This is to further reduce risk from\n broken caches handing the same client id out to multiple users. (Of\n course, it doesn't help if caches are broken enough to cache POSTs.)\n\n\n3.6.0 (2008-08-12)\n==================\n\nNew features:\n\n- Added a 'secure' option on CookieClientIdManagers to cause the secure\n set-cookie option to be used, which tells the browser not to send the\n cookie over http.\n\n This provides enhanced security for ssl-only applications.\n\n- Only set the client-id cookie if it isn't already set and try to\n prevent the header from being cached. This is to minimize risk from\n broken caches handing the same client id out to multiple users.\n\n\n3.5.2 (2008-06-12)\n==================\n\n- Remove ConflictErrors caused on SessionData caused by setting\n ``lastAccessTime``.\n\n\n3.5.1 (2008-04-30)\n==================\n\n- Split up the ZCML to make it possible to re-use more reasonably.\n\n\n3.5.0 (2008-03-11)\n==================\n\n- Change the default session \"resolution\" to a sane value and document/test it.\n\n\n3.4.1 (2007-09-25)\n==================\n\n- Fixed some meta data and switch to tgz release.\n\n\n3.4.0 (2007-09-25)\n==================\n\n- Initial release\n\n- Moved parts from ``zope.app.session`` to this packages\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/zope.session", "keywords": "zope3 session", "license": "ZPL 2.1", "maintainer": "", "maintainer_email": "", "name": "zope.session", "package_url": "https://pypi.org/project/zope.session/", "platform": "", "project_url": "https://pypi.org/project/zope.session/", "project_urls": { "Homepage": "https://github.com/zopefoundation/zope.session" }, "release_url": "https://pypi.org/project/zope.session/4.3.0/", "requires_dist": [ "setuptools", "ZODB (>=4.2.0.b1)", "zope.component", "zope.i18nmessageid (>=4.0.3)", "zope.interface", "zope.location", "zope.publisher (>=4.1.0)", "zope.minmax", "Sphinx; extra == 'docs'", "repoze.sphinx.autointerface; extra == 'docs'", "zope.configuration; extra == 'test'", "zope.traversing; extra == 'test'", "zope.testing; extra == 'test'", "zope.testrunner; extra == 'test'" ], "requires_python": "", "summary": "Client identification and sessions for Zope", "version": "4.3.0" }, "last_serial": 4394549, "releases": { "3.4.1": [ { "comment_text": "", "digests": { "md5": "1d68aa133752ae83d1d0c8cc7d4f16bb", "sha256": "681ce26f349b65a85f4f3694e15c5ba46cc0a3c39447d23f83322907f2c0ca51" }, "downloads": -1, "filename": "zope.session-3.4.1.tar.gz", "has_sig": false, "md5_digest": "1d68aa133752ae83d1d0c8cc7d4f16bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17399, "upload_time": "2007-09-27T02:58:14", "url": "https://files.pythonhosted.org/packages/d2/83/07c1e3644aafdd2ccae40644e292bc250f5e16ce0f7f67c3c2283ab0f87e/zope.session-3.4.1.tar.gz" } ], "3.5.0": [ { "comment_text": "", "digests": { "md5": "0ef7a99991a8089c79d79141ae10982b", "sha256": "53ec13a0eff9b955f91481053b4ac4739cd69f474ced91c94449e5fd21efe91f" }, "downloads": -1, "filename": "zope.session-3.5.0.tar.gz", "has_sig": false, "md5_digest": "0ef7a99991a8089c79d79141ae10982b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17895, "upload_time": "2008-03-11T19:57:57", "url": "https://files.pythonhosted.org/packages/dc/8d/7ec9c02b9ee5c0121f6b381813f06a75aa6807f3f7fcf07a6ffe082f98a2/zope.session-3.5.0.tar.gz" } ], "3.5.1": [ { "comment_text": "", "digests": { "md5": "4060063e980745727331c67a1f12ea0d", "sha256": "0a69e86fb6bcd3f000e9cd7fb86824e62f335d558c379b0ca932556dc44b9d50" }, "downloads": -1, "filename": "zope.session-3.5.1.tar.gz", "has_sig": false, "md5_digest": "4060063e980745727331c67a1f12ea0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18698, "upload_time": "2008-04-30T18:54:50", "url": "https://files.pythonhosted.org/packages/c9/01/717bd373e01bf0ebf62c74a277e03035d48f0886d66dccf975bcdebfc452/zope.session-3.5.1.tar.gz" } ], "3.5.2": [ { "comment_text": "", "digests": { "md5": "5abdf04b33d212b283ac2b9129f5d1bd", "sha256": "a6bff48273b3a416163374e2dbd642ca19a36cd4ba8fa14c0da2037db5992fe8" }, "downloads": -1, "filename": "zope.session-3.5.2.tar.gz", "has_sig": false, "md5_digest": "5abdf04b33d212b283ac2b9129f5d1bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19631, "upload_time": "2008-06-12T21:05:35", "url": "https://files.pythonhosted.org/packages/5a/e8/211465fc287302dcee372ea7399434e7a78ccf79ebc5f956936dc539dd10/zope.session-3.5.2.tar.gz" } ], "3.6.0": [ { "comment_text": "", "digests": { "md5": "51b1f7b1114aed1f1ea77454e91af255", "sha256": "0d38d9385f3e8ffb10124e1e7f463dde0c6f356af91e9b123cb17cc2895c31dd" }, "downloads": -1, "filename": "zope.session-3.6.0.tar.gz", "has_sig": false, "md5_digest": "51b1f7b1114aed1f1ea77454e91af255", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20526, "upload_time": "2008-09-12T16:30:28", "url": "https://files.pythonhosted.org/packages/18/66/01b649fb1d45797cd2bd9038b176b39f0f47cb73ccc643a1b4c0a3c6fec9/zope.session-3.6.0.tar.gz" } ], "3.7.0": [ { "comment_text": "", "digests": { "md5": "8674ad1aab5eecea259987fdc55f053e", "sha256": "57ca0a2a9d3125193a0d13044d8d06d3f66874f2fe609b3e9bccea9f0b12e185" }, "downloads": -1, "filename": "zope.session-3.7.0.tar.gz", "has_sig": false, "md5_digest": "8674ad1aab5eecea259987fdc55f053e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20867, "upload_time": "2008-10-03T21:32:38", "url": "https://files.pythonhosted.org/packages/44/c9/c69c7c61202c6120b8f628fdcf7ccc2addfb31e6c748c096a5544a7ce5eb/zope.session-3.7.0.tar.gz" } ], "3.7.1": [ { "comment_text": "", "digests": { "md5": "34767bb72f19e96256620bcc30ff3f19", "sha256": "f1e2de37de3f0a0d23d2656c01d31592ffd868d5df564b35909a220d062041fc" }, "downloads": -1, "filename": "zope.session-3.7.1.tar.gz", "has_sig": false, "md5_digest": "34767bb72f19e96256620bcc30ff3f19", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26413, "upload_time": "2008-12-30T08:22:22", "url": "https://files.pythonhosted.org/packages/92/5c/791500a57200adcd517d59bd8c003d6eda8b572bf22deeb393eab73d56bd/zope.session-3.7.1.tar.gz" } ], "3.8.0": [ { "comment_text": "", "digests": { "md5": "b799515875194445ae43f2588fa7a2eb", "sha256": "6189dd2e610cefa6023f27fc87c025d53c4ba7db18fd73d7f396f4f8bdda01d6" }, "downloads": -1, "filename": "zope.session-3.8.0.tar.gz", "has_sig": false, "md5_digest": "b799515875194445ae43f2588fa7a2eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27841, "upload_time": "2009-01-31T14:00:34", "url": "https://files.pythonhosted.org/packages/cb/6e/04a44d2bf5ad24fe4d188c30a47af3720efe90031183664a4582b1267383/zope.session-3.8.0.tar.gz" } ], "3.8.1": [ { "comment_text": "", "digests": { "md5": "678ff01ef54e2ca3fe0b4768319a49db", "sha256": "3cbbe69285e79fef4054b8f04191bcb32c89e287cfd00196c9930d9eeb530b34" }, "downloads": -1, "filename": "zope.session-3.8.1.tar.gz", "has_sig": false, "md5_digest": "678ff01ef54e2ca3fe0b4768319a49db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27339, "upload_time": "2009-02-23T21:54:48", "url": "https://files.pythonhosted.org/packages/c1/19/8802cfb260efb2970e533fdcb94540d824b5ede4ec1d99344d542d51ad62/zope.session-3.8.1.tar.gz" } ], "3.9.0": [ { "comment_text": "", "digests": { "md5": "3d063588b2be81240c3acc44ea3f3c93", "sha256": "60b4390ffe083e83ecf54e54582b26bd250398491502ca5ffda3dcc3993c33cf" }, "downloads": -1, "filename": "zope.session-3.9.0.tar.gz", "has_sig": false, "md5_digest": "3d063588b2be81240c3acc44ea3f3c93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25003, "upload_time": "2009-03-19T10:16:57", "url": "https://files.pythonhosted.org/packages/cf/d1/dccef9b2654713df7f0d942891271a51038bafa60479bc0852fb3b9bb9da/zope.session-3.9.0.tar.gz" } ], "3.9.1": [ { "comment_text": "", "digests": { "md5": "44238166273bbad0c265aaa4b9e7d573", "sha256": "bc3b1bcc34889335b74084bcf43700f00608208a2b7516259fda132949cd5248" }, "downloads": -1, "filename": "zope.session-3.9.1.zip", "has_sig": true, "md5_digest": "44238166273bbad0c265aaa4b9e7d573", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39204, "upload_time": "2009-04-20T22:30:46", "url": "https://files.pythonhosted.org/packages/8c/97/4c73902160c051c0112c60a111771b7d5680bf154d3e5a8a8d65c01ff407/zope.session-3.9.1.zip" } ], "3.9.2": [ { "comment_text": "", "digests": { "md5": "3f255fa053243c5cc81bebeb7cb2140b", "sha256": "f46337c00b8e3b565021613dd0930a36c7ff69809c0d3f6c89917c19f44e0fca" }, "downloads": -1, "filename": "zope.session-3.9.2.tar.gz", "has_sig": false, "md5_digest": "3f255fa053243c5cc81bebeb7cb2140b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23078, "upload_time": "2009-11-23T16:35:00", "url": "https://files.pythonhosted.org/packages/05/e2/65695ded1bc8390db378d11cd14c1bacf1ed26ac94ae430b67879199e146/zope.session-3.9.2.tar.gz" } ], "3.9.3": [ { "comment_text": "", "digests": { "md5": "05b360653d6bb97929c240001301c6df", "sha256": "dbe72745d970c8d95a0c520319632d03038abc57e003f5bd4df19a49ac8d22e8" }, "downloads": -1, "filename": "zope.session-3.9.3.tar.gz", "has_sig": false, "md5_digest": "05b360653d6bb97929c240001301c6df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23998, "upload_time": "2010-09-25T14:18:38", "url": "https://files.pythonhosted.org/packages/f9/bf/be883948ed0f98bb19892bb031a0885ad2a03214343b1b0852a3cd9ac7f4/zope.session-3.9.3.tar.gz" } ], "3.9.4": [ { "comment_text": "", "digests": { "md5": "7f2a21647b3c07d69ee99888f02853c0", "sha256": "28f31d525817b78c73c3c70eef25ebc17ba164e64593b89051ae86962946f146" }, "downloads": -1, "filename": "zope.session-3.9.4.tar.gz", "has_sig": false, "md5_digest": "7f2a21647b3c07d69ee99888f02853c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30310, "upload_time": "2011-03-08T17:16:09", "url": "https://files.pythonhosted.org/packages/f9/22/2bddaf1215cb191c66e686b49a2dfa20b630d821a74d1cd038bd5297bbc0/zope.session-3.9.4.tar.gz" } ], "3.9.5": [ { "comment_text": "", "digests": { "md5": "2934e9f2daa01555e9a7a1f9945c3493", "sha256": "1ac9aa7230f5bb16fecc9bb903ef548c4a91805e5641f1b5b1a53bcdd49d8495" }, "downloads": -1, "filename": "zope.session-3.9.5.tar.gz", "has_sig": false, "md5_digest": "2934e9f2daa01555e9a7a1f9945c3493", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25165, "upload_time": "2011-08-11T22:04:20", "url": "https://files.pythonhosted.org/packages/3a/8d/8821aa2f8f9c0efd4dba11d7250fbe857ffde9fc9992731d1e7db3fbdb18/zope.session-3.9.5.tar.gz" } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "1d992c6c89cf49e263adec2483a05ffd", "sha256": "2e6d64ae08e90cc401c7e54b79c35ed89d20a2eaf38e8560e57854040e2ad61b" }, "downloads": -1, "filename": "zope.session-4.0.0.tar.gz", "has_sig": false, "md5_digest": "1d992c6c89cf49e263adec2483a05ffd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35190, "upload_time": "2014-12-24T22:06:32", "url": "https://files.pythonhosted.org/packages/89/ca/006bd935bfb672de0a28d4e419aeac273b3bf8e485cca769df0e1cccda5e/zope.session-4.0.0.tar.gz" } ], "4.0.0a1": [ { "comment_text": "", "digests": { "md5": "4192d9ca6f25d3d0640d803508331f27", "sha256": "0a3be3ac406bc92d2a712cabeaa8255d09f2a0d7b3ce6ff78bb639a2f6ff55b3" }, "downloads": -1, "filename": "zope.session-4.0.0a1.zip", "has_sig": false, "md5_digest": "4192d9ca6f25d3d0640d803508331f27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45751, "upload_time": "2013-02-21T16:10:26", "url": "https://files.pythonhosted.org/packages/03/d0/bb72ce37a8b43ad987bfb895800e7ac4ad57c78b7d15ffe6e6acd9298a41/zope.session-4.0.0a1.zip" } ], "4.0.0a2": [ { "comment_text": "", "digests": { "md5": "a02114ac6b0c7693fefe7890d4e7101e", "sha256": "541489b9342a0a6e3131c3940a5f6e8b180f83a6ab98fff0bb17b1251f560aa7" }, "downloads": -1, "filename": "zope.session-4.0.0a2.zip", "has_sig": false, "md5_digest": "a02114ac6b0c7693fefe7890d4e7101e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47548, "upload_time": "2013-08-27T16:27:29", "url": "https://files.pythonhosted.org/packages/66/42/652158782e0628eacdb845d29ffbf334c0c2b605a815628026847a26c779/zope.session-4.0.0a2.zip" } ], "4.1.0": [ { "comment_text": "", "digests": { "md5": "f404abcb97adb023a29ece698aef82dc", "sha256": "119d2f165fffd54b39343cdf4d5f38c49bf6aa916c344bd6924e9ef24dab9470" }, "downloads": -1, "filename": "zope.session-4.1.0.tar.gz", "has_sig": true, "md5_digest": "f404abcb97adb023a29ece698aef82dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36107, "upload_time": "2015-06-02T17:09:27", "url": "https://files.pythonhosted.org/packages/3a/75/3d88f3f074750b5deab6d2da11e8df06436e93f92a4d23bdddb0c0d1760e/zope.session-4.1.0.tar.gz" } ], "4.2.0": [ { "comment_text": "", "digests": { "md5": "2cf9319fb8d6e2a366688c4d4c05e8ab", "sha256": "50ff3635cccdcdb87acc88c5151b8a42fda5df49b30fd1575d57b05684f47bb2" }, "downloads": -1, "filename": "zope.session-4.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2cf9319fb8d6e2a366688c4d4c05e8ab", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 38841, "upload_time": "2017-09-22T17:41:03", "url": "https://files.pythonhosted.org/packages/c9/05/333add4f3219ef65f9bcb9e712466ffac4d52519df9556f5fa0c8f6f3ad4/zope.session-4.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7819a24e44fdb35c8c16659960174c80", "sha256": "cd95cf0978bcbed2202ed87a4c071f8f52d27adce85b318d4d15d3dd45501f74" }, "downloads": -1, "filename": "zope.session-4.2.0.tar.gz", "has_sig": false, "md5_digest": "7819a24e44fdb35c8c16659960174c80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35903, "upload_time": "2017-09-22T17:41:06", "url": "https://files.pythonhosted.org/packages/ce/30/c7dae8d72aa9f0a3037d87f16b84eb8ad6e3c2af5b20a4ed4d8164e03998/zope.session-4.2.0.tar.gz" } ], "4.3.0": [ { "comment_text": "", "digests": { "md5": "2824b6a745a4f966ae605018b4ebf689", "sha256": "56765a033285a6d4510a3c2e2569bb3259b7d9ebf4b3b8960ea17ea062c99e4b" }, "downloads": -1, "filename": "zope.session-4.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2824b6a745a4f966ae605018b4ebf689", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 25108, "upload_time": "2018-10-19T15:12:44", "url": "https://files.pythonhosted.org/packages/0b/c6/5e0d9ad1411b102a4bc563315274d1cc102179628430a95bf05c1fa913fb/zope.session-4.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0ff7b5254a95a838809107efc254c680", "sha256": "7a856c1f4efa6afd27b23500af8ab5ec65d54191b5d90336bcceef9e1db3ba9c" }, "downloads": -1, "filename": "zope.session-4.3.0.tar.gz", "has_sig": false, "md5_digest": "0ff7b5254a95a838809107efc254c680", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34588, "upload_time": "2018-10-19T15:12:46", "url": "https://files.pythonhosted.org/packages/7b/c5/c8f4bd211e5fe343f858302dd8a18684c30d324c758320c31657b87dc8b7/zope.session-4.3.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2824b6a745a4f966ae605018b4ebf689", "sha256": "56765a033285a6d4510a3c2e2569bb3259b7d9ebf4b3b8960ea17ea062c99e4b" }, "downloads": -1, "filename": "zope.session-4.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2824b6a745a4f966ae605018b4ebf689", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 25108, "upload_time": "2018-10-19T15:12:44", "url": "https://files.pythonhosted.org/packages/0b/c6/5e0d9ad1411b102a4bc563315274d1cc102179628430a95bf05c1fa913fb/zope.session-4.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0ff7b5254a95a838809107efc254c680", "sha256": "7a856c1f4efa6afd27b23500af8ab5ec65d54191b5d90336bcceef9e1db3ba9c" }, "downloads": -1, "filename": "zope.session-4.3.0.tar.gz", "has_sig": false, "md5_digest": "0ff7b5254a95a838809107efc254c680", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34588, "upload_time": "2018-10-19T15:12:46", "url": "https://files.pythonhosted.org/packages/7b/c5/c8f4bd211e5fe343f858302dd8a18684c30d324c758320c31657b87dc8b7/zope.session-4.3.0.tar.gz" } ] }