{ "info": { "author": "Ian Bicking", "author_email": "ianb@colorstudy.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 6 - Mature", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2.7", "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 :: WSGI", "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", "Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware" ], "description": "WebOb\n=====\n\n.. image:: https://travis-ci.org/Pylons/webob.png?branch=master\n :target: https://travis-ci.org/Pylons/webob\n\n.. image:: https://readthedocs.org/projects/webob/badge/?version=stable\n :target: https://docs.pylonsproject.org/projects/webob/en/stable/\n :alt: Documentation Status\n\nWebOb provides objects for HTTP requests and responses. Specifically\nit does this by wrapping the `WSGI `_ request\nenvironment and response status/headers/app_iter(body).\n\nThe request and response objects provide many conveniences for parsing\nHTTP request and forming HTTP responses. Both objects are read/write:\nas a result, WebOb is also a nice way to create HTTP requests and\nparse HTTP responses.\n\nSupport and Documentation\n-------------------------\n\nSee the `WebOb Documentation website `_ to view\ndocumentation, report bugs, and obtain support.\n\nLicense\n-------\n\nWebOb is offered under the `MIT-license\n`_.\n\nAuthors\n-------\n\nWebOb was authored by Ian Bicking and is currently maintained by the `Pylons\nProject `_ and a team of contributors.\n\n1.8.5 (2019-01-03)\n------------------\n\nWarnings\n~~~~~~~~\n\n- Fixed one last remaining invalid escape sequence in a docstring.\n\n1.8.4 (2018-11-11)\n------------------\n\nBugfix\n~~~~~~\n\n- Response.content_type now accepts unicode strings on Python 2 and encodes\n them to latin-1. See https://github.com/Pylons/webob/pull/389 and\n https://github.com/Pylons/webob/issues/388\n\n- Accept header classes now support a .copy() function that may be used to\n create a copy. This allows ``create_accept_header`` and other like functions\n to accept an pre-existing Accept header. See\n https://github.com/Pylons/webob/pull/386 and\n https://github.com/Pylons/webob/issues/385\n\nWarnings\n~~~~~~~~\n\n- Some backslashes introduced with the new accept handling code were causing\n DeprecationWarnings upon compiling the source to pyc files, all of the\n backslashes have been reigned in as appropriate, and users should no longer\n see DeprecationWarnings for invalid escape sequence. See\n https://github.com/Pylons/webob/issues/384\n\n1.8.3 (2018-10-14)\n------------------\n\nBugfix\n~~~~~~\n\n- ``acceptparse.AcceptValidHeader``, ``acceptparse.AcceptInvalidHeader``, and\n ``acceptparse.AcceptNoHeader`` will now always ignore offers that do not\n match the required media type grammar when calling ``.acceptable_offers()``.\n Previous versions raised a ``ValueError`` for invalid offers in\n ``AcceptValidHeader`` and returned them as acceptable in the others.\n See https://github.com/Pylons/webob/pull/372\n\nFeature\n~~~~~~~\n\n- Add Request.remote_host, exposing REMOTE_HOST environment variable.\n\n- Added ``acceptparse.Accept.parse_offer`` to codify what types of offers\n are compatible with ``acceptparse.AcceptValidHeader.acceptable_offers``,\n ``acceptparse.AcceptMissingHeader.acceptable_offers``, and\n ``acceptparse.AcceptInvalidHeader.acceptable_offers``. This API also\n normalizes the offer with lowercased type/subtype and parameter names.\n See https://github.com/Pylons/webob/pull/376 and\n https://github.com/Pylons/webob/pull/379\n\n1.8.2 (2018-06-05)\n------------------\n\nBugfix\n~~~~~~\n\n- SameSite may now be passed as str or bytes to `Response.set_cookie` and\n `cookies.make_cookie`. This was an oversight as all other arguments would be\n correctly coerced before being serialized. See\n https://github.com/Pylons/webob/issues/361 and\n https://github.com/Pylons/webob/pull/362\n\n\n1.8.1 (2018-04-10)\n------------------\n\nBugfix\n~~~~~~\n\n- acceptparse.MIMEAccept which is deprecated in WebOb 1.8.0 made a backwards\n incompatible change that led to it raising on an invalid Accept header. This\n behaviour has now been reversed, as well as some other fixes to allow\n MIMEAccept to behave more like the old version. See\n https://github.com/Pylons/webob/pull/356\n\n1.8.0 (2018-04-04)\n------------------\n\nFeature\n~~~~~~~\n\n- ``request.POST`` now supports any requests with the appropriate\n Content-Type. Allowing any HTTP method to access form encoded content,\n including DELETE, PUT, and others. See\n https://github.com/Pylons/webob/pull/352\n\nCompatibility\n~~~~~~~~~~~~~\n\n- WebOb is no longer officially supported on Python 3.3 which was EOL'ed on\n 2017-09-29.\n\nBackwards Incompatibilities\n~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Many changes have been made to the way WebOb does Accept handling, not just\n for the Accept header itself, but also for Accept-Charset, Accept-Encoding\n and Accept-Language. This was a `Google Summer of Code\n `_ project completed by\n Whiteroses (https://github.com/whiteroses). Many thanks to Google for running\n GSoC, the Python Software Foundation for organising and a huge thanks to Ira\n for completing the work. See https://github.com/Pylons/webob/pull/338 and\n https://github.com/Pylons/webob/pull/335. Documentation is available at\n https://docs.pylonsproject.org/projects/webob/en/master/api/webob.html\n\n- When calling a ``@wsgify`` decorated function, the default arguments passed\n to ``@wsgify`` are now used when called with the request, and not as a\n `start_response`\n\n .. code::\n\n def hello(req, name):\n return \"Hello, %s!\" % name\n app = wsgify(hello, args=(\"Fred\",))\n\n req = Request.blank('/')\n resp = req.get_response(app) # => \"Hello, Fred\"\n resp2 = app(req) # => \"Hello, Fred\"\n\n Previously the ``resp2`` line would have failed with a ``TypeError``. With\n this change there is no way to override the default arguments with no\n arguments. See https://github.com/Pylons/webob/pull/203\n\n- When setting ``app_iter`` on a ``Response`` object the ``content_md5`` header\n is no longer cleared. This behaviour is odd and disallows setting the\n ``content_md5`` and then returning an iterator for chunked content encoded\n responses. See https://github.com/Pylons/webob/issues/86\n\nExperimental Features\n~~~~~~~~~~~~~~~~~~~~~\n\nThese features are experimental and may change at any point in the future.\n\n- The cookie APIs now have the ability to set the SameSite attribute on a\n cookie in both ``webob.cookies.make_cookie`` and\n ``webob.cookies.CookieProfile``. See https://github.com/Pylons/webob/pull/255\n\nBugfix\n~~~~~~\n\n- Exceptions now use string.Template.safe_substitute rather than\n string.Template.substitute. The latter would raise for missing mappings, the\n former will simply not substitute the missing variable. This is safer in case\n the WSGI environ does not contain the keys necessary for the body template.\n See https://github.com/Pylons/webob/issues/345.\n\n- Request.host_url, Request.host_port, Request.domain correctly parse IPv6 Host\n headers as provided by a browser. See\n https://github.com/Pylons/webob/pull/332\n\n- Request.authorization would raise ValueError for unusual or malformed header\n values. See https://github.com/Pylons/webob/issues/231\n\n- Allow unnamed fields in form data to be properly transcoded when calling\n request.decode with an alternate encoding. See\n https://github.com/Pylons/webob/pull/309\n\n- ``Response.__init__`` would discard ``app_iter`` when a ``Response`` had no\n body, this would cause issues when ``app_iter`` was an object that was tied\n to the life-cycle of a web application and had to be properly closed.\n ``app_iter`` is more advanced API for ``Response`` and thus even if it\n contains a body and is thus against the HTTP RFC's, we should let the users\n shoot themselves by returning a body. See\n https://github.com/Pylons/webob/issues/305\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://webob.org/", "keywords": "wsgi request web http", "license": "MIT", "maintainer": "Pylons Project", "maintainer_email": "", "name": "WebOb", "package_url": "https://pypi.org/project/WebOb/", "platform": "", "project_url": "https://pypi.org/project/WebOb/", "project_urls": { "Homepage": "http://webob.org/" }, "release_url": "https://pypi.org/project/WebOb/1.8.5/", "requires_dist": [ "Sphinx (>=1.7.5); extra == 'docs'", "pylons-sphinx-themes; extra == 'docs'", "pytest (>=3.1.0); extra == 'testing'", "coverage; extra == 'testing'", "pytest-cov; extra == 'testing'", "pytest-xdist; extra == 'testing'" ], "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "summary": "WSGI request and response object", "version": "1.8.5" }, "last_serial": 4657486, "releases": { "0.8": [ { "comment_text": "", "digests": { "md5": "b3ea42fbe9a591cf5c87acb771063961", "sha256": "401df291f62d671be000fee129f2bd05d5c0010ba72103a6bbe7c2ef7386e271" }, "downloads": -1, "filename": "WebOb-0.8-py2.4.egg", "has_sig": false, "md5_digest": "b3ea42fbe9a591cf5c87acb771063961", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 101592, "upload_time": "2007-08-18T22:20:08", "url": "https://files.pythonhosted.org/packages/b3/a5/45124df4f539bf9e815ae982e3489c061f772a1c05f9366f644c185f6bf0/WebOb-0.8-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "b89a5e1d81be538996a6c7a767f3c4e5", "sha256": "1a7d490765fe1d7e2e6812f53991c6c36bd2241e60cdd7923db87c9947562b56" }, "downloads": -1, "filename": "WebOb-0.8.tar.gz", "has_sig": false, "md5_digest": "b89a5e1d81be538996a6c7a767f3c4e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56121, "upload_time": "2007-08-18T22:20:04", "url": "https://files.pythonhosted.org/packages/77/e9/852a66d4c59428451d6006592428906c326ee7fe38cc223ff08cb2f70755/WebOb-0.8.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "e997c7fd3dfd88b1b44af7317571e424", "sha256": "97b60c749ca4a59cb368440799afd9bd81387027b0fdac6b52bde32b5be6a03a" }, "downloads": -1, "filename": "WebOb-0.8.1-py2.4.egg", "has_sig": false, "md5_digest": "e997c7fd3dfd88b1b44af7317571e424", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 102357, "upload_time": "2007-09-12T03:12:22", "url": "https://files.pythonhosted.org/packages/2f/5e/bebffb34f32a735ca6abf78492305fafbf3eaaf4156b6c21b97d2a7b07c9/WebOb-0.8.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "cf0578c10e987e9c46303c3b867443e4", "sha256": "9839c237c73cbd049c1182ee163ac785c15f25b3b9003aca4deeb46eb8fe27cd" }, "downloads": -1, "filename": "WebOb-0.8.1.tar.gz", "has_sig": false, "md5_digest": "cf0578c10e987e9c46303c3b867443e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56786, "upload_time": "2007-09-12T03:12:18", "url": "https://files.pythonhosted.org/packages/8e/ad/6e35c3c0ac831449b3016b7fdb6d4ec65b59610c271db239ae1ba97a6373/WebOb-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "45892785e359af1776b3c54d7933d348", "sha256": "0a73d50dee9e18b91a2551114cf622f62c8f417eafc3f9f24a17a6ca85b47263" }, "downloads": -1, "filename": "WebOb-0.8.2-py2.4.egg", "has_sig": false, "md5_digest": "45892785e359af1776b3c54d7933d348", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 100804, "upload_time": "2007-10-08T21:45:10", "url": "https://files.pythonhosted.org/packages/f7/19/2823d882db0e976f320d5aa7def0521a7f761130b1d312e1f6c41a740437/WebOb-0.8.2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "d0b1f21a29477b33d51e517eb5445f46", "sha256": "4d0c7f48a9c52393ecb35873ba19e2969466ee64a07bd090df6ccb41e9522732" }, "downloads": -1, "filename": "WebOb-0.8.2-py2.5.egg", "has_sig": false, "md5_digest": "d0b1f21a29477b33d51e517eb5445f46", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 99561, "upload_time": "2007-10-08T21:46:09", "url": "https://files.pythonhosted.org/packages/5a/fd/c4fd9bff7b2becb69e85ead8f409969ddd16eac92b7e773a0c2a6a75fc0e/WebOb-0.8.2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "a6aa653c9118891f6d4cd8789cd4b924", "sha256": "d788a66a96ef68f9fbc6bf39241e652fbbe8310334a34d717f8990a1d49be376" }, "downloads": -1, "filename": "WebOb-0.8.2.tar.gz", "has_sig": false, "md5_digest": "a6aa653c9118891f6d4cd8789cd4b924", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57270, "upload_time": "2007-10-08T21:45:07", "url": "https://files.pythonhosted.org/packages/63/1f/0f2f14d3483e2a9434266e1e525e346e36ebc1df873497b2f9d4d2aaf64f/WebOb-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "0dbb57a44e8e280f4b6cfae903fa5851", "sha256": "4f72183e95bb29228811b1c7f632cddc8380f899d0ff620bfab96e77c9af1cd8" }, "downloads": -1, "filename": "WebOb-0.8.3-py2.4.egg", "has_sig": false, "md5_digest": "0dbb57a44e8e280f4b6cfae903fa5851", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 100984, "upload_time": "2007-11-09T16:39:25", "url": "https://files.pythonhosted.org/packages/d3/c3/09eabdf903bf243122d55c5971410a7f5931a4dc0c65a580ff0d136ba84b/WebOb-0.8.3-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "a946843b062dc7e3fe70a35d398ea0bc", "sha256": "9245086a031d3aeee41f092e84d7f66c7228ad237739d706e0b7b93d7eb307aa" }, "downloads": -1, "filename": "WebOb-0.8.3-py2.5.egg", "has_sig": false, "md5_digest": "a946843b062dc7e3fe70a35d398ea0bc", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 99702, "upload_time": "2007-11-09T17:04:54", "url": "https://files.pythonhosted.org/packages/b9/f8/4f12d78d552fc62430bb95dd3cec328ee0b8c330368123d4e6eee0b78930/WebOb-0.8.3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "5732e73d0a569412bd45f15d34b97199", "sha256": "3ccf908fa58db57f27a7e0a7b2618df412d9e30d7199c48e73ba0680498b3c55" }, "downloads": -1, "filename": "WebOb-0.8.3.tar.gz", "has_sig": false, "md5_digest": "5732e73d0a569412bd45f15d34b97199", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61073, "upload_time": "2007-11-09T16:39:22", "url": "https://files.pythonhosted.org/packages/03/e2/92d5a98c53f4b0df75062b3fdd25520c12ed6627d5e6e31771feeb9055ee/WebOb-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "91614f1f941eabaae36e10f79665e426", "sha256": "e7084e00a7746428b2d5ad2a97abe4f2d4a2ffba03f6633e0004236201db147b" }, "downloads": -1, "filename": "WebOb-0.8.4-py2.4.egg", "has_sig": false, "md5_digest": "91614f1f941eabaae36e10f79665e426", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 101044, "upload_time": "2007-11-19T18:32:12", "url": "https://files.pythonhosted.org/packages/20/44/aa2c850ffe7fda1a0ee83ed2ca3f9aaa6e58d7e1d49c0a84b939a11f44be/WebOb-0.8.4-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "ab8e39e810e9613087a625031e616ed1", "sha256": "a704382c7a32c61a5e58785b36bf4f701b396b3e681703e522a3ecd611cf45ce" }, "downloads": -1, "filename": "WebOb-0.8.4-py2.5.egg", "has_sig": false, "md5_digest": "ab8e39e810e9613087a625031e616ed1", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 99748, "upload_time": "2007-11-19T18:34:46", "url": "https://files.pythonhosted.org/packages/ed/79/9c41b90c86defc466ed6c1e8154396f1b680e1a864df558513b5feb90bd4/WebOb-0.8.4-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "fcb5a910ba78ca3100c5192cbe9f7c3a", "sha256": "4361310d8e53790f3b26fd16835abbff6e8b824527e06953bf66772398190f2f" }, "downloads": -1, "filename": "WebOb-0.8.4.tar.gz", "has_sig": false, "md5_digest": "fcb5a910ba78ca3100c5192cbe9f7c3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61157, "upload_time": "2007-11-19T18:32:09", "url": "https://files.pythonhosted.org/packages/40/a4/f1d002a81f3682c0aa1a723032dc6f774fd56eb6371aa7b45f6a1f97a394/WebOb-0.8.4.tar.gz" } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "8a73ad5bd8109bbe4b95e260f8941674", "sha256": "619ef4ad4873eef29ec4891d7a1ee38f28a1518ad12894473a0821e20b20146e" }, "downloads": -1, "filename": "WebOb-0.8.5-py2.4.egg", "has_sig": false, "md5_digest": "8a73ad5bd8109bbe4b95e260f8941674", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 106434, "upload_time": "2007-12-17T23:25:32", "url": "https://files.pythonhosted.org/packages/2e/62/8c9976cddd44d871137cd5f270cdd4a200a5ebdcb01304f3ed02c22bc4b2/WebOb-0.8.5-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "95d3c523e198fd35c7a7c72925b897b7", "sha256": "f434a61f20bd90979809d5e40d86d0681e6f12b74ea84c760feb760ee3ee98bd" }, "downloads": -1, "filename": "WebOb-0.8.5-py2.5.egg", "has_sig": false, "md5_digest": "95d3c523e198fd35c7a7c72925b897b7", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 105081, "upload_time": "2007-12-17T23:28:54", "url": "https://files.pythonhosted.org/packages/1a/26/479a606d2bac1427976327231804f960d94142aa1735c836102be30e016a/WebOb-0.8.5-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "2a42ac6382f89b03aad96b5078758a8a", "sha256": "53fc7d91d289ca4c48183c22aee83c5e79bc89f9809e6f4d1cd41041389840da" }, "downloads": -1, "filename": "WebOb-0.8.5.tar.gz", "has_sig": false, "md5_digest": "2a42ac6382f89b03aad96b5078758a8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67847, "upload_time": "2007-12-17T23:25:29", "url": "https://files.pythonhosted.org/packages/89/6e/5668954138dcaad439c8b88e498f4ff6a787228346a1fb29bfe3d4db56fc/WebOb-0.8.5.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "1188978e3086374aa7adc74bf271e136", "sha256": "80a7ffea76311253355bc77c7d7551d61d0bef9c4accee9e7885afc7bcd04e7a" }, "downloads": -1, "filename": "WebOb-0.9-py2.4.egg", "has_sig": false, "md5_digest": "1188978e3086374aa7adc74bf271e136", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 108012, "upload_time": "2008-02-17T18:18:39", "url": "https://files.pythonhosted.org/packages/e6/25/77d66ec439a4a44a2b3cd3509f4817471b5e1e412104c6fe8ef8967e0ff8/WebOb-0.9-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "ef4c068167f735d2b3a3ac9ad6d9d233", "sha256": "95d2d468f768b12b26ac50b0c008502e0b830cb56f1b95841a7ff504853d6f85" }, "downloads": -1, "filename": "WebOb-0.9-py2.5.egg", "has_sig": false, "md5_digest": "ef4c068167f735d2b3a3ac9ad6d9d233", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 106692, "upload_time": "2008-02-17T18:18:44", "url": "https://files.pythonhosted.org/packages/bf/0b/6158cf1862c337cf1511ee48febe1c15d9dfdffdfd2f4cdc29a75df7e816/WebOb-0.9-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "eb5a4fee8f6edb19567f44d24c07f2ef", "sha256": "fb612c2d55d2e92efddce5d795d9db213afe9f2d2722c93957426a3431da1c46" }, "downloads": -1, "filename": "WebOb-0.9.tar.gz", "has_sig": false, "md5_digest": "eb5a4fee8f6edb19567f44d24c07f2ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79550, "upload_time": "2008-02-17T18:18:36", "url": "https://files.pythonhosted.org/packages/df/3b/1a63d436043d38f285ceef49af5b52665086a90ef92fb55e1c535a6042d3/WebOb-0.9.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "9ff6f23d3a60909ceca0eb96a6c32a1e", "sha256": "237e6e36065fb3c57b74b16ef1c58e2da65ceff25e92b575e91230a771317692" }, "downloads": -1, "filename": "WebOb-0.9.1-py2.4.egg", "has_sig": false, "md5_digest": "9ff6f23d3a60909ceca0eb96a6c32a1e", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 109105, "upload_time": "2008-04-13T23:47:39", "url": "https://files.pythonhosted.org/packages/3b/e0/e9ba4fa7c57442b56b7d54f25d51ccbc97be609d45f627e44275e144392c/WebOb-0.9.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "c35bea75accb55b112cdbcb7050a688e", "sha256": "7e859ec0c14dd0035b023de23c4fddf0d9463cd62c38dd861988a84b73ff7c5f" }, "downloads": -1, "filename": "WebOb-0.9.1-py2.5.egg", "has_sig": false, "md5_digest": "c35bea75accb55b112cdbcb7050a688e", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 107795, "upload_time": "2008-04-13T23:49:49", "url": "https://files.pythonhosted.org/packages/64/2e/ac838c0d523a081fa5990bca7972e081b7dc40d0ce9a16746b38a30ffa38/WebOb-0.9.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "0f0892fbec153685f3f1ad81f0e50527", "sha256": "3433e47314f47ff016f3b2dfec09d1912d5cec7212a85717033cb91f1160d0c8" }, "downloads": -1, "filename": "WebOb-0.9.1.tar.gz", "has_sig": false, "md5_digest": "0f0892fbec153685f3f1ad81f0e50527", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 87653, "upload_time": "2008-04-13T23:47:36", "url": "https://files.pythonhosted.org/packages/fa/43/310e84fa3d3ead404275f8e99ab055ce120657220edd211c0f046b4cb029/WebOb-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "5354df7300ff58bcf89f11ff9e040a82", "sha256": "bb1104fe56da2cf0a6d0409f84231d37724a9fc5bd9f735682ac628bdad23964" }, "downloads": -1, "filename": "WebOb-0.9.2.tar.gz", "has_sig": false, "md5_digest": "5354df7300ff58bcf89f11ff9e040a82", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 99922, "upload_time": "2008-06-13T16:46:11", "url": "https://files.pythonhosted.org/packages/15/f6/6bb24729d2f718be06a72551f56596c667a099874ebe4f0f4d9371e9677e/WebOb-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "1ee83b8beea08a573a048cb5332a532f", "sha256": "e813f371d0a96528af300606ee71328d0cf39846f0bf39d765f0badb0013f6de" }, "downloads": -1, "filename": "WebOb-0.9.3.tar.gz", "has_sig": false, "md5_digest": "1ee83b8beea08a573a048cb5332a532f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100480, "upload_time": "2008-09-15T02:30:37", "url": "https://files.pythonhosted.org/packages/7e/89/eb3a8c8c4b9bf91ab36a722bd0e6ba5fc34c11f6d13feb8d3cb15d9f06d7/WebOb-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "95b6bb266470f04ca670a17ed7b05cfe", "sha256": "90c95315da22be0a698e8fb432e5982463979e86e3457a50cf59f83e0aca8be5" }, "downloads": -1, "filename": "WebOb-0.9.4.tar.gz", "has_sig": false, "md5_digest": "95b6bb266470f04ca670a17ed7b05cfe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100645, "upload_time": "2008-10-29T02:43:49", "url": "https://files.pythonhosted.org/packages/1e/51/5ee9ecff65821a3eaf569e7c19cfb9b21757fa5a30dbbe44d14e4acfdf82/WebOb-0.9.4.tar.gz" } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "d72ab688057fbdd99dc24f568e5b5630", "sha256": "425515e43ff5f311437baf25c865ebaa95b006bd8c7e63b9e18910462abd3c70" }, "downloads": -1, "filename": "WebOb-0.9.5.tar.gz", "has_sig": false, "md5_digest": "d72ab688057fbdd99dc24f568e5b5630", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 102368, "upload_time": "2008-12-30T21:30:26", "url": "https://files.pythonhosted.org/packages/e9/df/8b45e555c03a0f2ff7d54547556d724e396fd8ecc4aa848fcbf1d3124848/WebOb-0.9.5.tar.gz" } ], "0.9.6": [ { "comment_text": "", "digests": { "md5": "a8761b964387f48a8722a55ed3526218", "sha256": "c681053f184da818f159fe1e478f60268e6e0053292292353d202eeeaa04780d" }, "downloads": -1, "filename": "WebOb-0.9.6.tar.gz", "has_sig": false, "md5_digest": "a8761b964387f48a8722a55ed3526218", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103150, "upload_time": "2009-02-10T22:06:59", "url": "https://files.pythonhosted.org/packages/00/e2/96ce0060cb4e14b478d016cdbeeebcd9fbba010556410b905ed70c0bc1f0/WebOb-0.9.6.tar.gz" } ], "0.9.6.1": [ { "comment_text": "", "digests": { "md5": "5702ac9c9bfc39e6f04a39e15bd7b435", "sha256": "75b3ab34f490489fe5f9092c6c8170cd9ab86b0188f672b9b1b694da705c3305" }, "downloads": -1, "filename": "WebOb-0.9.6.1.tar.gz", "has_sig": false, "md5_digest": "5702ac9c9bfc39e6f04a39e15bd7b435", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103298, "upload_time": "2009-02-11T22:50:29", "url": "https://files.pythonhosted.org/packages/68/1d/b6b8eb8db451f9a536a06e33e812378a461378020d92b43e16118f7df35e/WebOb-0.9.6.1.tar.gz" } ], "0.9.7": [ { "comment_text": "", "digests": { "md5": "cb2e87f3a140b264761e50cc32cbd8bd", "sha256": "c50e47bd4e8e735ea7fd163359b9544896ab9cc89ce4d54c3578dc92f679172e" }, "downloads": -1, "filename": "WebOb-0.9.7.tar.gz", "has_sig": false, "md5_digest": "cb2e87f3a140b264761e50cc32cbd8bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47659, "upload_time": "2009-12-17T06:13:35", "url": "https://files.pythonhosted.org/packages/1e/17/dfc003a6c3204165deb1c210459561a040628e3867f7f9a181f2b25d118e/WebOb-0.9.7.tar.gz" } ], "0.9.7.1": [ { "comment_text": "", "digests": { "md5": "ebdf7ea716fd0b7a09208e3c75dfe04b", "sha256": "7fe609d4ee08017711dbd89927a18ed8a984196a4702108977a37d9b7e044a79" }, "downloads": -1, "filename": "WebOb-0.9.7.1.tar.gz", "has_sig": false, "md5_digest": "ebdf7ea716fd0b7a09208e3c75dfe04b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 202179, "upload_time": "2009-12-18T22:37:32", "url": "https://files.pythonhosted.org/packages/75/04/83e53ffd3f1802ea0249bf19abe96aee2c274cc54e08f53f5b4c9dfdf204/WebOb-0.9.7.1.tar.gz" } ], "0.9.8": [ { "comment_text": "", "digests": { "md5": "07d1a1a4b0bf0faa67cb6638c632ea61", "sha256": "5465846d93e66ab395ecdc35aee3570629cc28a7f1be8185af851b6bf26154ca" }, "downloads": -1, "filename": "WebOb-0.9.8.tar.gz", "has_sig": false, "md5_digest": "07d1a1a4b0bf0faa67cb6638c632ea61", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 204703, "upload_time": "2010-02-03T21:27:58", "url": "https://files.pythonhosted.org/packages/5a/fc/e38a71bb2631325357b62ea729a9d53326a6322b1f19935b46e8953c00b3/WebOb-0.9.8.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "2949c7b4cee48aa10ddc244eaff5d38b", "sha256": "9a623a5c0f4f854554425161d0cc3046aced5cf0d6e3fd846a1829e5125c8368" }, "downloads": -1, "filename": "WebOb-1.0.tar.gz", "has_sig": false, "md5_digest": "2949c7b4cee48aa10ddc244eaff5d38b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 210397, "upload_time": "2010-09-14T17:32:33", "url": "https://files.pythonhosted.org/packages/bc/eb/91b8dd8f3a8d3c3943bf27a2d322501ad8b227bf29f59e792c2eae092bc9/WebOb-1.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "74a0a1e8dd09eea6c6851fd548fdfa58", "sha256": "d8d462d56ad33393b27f36644f9e0cbcd5ae5c4b3585fdcb0183a1bb76a56e15" }, "downloads": -1, "filename": "WebOb-1.0.1.tar.gz", "has_sig": false, "md5_digest": "74a0a1e8dd09eea6c6851fd548fdfa58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 216200, "upload_time": "2011-01-09T06:05:49", "url": "https://files.pythonhosted.org/packages/22/7f/99bcca75be11befd713228810bad43e600137e7c7fbf51ab7e80cc921b5b/WebOb-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "4d6aa35a4b3147153b652c451cf10b0a", "sha256": "341e1860f146de44653680c7f16a6adb9615b60f0f419892ad12b03b67ad8cb7" }, "downloads": -1, "filename": "WebOb-1.0.2.tar.bz2", "has_sig": false, "md5_digest": "4d6aa35a4b3147153b652c451cf10b0a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100757, "upload_time": "2011-02-20T02:57:51", "url": "https://files.pythonhosted.org/packages/c2/60/69a45c0ff413e8b14bd36e75ac12659b2bb425d7a2695888efbd11a8cd6c/WebOb-1.0.2.tar.bz2" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "808066a82e8ba4f0501cc6550f8878a7", "sha256": "eca9ab4215baf43ddefb91ee8f6bfbf36a60fe51a5e80d3fc35b9a0e9740c557" }, "downloads": -1, "filename": "WebOb-1.0.3.tar.gz", "has_sig": false, "md5_digest": "808066a82e8ba4f0501cc6550f8878a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 128401, "upload_time": "2011-02-23T05:14:35", "url": "https://files.pythonhosted.org/packages/20/eb/6da0fa9f083e0cf55b069b659f28cb322cc37ce1c8be85bc276e953d1443/WebOb-1.0.3.tar.gz" }, { "comment_text": "", "digests": { "md5": "bef4a97690a2dc66e1b2b81086c85611", "sha256": "8f35f6654af61d3b35b999d7b66000b56186f7462caf02826bbca930f62ebfed" }, "downloads": -1, "filename": "WebOb-1.0.3.zip", "has_sig": false, "md5_digest": "bef4a97690a2dc66e1b2b81086c85611", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 149113, "upload_time": "2011-02-23T05:14:37", "url": "https://files.pythonhosted.org/packages/ae/6c/4d9cccd1b4bb71e06f76458aa77e89882b2121dc0170e74036b4f1e09bc0/WebOb-1.0.3.zip" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "cf9cc0a82ae211976a33d4383b24e176", "sha256": "52f4e464002cc3bcb286d1245ff1af2e9dcc24e42514a6e37a5ea539d8f74861" }, "downloads": -1, "filename": "WebOb-1.0.4.zip", "has_sig": false, "md5_digest": "cf9cc0a82ae211976a33d4383b24e176", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 150697, "upload_time": "2011-03-12T22:43:19", "url": "https://files.pythonhosted.org/packages/e7/ab/bbe93e4b4b7e7980aec295d59f9f6d11e65a93e60a3f1f740d9625175c2c/WebOb-1.0.4.zip" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "19a0d90ff97ba94ac4ad595c4a31c2dc", "sha256": "806e6e7c55a3170bbf016242494f7c77524666682dd95553a2e19a5d03bb6ad8" }, "downloads": -1, "filename": "WebOb-1.0.5.zip", "has_sig": false, "md5_digest": "19a0d90ff97ba94ac4ad595c4a31c2dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 150909, "upload_time": "2011-03-14T22:03:55", "url": "https://files.pythonhosted.org/packages/8f/87/0b47b51921a295586c210ccadb0ad067aadc53658452079ed4140d151bfc/WebOb-1.0.5.zip" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "8e46dd755f6998d471bfbcb4def897ff", "sha256": "d4119ff49e01b29aabf752316da74ab6a0397430a32893d701d8f7f2f1519583" }, "downloads": -1, "filename": "WebOb-1.0.6.zip", "has_sig": false, "md5_digest": "8e46dd755f6998d471bfbcb4def897ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59981, "upload_time": "2011-03-28T21:47:18", "url": "https://files.pythonhosted.org/packages/66/a2/def1920fad3bfaa23bc1f1235b18e3a703cf98895f83b7b0434148734d3f/WebOb-1.0.6.zip" } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "14c264855fac74f6f91b1886b113e876", "sha256": "ea0f8be2555986e8e9a0cc104e8e58e438b5462b064d7e9da60101a266518620" }, "downloads": -1, "filename": "WebOb-1.0.7.zip", "has_sig": false, "md5_digest": "14c264855fac74f6f91b1886b113e876", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 193712, "upload_time": "2011-04-26T00:17:39", "url": "https://files.pythonhosted.org/packages/4f/d5/b7be87eccf271905629dca9883f5238914bceb92451cf408ee24b35c31e5/WebOb-1.0.7.zip" } ], "1.0.8": [ { "comment_text": "", "digests": { "md5": "9809f9fb64fca8690a7da533fa29a272", "sha256": "fe771def02bd7857b5519bdf3ae4ea7ea4ebb7d2f5fa10953c8d4535b0ccb2b5" }, "downloads": -1, "filename": "WebOb-1.0.8.zip", "has_sig": false, "md5_digest": "9809f9fb64fca8690a7da533fa29a272", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 194699, "upload_time": "2011-06-21T00:26:48", "url": "https://files.pythonhosted.org/packages/4e/fe/cfc36faeeb9abe5bb2a98795631d299f9118b44d7b2a9697bf666a8ac2e6/WebOb-1.0.8.zip" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "8decad0ecf05577321543e7953aa9030", "sha256": "391048babc0d2500a79df0386963f942594b7b986104b49f713dc05ad21627d6" }, "downloads": -1, "filename": "WebOb-1.1.zip", "has_sig": false, "md5_digest": "8decad0ecf05577321543e7953aa9030", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 196271, "upload_time": "2011-09-07T16:31:56", "url": "https://files.pythonhosted.org/packages/56/6a/9c951fb3546a45949d3be357e737fd317d3638ca2d2e1a754e312726471a/WebOb-1.1.zip" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "989155580606c1f5472fced859976b4b", "sha256": "21f3a2ecea66129b20ba757fafa087af8ba85e413c77972accdeb56a50f1eff6" }, "downloads": -1, "filename": "WebOb-1.1.1.zip", "has_sig": false, "md5_digest": "989155580606c1f5472fced859976b4b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 196816, "upload_time": "2011-09-16T23:50:51", "url": "https://files.pythonhosted.org/packages/6d/6a/b44ec2fa39f7f0db2116fd4ddc661b2709443d9ed879c5cf0e158fc94372/WebOb-1.1.1.zip" } ], "1.1b2": [ { "comment_text": "", "digests": { "md5": "717dda70b79b6c9a19f116726e6426d1", "sha256": "23bdc450cbd6f751c63b653beab8dc36661418c340e7f13b90e7508926d78506" }, "downloads": -1, "filename": "WebOb-1.1b2.zip", "has_sig": false, "md5_digest": "717dda70b79b6c9a19f116726e6426d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 196015, "upload_time": "2011-08-07T17:02:50", "url": "https://files.pythonhosted.org/packages/cb/72/afb930622dc4ad51e22435dde531031479b408f5e557cd7a5dcab9917bfb/WebOb-1.1b2.zip" } ], "1.1beta1": [ { "comment_text": "", "digests": { "md5": "7c3d1e3812159838e7a392a9738998e0", "sha256": "25fdb9e8ad7d7612a420cb081d83e500a718a7366cf4622b20f7e8d5242912f5" }, "downloads": -1, "filename": "WebOb-1.1beta1.zip", "has_sig": false, "md5_digest": "7c3d1e3812159838e7a392a9738998e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 192816, "upload_time": "2011-07-07T23:09:24", "url": "https://files.pythonhosted.org/packages/af/ac/c01b85a1f2dbc20106738c4cba54e789438d102bb1bb401e141ee7dafedc/WebOb-1.1beta1.zip" } ], "1.1rc1": [ { "comment_text": "", "digests": { "md5": "7aa5eac03bbffef69c99f45606e9e863", "sha256": "d70cf19fed9cd9b01599dda9be3fa08ea65933ebacd4475417537ac424cea66e" }, "downloads": -1, "filename": "WebOb-1.1rc1.zip", "has_sig": false, "md5_digest": "7aa5eac03bbffef69c99f45606e9e863", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 196648, "upload_time": "2011-08-19T14:15:33", "url": "https://files.pythonhosted.org/packages/4f/f4/4a74ec0952d6324662d7b842bd7e4eba508f3797d03339bed5c5a860efb3/WebOb-1.1rc1.zip" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "e5d9699f31f296384f67cbfd90e84a9e", "sha256": "54a365379afd2e82e19e5b032d3cb19fdc17d7cf68d3aaecd9c4e4120661d736" }, "downloads": -1, "filename": "WebOb-1.2.zip", "has_sig": false, "md5_digest": "e5d9699f31f296384f67cbfd90e84a9e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 216745, "upload_time": "2012-05-23T15:46:54", "url": "https://files.pythonhosted.org/packages/6a/78/3729e41bac4b061ba813c0a8f41a512d78bdf04c74ed9ef51f1ca130e5dc/WebOb-1.2.zip" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "9d30d5b6d857c6ea0b55aba5c25d3779", "sha256": "45bd466b0a67acd168d67ea43482264c71f126d8ebe879041da674df79322610" }, "downloads": -1, "filename": "WebOb-1.2.1.zip", "has_sig": false, "md5_digest": "9d30d5b6d857c6ea0b55aba5c25d3779", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 218347, "upload_time": "2012-07-25T05:14:00", "url": "https://files.pythonhosted.org/packages/88/6e/9672d1fcf9b7a968ce638d728cc3df781d263a7de40e6814e9e95a6bd1af/WebOb-1.2.1.zip" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "de0f371b46554709ce5b93c088a11cae", "sha256": "356b7277941fb263bfef9d3c4279fb1058ff9ea91b5f8a886a9579d614c79787" }, "downloads": -1, "filename": "WebOb-1.2.2.zip", "has_sig": false, "md5_digest": "de0f371b46554709ce5b93c088a11cae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 219653, "upload_time": "2012-08-10T10:55:33", "url": "https://files.pythonhosted.org/packages/2f/a0/6a37ab7b40735823def3cbf7c971baabf3460d289ad4285cce755218b8d3/WebOb-1.2.2.zip" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "11825b7074ba7043e157805e4e6e0f55", "sha256": "325c249f3ac35e72b75ba13b2c60317def0c986a24a413ebf700509ea4c73a13" }, "downloads": -1, "filename": "WebOb-1.2.3.tar.gz", "has_sig": false, "md5_digest": "11825b7074ba7043e157805e4e6e0f55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 191327, "upload_time": "2012-10-11T18:14:59", "url": "https://files.pythonhosted.org/packages/6c/b0/9012df5d40a15fdfa9c233580b8b555b943b8797ce588aa6ce90390c6f7b/WebOb-1.2.3.tar.gz" } ], "1.2b1": [ { "comment_text": "", "digests": { "md5": "23fb285c7889ac840d8f34ec01f6ab56", "sha256": "44803c9a7d952802a1c8bf945dec6934ce0ed872ba33968ec2615e5c27416040" }, "downloads": -1, "filename": "WebOb-1.2b1.zip", "has_sig": false, "md5_digest": "23fb285c7889ac840d8f34ec01f6ab56", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199618, "upload_time": "2011-10-14T23:36:01", "url": "https://files.pythonhosted.org/packages/9b/8b/60aff8df43653ba2b1b0b68c27553dfbd2c8158b6296fc210a4b1109294d/WebOb-1.2b1.zip" } ], "1.2b2": [ { "comment_text": "", "digests": { "md5": "1b6795baf23f6c1553186a0a8b1a2621", "sha256": "4b6599ac6ac18fa1f0f637c1b0f765db4f60858ba5ed049bfd5ce7463771016a" }, "downloads": -1, "filename": "WebOb-1.2b2.zip", "has_sig": false, "md5_digest": "1b6795baf23f6c1553186a0a8b1a2621", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199678, "upload_time": "2011-10-15T18:39:16", "url": "https://files.pythonhosted.org/packages/fa/42/f4d77124d9aab2c578721458c09d125866bd3d827b90ced1cfe9189e4b2b/WebOb-1.2b2.zip" } ], "1.2b3": [ { "comment_text": "", "digests": { "md5": "e0cdf8657fd77b1da7c12bed838596ba", "sha256": "e0ac09805a9643d5b1bf5753adbf089cd52a6ff97fc2873bf17c2a82d9a49efb" }, "downloads": -1, "filename": "WebOb-1.2b3.zip", "has_sig": false, "md5_digest": "e0cdf8657fd77b1da7c12bed838596ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 204370, "upload_time": "2012-01-31T17:53:31", "url": "https://files.pythonhosted.org/packages/79/34/a81ca7b58b61469c389f817201fcfb58fbd44b04a4d3ca560521fd2dfc29/WebOb-1.2b3.zip" } ], "1.2rc1": [ { "comment_text": "", "digests": { "md5": "b164476f4e112ae71fdfe6a36de90e4c", "sha256": "b25cb3385fbe0cccf91e8b617eb61057d9ac39c53bf9fa4918a3ec561a0379f5" }, "downloads": -1, "filename": "WebOb-1.2rc1.zip", "has_sig": false, "md5_digest": "b164476f4e112ae71fdfe6a36de90e4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 216706, "upload_time": "2012-05-15T15:14:11", "url": "https://files.pythonhosted.org/packages/9c/4a/f3b91d07f5709f6e035150c8a79bfc4c3664d1de00a3d2b0d9b7b491035f/WebOb-1.2rc1.zip" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "755ff6c84fcd539cfae6a89ba099b9bd", "sha256": "03f89bcc73026f4b1359dbbebdec94183909be5ef6508dc5e67922d53204bcca" }, "downloads": -1, "filename": "WebOb-1.3.tar.gz", "has_sig": false, "md5_digest": "755ff6c84fcd539cfae6a89ba099b9bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 198042, "upload_time": "2013-12-10T10:04:41", "url": "https://files.pythonhosted.org/packages/bb/aa/1ff65b698ea8dcfa3ae9a0c4a9be8bd2eb4d63d483b7d4023aefce35cd0f/WebOb-1.3.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "20918251c5726956ba8fef22d1556177", "sha256": "1b53edf70e65d42b34d520c41d7e609a62f991fdd6b5c0306c0c026222f7edae" }, "downloads": -1, "filename": "WebOb-1.3.1.tar.gz", "has_sig": false, "md5_digest": "20918251c5726956ba8fef22d1556177", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 198329, "upload_time": "2013-12-13T17:04:43", "url": "https://files.pythonhosted.org/packages/16/78/adfc0380b8a0d75b2d543fa7085ba98a573b1ae486d9def88d172b81b9fa/WebOb-1.3.1.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "8437607c0cc00c35f658f972516ffb55", "sha256": "0819838204e2a6823e42bf2227898fdf3f306f7619bf328e25855a0d1ca20399" }, "downloads": -1, "filename": "WebOb-1.4.tar.gz", "has_sig": false, "md5_digest": "8437607c0cc00c35f658f972516ffb55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 633302, "upload_time": "2014-05-15T01:30:57", "url": "https://files.pythonhosted.org/packages/68/3e/42043e370492445b1f4f1c504d5fae94cff619064033270c6a8030eafcd1/WebOb-1.4.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "a5c6e8ba5431756e6a5d5ec56047ec94", "sha256": "12f8b98390befc47336d2c0e5bad9cc48609d808eabb3f8675dc1027a3a9e9db" }, "downloads": -1, "filename": "WebOb-1.4.1.tar.gz", "has_sig": false, "md5_digest": "a5c6e8ba5431756e6a5d5ec56047ec94", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 671495, "upload_time": "2015-04-14T15:40:00", "url": "https://files.pythonhosted.org/packages/f0/d9/89cfcfbb9d7a438fea274fcf89531fb719a1a9590a9632b2045a541b5a2d/WebOb-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "c89484cafbe35d49da4c5a58b4e054dc", "sha256": "47d5db89c460a9a03f1a8bc2e32a372450f6f95b557090f952429039d34e975d" }, "downloads": -1, "filename": "WebOb-1.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c89484cafbe35d49da4c5a58b4e054dc", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 73904, "upload_time": "2015-10-30T22:08:01", "url": "https://files.pythonhosted.org/packages/bf/93/7b9c7e816821554d43407e8067e6e92557a38bd865b266c7c8e4b790e4e4/WebOb-1.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "06e3b80d2f9b9b13046e84e26785cd9b", "sha256": "466c4d5b66d3553d2fd040b0ac65b2ba57f4fb95cf561d8560d8914044510ef8" }, "downloads": -1, "filename": "WebOb-1.4.2.tar.gz", "has_sig": false, "md5_digest": "06e3b80d2f9b9b13046e84e26785cd9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 197793, "upload_time": "2015-10-30T22:05:11", "url": "https://files.pythonhosted.org/packages/5b/46/3552f6ec8a24a3f3bfd140ac825c96061b422b98939a81ca469f80236246/WebOb-1.4.2.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "22eefc74335a0e40e2b320c94b8956ac", "sha256": "994aa24535e669cfa4069189b187f71bb7f52278815768dab7430a9f1e525714" }, "downloads": -1, "filename": "WebOb-1.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "22eefc74335a0e40e2b320c94b8956ac", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 79441, "upload_time": "2015-10-11T23:25:20", "url": "https://files.pythonhosted.org/packages/ba/f4/a38f681a2e9c58af87cfbdfd3c6e33d5236953dc0602115ace85e5c4a873/WebOb-1.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dff7f401d9a7fac47b160c36a6d62e63", "sha256": "8e90cca008c0189fe64d06281d50d9510c1dde4147bdf4bc81b666020ce31350" }, "downloads": -1, "filename": "WebOb-1.5.0.tar.gz", "has_sig": false, "md5_digest": "dff7f401d9a7fac47b160c36a6d62e63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 186394, "upload_time": "2015-10-11T23:24:48", "url": "https://files.pythonhosted.org/packages/12/78/f48cd09f51ef3a87c282415c37100c4f4ac467bba45ac3667c332f8e8941/WebOb-1.5.0.tar.gz" } ], "1.5.0a0": [ { "comment_text": "", "digests": { "md5": "79777dbd80d0aa961af9cb423f207986", "sha256": "578adb0d2738b8a88846f2c4aed0f63ebb3c5360422e2365bf9142b0256dd84a" }, "downloads": -1, "filename": "WebOb-1.5.0a0.tar.gz", "has_sig": false, "md5_digest": "79777dbd80d0aa961af9cb423f207986", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 200909, "upload_time": "2015-07-26T01:19:57", "url": "https://files.pythonhosted.org/packages/de/5b/09328537a7fcc61eb3b36ae9e793fe05499595c440043a8d013b3b6b8dab/WebOb-1.5.0a0.tar.gz" } ], "1.5.0a1": [ { "comment_text": "", "digests": { "md5": "b3319df781db8e92e7b8bfc28da722f2", "sha256": "7390a258630dbdad3ed0afd8716bee4fdc96f7d06e175ffe8b47ad5192a032d7" }, "downloads": -1, "filename": "WebOb-1.5.0a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b3319df781db8e92e7b8bfc28da722f2", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 75330, "upload_time": "2015-08-04T17:13:19", "url": "https://files.pythonhosted.org/packages/af/3e/01f287dc3967e7e300e053dcaae3bb40bffefb4f1e9dc2cb0034004cdcac/WebOb-1.5.0a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f39aa5ea88e808ebbc8faf3a8b9b485f", "sha256": "f673a118ed8a0c0c47a9ec2535fd19fbfbe6aaa024de31eac349d7d4f4164dfd" }, "downloads": -1, "filename": "WebOb-1.5.0a1.tar.gz", "has_sig": false, "md5_digest": "f39aa5ea88e808ebbc8faf3a8b9b485f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 201580, "upload_time": "2015-07-30T16:15:05", "url": "https://files.pythonhosted.org/packages/42/3b/6125d0a081d662272f63efeb6e957df36b370b220ea7f9c097ec041674b6/WebOb-1.5.0a1.tar.gz" } ], "1.5.0b0": [ { "comment_text": "", "digests": { "md5": "6d02f2ba63c2665ba239c003e020e3b3", "sha256": "744839b5b95fd9521ad1330a8ce41901c808653f56a52e592be989a48fe97839" }, "downloads": -1, "filename": "WebOb-1.5.0b0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6d02f2ba63c2665ba239c003e020e3b3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 79198, "upload_time": "2015-09-06T22:58:08", "url": "https://files.pythonhosted.org/packages/10/82/7a5e0f80fb736aed58b5dad9113a70878055b180f5309f7596c5284c6252/WebOb-1.5.0b0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "452f13d1a2f162dcc973110704bf7cfd", "sha256": "8a50bc381ba28e0f44918e14811883d361a8fb2b7ce70208906152f6591c0b90" }, "downloads": -1, "filename": "WebOb-1.5.0b0.tar.gz", "has_sig": false, "md5_digest": "452f13d1a2f162dcc973110704bf7cfd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 201483, "upload_time": "2015-09-06T22:58:03", "url": "https://files.pythonhosted.org/packages/df/de/3db2cb997433dcf4f3fab202551f00b71c6dbb2111d8d0d34ca6a8acee06/WebOb-1.5.0b0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "2cb4e2b5657f0200c05cdc4a439dc4ef", "sha256": "9e6cd1c40c9dddb966c299096bd376b551f9ac93a99ebdd51b4777b4da2c7a0f" }, "downloads": -1, "filename": "WebOb-1.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2cb4e2b5657f0200c05cdc4a439dc4ef", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 79874, "upload_time": "2015-10-30T22:15:40", "url": "https://files.pythonhosted.org/packages/be/5a/54446f93cdb8a120f6cd4e515814cbedfc049f1e1a1dcab852927641da51/WebOb-1.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b4c121048b154e33630ce1bf09a49b41", "sha256": "d8a9a153577f74b275dfd441ee2de4910eb2c1228d94186285684327e3877009" }, "downloads": -1, "filename": "WebOb-1.5.1.tar.gz", "has_sig": false, "md5_digest": "b4c121048b154e33630ce1bf09a49b41", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 202821, "upload_time": "2015-10-30T22:15:31", "url": "https://files.pythonhosted.org/packages/3c/63/3c3c183cf9ba0e30fe5d72d12c511af3bc5493b48e00f4f8ae3689a9d777/WebOb-1.5.1.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "8ff68c5fce011abd8c3ef714a24450ec", "sha256": "69356a75980172f3e76717f6899b6c75d95ccdc7a2cb6a3b8bd6a7de3fc72401" }, "downloads": -1, "filename": "WebOb-1.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8ff68c5fce011abd8c3ef714a24450ec", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 77721, "upload_time": "2016-03-16T03:53:47", "url": "https://files.pythonhosted.org/packages/12/5a/b6ef092cf8e70d2d63fdd8d2c6d479b1896d815cb256585213ed86e10196/WebOb-1.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "089d7fc6745f175737800237c7287802", "sha256": "63d262d8f61b516321f786879c9277fa2209f7f57eb47b537eeecfea383d55b7" }, "downloads": -1, "filename": "WebOb-1.6.0.tar.gz", "has_sig": false, "md5_digest": "089d7fc6745f175737800237c7287802", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 204340, "upload_time": "2016-03-16T03:53:36", "url": "https://files.pythonhosted.org/packages/ec/2e/7b5ab4c00e8586fa243f70210eb6f54cdcf901e05c1d88e7c57b0d0e59ba/WebOb-1.6.0.tar.gz" } ], "1.6.0a0": [ { "comment_text": "", "digests": { "md5": "4783210f949f7950f8abc4facc927fb2", "sha256": "cc19bada53846663a41c13849751b5f45037d31d9acf150eeb1a27cc425cd5a1" }, "downloads": -1, "filename": "WebOb-1.6.0a0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4783210f949f7950f8abc4facc927fb2", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 77755, "upload_time": "2016-01-29T01:07:32", "url": "https://files.pythonhosted.org/packages/4a/1f/d40f65cd4700af71e44efc51c23aeadd17aedd35affa2f734259d4cfb48f/WebOb-1.6.0a0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "247a478d1c5e12eaceab2e8cb33b6b07", "sha256": "fe6bc77ace5ec879152ac47b9c4b357b7c788264adbff1fe6bf8a0824272af91" }, "downloads": -1, "filename": "WebOb-1.6.0a0.tar.gz", "has_sig": false, "md5_digest": "247a478d1c5e12eaceab2e8cb33b6b07", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 203676, "upload_time": "2016-01-29T01:07:20", "url": "https://files.pythonhosted.org/packages/32/e1/bbb9ef6aec3d3a137912e150e4cb889225ea4c3edbfc50d3a68915ab67ef/WebOb-1.6.0a0.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "8d53489b244ccef0a8a84eb90d146966", "sha256": "509ce06406bd9c63fc6fba4ea5e96d17f6080f126d6303d6ab583b5f20c3eced" }, "downloads": -1, "filename": "WebOb-1.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8d53489b244ccef0a8a84eb90d146966", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 77942, "upload_time": "2016-05-20T16:56:45", "url": "https://files.pythonhosted.org/packages/34/10/0e182488e4f2a34c2aa8fc5e462571f1f92e5e6511312f3855406c66c7a4/WebOb-1.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "04049d82e9d12dd91f6f46f54cc826aa", "sha256": "e804c583bd0fb947bd7c03d296942b38b985cf1da4fd82bf879994d29edb21fe" }, "downloads": -1, "filename": "WebOb-1.6.1.tar.gz", "has_sig": false, "md5_digest": "04049d82e9d12dd91f6f46f54cc826aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 204676, "upload_time": "2016-05-20T16:56:34", "url": "https://files.pythonhosted.org/packages/5d/c7/7c1565b188d8d32bf3657a24b9d71621e35ba20ec4179a0a7f9803511099/WebOb-1.6.1.tar.gz" } ], "1.6.2": [ { "comment_text": "", "digests": { "md5": "ba5ea96d579b60cbe018cfd55de3fbdb", "sha256": "f952b693a2d1ae32962e92156f77a451c7376806bda4e72bb966bc99fdfbdf09" }, "downloads": -1, "filename": "WebOb-1.6.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ba5ea96d579b60cbe018cfd55de3fbdb", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 78252, "upload_time": "2016-10-14T22:42:28", "url": "https://files.pythonhosted.org/packages/57/11/e3be75d86505b69523f36f2939c64399a2e66200a9271b919112187e9a4b/WebOb-1.6.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cc88bf68d6bf879c2d2145c86b6f5010", "sha256": "e096c20ec672412f7d463fd5ed23f71b9176945c66b8adb8b781b8cda174de84" }, "downloads": -1, "filename": "WebOb-1.6.2.tar.gz", "has_sig": false, "md5_digest": "cc88bf68d6bf879c2d2145c86b6f5010", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 205228, "upload_time": "2016-10-14T22:42:25", "url": "https://files.pythonhosted.org/packages/df/40/009a807e85593db8f21ec4d27807a83b6435eed9fd7ef3764d864479b930/WebOb-1.6.2.tar.gz" } ], "1.6.3": [ { "comment_text": "", "digests": { "md5": "f5c0846c477fcef2c9a94a158d5c4279", "sha256": "7ff07cc07d32a3fda749aead3579917e31c35240419d69bfc7b5220feac3eb04" }, "downloads": -1, "filename": "WebOb-1.6.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f5c0846c477fcef2c9a94a158d5c4279", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 78979, "upload_time": "2016-11-18T22:35:56", "url": "https://files.pythonhosted.org/packages/c7/4a/7b62af5dbc1ad4e208a9a8a3c22d055838917a7b2d1bd57cc71f5630ec3f/WebOb-1.6.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1754bcea2b569ffc4a9a646f65eca69e", "sha256": "1b03115e162dd0102f6147c5d5ed71a3a2ba0f58ef829244b64f52fe6dbf5888" }, "downloads": -1, "filename": "WebOb-1.6.3.tar.gz", "has_sig": false, "md5_digest": "1754bcea2b569ffc4a9a646f65eca69e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 206375, "upload_time": "2016-11-18T22:35:52", "url": "https://files.pythonhosted.org/packages/9c/38/5a27acd4a3b60780273d306cbef8b42afdc8425f19e33812964552520a85/WebOb-1.6.3.tar.gz" } ], "1.6.4": [ { "comment_text": "", "digests": { "md5": "219746fba590dc966e7880ddcaafbdfb", "sha256": "3b5d1b52162ddd619c9a5b3e01364c2ffd38a5de1723acda471919ca0436470f" }, "downloads": -1, "filename": "WebOb-1.6.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "219746fba590dc966e7880ddcaafbdfb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 79101, "upload_time": "2017-03-16T04:04:44", "url": "https://files.pythonhosted.org/packages/7c/ab/18d213b4f7b862ecb6bf0fe9f905a68e24295938fb03744ca6ae3778d466/WebOb-1.6.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "84a452deb83e61e5ca2cb13ca7b4ac52", "sha256": "53a33e2aa3f636135b11201311a99ececb3c7fe49af639f0c6290e3153e41a2a" }, "downloads": -1, "filename": "WebOb-1.6.4.tar.gz", "has_sig": false, "md5_digest": "84a452deb83e61e5ca2cb13ca7b4ac52", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 206513, "upload_time": "2017-03-16T04:05:44", "url": "https://files.pythonhosted.org/packages/8b/dc/1301b5c68cedc40516670aba145e6ab719671f844827cf3d9f7c934b6c87/WebOb-1.6.4.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "51f7c708b7cd77f51f22d6a3c68731ac", "sha256": "2fd2d754b88ce24a67d8d35cdc15f8ba14f9c8ad1f6f28c8361839cf993ca98f" }, "downloads": -1, "filename": "WebOb-1.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "51f7c708b7cd77f51f22d6a3c68731ac", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 82927, "upload_time": "2016-12-22T07:13:38", "url": "https://files.pythonhosted.org/packages/51/b4/d8f811f5bed14a631ad8fc950088c0f3c616272a0aa13b6fc38e63de95ab/WebOb-1.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2be9cccbc4c6204e8e2715a13fe5a2bc", "sha256": "d8ba8fbf5fc30ad7e68f37388b34526c604e4c3b342e654b72edbcb40b2e6b03" }, "downloads": -1, "filename": "WebOb-1.7.0.tar.gz", "has_sig": false, "md5_digest": "2be9cccbc4c6204e8e2715a13fe5a2bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 214880, "upload_time": "2016-12-22T07:13:34", "url": "https://files.pythonhosted.org/packages/96/6a/1fa3aaf61a2f60b60c54cdeda5303fef5ac53fc46669d883a6befd886518/WebOb-1.7.0.tar.gz" } ], "1.7.0rc1": [ { "comment_text": "", "digests": { "md5": "7e533954491cb2da352b5229ad0d18e7", "sha256": "3ea6a4784425da553d65aecdf635032269f28d1c4fb2e0e54911e447781a8f87" }, "downloads": -1, "filename": "WebOb-1.7.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7e533954491cb2da352b5229ad0d18e7", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 82916, "upload_time": "2016-11-18T23:27:15", "url": "https://files.pythonhosted.org/packages/a3/59/6ac3fc6c55a6904cd668ce1062ab25b020ee80b46c9571b53b292b91749b/WebOb-1.7.0rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ec908d67d25067baffe59b6c551a0dd8", "sha256": "e0e784fe4c4f8aebcf31a5cc43adca0ed7b48163e689c8ba165a8f02b6888399" }, "downloads": -1, "filename": "WebOb-1.7.0rc1.tar.gz", "has_sig": false, "md5_digest": "ec908d67d25067baffe59b6c551a0dd8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 213926, "upload_time": "2016-11-18T23:27:11", "url": "https://files.pythonhosted.org/packages/03/0a/3a559d7c435d035e90053566d40612a443832c2a921581062cd9e88b5b25/WebOb-1.7.0rc1.tar.gz" } ], "1.7.0rc2": [ { "comment_text": "", "digests": { "md5": "f4aeb138309bd58828083ebe18c78253", "sha256": "339f9e8034e7c0a8b839ca056b3608cd0e9226cfdcf12f6b4633fd2630c72d9b" }, "downloads": -1, "filename": "WebOb-1.7.0rc2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f4aeb138309bd58828083ebe18c78253", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 83051, "upload_time": "2016-12-10T04:38:26", "url": "https://files.pythonhosted.org/packages/06/00/fea53574550885c37de9adef46f331051e33483501b0cfd8869ddc356916/WebOb-1.7.0rc2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f3475169bec3685a5a5ed75204bcbf1a", "sha256": "5b4b29012c1bfce359ebde8bf3c988ac427a3ceb816e3987183da8cc021090a9" }, "downloads": -1, "filename": "WebOb-1.7.0rc2.tar.gz", "has_sig": false, "md5_digest": "f3475169bec3685a5a5ed75204bcbf1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 215005, "upload_time": "2016-12-10T04:38:23", "url": "https://files.pythonhosted.org/packages/6a/91/9e4893cb7db6344acabf4fa1d60351e18c2f9d88f79148ca652e2b2f2d04/WebOb-1.7.0rc2.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "35925da675cd652334dcbe8170b1dacd", "sha256": "e56ba5abf09f7ab4360d34acf5d4c21ae4420e710906c6e51daad4a431743510" }, "downloads": -1, "filename": "WebOb-1.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "35925da675cd652334dcbe8170b1dacd", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 83297, "upload_time": "2017-01-17T06:49:30", "url": "https://files.pythonhosted.org/packages/58/9b/e99afbd647f0ea60a6fe954802a2407e0e290dbdac56983f4f03ad9014c6/WebOb-1.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "31f4452f2d86f0175c0ed50d272f496b", "sha256": "3b2e3e4a46ce92614fb7d85081a63d03fa0c714dbe0195d5d91ec0205526c83f" }, "downloads": -1, "filename": "WebOb-1.7.1.tar.gz", "has_sig": false, "md5_digest": "31f4452f2d86f0175c0ed50d272f496b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 215517, "upload_time": "2017-01-17T06:49:26", "url": "https://files.pythonhosted.org/packages/c3/6f/fc168ab701ab8f3741ed0b1377edda676c3e7db61858cef1f72969413968/WebOb-1.7.1.tar.gz" } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "8b675c95aebc7316d4da5ce577db1bf3", "sha256": "a365afb4e0202aa0d4887258d098d321851c95625d420f568292c98760dba8c9" }, "downloads": -1, "filename": "WebOb-1.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8b675c95aebc7316d4da5ce577db1bf3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 83430, "upload_time": "2017-03-16T04:28:10", "url": "https://files.pythonhosted.org/packages/4d/9e/2a3a3ca6e9978bcebdb6a0c6718bf811edde24bfff19cdc3670609511e48/WebOb-1.7.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ab54739f9f716c3cdf66ad3dc4816113", "sha256": "0dc8b30bdbf15d8fd1a967e30ece3357f2f468206354f69213e57b30a63f0039" }, "downloads": -1, "filename": "WebOb-1.7.2.tar.gz", "has_sig": false, "md5_digest": "ab54739f9f716c3cdf66ad3dc4816113", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 215746, "upload_time": "2017-03-16T04:28:12", "url": "https://files.pythonhosted.org/packages/1a/2b/322d6e01ba19c1e28349efe46dab1bd480c81a55af0658d63dc48ed62ee6/WebOb-1.7.2.tar.gz" } ], "1.7.3": [ { "comment_text": "", "digests": { "md5": "cee76f7d30942ec04d052b6dd25f565b", "sha256": "0ef6a10fc04a9e699fe0260b3af9b3518e239d35e2942c6fdc2959c193730a2d" }, "downloads": -1, "filename": "WebOb-1.7.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cee76f7d30942ec04d052b6dd25f565b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 83629, "upload_time": "2017-06-30T21:17:19", "url": "https://files.pythonhosted.org/packages/40/4a/893f8ee79460865f5bafb8a8fa90cbc5b099585cedbe9179c83511aab319/WebOb-1.7.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "350028baffc508e3d23c078118e35316", "sha256": "e65ca14b9f5ae5b031988ffc93f8b7f305ddfcf17a4c774ae0db47bcb3b87283" }, "downloads": -1, "filename": "WebOb-1.7.3.tar.gz", "has_sig": false, "md5_digest": "350028baffc508e3d23c078118e35316", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 216028, "upload_time": "2017-06-30T21:17:22", "url": "https://files.pythonhosted.org/packages/46/87/2f96d8d43b2078fae6e1d33fa86b95c228cebed060f4e3c7576cc44ea83b/WebOb-1.7.3.tar.gz" } ], "1.7.4": [ { "comment_text": "", "digests": { "md5": "c02802b5d8d5abdd9e809d8af77849e5", "sha256": "63f4220492476c5c716b615baed7bf3d27040b3105014375787160dee0943115" }, "downloads": -1, "filename": "WebOb-1.7.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c02802b5d8d5abdd9e809d8af77849e5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 84062, "upload_time": "2017-11-20T22:30:05", "url": "https://files.pythonhosted.org/packages/b6/88/ccc25a41d65be0545d69bf28afed60dec865c04d0837ccd02e6d67942fe1/WebOb-1.7.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "397e46892d7f199b1a07eb20a2d3d9bd", "sha256": "8d10af182fda4b92193113ee1edeb687ab9dc44336b37d6804e413f0240d40d9" }, "downloads": -1, "filename": "WebOb-1.7.4.tar.gz", "has_sig": false, "md5_digest": "397e46892d7f199b1a07eb20a2d3d9bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 219331, "upload_time": "2017-11-20T22:30:07", "url": "https://files.pythonhosted.org/packages/75/34/731e23f52371852dfe7490a61644826ba7fe70fd52a377aaca0f4956ba7f/WebOb-1.7.4.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "331d4e1a1798b5785cf1f3397e923705", "sha256": "ae809c05b667c3457a2937cdb4a7c7f07e90f26c651a340d37fdd1d5cf1fed27" }, "downloads": -1, "filename": "WebOb-1.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "331d4e1a1798b5785cf1f3397e923705", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "size": 114690, "upload_time": "2018-04-05T02:09:00", "url": "https://files.pythonhosted.org/packages/57/79/f66ee0cd56328d35e2114e870f9d6a8b1312a608aceb60809729a42b171f/WebOb-1.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c0cc2483a552504466fd4c158e965e05", "sha256": "6fca7aa39bd2f6d2ff71f15a22223ff256c91f60b1ab52dac0ab38dc6ea9142f" }, "downloads": -1, "filename": "WebOb-1.8.0.tar.gz", "has_sig": false, "md5_digest": "c0cc2483a552504466fd4c158e965e05", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "size": 270259, "upload_time": "2018-04-05T02:09:01", "url": "https://files.pythonhosted.org/packages/3c/0a/17a65fbd85ea7cec43b500b982e9bced125669d50dd343a703fe4b9d3a51/WebOb-1.8.0.tar.gz" } ], "1.8.0rc1": [ { "comment_text": "", "digests": { "md5": "b61fdaed4db9953275177a21fa9f448c", "sha256": "6cbd4aa5a0d37090f3d2bece656186d4691297ffbf39d08a6bbf55f189810f67" }, "downloads": -1, "filename": "WebOb-1.8.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b61fdaed4db9953275177a21fa9f448c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "size": 114283, "upload_time": "2018-01-01T14:50:56", "url": "https://files.pythonhosted.org/packages/ef/8c/8f930c25c3272ef3fb1a66879f381001c4e629bdd0cf1646686b31daa188/WebOb-1.8.0rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "82d0128e83dd2b712f7fe4bec006ddd5", "sha256": "fa192842af2a04be36e3c4b4fc85e48fbaada5c462443b20dc3327d33d76ffe8" }, "downloads": -1, "filename": "WebOb-1.8.0rc1.tar.gz", "has_sig": false, "md5_digest": "82d0128e83dd2b712f7fe4bec006ddd5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "size": 269383, "upload_time": "2018-01-01T14:51:00", "url": "https://files.pythonhosted.org/packages/11/79/71100e7832f483b876f60ced091aa577abaa1cf00cd12fa6c79eb9139f71/WebOb-1.8.0rc1.tar.gz" } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "25ef3dafdfe07ea97903c9fa8ee6d766", "sha256": "1771899117c8851153f6f91e8b8a86236972aa8a1b6bd69ad0a36a9879ea2cd7" }, "downloads": -1, "filename": "WebOb-1.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "25ef3dafdfe07ea97903c9fa8ee6d766", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "size": 115367, "upload_time": "2018-04-10T23:55:25", "url": "https://files.pythonhosted.org/packages/6f/f8/b2ce2bacd1e63840224af7169536ef0f8c2da7fcf2085bfb0b0d0a6edf4a/WebOb-1.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "afea95e4f08330a0529ae33137caf4f0", "sha256": "54f35073d2fdcddd7a98c2a1dedeede49739150737164a787220f30283139ba6" }, "downloads": -1, "filename": "WebOb-1.8.1.tar.gz", "has_sig": false, "md5_digest": "afea95e4f08330a0529ae33137caf4f0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "size": 271374, "upload_time": "2018-04-10T23:55:26", "url": "https://files.pythonhosted.org/packages/ea/93/675ec37b631c823877718164b74fc057203c8979fd771bf60f711d64550b/WebOb-1.8.1.tar.gz" } ], "1.8.2": [ { "comment_text": "", "digests": { "md5": "f79deb17bfc11e26e4f7064d6a0b5bd7", "sha256": "263690003a3e092ca1ec4df787f93feb0004e39d7bac9cba2c19a552c765894b" }, "downloads": -1, "filename": "WebOb-1.8.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f79deb17bfc11e26e4f7064d6a0b5bd7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "size": 115553, "upload_time": "2018-06-06T00:39:09", "url": "https://files.pythonhosted.org/packages/d2/df/9b3b374ea2a82b875a90d1fdcf2c4a652d48f0d1e7c2d1034d636551d4d2/WebOb-1.8.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d04756e6683fedddba52eafbe9adf404", "sha256": "1fe722f2ab857685fc96edec567dc40b1875b21219b3b348e58cd8c4d5ea7df3" }, "downloads": -1, "filename": "WebOb-1.8.2.tar.gz", "has_sig": false, "md5_digest": "d04756e6683fedddba52eafbe9adf404", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "size": 271737, "upload_time": "2018-06-06T00:39:11", "url": "https://files.pythonhosted.org/packages/f2/8a/dd4a3a32fba184e48a50be732aa390f9db2a725a535dcfb9fee781a2943c/WebOb-1.8.2.tar.gz" } ], "1.8.3": [ { "comment_text": "", "digests": { "md5": "43b40a14abf53d4a8b02c2ece59c751f", "sha256": "6e231a2952604efd41fd8f76803fe50e1904c81e4619eeb9d9c6991517627721" }, "downloads": -1, "filename": "WebOb-1.8.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "43b40a14abf53d4a8b02c2ece59c751f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "size": 113157, "upload_time": "2018-10-15T00:59:12", "url": "https://files.pythonhosted.org/packages/b5/74/a9aaec7ca6c94a58e379a9c95255a2b2017514948054c72c0d1a25953348/WebOb-1.8.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "688fd6bd22978fb90644f19ac6aa0e91", "sha256": "b0853dad347ca3777755b6d0659bb45efbeea71f995d8a395291ef6ad5d4f8b2" }, "downloads": -1, "filename": "WebOb-1.8.3.tar.gz", "has_sig": false, "md5_digest": "688fd6bd22978fb90644f19ac6aa0e91", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "size": 270786, "upload_time": "2018-10-15T00:59:14", "url": "https://files.pythonhosted.org/packages/79/f1/81d397e07ef799794f81aee8ef48ccb942fd77324aee8b0f423deda2b40f/WebOb-1.8.3.tar.gz" } ], "1.8.4": [ { "comment_text": "", "digests": { "md5": "780472cdde9abaf413eec9aa1e891ec7", "sha256": "fc8c466af474e2e2775f1aef7afb902ed8b82e597eb0b13624818a34e8bfe720" }, "downloads": -1, "filename": "WebOb-1.8.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "780472cdde9abaf413eec9aa1e891ec7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "size": 113669, "upload_time": "2018-11-12T00:13:54", "url": "https://files.pythonhosted.org/packages/d7/e3/83ba0e92d703f46301e43c40412b05a3881d92e9b686bcb395a0f91817e5/WebOb-1.8.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "270b9a2734cf4f74b99b3a5be67f99e6", "sha256": "a48315158db05df0c47fbdd061b57ba0ba85bdd0b6ea9dca87511b4b7c798e99" }, "downloads": -1, "filename": "WebOb-1.8.4.tar.gz", "has_sig": false, "md5_digest": "270b9a2734cf4f74b99b3a5be67f99e6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "size": 271891, "upload_time": "2018-11-12T00:13:56", "url": "https://files.pythonhosted.org/packages/e4/6c/99e322c3d4cc11d9060a67a9bf2f7c9c581f40988c11fffe89bb8c36bc5e/WebOb-1.8.4.tar.gz" } ], "1.8.5": [ { "comment_text": "", "digests": { "md5": "ecfd1d878990a3ead080210c059cbca0", "sha256": "36db8203c67023d68c1b00208a7bf55e3b10de2aa317555740add29c619de12b" }, "downloads": -1, "filename": "WebOb-1.8.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ecfd1d878990a3ead080210c059cbca0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "size": 113707, "upload_time": "2019-01-03T19:40:35", "url": "https://files.pythonhosted.org/packages/06/e1/4acd2b4327fceb4c6446bdbca515f807ab83188526fd654940c00bcf8cc3/WebOb-1.8.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1761f416e8cf53f6fb674149cc223bd1", "sha256": "05aaab7975e0ee8af2026325d656e5ce14a71f1883c52276181821d6d5bf7086" }, "downloads": -1, "filename": "WebOb-1.8.5.tar.gz", "has_sig": false, "md5_digest": "1761f416e8cf53f6fb674149cc223bd1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "size": 271955, "upload_time": "2019-01-03T19:40:37", "url": "https://files.pythonhosted.org/packages/9d/1a/0c89c070ee2829c934cb6c7082287c822e28236a4fcf90063e6be7c35532/WebOb-1.8.5.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ecfd1d878990a3ead080210c059cbca0", "sha256": "36db8203c67023d68c1b00208a7bf55e3b10de2aa317555740add29c619de12b" }, "downloads": -1, "filename": "WebOb-1.8.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ecfd1d878990a3ead080210c059cbca0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "size": 113707, "upload_time": "2019-01-03T19:40:35", "url": "https://files.pythonhosted.org/packages/06/e1/4acd2b4327fceb4c6446bdbca515f807ab83188526fd654940c00bcf8cc3/WebOb-1.8.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1761f416e8cf53f6fb674149cc223bd1", "sha256": "05aaab7975e0ee8af2026325d656e5ce14a71f1883c52276181821d6d5bf7086" }, "downloads": -1, "filename": "WebOb-1.8.5.tar.gz", "has_sig": false, "md5_digest": "1761f416e8cf53f6fb674149cc223bd1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "size": 271955, "upload_time": "2019-01-03T19:40:37", "url": "https://files.pythonhosted.org/packages/9d/1a/0c89c070ee2829c934cb6c7082287c822e28236a4fcf90063e6be7c35532/WebOb-1.8.5.tar.gz" } ] }