{ "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 :: Zope3", "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.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Internet :: WWW/HTTP :: WSGI :: Application" ], "description": "This package provides the ``WSGIPublisherApplication`` class which\nexposes the object publishing machinery in ``zope.publisher`` as a\nWSGI application. It also lets us bring up the Zope application\nserver (parsing ``zope.conf`` and ``site.zcml``) with a mere function\ncall::\n\n >>> db = zope.app.wsgi.config('zope.conf')\n\nThis is especially useful for debugging.\n\nTo bring up Zope and obtain the WSGI application object at the same\ntime, use the ``getWSGIApplication`` function.\n\nThis package also provides an easy to use application factory for\nPasteDeploy_. You can simply specify an application configuration\nlike this in your Paste configuration file::\n\n [app:main]\n use = egg:zope.app.wsgi\n config_file = %(here)s/zope.conf\n\nLook for more documentation inside the package itself.\n\n.. _PasteDeploy : http://pythonpaste.org/deploy/\n\n\n=======\nCHANGES\n=======\n\n4.1.0 (2017-04-27)\n------------------\n\n- Use ``base64.b64encode`` to avoid deprecation warning with Python 3.\n\n- Add support for PyPy.\n\n- Add support for Python 3.6.\n\n- Fix the testlayer's ``FakeResponse`` assuming that headers were in\n unicode on Python 2, where they should usually be encoded bytes\n already. This could lead to UnicodeDecodeError if the headers\n contained non-ascii characters. Also make it implement\n ``__unicode__`` on Python 2 and ``__bytes__`` on Python 3 to ease\n cross version testing. See `issue 7 `_.\n\n4.0.0 (2016-08-08)\n------------------\n\n- Update dependencies to no longer pin alpha versions of packages which already\n have final releases.\n\n- Drop support for Python 2.6.\n\n- Claim support for Python 3.4 and 3.5. This requires to update to\n\n - ``zope.app.appsetup`` >= 4.0\n\n - ``zope.app.publication`` >= 4.0\n\n- Fix a bug occurring in Python 3 when the principal could not be adapted to\n `ILoggingInfo`.\n\n4.0.0a4 (2013-03-19)\n--------------------\n\n- Improve Trove classifiers.\n\n- Fix ``BrowserLayer(allowTearDown=True)`` to actually allow tear downs.\n\n\n4.0.0a3 (2013-03-03)\n--------------------\n\n- You can now specify additional WSGI middleware components wihtout\n subclassing the ``BrowserLayer`` class.\n\n- `tox` now uses the Zope test runner's `ftest` command to execute tests,\n since setup tests cannot deal with layers, especially when they need to\n spawn sub-proceeses.\n\n- Switched all functional tests to use `WebTest` instead of\n ``zope.testbrowser``. Set up proper layering.\n\n- Do not rely on ``zope.testbrowser.wsgi`` WSGI layer support. It was not\n needed anyways.\n\n- Minimized the ``ftesting.zcml`` setup.\n\n- Backwards incompatibility: if you depend on ``zope.app.wsgi.testlayer``, you\n will need to require ``zope.app.wsgi[testlayer] >= 4.0`` (version constraint\n is there because older zope.app.wsgi releases did not define a ``testlayer``\n extra).\n\n\n4.0.0a2 (2013-03-02)\n--------------------\n\n- Fixed a bug in WSGI Test Layer setup, where the DB is not correctly set.\n\n\n4.0.0a1 (2013-02-28)\n--------------------\n\n- Added support for Python 3.3.\n\n- Replaced deprecated ``zope.interface.implements`` usage with equivalent\n ``zope.interface.implementer`` decorator.\n\n- Dropped support for Python 2.4 and 2.5.\n\n\n3.15.0 (2012-01-19)\n-------------------\n\n- Fixed: zope.app.wsgi.paste.ZopeApplication didn't emit\n ProcessStarting events.\n\n **NOTE**\n If an application compensated for this by generating the event, it\n will need to stop or there will be multiple events\n emited. (Whether or not multiple events will do any harm is\n application specific.)\n\n3.14.0 (2012-01-10)\n-------------------\n\n- Set the WSGI environment's ``REMOTE_USER`` item (if not already set)\n with the Zope principal label. (This is the same data set in\n the ``wsgi.logging_info`` environment item.)\n\n This change allows user info to be used by `paste.translogger\n `_ middleware (or\n any similar middleware that uses ``REMOTE_USER``), which provides\n access logging.\n\n\n3.13.0 (2011-03-15)\n-------------------\n\n- Update to zope.testbrowser 4.0.0 which uses WebTest instead of wsgi_intercept.\n\n\n3.12.0 (2011-01-25)\n-------------------\n\n- Fixed ``zope.app.wsgi.testlayer.http`` to work with changes made in\n version 3.11.0.\n\n\n3.11.0 (2011-01-24)\n-------------------\n\n- Moved `wsgi_intercept` support to ``zope.testbrowser.wsgi``, thus\n requiring at least version 3.11 of this package:\n\n - Moved ``zope.app.wsgi.testlayer.Browser`` to\n ``zope.testbrowser.wsgi.Browser``, but left BBB import here.\n\n - Split up ``zope.app.wsgi.testlayer.BrowserLayer`` into generic WSGI\n browser layer (``zope.testbrowser.wsgi.Layer``) and ZODB/ZOPE specific\n part (``zope.app.wsgi.testlayer.BrowserLayer`` as before).\n\n\n3.10.0 (2010-11-18)\n-------------------\n\n- Add pluggability for setting up WSGI middleware in testlayer.\n\n\n3.9.3 (2010-10-14)\n------------------\n\n- Python 2.7 compatibility for xmlrpc. Transplant of zope.app.testing r116141.\n\n\n3.9.2 (2010-05-23)\n------------------\n\n- Fixed test breakage due to changes in mechanize 0.2.0.\n\n\n3.9.1 (2010-04-24)\n------------------\n\n- Add support for testing XMLRPC using zope.app.wsgi.testlayer.\n\n- Fix a bug in the status string handling in zope.app.wsgi.testlayer's\n FakeResponse.\n\n\n3.9.0 (2010-04-19)\n------------------\n\n- Return a FakeResponse object in zope.app.wsgi.testlayer.http,\n so it becomes easier to port over tests from zope.app.testing's\n HTTPCaller.\n\n- X-Powered-By header is now stripped by zope.app.wsgi.testlayer as\n it is by zope.app.testing.\n\n- Bugfix: initialize any defined in the config, as\n zope.app.server does. (Fixes #291147)\n\n\n3.8.0 (2010-04-14)\n------------------\n\n- zope.app.wsgi.testlayer is now a lot more compatible with\n the HTTPCaller() functionality in zope.app.testing, which it can\n replace:\n\n - same transaction behavior - pending transactions are committed\n before request and synchronized afterwards.\n\n - support for browser.handleErrors (for zope.testbrowser).\n\n - support for clear-text (non-base64) Basic authentication headers,\n which are easier to read in the tests (though not correct in\n actual HTTP traffic).\n\n\n3.7.0 (2010-04-13)\n------------------\n\n- Rewrite tests in order not to dependent on ``zope.app.testing`` and\n ``zope.app.zcmlfiles``.\n\n- ``zope.app.wsgi.testlayer`` introduces new testing functionality that\n can replace the old functionality in ``zope.app.testing``. In addition,\n it supports using ``zope.testbrowser`` with WSGI directly (instead of\n relying on ``zope.app.testing``, which pulls in a lot of dependencies).\n\n The interesting parts are:\n\n * ``zope.app.wsgi.testlayer.BrowserLayer``: this sets up a minimal layer\n that allows you to use the new WSGI-enabled Browser.\n\n * ``zope.app.wsgi.testlayer.Browser``: this is a subclass of Browser from\n ``zope.testbrowser.browser``. Use it instead of\n ``zope.testbrowser.browser`` directly to use the test browser with WSGI.\n You need to use ``BrowserLayer`` with your tests for this to work.\n\n * ``zope.app.wsgi.testlayer.http``: this is the equivalent to the ``http()``\n function in ``zope.app.testing``. It allows low-level HTTP access\n through WSGI. You need to use ``BrowserLayer`` with your tests for\n this to work.\n\n\n3.6.1 (2010-01-29)\n------------------\n\n- Support product configuration sections in Zope configuration files.\n\n\n3.6.0 (2009-06-20)\n------------------\n\n- Import database events directly from ``zope.processlifetime``\n instead of using BBB imports in ``zope.app.appsetup``.\n\n\n3.5.2 (2009-04-03)\n------------------\n\n- The ``WSGIPublisherApplication`` uses now the ``ILoggingInfo`` concept given\n from zope.publisher.interfaces.logginginfo for log user infos usable for\n access logs. This allows you to implement your own access log user info\n message. See zope.publisher.interfaces.logginginfo.ILoggingInfo for more\n information.\n\n\n3.5.1 (2009-03-31)\n------------------\n\n- The ``WSGIPublisherApplication`` call now provides a user name\n in the environment meant for use in logs.\n\n\n3.5.0 (2009-02-10)\n------------------\n\n- Make devmode warning message more generic. We don't nesessary have the\n `etc/zope.conf` file nowadays when using buildout-based setups.\n\n- Add an application factory for Paste. So Zope application can now be\n easily deployed with Paste .ini configuration like this::\n\n [app:main]\n use = egg:zope.app.wsgi\n config_file = %(here)s/zope.conf\n handle_errors = false\n\n The config_file is a required argument, however the handle_errors\n defaults to True if not specified. Setting it to False allows you to\n make WSGIPublisherApplication not handle exceptions itself but\n propagate them to an upper middleware, like WebError or something.\n\n- The ``WSGIPublisherApplication`` constructor and ``getWSGIApplication``\n function now accept optional ``handle_errors`` argument, described\n above.\n\n- Change mailing list address to zope-dev at zope.org instead of retired\n one.\n\n\n3.4.1 (2008-07-30)\n------------------\n\n- Added Trove classifiers.\n\n- Notify ``WSGIPublisherApplicationCreated`` event when WSGI application is\n created.\n\n- Fixed deprecation warning in ``ftesting.zcml``: ZopeSecurityPolicy moved to\n ``zope.securitypolicy``.\n\n\n3.4.0 (2007-09-14)\n------------------\n\n- Fixed the tests to run on Python 2.5 as well as Python 2.4.\n\n- Split ``getApplication`` into ``config`` and ``getApplication`` so\n that ``config`` could be reused, for example for debugging.\n\n\n3.4.0a1 (2007-04-22)\n--------------------\n\nInitial release as a separate project, corresponds to ``zope.app.wsgi``\nfrom Zope 3.4.0a1", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://pypi.python.org/pypi/zope.app.wsgi", "keywords": "", "license": "ZPL 2.1", "maintainer": "", "maintainer_email": "", "name": "zope.app.wsgi", "package_url": "https://pypi.org/project/zope.app.wsgi/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/zope.app.wsgi/", "project_urls": { "Homepage": "http://pypi.python.org/pypi/zope.app.wsgi" }, "release_url": "https://pypi.org/project/zope.app.wsgi/4.1.0/", "requires_dist": [ "ZConfig", "setuptools", "transaction", "zope.app.appsetup (>=4.0)", "zope.app.publication (>=4.0)", "zope.component", "zope.configuration", "zope.container (>=4.0.0a1)", "zope.error", "zope.event", "zope.interface", "zope.lifecycleevent", "zope.processlifetime", "zope.publisher (>=4.0.0a3)", "zope.security (>4.0.0a2)", "zope.session (>=4.0.0a1)", "zope.site (>=4.0.0a1)", "zope.testing", "zope.traversing (>=4.0.0a1)", "WebTest; extra == 'test'", "zope.annotation; extra == 'test'", "zope.authentication; extra == 'test'", "zope.browserpage; extra == 'test'", "zope.login; extra == 'test'", "zope.password; extra == 'test'", "zope.principalregistry (>=4.0.0a1); extra == 'test'", "zope.securitypolicy (>=4.0.0a1); extra == 'test'", "zope.testing; extra == 'test'", "zope.testrunner; extra == 'test'", "WebTest; extra == 'testlayer'" ], "requires_python": "", "summary": "WSGI application for the zope.publisher", "version": "4.1.0" }, "last_serial": 2834241, "releases": { "3.10.0": [ { "comment_text": "", "digests": { "md5": "747c92847a7679cbb00323b00ebd9480", "sha256": "8975394fd8329c5c8e136fd61fd6d27aae9448df5df8461b4293bf84ee89a1eb" }, "downloads": -1, "filename": "zope.app.wsgi-3.10.0.tar.gz", "has_sig": false, "md5_digest": "747c92847a7679cbb00323b00ebd9480", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17563, "upload_time": "2010-11-18T14:34:17", "url": "https://files.pythonhosted.org/packages/0d/7c/c365bb96035c79976b692a62a3b2178c071e619aa441e722d1c1063d7bfe/zope.app.wsgi-3.10.0.tar.gz" } ], "3.11.0": [ { "comment_text": "", "digests": { "md5": "41f005814d4cde3dc2635fa76e99d200", "sha256": "99fe92d3525a5970ab5fc5f8f213d91d744b5df55c644b9a6cf3c99a5fb7e024" }, "downloads": -1, "filename": "zope.app.wsgi-3.11.0.tar.gz", "has_sig": false, "md5_digest": "41f005814d4cde3dc2635fa76e99d200", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18179, "upload_time": "2011-01-24T15:51:27", "url": "https://files.pythonhosted.org/packages/73/3c/6e534deba376a78196ada64bbb3b561ffb4711e1f3e19ab24184ed5a2f41/zope.app.wsgi-3.11.0.tar.gz" } ], "3.12.0": [ { "comment_text": "", "digests": { "md5": "9a3d746d1b3642551ebe9784ad19943c", "sha256": "ca2debef9fdd02903e89d9d77e2bb82a981668dc2dfeba97adbd2fe40dd0b7c4" }, "downloads": -1, "filename": "zope.app.wsgi-3.12.0.tar.gz", "has_sig": false, "md5_digest": "9a3d746d1b3642551ebe9784ad19943c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18321, "upload_time": "2011-01-25T11:05:21", "url": "https://files.pythonhosted.org/packages/07/9e/f7ac85ab4d2886cbf9f240136c55dce1840216846de533e95ced250d70d4/zope.app.wsgi-3.12.0.tar.gz" } ], "3.13.0": [ { "comment_text": "", "digests": { "md5": "0ce9a60efd23753f46e0280b6d7097b0", "sha256": "ee3baa255eb235e96cf79ba1fc1edba0b2ff8f98998c0bb5f2706c4eed1564d3" }, "downloads": -1, "filename": "zope.app.wsgi-3.13.0.tar.gz", "has_sig": false, "md5_digest": "0ce9a60efd23753f46e0280b6d7097b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21558, "upload_time": "2011-03-15T23:53:05", "url": "https://files.pythonhosted.org/packages/cd/3b/2d0fee88dfcdac4f725e6d6d816fed993b679c0e49e1b9e577409af84487/zope.app.wsgi-3.13.0.tar.gz" } ], "3.14.0": [ { "comment_text": "", "digests": { "md5": "3516c791c0b0b9813a7ccf5dfb469582", "sha256": "6473a23a4f04f78f173e13342313fe72f90f5bafc40ca4293003cdc7bffcfdf5" }, "downloads": -1, "filename": "zope.app.wsgi-3.14.0.tar.gz", "has_sig": false, "md5_digest": "3516c791c0b0b9813a7ccf5dfb469582", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23828, "upload_time": "2012-01-11T00:18:21", "url": "https://files.pythonhosted.org/packages/a6/6c/8d0061147975b707f4a761ee7766628b780b90b686475f650f24a182ebbd/zope.app.wsgi-3.14.0.tar.gz" } ], "3.15.0": [ { "comment_text": "", "digests": { "md5": "c07168be3cb96e6403179faf097b1dff", "sha256": "2d6958c1ba3f5edd7c6b7c00ca49e3f4f2e900fd1929bae29654084975603044" }, "downloads": -1, "filename": "zope.app.wsgi-3.15.0.tar.gz", "has_sig": false, "md5_digest": "c07168be3cb96e6403179faf097b1dff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24362, "upload_time": "2012-01-19T16:07:45", "url": "https://files.pythonhosted.org/packages/71/00/1ead3eac67e00db287aeb56d5bae0d0e1397592ebdad565ccd486342069f/zope.app.wsgi-3.15.0.tar.gz" } ], "3.4.0": [ { "comment_text": "", "digests": { "md5": "9ba866e5742d80a1aaf38d770f327085", "sha256": "b358b004c0498609e60baa069d51397b70e595680784406ea2e95e6a3af21c71" }, "downloads": -1, "filename": "zope.app.wsgi-3.4.0-py2.4.egg", "has_sig": false, "md5_digest": "9ba866e5742d80a1aaf38d770f327085", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 21920, "upload_time": "2007-09-14T17:03:39", "url": "https://files.pythonhosted.org/packages/bd/d9/be6dd82bc153be181f227f34597ee88425c467a27cb087a769fa38bb8d02/zope.app.wsgi-3.4.0-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "ad1e2cd1f5204877398023aeb01f52a4", "sha256": "56037c597b43779ace20cc2611baf28703e0846d4539d081a84525f0c1067be0" }, "downloads": -1, "filename": "zope.app.wsgi-3.4.0.tar.gz", "has_sig": false, "md5_digest": "ad1e2cd1f5204877398023aeb01f52a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10819, "upload_time": "2007-09-14T17:03:38", "url": "https://files.pythonhosted.org/packages/69/d2/e32b134c2994827da26c77b4874e11af3cc8329c7dc34da2760e75278e1f/zope.app.wsgi-3.4.0.tar.gz" } ], "3.4.1": [ { "comment_text": "", "digests": { "md5": "592464431a5eae864a95223e43ccc2cd", "sha256": "8d9cc06492b94f325acae885c7d4041acd74196f45e84c9ccf523c23b5aec11c" }, "downloads": -1, "filename": "zope.app.wsgi-3.4.1.tar.gz", "has_sig": false, "md5_digest": "592464431a5eae864a95223e43ccc2cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11455, "upload_time": "2008-07-30T17:06:16", "url": "https://files.pythonhosted.org/packages/b9/39/720c2af7489579d0d79a1b741f12641534d5faa579af24da7444298c0622/zope.app.wsgi-3.4.1.tar.gz" } ], "3.4.2": [ { "comment_text": "", "digests": { "md5": "a5233da11be9bcfa3fce93bfbdd37a32", "sha256": "d42f14f12fdf6500f654e6549aa880fc659a95a71c81041ef5ba8c05010d55b7" }, "downloads": -1, "filename": "zope.app.wsgi-3.4.2.tar.gz", "has_sig": false, "md5_digest": "a5233da11be9bcfa3fce93bfbdd37a32", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10800, "upload_time": "2009-09-10T16:44:28", "url": "https://files.pythonhosted.org/packages/69/9e/2beec95269f906b43748e7bdbabd35515f565a91138f7c56a875e681bbff/zope.app.wsgi-3.4.2.tar.gz" } ], "3.4.3": [ { "comment_text": "", "digests": { "md5": "190a10f050666b0bcaf276471b939f8c", "sha256": "d09bd396d9a12c5ea311e4a31196124affb95fa83d4ceb8227981dcce69dc45c" }, "downloads": -1, "filename": "zope.app.wsgi-3.4.3.tar.gz", "has_sig": false, "md5_digest": "190a10f050666b0bcaf276471b939f8c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11760, "upload_time": "2010-04-19T16:52:36", "url": "https://files.pythonhosted.org/packages/02/8c/6655f9d324b39aeae6250ae76e969fb6e8ea6cb09f2000eee1ab524e18e1/zope.app.wsgi-3.4.3.tar.gz" } ], "3.5.0": [ { "comment_text": "", "digests": { "md5": "533fe3b2ff1649c57063fff30479d445", "sha256": "ea8b5722aeeeb10e1109db35be7a7decd61e5e33ad9df42b6a2a500ab2d742ff" }, "downloads": -1, "filename": "zope.app.wsgi-3.5.0.tar.gz", "has_sig": false, "md5_digest": "533fe3b2ff1649c57063fff30479d445", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12275, "upload_time": "2009-02-10T19:22:00", "url": "https://files.pythonhosted.org/packages/73/68/81a72f0a2463275063b64c5ba74335be946e802e7ee409d3b073fbf7b57c/zope.app.wsgi-3.5.0.tar.gz" } ], "3.5.1": [ { "comment_text": "", "digests": { "md5": "d011ccaf19809ecdb39c8892e9752ea3", "sha256": "fe0ce28675a7b51ce6a0d6adb7766200d67e562292627cbe3c0621c5f8146ff3" }, "downloads": -1, "filename": "zope.app.wsgi-3.5.1.tar.gz", "has_sig": false, "md5_digest": "d011ccaf19809ecdb39c8892e9752ea3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13201, "upload_time": "2009-03-31T20:43:35", "url": "https://files.pythonhosted.org/packages/72/87/3f5c9f4304fde8f8ed9ada0ad7f69a4388f6265e3987cb8a72d267286851/zope.app.wsgi-3.5.1.tar.gz" } ], "3.5.2": [ { "comment_text": "", "digests": { "md5": "b00b450579d759a91e7c8d80df88cbd4", "sha256": "b771109ef3bc392dd0b49b63819cdae0bada1dddf7280221857842f5d2834541" }, "downloads": -1, "filename": "zope.app.wsgi-3.5.2.tar.gz", "has_sig": false, "md5_digest": "b00b450579d759a91e7c8d80df88cbd4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13714, "upload_time": "2009-04-03T16:09:05", "url": "https://files.pythonhosted.org/packages/46/0d/fa647296ef4f0ca44be4c916832687e68f53223895fd23ae72c88be4e48b/zope.app.wsgi-3.5.2.tar.gz" } ], "3.6.0": [ { "comment_text": "", "digests": { "md5": "1f4604ad5f5f5e70d47ada763e871d25", "sha256": "33acd37506058482fcfefc5374ae9774c2e4a15d24560a6441993ad7fde8056e" }, "downloads": -1, "filename": "zope.app.wsgi-3.6.0.tar.gz", "has_sig": false, "md5_digest": "1f4604ad5f5f5e70d47ada763e871d25", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14450, "upload_time": "2009-06-20T21:16:35", "url": "https://files.pythonhosted.org/packages/c8/a6/68859fb904740875d2179723db36260291aa6a6bb8b581a2ff614dbd6a04/zope.app.wsgi-3.6.0.tar.gz" } ], "3.6.1": [ { "comment_text": "", "digests": { "md5": "c0765ef675ea60f8cda0e72eb0a8c53d", "sha256": "5d32978ede5848c5a3d72a0708b8a574a4e78031a47d515189917f59f83e83a0" }, "downloads": -1, "filename": "zope.app.wsgi-3.6.1.tar.gz", "has_sig": false, "md5_digest": "c0765ef675ea60f8cda0e72eb0a8c53d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13283, "upload_time": "2010-01-29T22:58:24", "url": "https://files.pythonhosted.org/packages/d2/f7/047c534c330e917db2f7c359ed602cdf4533cac6a45b68873dd71cef2f9b/zope.app.wsgi-3.6.1.tar.gz" } ], "3.7.0": [ { "comment_text": "", "digests": { "md5": "8fae7a6d67acff68b86251d93714a389", "sha256": "81cb00d24ce791bfd8d89168d496e0fc5b52efa76027f2277e08177c0dd77afa" }, "downloads": -1, "filename": "zope.app.wsgi-3.7.0.tar.gz", "has_sig": false, "md5_digest": "8fae7a6d67acff68b86251d93714a389", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14505, "upload_time": "2010-04-13T19:05:40", "url": "https://files.pythonhosted.org/packages/f2/46/d029a457fb14e6951e68704bfb975d67685235974134edf0ce8297c222a4/zope.app.wsgi-3.7.0.tar.gz" } ], "3.8.0": [ { "comment_text": "", "digests": { "md5": "a2a7cd34e58227f2de14486a2569552a", "sha256": "3ab2848719f0096782ca7cbbc7e9e14ce3ff363d1e1a2472a1ce791fc8a2c772" }, "downloads": -1, "filename": "zope.app.wsgi-3.8.0.tar.gz", "has_sig": false, "md5_digest": "a2a7cd34e58227f2de14486a2569552a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15287, "upload_time": "2010-04-14T14:34:17", "url": "https://files.pythonhosted.org/packages/a5/05/df96f3b87dbd38c283bc4712b4290bab0e7481529a043ed6349538446481/zope.app.wsgi-3.8.0.tar.gz" } ], "3.9.0": [ { "comment_text": "", "digests": { "md5": "eede9fc57b899266a6a3b4aa52b1df98", "sha256": "ff0f80176d9c18ee4becea05ff6f619f1e363697523738f4956549d1d68600ff" }, "downloads": -1, "filename": "zope.app.wsgi-3.9.0.tar.gz", "has_sig": false, "md5_digest": "eede9fc57b899266a6a3b4aa52b1df98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15977, "upload_time": "2010-04-19T19:42:18", "url": "https://files.pythonhosted.org/packages/0a/6f/a559b74c8b39bca2bfcf255043d5f34f42822b0d9bc09ce46e32bc2df012/zope.app.wsgi-3.9.0.tar.gz" } ], "3.9.1": [ { "comment_text": "", "digests": { "md5": "1f7efcafdcc590d10465ba7cabdc01dc", "sha256": "4042453fbfb9279361fc262774c76a7094db772c6f4a475bc3bea63a97057779" }, "downloads": -1, "filename": "zope.app.wsgi-3.9.1.tar.gz", "has_sig": false, "md5_digest": "1f7efcafdcc590d10465ba7cabdc01dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16573, "upload_time": "2010-04-24T18:38:04", "url": "https://files.pythonhosted.org/packages/8a/99/2235ccdfa2e86bd066a9393b7323deae0d93f178af3a149eeb5fff9499b8/zope.app.wsgi-3.9.1.tar.gz" } ], "3.9.2": [ { "comment_text": "", "digests": { "md5": "58a61c99a2130318aab1abf8a1c3633f", "sha256": "932c3f220a0757dea4132b834a67007b46c9a0a2173256bb63fdd48de2c18fe3" }, "downloads": -1, "filename": "zope.app.wsgi-3.9.2.tar.gz", "has_sig": false, "md5_digest": "58a61c99a2130318aab1abf8a1c3633f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16691, "upload_time": "2010-05-24T01:44:21", "url": "https://files.pythonhosted.org/packages/ee/35/f1b04920a97f177e5e2dd78065f18914e5cd536095af057116fb565c9bc1/zope.app.wsgi-3.9.2.tar.gz" } ], "3.9.3": [ { "comment_text": "", "digests": { "md5": "9c766908b720d777e02e0b0a9ac8a8a1", "sha256": "14a8bcbae1bea094d72ba5c6c5cdeb5cd2fdce5429dfede51e1b5f3fedff2650" }, "downloads": -1, "filename": "zope.app.wsgi-3.9.3.tar.gz", "has_sig": false, "md5_digest": "9c766908b720d777e02e0b0a9ac8a8a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16894, "upload_time": "2010-10-14T15:12:52", "url": "https://files.pythonhosted.org/packages/ee/f8/41d5f0a945c58f8d5c249f1901f47845292c05a805596d4a1658493bd10f/zope.app.wsgi-3.9.3.tar.gz" } ], "3.9.3zc1": [ { "comment_text": "", "digests": { "md5": "7196dae272e34f8fee90f0f13f3ec237", "sha256": "cf31fa0eea79220730cb48809e509c5784d3ae01953200a03277b0ed24d644c2" }, "downloads": -1, "filename": "zope.app.wsgi-3.9.3zc1.tar.gz", "has_sig": false, "md5_digest": "7196dae272e34f8fee90f0f13f3ec237", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17395, "upload_time": "2012-01-14T19:25:39", "url": "https://files.pythonhosted.org/packages/c0/b7/198694495360f86af85e270fb2a0c439a2e508a3365331721a0181a8f062/zope.app.wsgi-3.9.3zc1.tar.gz" } ], "3.9.3zc2": [ { "comment_text": "", "digests": { "md5": "7e5e8cda3da7fee575e79473b50dd1bf", "sha256": "8d915e91223dd0fdbc9f96e5cc9026362316eb0685ecf42e7141e6254697dfc2" }, "downloads": -1, "filename": "zope.app.wsgi-3.9.3zc2.tar.gz", "has_sig": false, "md5_digest": "7e5e8cda3da7fee575e79473b50dd1bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19927, "upload_time": "2012-01-18T23:52:29", "url": "https://files.pythonhosted.org/packages/33/72/093641633b4e4c41eecb3a602531df579cf81d4c9b60fbdadaa498851f58/zope.app.wsgi-3.9.3zc2.tar.gz" } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "43259864b20908f2333a7003dc44bb08", "sha256": "8cb5dec76db5afb9118d06ce43aff0bdc54d88c85dc6bd7a1a835f76a05d7437" }, "downloads": -1, "filename": "zope.app.wsgi-4.0.0.tar.gz", "has_sig": false, "md5_digest": "43259864b20908f2333a7003dc44bb08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27468, "upload_time": "2016-08-08T12:51:14", "url": "https://files.pythonhosted.org/packages/41/21/654808edd9ee22c0168972c3691971dc4d2ea46aaf8e6b64c6de49e5e716/zope.app.wsgi-4.0.0.tar.gz" } ], "4.0.0a1.dev": [ { "comment_text": "", "digests": { "md5": "631c180e1fc3baeb202b543b75a99aaa", "sha256": "9c39c42572e9612e449521132ff943ebfe77fcad6c21515bffb4cdb6a7a10dca" }, "downloads": -1, "filename": "zope.app.wsgi-4.0.0a1.dev.tar.gz", "has_sig": false, "md5_digest": "631c180e1fc3baeb202b543b75a99aaa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21294, "upload_time": "2013-02-28T14:06:52", "url": "https://files.pythonhosted.org/packages/69/cc/e61f4a01f56bd484931676d0389ac22562c585a0347babdcfbda0f536332/zope.app.wsgi-4.0.0a1.dev.tar.gz" } ], "4.0.0a2": [ { "comment_text": "", "digests": { "md5": "cb31840195dfcdc3dcfc69b476190bfd", "sha256": "4f1405f1298c55b96ac62204ca6289a535bec5c6705be02313a4b6e437653675" }, "downloads": -1, "filename": "zope.app.wsgi-4.0.0a2.zip", "has_sig": false, "md5_digest": "cb31840195dfcdc3dcfc69b476190bfd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39636, "upload_time": "2013-03-02T14:41:26", "url": "https://files.pythonhosted.org/packages/f0/f9/afada40e5cdb28d886b602b843e3ca132110bcbf3d14a6dc7673a92359fa/zope.app.wsgi-4.0.0a2.zip" } ], "4.0.0a3": [ { "comment_text": "", "digests": { "md5": "fc979fa2356993506b69e6ef1ac07c5e", "sha256": "1091a1138a3d1b6bd9de10bdf5c1031fd94b3bcee0d96ce62011608f8285d0ea" }, "downloads": -1, "filename": "zope.app.wsgi-4.0.0a3.zip", "has_sig": false, "md5_digest": "fc979fa2356993506b69e6ef1ac07c5e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41072, "upload_time": "2013-03-03T09:46:31", "url": "https://files.pythonhosted.org/packages/a3/6c/7910a85bed6913419e4bdd259d546276cc5e65569d47359dd628d12597b7/zope.app.wsgi-4.0.0a3.zip" } ], "4.0.0a4": [ { "comment_text": "", "digests": { "md5": "5cf346ac51886a88b476d47115a4a384", "sha256": "e1740b431906b0e7ad6978eccae34a4798ee6a893f331db7f3e360c3b5c853f4" }, "downloads": -1, "filename": "zope.app.wsgi-4.0.0a4.zip", "has_sig": false, "md5_digest": "5cf346ac51886a88b476d47115a4a384", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41719, "upload_time": "2013-03-19T12:05:15", "url": "https://files.pythonhosted.org/packages/20/71/3ce1130e694068bd87cd747dfcc46e841e49706d4828bdf18867a95cdeee/zope.app.wsgi-4.0.0a4.zip" } ], "4.1.0": [ { "comment_text": "", "digests": { "md5": "ac7157741b704509ab316c803b3fc083", "sha256": "b015b809ba5659c6ccde271fe8e630bf591bec5f9b5c5884e2b209d2abe0e250" }, "downloads": -1, "filename": "zope.app.wsgi-4.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ac7157741b704509ab316c803b3fc083", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 33553, "upload_time": "2017-04-27T11:53:02", "url": "https://files.pythonhosted.org/packages/d9/63/dbb29039eee1ac51d86f484d3207f9b99080921139405be21ec5e32dcdc2/zope.app.wsgi-4.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "12127c63a630e381d0e6f8ec3075336b", "sha256": "8bd39ba906afe3d4b3a2d25e7d0277f681f34fdebc5297d0e6baaf22556a3c68" }, "downloads": -1, "filename": "zope.app.wsgi-4.1.0.tar.gz", "has_sig": false, "md5_digest": "12127c63a630e381d0e6f8ec3075336b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28826, "upload_time": "2017-04-27T11:53:04", "url": "https://files.pythonhosted.org/packages/0c/57/5a0f2eb800ff01ba19c0a1d6ab55d2aef32dc340ab3f97f6c17a7a7fb87a/zope.app.wsgi-4.1.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ac7157741b704509ab316c803b3fc083", "sha256": "b015b809ba5659c6ccde271fe8e630bf591bec5f9b5c5884e2b209d2abe0e250" }, "downloads": -1, "filename": "zope.app.wsgi-4.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ac7157741b704509ab316c803b3fc083", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 33553, "upload_time": "2017-04-27T11:53:02", "url": "https://files.pythonhosted.org/packages/d9/63/dbb29039eee1ac51d86f484d3207f9b99080921139405be21ec5e32dcdc2/zope.app.wsgi-4.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "12127c63a630e381d0e6f8ec3075336b", "sha256": "8bd39ba906afe3d4b3a2d25e7d0277f681f34fdebc5297d0e6baaf22556a3c68" }, "downloads": -1, "filename": "zope.app.wsgi-4.1.0.tar.gz", "has_sig": false, "md5_digest": "12127c63a630e381d0e6f8ec3075336b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28826, "upload_time": "2017-04-27T11:53:04", "url": "https://files.pythonhosted.org/packages/0c/57/5a0f2eb800ff01ba19c0a1d6ab55d2aef32dc340ab3f97f6c17a7a7fb87a/zope.app.wsgi-4.1.0.tar.gz" } ] }