{ "info": { "author": "", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Framework :: AsyncIO", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Topic :: Internet :: WWW/HTTP" ], "description": "==================================\nAsync http client/server framework\n==================================\n\n.. image:: https://raw.githubusercontent.com/aio-libs/aiohttp/master/docs/aiohttp-plain.svg\n :height: 64px\n :width: 64px\n :alt: aiohttp logo\n\n|\n\n.. image:: https://github.com/aio-libs/aiohttp/workflows/CI/badge.svg\n :target: https://github.com/aio-libs/aiohttp/actions?query=workflow%3ACI\n :alt: GitHub Actions status for master branch\n\n.. image:: https://codecov.io/gh/aio-libs/aiohttp/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/aio-libs/aiohttp\n :alt: codecov.io status for master branch\n\n.. image:: https://badge.fury.io/py/aiohttp.svg\n :target: https://pypi.org/project/aiohttp\n :alt: Latest PyPI package version\n\n.. image:: https://readthedocs.org/projects/aiohttp/badge/?version=latest\n :target: https://docs.aiohttp.org/\n :alt: Latest Read The Docs\n\n.. image:: https://img.shields.io/discourse/status?server=https%3A%2F%2Faio-libs.discourse.group\n :target: https://aio-libs.discourse.group\n :alt: Discourse status\n\n.. image:: https://badges.gitter.im/Join%20Chat.svg\n :target: https://gitter.im/aio-libs/Lobby\n :alt: Chat on Gitter\n\n\nKey Features\n============\n\n- Supports both client and server side of HTTP protocol.\n- Supports both client and server Web-Sockets out-of-the-box and avoids\n Callback Hell.\n- Provides Web-server with middlewares and plugable routing.\n\n\nGetting started\n===============\n\nClient\n------\n\nTo get something from the web:\n\n.. code-block:: python\n\n import aiohttp\n import asyncio\n\n async def main():\n\n async with aiohttp.ClientSession() as session:\n async with session.get('http://python.org') as response:\n\n print(\"Status:\", response.status)\n print(\"Content-type:\", response.headers['content-type'])\n\n html = await response.text()\n print(\"Body:\", html[:15], \"...\")\n\n loop = asyncio.get_event_loop()\n loop.run_until_complete(main())\n\nThis prints:\n\n.. code-block::\n\n Status: 200\n Content-type: text/html; charset=utf-8\n Body: ...\n\nComing from `requests `_ ? Read `why we need so many lines `_.\n\nServer\n------\n\nAn example using a simple server:\n\n.. code-block:: python\n\n # examples/server_simple.py\n from aiohttp import web\n\n async def handle(request):\n name = request.match_info.get('name', \"Anonymous\")\n text = \"Hello, \" + name\n return web.Response(text=text)\n\n async def wshandle(request):\n ws = web.WebSocketResponse()\n await ws.prepare(request)\n\n async for msg in ws:\n if msg.type == web.WSMsgType.text:\n await ws.send_str(\"Hello, {}\".format(msg.data))\n elif msg.type == web.WSMsgType.binary:\n await ws.send_bytes(msg.data)\n elif msg.type == web.WSMsgType.close:\n break\n\n return ws\n\n\n app = web.Application()\n app.add_routes([web.get('/', handle),\n web.get('/echo', wshandle),\n web.get('/{name}', handle)])\n\n if __name__ == '__main__':\n web.run_app(app)\n\n\nDocumentation\n=============\n\nhttps://aiohttp.readthedocs.io/\n\n\nDemos\n=====\n\nhttps://github.com/aio-libs/aiohttp-demos\n\n\nExternal links\n==============\n\n* `Third party libraries\n `_\n* `Built with aiohttp\n `_\n* `Powered by aiohttp\n `_\n\nFeel free to make a Pull Request for adding your link to these pages!\n\n\nCommunication channels\n======================\n\n*aio-libs discourse group*: https://aio-libs.discourse.group\n\n*gitter chat* https://gitter.im/aio-libs/Lobby\n\nWe support `Stack Overflow\n`_.\nPlease add *aiohttp* tag to your question there.\n\nRequirements\n============\n\n- Python >= 3.6\n- async-timeout_\n- attrs_\n- charset-normalizer_\n- multidict_\n- yarl_\n\nOptionally you may install the cChardet_ and aiodns_ libraries (highly\nrecommended for sake of speed).\n\n.. _charset-normalizer: https://pypi.org/project/charset-normalizer\n.. _aiodns: https://pypi.python.org/pypi/aiodns\n.. _attrs: https://github.com/python-attrs/attrs\n.. _multidict: https://pypi.python.org/pypi/multidict\n.. _yarl: https://pypi.python.org/pypi/yarl\n.. _async-timeout: https://pypi.python.org/pypi/async_timeout\n.. _cChardet: https://pypi.python.org/pypi/cchardet\n\nLicense\n=======\n\n``aiohttp`` is offered under the Apache 2 license.\n\n\nKeepsafe\n========\n\nThe aiohttp community would like to thank Keepsafe\n(https://www.getkeepsafe.com) for its support in the early days of\nthe project.\n\n\nSource code\n===========\n\nThe latest developer version is available in a GitHub repository:\nhttps://github.com/aio-libs/aiohttp\n\nBenchmarks\n==========\n\nIf you are interested in efficiency, the AsyncIO community maintains a\nlist of benchmarks on the official wiki:\nhttps://github.com/python/asyncio/wiki/Benchmarks\n\n\n", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/aio-libs/aiohttp", "keywords": "", "license": "Apache 2", "maintainer": "aiohttp team ", "maintainer_email": "team@aiohttp.org", "name": "aiohttp", "package_url": "https://pypi.org/project/aiohttp/", "platform": "", "project_url": "https://pypi.org/project/aiohttp/", "project_urls": { "CI: GitHub Actions": "https://github.com/aio-libs/aiohttp/actions?query=workflow%3ACI", "Chat: Gitter": "https://gitter.im/aio-libs/Lobby", "Coverage: codecov": "https://codecov.io/github/aio-libs/aiohttp", "Docs: Changelog": "https://docs.aiohttp.org/en/stable/changes.html", "Docs: RTD": "https://docs.aiohttp.org", "GitHub: issues": "https://github.com/aio-libs/aiohttp/issues", "GitHub: repo": "https://github.com/aio-libs/aiohttp", "Homepage": "https://github.com/aio-libs/aiohttp" }, "release_url": "https://pypi.org/project/aiohttp/3.8.1/", "requires_dist": [ "attrs (>=17.3.0)", "charset-normalizer (<3.0,>=2.0)", "multidict (<7.0,>=4.5)", "async-timeout (<5.0,>=4.0.0a3)", "yarl (<2.0,>=1.0)", "frozenlist (>=1.1.1)", "aiosignal (>=1.1.2)", "idna-ssl (>=1.0) ; python_version < \"3.7\"", "asynctest (==0.13.0) ; python_version < \"3.8\"", "typing-extensions (>=3.7.4) ; python_version < \"3.8\"", "aiodns ; extra == 'speedups'", "Brotli ; extra == 'speedups'", "cchardet ; extra == 'speedups'" ], "requires_python": ">=3.6", "summary": "Async http client/server framework (asyncio)", "version": "3.8.1", "yanked": false, "yanked_reason": null }, "last_serial": 12469878, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "5cde1cd064330fe9982d9cc0ad20f58f", "sha256": "06bfecfd77a147f932866883340fe8cb8c28921e1afeedbafac5afa498a8f37a" }, "downloads": -1, "filename": "aiohttp-0.1.tar.gz", "has_sig": false, "md5_digest": "5cde1cd064330fe9982d9cc0ad20f58f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25156, "upload_time": "2013-10-25T18:17:03", "upload_time_iso_8601": "2013-10-25T18:17:03.912408Z", "url": "https://files.pythonhosted.org/packages/8a/85/bbf814947bef72678ed8de96e822a0091696a7c0713d1d844e9ab3c0819e/aiohttp-0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.0": [ { "comment_text": "", "digests": { "md5": "ce0e8234a72d8f10ffaf5e136b22c0a4", "sha256": "05d694468f0735207251e2b0b3447779758ed2ec1f6b7d3d15a8f37c36cc68d6" }, "downloads": -1, "filename": "aiohttp-0.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ce0e8234a72d8f10ffaf5e136b22c0a4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 59457, "upload_time": "2014-11-14T09:54:32", "upload_time_iso_8601": "2014-11-14T09:54:32.889403Z", "url": "https://files.pythonhosted.org/packages/67/99/b7e7ae2f746726d0a08d3089f9f043b827317b57a669c828fd009cf51cad/aiohttp-0.10.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "859cc9b7b749a3ab96d206b2d7d4d952", "sha256": "b9f2923953b63c5c7539878dec945c1ae53ac6d90c7cf03e16db579d25e8e296" }, "downloads": -1, "filename": "aiohttp-0.10.0.tar.gz", "has_sig": false, "md5_digest": "859cc9b7b749a3ab96d206b2d7d4d952", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 802060, "upload_time": "2014-11-13T12:47:25", "upload_time_iso_8601": "2014-11-13T12:47:25.496058Z", "url": "https://files.pythonhosted.org/packages/36/9b/bbee0a2a66566b41f8821c913ff569c1ef7cb89cf9f7063772d44a3fccdf/aiohttp-0.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "7f7f13fda6e36e02d27eb85a90d4768d", "sha256": "ef9777305aef18b36849a26b34721a0758e9f4a748ab2c60007688b41165d50f" }, "downloads": -1, "filename": "aiohttp-0.10.1-py3-none-any.whl", "has_sig": false, "md5_digest": "7f7f13fda6e36e02d27eb85a90d4768d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 59717, "upload_time": "2014-11-17T13:04:24", "upload_time_iso_8601": "2014-11-17T13:04:24.581602Z", "url": "https://files.pythonhosted.org/packages/9b/8d/eba05f6e079d7965c2f8d35a8a6cc4488a72e49dd0cd15f8231310e77d6b/aiohttp-0.10.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5429fa734e2a72a95f98b3a74237af5", "sha256": "92b51713b521bfb5e327218c8f64ac0aea9de6717d21cfee476fb09cd23f26df" }, "downloads": -1, "filename": "aiohttp-0.10.1.tar.gz", "has_sig": false, "md5_digest": "f5429fa734e2a72a95f98b3a74237af5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 802415, "upload_time": "2014-11-17T13:04:28", "upload_time_iso_8601": "2014-11-17T13:04:28.647168Z", "url": "https://files.pythonhosted.org/packages/44/23/ed1dfed7a3b69fdfd01ce17bdcae6e0059d5d747d45d9ceda104d8407826/aiohttp-0.10.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.2": [ { "comment_text": "", "digests": { "md5": "61862b054330024340ba6b1448c216eb", "sha256": "10d9bbaec4f9419005be598441fa4ab0ea52ec56b9565e7b91e6898546cc0a59" }, "downloads": -1, "filename": "aiohttp-0.10.2-py3-none-any.whl", "has_sig": false, "md5_digest": "61862b054330024340ba6b1448c216eb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 59800, "upload_time": "2014-11-19T16:48:32", "upload_time_iso_8601": "2014-11-19T16:48:32.640715Z", "url": "https://files.pythonhosted.org/packages/fa/43/bc6fc55dd3e0dc34ec6ba8d6ecb2ae45eb09063389a4f64654c90f68f018/aiohttp-0.10.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da8c41d31df3e23a20348839c7560545", "sha256": "36a3999eea033f22b9d3ff38d4f5242abbf5b84a4e5848fbf43cd0161992af27" }, "downloads": -1, "filename": "aiohttp-0.10.2.tar.gz", "has_sig": false, "md5_digest": "da8c41d31df3e23a20348839c7560545", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 802673, "upload_time": "2014-11-19T16:48:36", "upload_time_iso_8601": "2014-11-19T16:48:36.213895Z", "url": "https://files.pythonhosted.org/packages/85/3d/b933a0c89ec62391065ad0df7c2d6c3145ce43afa6dbc025f1c875d9c5b6/aiohttp-0.10.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "7b3a6548bd0e134f977013f077e5cc8d", "sha256": "ee34f629a76ba2c711d07dbfd72203f107be13d257b360a77546b92d1e073a98" }, "downloads": -1, "filename": "aiohttp-0.11.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7b3a6548bd0e134f977013f077e5cc8d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 61608, "upload_time": "2014-11-29T16:35:35", "upload_time_iso_8601": "2014-11-29T16:35:35.317668Z", "url": "https://files.pythonhosted.org/packages/4b/ee/14dd62aa20b8640273db241e982a442626d065f40cda1a46b1abe730ca00/aiohttp-0.11.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b89bb6297f3e70ad70d4514821ac94d1", "sha256": "35b34b6c546837a8a72033d3e0c0f8dc75efc231b7d575a6f6cb8dd596addb28" }, "downloads": -1, "filename": "aiohttp-0.11.0.tar.gz", "has_sig": false, "md5_digest": "b89bb6297f3e70ad70d4514821ac94d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 814542, "upload_time": "2014-11-29T16:35:39", "upload_time_iso_8601": "2014-11-29T16:35:39.655790Z", "url": "https://files.pythonhosted.org/packages/ec/18/2186de3a4c3fae45ac5f3ae5840e394fd518c02c49da29d10094b7d2c8e2/aiohttp-0.11.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "2da22a74635544bb73e09285d0054e2b", "sha256": "6e6b59741070c03977fbc40f692ef1251c89fbaa74a0966cb4ea073672903186" }, "downloads": -1, "filename": "aiohttp-0.12.0.tar.gz", "has_sig": false, "md5_digest": "2da22a74635544bb73e09285d0054e2b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 155414, "upload_time": "2014-12-12T19:56:14", "upload_time_iso_8601": "2014-12-12T19:56:14.952472Z", "url": "https://files.pythonhosted.org/packages/75/3b/f1c72db48708ab4ae504a69c1d48c4fef29a896f0f68dcb511d72ccd4bd1/aiohttp-0.12.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13.0": [ { "comment_text": "", "digests": { "md5": "ee0f562df86cb5266fc75c14b104c493", "sha256": "f0d21e0a485d989a4554069436cf3ca573ec391d6e307c8d92eba04a3dfd8fd9" }, "downloads": -1, "filename": "aiohttp-0.13.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ee0f562df86cb5266fc75c14b104c493", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 67477, "upload_time": "2014-12-29T18:31:30", "upload_time_iso_8601": "2014-12-29T18:31:30.228247Z", "url": "https://files.pythonhosted.org/packages/be/33/73931ba4cec891a50bf45de12b8c3f13d7db191c2c4672cac4d4ae3f2946/aiohttp-0.13.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "594b508117879d9ff7669c9132b237db", "sha256": "a77e4dfc33f72307af5228aea4ee3039bc9ede7d363bceca244851995c34a30d" }, "downloads": -1, "filename": "aiohttp-0.13.0.tar.gz", "has_sig": false, "md5_digest": "594b508117879d9ff7669c9132b237db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 806233, "upload_time": "2014-12-29T18:31:34", "upload_time_iso_8601": "2014-12-29T18:31:34.564495Z", "url": "https://files.pythonhosted.org/packages/43/5b/22a44aa15d7cd9a1e1bcf5966948e820609de4f5e970bd8e0996c118e131/aiohttp-0.13.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13.1": [ { "comment_text": "", "digests": { "md5": "8e7c5654e9ad4328519956ecdbc062c0", "sha256": "de348d41fc76cd12f0d5fb410dfe57ba5c3b4528c8c3c61e7d704780ebf57a74" }, "downloads": -1, "filename": "aiohttp-0.13.1-py3-none-any.whl", "has_sig": false, "md5_digest": "8e7c5654e9ad4328519956ecdbc062c0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 67980, "upload_time": "2014-12-31T11:31:20", "upload_time_iso_8601": "2014-12-31T11:31:20.757693Z", "url": "https://files.pythonhosted.org/packages/d3/93/d528c8d3ea981952825d7a0b0a037df23ddae9ae5e01156ce5a852100593/aiohttp-0.13.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb74a193af9a56a83fe6716bc884f4e9", "sha256": "abb7103baf532cd5032e2e3b3c296e81afccd4471a92bad1a1395c23aeac070f" }, "downloads": -1, "filename": "aiohttp-0.13.1.tar.gz", "has_sig": false, "md5_digest": "bb74a193af9a56a83fe6716bc884f4e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 812778, "upload_time": "2014-12-31T11:31:25", "upload_time_iso_8601": "2014-12-31T11:31:25.451852Z", "url": "https://files.pythonhosted.org/packages/16/39/ecfbc51971069674072c583bcd8489264be48a6bef6ca962c6832062d090/aiohttp-0.13.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.0": [ { "comment_text": "", "digests": { "md5": "0cfe73c7810d9ded7c14c9aee691af7a", "sha256": "2e7b2f7282ceee2c7282c8a270fbe7442592d46c3e1351a092dc1656d7c32fc2" }, "downloads": -1, "filename": "aiohttp-0.14.0.tar.gz", "has_sig": false, "md5_digest": "0cfe73c7810d9ded7c14c9aee691af7a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1273493, "upload_time": "2015-01-15T20:44:14", "upload_time_iso_8601": "2015-01-15T20:44:14.603279Z", "url": "https://files.pythonhosted.org/packages/4f/59/e4cf981af46db3eb2f0180030ca9af70bbaf330fa5b456ac9efd61d54e79/aiohttp-0.14.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.1": [ { "comment_text": "", "digests": { "md5": "354c9a877c783c8ef9cd4045a96ef36e", "sha256": "2f4da4c9b65577e803bc0956591e985a6f400c1eb6cb86e18c6126b318d4950d" }, "downloads": -1, "filename": "aiohttp-0.14.1.tar.gz", "has_sig": false, "md5_digest": "354c9a877c783c8ef9cd4045a96ef36e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1273494, "upload_time": "2015-01-15T20:55:37", "upload_time_iso_8601": "2015-01-15T20:55:37.263152Z", "url": "https://files.pythonhosted.org/packages/19/21/83ee6e754e11b9c43b235da3fad1895ecb6cbf42ff0551d90d66de297fd1/aiohttp-0.14.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.2": [ { "comment_text": "", "digests": { "md5": "c42d70445ae313e3f0c43d5e486c9cc2", "sha256": "c2c7a3c06436196a43013b038154bd676ffad3a4bc705f20f170e02d35330bf9" }, "downloads": -1, "filename": "aiohttp-0.14.2.tar.gz", "has_sig": false, "md5_digest": "c42d70445ae313e3f0c43d5e486c9cc2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 452170, "upload_time": "2015-01-23T07:36:33", "upload_time_iso_8601": "2015-01-23T07:36:33.915738Z", "url": "https://files.pythonhosted.org/packages/b4/e4/e15ef6076a94bfe708d5897861d54781d2547f7263fdd54534e791dadce8/aiohttp-0.14.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.3": [ { "comment_text": "", "digests": { "md5": "1962a3ed89012501dd28a2f1175411c8", "sha256": "6d2b23875ff14874267ab4362012d5a2fb0bb2e86b11d1fbfeb3be397307e2be" }, "downloads": -1, "filename": "aiohttp-0.14.3.tar.gz", "has_sig": false, "md5_digest": "1962a3ed89012501dd28a2f1175411c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1253008, "upload_time": "2015-01-28T12:41:35", "upload_time_iso_8601": "2015-01-28T12:41:35.531632Z", "url": "https://files.pythonhosted.org/packages/57/fe/da94b5b129cecfbee70c711276b4804927a415cc3e20dd4a4c8f8d0825ef/aiohttp-0.14.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.4": [ { "comment_text": "", "digests": { "md5": "be2da9d600a18800e9dd125576a5081c", "sha256": "2338c8506ce7853ac2df7efba731a3fd015a7ee2561afab0d69ddefb43403f5a" }, "downloads": -1, "filename": "aiohttp-0.14.4.tar.gz", "has_sig": false, "md5_digest": "be2da9d600a18800e9dd125576a5081c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1253273, "upload_time": "2015-01-29T19:26:27", "upload_time_iso_8601": "2015-01-29T19:26:27.495558Z", "url": "https://files.pythonhosted.org/packages/12/bf/91493f3ee18d0a6bad6d4b40e487bee7e0975a5fe2d04451042ab999d483/aiohttp-0.14.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.15.0": [ { "comment_text": "", "digests": { "md5": "0055b1731cdecff6e96af9e1d5788543", "sha256": "f83c78b1188873edf4cf06d99e73011826458f61cc7519f6c00c89171db66efc" }, "downloads": -1, "filename": "aiohttp-0.15.0.tar.gz", "has_sig": false, "md5_digest": "0055b1731cdecff6e96af9e1d5788543", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 446243, "upload_time": "2015-03-27T16:08:13", "upload_time_iso_8601": "2015-03-27T16:08:13.484736Z", "url": "https://files.pythonhosted.org/packages/70/0c/299203e95813cf79c5023d241c7189e828424cabe288db26f3e84b8a83f8/aiohttp-0.15.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.15.1": [ { "comment_text": "", "digests": { "md5": "d8034fcee1e9f286e811b77055688474", "sha256": "07006a2ebc7d472ce58b54445f300b22b89bf0dc448e4fd90a5e3b4a63f1c349" }, "downloads": -1, "filename": "aiohttp-0.15.1.tar.gz", "has_sig": false, "md5_digest": "d8034fcee1e9f286e811b77055688474", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 448913, "upload_time": "2015-03-31T23:16:07", "upload_time_iso_8601": "2015-03-31T23:16:07.398827Z", "url": "https://files.pythonhosted.org/packages/02/ad/3a4c8e5c2de9ec8a70cabd5ad1a227166e497a676dca41e92b51ef1e77fc/aiohttp-0.15.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.15.2": [ { "comment_text": "", "digests": { "md5": "9b9edf11396616b4b4c3d6e543d703a6", "sha256": "7a980949958fb94ee9cb6b4ecdb0d52a9589e01d07b7f4a7ecc0088850699865" }, "downloads": -1, "filename": "aiohttp-0.15.2.tar.gz", "has_sig": false, "md5_digest": "9b9edf11396616b4b4c3d6e543d703a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 454695, "upload_time": "2015-04-19T03:53:47", "upload_time_iso_8601": "2015-04-19T03:53:47.774090Z", "url": "https://files.pythonhosted.org/packages/2d/1f/c3c4f903851248e7957fba94592e946af560b8d52265e28c6f529c1b0a10/aiohttp-0.15.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.15.3": [ { "comment_text": "", "digests": { "md5": "08c1159a3b4d869c70be3b8f7efda7d0", "sha256": "85197e338cd48726fb2e7bb391ef24a6c0fba9c8f73b954beb95a642a8fc2488" }, "downloads": -1, "filename": "aiohttp-0.15.3.tar.gz", "has_sig": false, "md5_digest": "08c1159a3b4d869c70be3b8f7efda7d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 455552, "upload_time": "2015-04-22T16:56:20", "upload_time_iso_8601": "2015-04-22T16:56:20.663989Z", "url": "https://files.pythonhosted.org/packages/87/9a/ed2b008eef13e5432a5be611d554ea6bc630f651bf7bce1a41c966d2b9ba/aiohttp-0.15.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16.0": [ { "comment_text": "", "digests": { "md5": "fb987a484018afc404e4320e0d8e705b", "sha256": "762d6778528e8bf571c553bc99941d2c0eb02f56f757f832b68809e3aa916054" }, "downloads": -1, "filename": "aiohttp-0.16.0.tar.gz", "has_sig": false, "md5_digest": "fb987a484018afc404e4320e0d8e705b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 476248, "upload_time": "2015-05-26T17:22:40", "upload_time_iso_8601": "2015-05-26T17:22:40.356528Z", "url": "https://files.pythonhosted.org/packages/71/5b/b9e722d36882c01a413a0b33037982255d1e1ec554b1f6302944b2367202/aiohttp-0.16.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16.1": [ { "comment_text": "", "digests": { "md5": "a451c256d1e9bbcbc2cf9aa6a2a6fec0", "sha256": "17396192e0938b82889d7d31d44cfad2edc87cc13842c47cf8235857b4da596f" }, "downloads": -1, "filename": "aiohttp-0.16.1.tar.gz", "has_sig": false, "md5_digest": "a451c256d1e9bbcbc2cf9aa6a2a6fec0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1551815, "upload_time": "2015-05-27T12:07:37", "upload_time_iso_8601": "2015-05-27T12:07:37.981711Z", "url": "https://files.pythonhosted.org/packages/57/b0/e893277402914f83035fbaff8c2a9d54fc8c45f5afefa06cf2c8a14241aa/aiohttp-0.16.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16.2": [ { "comment_text": "", "digests": { "md5": "62a3ba19c40dfe9b0687986268cac06d", "sha256": "e45bd8ce8b63dfa5a05a90b893550a9664a493bd2e0d977cd9f731d5e8d86671" }, "downloads": -1, "filename": "aiohttp-0.16.2.tar.gz", "has_sig": false, "md5_digest": "62a3ba19c40dfe9b0687986268cac06d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1552283, "upload_time": "2015-05-27T21:26:49", "upload_time_iso_8601": "2015-05-27T21:26:49.493739Z", "url": "https://files.pythonhosted.org/packages/ce/6c/2cf36577fc509c2dd85ecf4bd3f6fcd5e356c6b6ec25f219c32bb13a130b/aiohttp-0.16.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16.3": [ { "comment_text": "", "digests": { "md5": "4215059cbf33dd42c0b99e06b1229029", "sha256": "eaf479acc98ffee0a029882465ebf21f3c302e1b94a41b16c8a5a695bc614900" }, "downloads": -1, "filename": "aiohttp-0.16.3.tar.gz", "has_sig": false, "md5_digest": "4215059cbf33dd42c0b99e06b1229029", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1442720, "upload_time": "2015-05-30T19:28:52", "upload_time_iso_8601": "2015-05-30T19:28:52.672070Z", "url": "https://files.pythonhosted.org/packages/69/f0/dc5959f1b2f641c40357e66a516214ef7d2d13a5ce3cdb044d78f7c57f39/aiohttp-0.16.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16.4": [ { "comment_text": "", "digests": { "md5": "8fc399e2407ebb0693297d48c78f5b9c", "sha256": "270a5b458e6fb1884478f55c377e8fb656f5244637458ad395b84c2722a7533d" }, "downloads": -1, "filename": "aiohttp-0.16.4.tar.gz", "has_sig": false, "md5_digest": "8fc399e2407ebb0693297d48c78f5b9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1551018, "upload_time": "2015-06-13T06:12:00", "upload_time_iso_8601": "2015-06-13T06:12:00.159247Z", "url": "https://files.pythonhosted.org/packages/4b/71/bc9a698e85c6d7d555189b8bb1014552d06050b0539406ff858f145cc273/aiohttp-0.16.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16.5": [ { "comment_text": "", "digests": { "md5": "5ad92f63f423c53c139c2cecb25242f2", "sha256": "8a3d53da6c3dd01964b7b38cf4b7c79d6b5ef55e45a17fe97224c1caa48952f2" }, "downloads": -1, "filename": "aiohttp-0.16.5.tar.gz", "has_sig": false, "md5_digest": "5ad92f63f423c53c139c2cecb25242f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1543962, "upload_time": "2015-06-13T13:58:17", "upload_time_iso_8601": "2015-06-13T13:58:17.890395Z", "url": "https://files.pythonhosted.org/packages/1d/a4/c8089187f31a173703013d9380a3bd799a50a1b2351e4ff20eef9827e721/aiohttp-0.16.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16.6": [ { "comment_text": "", "digests": { "md5": "d220b72900634327dd598848fba2a28d", "sha256": "fbd98953e019861f45bf6b190d47190cdd818a27dc04eba4c580aff35343c35a" }, "downloads": -1, "filename": "aiohttp-0.16.6.tar.gz", "has_sig": false, "md5_digest": "d220b72900634327dd598848fba2a28d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1566596, "upload_time": "2015-07-15T17:44:37", "upload_time_iso_8601": "2015-07-15T17:44:37.086639Z", "url": "https://files.pythonhosted.org/packages/3e/58/ed8667c964a27104e9da87d81eecda5f1d0da1fcf25bf7b569c9b0901b6b/aiohttp-0.16.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.17.0": [ { "comment_text": "", "digests": { "md5": "aed95f6ce0ea60af044a38370c4e42e3", "sha256": "f70fe81635aa4be1aa955a18e84b1bf596fa961deb2431d0202f7d2c539f887b" }, "downloads": -1, "filename": "aiohttp-0.17.0.tar.gz", "has_sig": false, "md5_digest": "aed95f6ce0ea60af044a38370c4e42e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 470775, "upload_time": "2015-08-04T18:33:41", "upload_time_iso_8601": "2015-08-04T18:33:41.549217Z", "url": "https://files.pythonhosted.org/packages/42/e9/1ae6df5a6e653f8a7fa5831707853ccb091afc06a8f34fa4c68e6e86aae6/aiohttp-0.17.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.17.1": [ { "comment_text": "", "digests": { "md5": "ddb16b12f2bde31715f760ec6fa478c4", "sha256": "21c74db71b96a3f81862b549460d24ddebbb86ce2188b699cc1bdda6afe17c34" }, "downloads": -1, "filename": "aiohttp-0.17.1.tar.gz", "has_sig": false, "md5_digest": "ddb16b12f2bde31715f760ec6fa478c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 473084, "upload_time": "2015-08-10T23:08:29", "upload_time_iso_8601": "2015-08-10T23:08:29.114934Z", "url": "https://files.pythonhosted.org/packages/23/72/0f2876708df52dab39386df429dae8874b793943e19041bbf26a5541d21a/aiohttp-0.17.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.17.2": [ { "comment_text": "", "digests": { "md5": "7640928fd4b5c1ccf1f8bcad276d39d6", "sha256": "8115e93c0382e79aced145254f0cd9acd5fb3a43e0cd1c42d4feab57f3fc27b9" }, "downloads": -1, "filename": "aiohttp-0.17.2.tar.gz", "has_sig": false, "md5_digest": "7640928fd4b5c1ccf1f8bcad276d39d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 473424, "upload_time": "2015-08-11T15:05:34", "upload_time_iso_8601": "2015-08-11T15:05:34.351567Z", "url": "https://files.pythonhosted.org/packages/fd/73/bc57f5429464ba4b247193c0b7eaef3f56cbd1244a298bb8cfe93a9f426e/aiohttp-0.17.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.17.3": [ { "comment_text": "", "digests": { "md5": "c3f97b127ef1fb58ea68fe79653d09f8", "sha256": "e1b5c0cffd490718c24fa5a17570f546d40132edec9f44b6a7daf7e208652380" }, "downloads": -1, "filename": "aiohttp-0.17.3.tar.gz", "has_sig": false, "md5_digest": "c3f97b127ef1fb58ea68fe79653d09f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 470285, "upload_time": "2015-08-28T17:31:10", "upload_time_iso_8601": "2015-08-28T17:31:10.192847Z", "url": "https://files.pythonhosted.org/packages/ea/7e/bccac0801945d7cd274d3f682b1d79e12c5071c989ae3a630a3ccd83060b/aiohttp-0.17.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.17.4": [ { "comment_text": "", "digests": { "md5": "b1855eae32484c3ecddff79e8b31b086", "sha256": "a2f122b41f29eb10772f1600ada5fec849c5dc717c1dcaa05c95bf0712af8843" }, "downloads": -1, "filename": "aiohttp-0.17.4.tar.gz", "has_sig": false, "md5_digest": "b1855eae32484c3ecddff79e8b31b086", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 475034, "upload_time": "2015-09-29T10:49:20", "upload_time_iso_8601": "2015-09-29T10:49:20.258244Z", "url": "https://files.pythonhosted.org/packages/49/d1/7fea917db29a8acb47a27f0fd01f149d6808dd1242d628416edaafe58c30/aiohttp-0.17.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.18.0": [ { "comment_text": "", "digests": { "md5": "b007ceb0792c67f79ad7b8a77b2aed38", "sha256": "e5da25fa1a03b0cfe61ffa5b41529c326345c1454c7c22ed7b95a17e4d997879" }, "downloads": -1, "filename": "aiohttp-0.18.0.tar.gz", "has_sig": false, "md5_digest": "b007ceb0792c67f79ad7b8a77b2aed38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2167929, "upload_time": "2015-10-20T03:43:14", "upload_time_iso_8601": "2015-10-20T03:43:14.708599Z", "url": "https://files.pythonhosted.org/packages/2b/90/6f50ddefcbcf6e7328e256aac71056d70459284020fffe5f1b4fc087534f/aiohttp-0.18.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.18.1": [ { "comment_text": "", "digests": { "md5": "25e1518d0a50122bac6356f4d125fa23", "sha256": "3e3d20018685a4ccf74ae8fe13598a8a9ec040fb8a43330fc35fb15aafdfe974" }, "downloads": -1, "filename": "aiohttp-0.18.1.tar.gz", "has_sig": false, "md5_digest": "25e1518d0a50122bac6356f4d125fa23", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2164667, "upload_time": "2015-10-20T16:36:19", "upload_time_iso_8601": "2015-10-20T16:36:19.161929Z", "url": "https://files.pythonhosted.org/packages/ac/2c/6bf5dacad906546e6bc125017364bb2a2788810818473d276a190bf14c85/aiohttp-0.18.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.18.2": [ { "comment_text": "", "digests": { "md5": "744986735554762600ae123c8bc770ab", "sha256": "b56bbd0d7631cd3c32a017c020121a8cdafbe57e87492b1d97002ab94a9a7b79" }, "downloads": -1, "filename": "aiohttp-0.18.2.tar.gz", "has_sig": false, "md5_digest": "744986735554762600ae123c8bc770ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2168255, "upload_time": "2015-10-22T18:32:23", "upload_time_iso_8601": "2015-10-22T18:32:23.667783Z", "url": "https://files.pythonhosted.org/packages/6c/36/53fc2e71783f370c980f47e9f87f42eee1f5850274ca1e753688d14ffe01/aiohttp-0.18.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.18.3": [ { "comment_text": "", "digests": { "md5": "9b0d7df0613a9dd68b40ddc1a36c4bec", "sha256": "d3a0bb94538a496aaaa49ed647f36ab2d43f1867e018049badc941b7d6f34ade" }, "downloads": -1, "filename": "aiohttp-0.18.3.tar.gz", "has_sig": false, "md5_digest": "9b0d7df0613a9dd68b40ddc1a36c4bec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2168526, "upload_time": "2015-10-25T12:34:01", "upload_time_iso_8601": "2015-10-25T12:34:01.464823Z", "url": "https://files.pythonhosted.org/packages/11/54/7e2b7314863afe0fb9859afb4d1d68922891ab0cda933b4e8b1aab74d970/aiohttp-0.18.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.18.4": [ { "comment_text": "", "digests": { "md5": "58eeca340108040a3014955289a9f690", "sha256": "23f1a5de84d0384ab2e78405db56be5e4af0681c42ddbc0caecf2402ddee3019" }, "downloads": -1, "filename": "aiohttp-0.18.4.tar.gz", "has_sig": false, "md5_digest": "58eeca340108040a3014955289a9f690", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2165117, "upload_time": "2015-11-13T15:47:36", "upload_time_iso_8601": "2015-11-13T15:47:36.540315Z", "url": "https://files.pythonhosted.org/packages/e2/a6/7b0980e0acf40e8b9a4cb4b0fe2cb3cbb3b7b23c88d14af2a8df8925392b/aiohttp-0.18.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.19.0": [ { "comment_text": "", "digests": { "md5": "f1c56892fc8b1b4f781470c7dd4226eb", "sha256": "9bfb173baec179431a1c8f3566185e8ebbd1517cf4450217087d79e26e44c287" }, "downloads": -1, "filename": "aiohttp-0.19.0.tar.gz", "has_sig": false, "md5_digest": "f1c56892fc8b1b4f781470c7dd4226eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2173954, "upload_time": "2015-11-25T15:46:31", "upload_time_iso_8601": "2015-11-25T15:46:31.763780Z", "url": "https://files.pythonhosted.org/packages/e2/45/56a170e6f8fb9627267174d57b5f4dabebf7d17609e9ad432ea1206ec49c/aiohttp-0.19.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2": [ { "comment_text": "", "digests": { "md5": "fe210b2971c65ed157698aa17ecce717", "sha256": "ba02f75803523bd57f85e65f3f47deb5d5e016e6039e4b7b4b185947ae53ca67" }, "downloads": -1, "filename": "aiohttp-0.2.tar.gz", "has_sig": false, "md5_digest": "fe210b2971c65ed157698aa17ecce717", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50218, "upload_time": "2013-10-25T18:27:07", "upload_time_iso_8601": "2013-10-25T18:27:07.412077Z", "url": "https://files.pythonhosted.org/packages/0f/fe/ae738b3146d440c9b108abe6d583814608f51b54a5e245234e281b5e8580/aiohttp-0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.20.0": [ { "comment_text": "", "digests": { "md5": "5db14a019b10d80e9b7f438d99aec83b", "sha256": "18193eb635541b52afb81cc500aa6b7d55dbb9bdad9f0c2e7c409bf51f6272f5" }, "downloads": -1, "filename": "aiohttp-0.20.0.tar.gz", "has_sig": false, "md5_digest": "5db14a019b10d80e9b7f438d99aec83b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 514726, "upload_time": "2015-12-28T05:30:53", "upload_time_iso_8601": "2015-12-28T05:30:53.205768Z", "url": "https://files.pythonhosted.org/packages/ec/80/be3b77426b09361fbf9e82b5539eee031406123cc25e45bba30a64e40a0d/aiohttp-0.20.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.20.1": [ { "comment_text": "", "digests": { "md5": "a42eb8d80d0a6b082e307619331f0819", "sha256": "e4b8f5217386772d3146636919c80909ff8ba94b5739d1b2df378416044424ea" }, "downloads": -1, "filename": "aiohttp-0.20.1.tar.gz", "has_sig": false, "md5_digest": "a42eb8d80d0a6b082e307619331f0819", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 509331, "upload_time": "2015-12-30T15:45:57", "upload_time_iso_8601": "2015-12-30T15:45:57.603985Z", "url": "https://files.pythonhosted.org/packages/f6/b2/93e92e16e96be624ff0e65b716ec0d8f593ed2c55fb1348e58edef5c9dd6/aiohttp-0.20.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.20.2": [ { "comment_text": "", "digests": { "md5": "4fa6e5b23a1bccba98ca245b242ac558", "sha256": "8801d36d760514ba8404d2c0309a7ecc3a838b85dad3e63e863b44a3116cf02b" }, "downloads": -1, "filename": "aiohttp-0.20.2.tar.gz", "has_sig": false, "md5_digest": "4fa6e5b23a1bccba98ca245b242ac558", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 513968, "upload_time": "2016-01-07T21:42:51", "upload_time_iso_8601": "2016-01-07T21:42:51.479539Z", "url": "https://files.pythonhosted.org/packages/84/94/0c40af1a496e5f4cb0558fd917aa391a99c265477d3efda12d4f2b4f326f/aiohttp-0.20.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.21.0": [ { "comment_text": "", "digests": { "md5": "d64c78e1a3a8f784ecd8019c5a7f64f7", "sha256": "0eb92c60ea23eee87b3ebfcf46071ab15087fa2e89e2fbf938e0825f72e34689" }, "downloads": -1, "filename": "aiohttp-0.21.0-cp34-none-win32.whl", "has_sig": false, "md5_digest": "d64c78e1a3a8f784ecd8019c5a7f64f7", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 234771, "upload_time": "2016-02-04T11:26:33", "upload_time_iso_8601": "2016-02-04T11:26:33.419399Z", "url": "https://files.pythonhosted.org/packages/cf/6b/341fce75aa969d1ede5ab2967a7e46aa59699d0f0655b9c077f4c5c152be/aiohttp-0.21.0-cp34-none-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "52e14d711115deb0138f8185a9f56055", "sha256": "f3b14ae0bdf796e7005aaaf98b312a86131cbc8a5cc43f65d0c8fd8dad72597c" }, "downloads": -1, "filename": "aiohttp-0.21.0-cp34-none-win_amd64.whl", "has_sig": false, "md5_digest": "52e14d711115deb0138f8185a9f56055", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 240724, "upload_time": "2016-02-04T11:28:45", "upload_time_iso_8601": "2016-02-04T11:28:45.365029Z", "url": "https://files.pythonhosted.org/packages/88/e7/4059ae21abbea717e55e1f5879d1b27989c48a7811148a837600ae6035cd/aiohttp-0.21.0-cp34-none-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af0624f03501e79e58830a9dd2de53c3", "sha256": "25bb1b87bcb418375c661dae83bdf004121e14bfdb740e6f57763331046d5d22" }, "downloads": -1, "filename": "aiohttp-0.21.0-cp35-none-win32.whl", "has_sig": false, "md5_digest": "af0624f03501e79e58830a9dd2de53c3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 234824, "upload_time": "2016-02-04T11:31:01", "upload_time_iso_8601": "2016-02-04T11:31:01.690219Z", "url": "https://files.pythonhosted.org/packages/87/fc/45e9ad4308b14b612b2f19c579bbc8a12f4972129bd71e704cfa14317074/aiohttp-0.21.0-cp35-none-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "584644825f8a33434c23a51181ca8d0c", "sha256": "f64fc4e6319851ea49be6986d588946e979460fae67b50ec15978016d5ec3068" }, "downloads": -1, "filename": "aiohttp-0.21.0-cp35-none-win_amd64.whl", "has_sig": false, "md5_digest": "584644825f8a33434c23a51181ca8d0c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 243255, "upload_time": "2016-02-04T11:34:07", "upload_time_iso_8601": "2016-02-04T11:34:07.485562Z", "url": "https://files.pythonhosted.org/packages/4c/ce/149dbdf8d98f05e5b78c90cd3c0724c0622991f334f26aefabe28278f944/aiohttp-0.21.0-cp35-none-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3cee74aa960393c4ec8ef7af97bd462c", "sha256": "fdd7390ec464b35de7779e58144025ef52425c2d963d1381fbe6809a64b842a1" }, "downloads": -1, "filename": "aiohttp-0.21.0.tar.gz", "has_sig": false, "md5_digest": "3cee74aa960393c4ec8ef7af97bd462c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 527622, "upload_time": "2016-02-04T11:19:21", "upload_time_iso_8601": "2016-02-04T11:19:21.441535Z", "url": "https://files.pythonhosted.org/packages/34/0f/ee701dd39cd21b1e07ca08158b27bf18d82952d51bd765e7833c85e9425b/aiohttp-0.21.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.21.1": [ { "comment_text": "", "digests": { "md5": "965c7ec89020c6f88d6fcdc1dcaf6aeb", "sha256": "bc3c13e566d3aa7d7096445b915c7fbe0d5344f47b2b6a8521cf2277272cb91c" }, "downloads": -1, "filename": "aiohttp-0.21.1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "965c7ec89020c6f88d6fcdc1dcaf6aeb", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 234961, "upload_time": "2016-02-10T18:47:40", "upload_time_iso_8601": "2016-02-10T18:47:40.122390Z", "url": "https://files.pythonhosted.org/packages/64/c8/800d2ca0202f611390345a424be3f58b9c5532d66acb0fd262adb48f90c7/aiohttp-0.21.1-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e01738af772cc752df2cf82fa249627", "sha256": "03d1055b7e12da708008f6e36ce3930ac83cb3cb2d2961e30a53eeb2c5c452da" }, "downloads": -1, "filename": "aiohttp-0.21.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "4e01738af772cc752df2cf82fa249627", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 240910, "upload_time": "2016-02-10T18:50:55", "upload_time_iso_8601": "2016-02-10T18:50:55.064277Z", "url": "https://files.pythonhosted.org/packages/60/44/e45f679db59372f9495b3fb48a388adef779d85b6142edb0acbd34bdce3d/aiohttp-0.21.1-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ea4bf74875080705ff990c9df72f6d3", "sha256": "011dd6bc6573a4ef7f1c8332c4df7335cb45b68f01745331185a4331becc1be6" }, "downloads": -1, "filename": "aiohttp-0.21.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "2ea4bf74875080705ff990c9df72f6d3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 235013, "upload_time": "2016-02-10T18:53:18", "upload_time_iso_8601": "2016-02-10T18:53:18.462459Z", "url": "https://files.pythonhosted.org/packages/a4/dc/75875116b6a458598fdd21bfe38c260ad29374c68d7dacd13ec82c4b9ab1/aiohttp-0.21.1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4319cdeb3e3a0b02231b505a8d230a75", "sha256": "2f85c7de51354edff0edfe63827cc8b7192ea32451936615bb57ca6393298d88" }, "downloads": -1, "filename": "aiohttp-0.21.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "4319cdeb3e3a0b02231b505a8d230a75", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 243447, "upload_time": "2016-02-10T18:55:16", "upload_time_iso_8601": "2016-02-10T18:55:16.820218Z", "url": "https://files.pythonhosted.org/packages/f1/13/50778cc8f3bfcb70394c22e08b4483b2a0c88b59ee614c04c6c6c98562ba/aiohttp-0.21.1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4a0ca375777a388f96038a3a83477a6f", "sha256": "e62d4b7e9481cb31bf7460fbfe769acdfc29cb9f63ef99aa56d3855dc02e1b24" }, "downloads": -1, "filename": "aiohttp-0.21.1.tar.gz", "has_sig": false, "md5_digest": "4a0ca375777a388f96038a3a83477a6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 528199, "upload_time": "2016-02-10T18:41:24", "upload_time_iso_8601": "2016-02-10T18:41:24.183993Z", "url": "https://files.pythonhosted.org/packages/03/c2/6af04c29a7856f985e81116b6341612889f2789ed654a1166aa217026a4d/aiohttp-0.21.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.21.2": [ { "comment_text": "", "digests": { "md5": "c5fca430012d9ede67a2b89bb5d7cad8", "sha256": "975be3cd7708d4d69b18bf613d255d8d4ae21064798d9742d8472e0061731677" }, "downloads": -1, "filename": "aiohttp-0.21.2-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "c5fca430012d9ede67a2b89bb5d7cad8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 235095, "upload_time": "2016-02-16T15:21:25", "upload_time_iso_8601": "2016-02-16T15:21:25.969725Z", "url": "https://files.pythonhosted.org/packages/13/67/02af372d70d3b5fd3edfc4a814ea2b2cb4a281886472382e4823c0642bff/aiohttp-0.21.2-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6c2c358faabbead51e3383e6c806c83", "sha256": "3226ae7de905a1a0e0c702d8f29f6d7cff3a6f00b1cf719baf2ac70310747640" }, "downloads": -1, "filename": "aiohttp-0.21.2-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "f6c2c358faabbead51e3383e6c806c83", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 241049, "upload_time": "2016-02-16T15:25:44", "upload_time_iso_8601": "2016-02-16T15:25:44.787832Z", "url": "https://files.pythonhosted.org/packages/21/43/114ad2451446ac6e743927812295d6b874a432bea047ebe0ae1dc44d230f/aiohttp-0.21.2-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34ada0e3e96f49a4ea96fc4d7ce4b67e", "sha256": "c96c1e980589ccf0a8c139e737ceafca1117ef176df884bc10064d170fb0f7d9" }, "downloads": -1, "filename": "aiohttp-0.21.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "34ada0e3e96f49a4ea96fc4d7ce4b67e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 235150, "upload_time": "2016-02-16T15:30:28", "upload_time_iso_8601": "2016-02-16T15:30:28.874015Z", "url": "https://files.pythonhosted.org/packages/56/79/49ffdcfd4334c538d2255841f4656d1c12e9108ad0a485e71923c4490933/aiohttp-0.21.2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4dfa05208a8dbe9ff21db10accd2d938", "sha256": "ec5b3aafef11d170926a852f8b874c69688e76161684069dc2fc777b2d86c259" }, "downloads": -1, "filename": "aiohttp-0.21.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "4dfa05208a8dbe9ff21db10accd2d938", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 243582, "upload_time": "2016-02-16T15:37:07", "upload_time_iso_8601": "2016-02-16T15:37:07.564574Z", "url": "https://files.pythonhosted.org/packages/4d/ab/0d019f5071e9c3f13d9f208eaa8308ba4e6e4990c7fd4666be066453d003/aiohttp-0.21.2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b53e5d6b3e5961b7119f2f500a20904e", "sha256": "991e574309815036ca36889a8917005bb795522acd2ba9cc870e07c260c092b5" }, "downloads": -1, "filename": "aiohttp-0.21.2.tar.gz", "has_sig": false, "md5_digest": "b53e5d6b3e5961b7119f2f500a20904e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 528570, "upload_time": "2016-02-16T14:59:21", "upload_time_iso_8601": "2016-02-16T14:59:21.648630Z", "url": "https://files.pythonhosted.org/packages/a6/92/fe3c2028709885105f41778d1828199d5d3db8cd7e6a17280f17964a0fc9/aiohttp-0.21.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.21.4": [ { "comment_text": "", "digests": { "md5": "fae555981b2ee7a8ab31e71707bb5ce4", "sha256": "6f93dfaac1adbf4af9fe15c68e9e9cad440dc2e6d23276f9d7b8478940a482d7" }, "downloads": -1, "filename": "aiohttp-0.21.4-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "fae555981b2ee7a8ab31e71707bb5ce4", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 235253, "upload_time": "2016-03-13T11:29:19", "upload_time_iso_8601": "2016-03-13T11:29:19.113277Z", "url": "https://files.pythonhosted.org/packages/90/43/aaea251d54a2d2efd6aa9bed4f540a5c3cd77ff802280a77a3a20b9f6fc4/aiohttp-0.21.4-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ed5ab8ab99146ec49d30552ad2347cb", "sha256": "55d431e54c2acef9bf8251f4658c3151d6d3f79cd0d252f2b81d31858cc56078" }, "downloads": -1, "filename": "aiohttp-0.21.4-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "3ed5ab8ab99146ec49d30552ad2347cb", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 241204, "upload_time": "2016-03-13T11:31:22", "upload_time_iso_8601": "2016-03-13T11:31:22.534987Z", "url": "https://files.pythonhosted.org/packages/43/4b/c769c72176a7adba26f3e6557e5eaf8a54cca806b6e5e5dfd622dd7f82b8/aiohttp-0.21.4-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba0361b4d9ab94a90ac045c68a4b90b1", "sha256": "b5e4f4367a7f26368a5dd5505e59df7ff35ed8960592d6693178d28fc940f7d8" }, "downloads": -1, "filename": "aiohttp-0.21.4-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "ba0361b4d9ab94a90ac045c68a4b90b1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 235307, "upload_time": "2016-03-13T11:33:27", "upload_time_iso_8601": "2016-03-13T11:33:27.515016Z", "url": "https://files.pythonhosted.org/packages/50/48/aafcd4bff33dd10a5fca87f21b7011008c7f3fa2fed636778f1d9c22c4bc/aiohttp-0.21.4-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0b4ae59ca9290d5d1a4eb4aa43e3ffb", "sha256": "c11406da49c08f5c4d7afdb15b0570e08f366b933a96f1559413ecc9684173d9" }, "downloads": -1, "filename": "aiohttp-0.21.4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "e0b4ae59ca9290d5d1a4eb4aa43e3ffb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 243736, "upload_time": "2016-03-13T11:35:41", "upload_time_iso_8601": "2016-03-13T11:35:41.362649Z", "url": "https://files.pythonhosted.org/packages/4f/98/ce33b74a544b57975be720d3d87978d686c3e0071f9226780e69a32368ac/aiohttp-0.21.4-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b6034dab19a414479c4e10161b8ab6d2", "sha256": "4a5fcb765bf6d2cbc7d42afedf3d22b9cd0a4d643a870b464ca5b071225976d8" }, "downloads": -1, "filename": "aiohttp-0.21.4.tar.gz", "has_sig": false, "md5_digest": "b6034dab19a414479c4e10161b8ab6d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 528945, "upload_time": "2016-03-13T11:18:45", "upload_time_iso_8601": "2016-03-13T11:18:45.825597Z", "url": "https://files.pythonhosted.org/packages/70/6b/0b1362de8b2afe8cb38ddb23158eae9f3530063a937b2c9405f4edd99ffa/aiohttp-0.21.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.21.5": [ { "comment_text": "", "digests": { "md5": "c87e7db7dbd7353750733e30885b9412", "sha256": "885c9c6990a8db68f623d77c002051fe2ae688e19d5d9fa4a7deca0421e7dfcc" }, "downloads": -1, "filename": "aiohttp-0.21.5-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "c87e7db7dbd7353750733e30885b9412", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 235304, "upload_time": "2016-03-22T05:53:48", "upload_time_iso_8601": "2016-03-22T05:53:48.363226Z", "url": "https://files.pythonhosted.org/packages/21/06/721aa7e0c9de0da9a6d0c45157041a652db1274e17b25f0a124b0c517160/aiohttp-0.21.5-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "40344451cbdead29cf17a86e41875280", "sha256": "f29a813b286ef50f2a2634bb53b18fb54683b9a6a8c8bb8d39116759d8c5e0a9" }, "downloads": -1, "filename": "aiohttp-0.21.5-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "40344451cbdead29cf17a86e41875280", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 241258, "upload_time": "2016-03-22T05:57:30", "upload_time_iso_8601": "2016-03-22T05:57:30.995561Z", "url": "https://files.pythonhosted.org/packages/a9/b4/3c1f84829ddc79aa5cca8979306ac8ae380f16e6bf31df4452bdf3c76037/aiohttp-0.21.5-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "98a3635266a4b0c5596c3ddc3a348cdc", "sha256": "7650fad64e61e2ae42a02cf4568341b336a032cb86beea780df6fb2be4a8361e" }, "downloads": -1, "filename": "aiohttp-0.21.5-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "98a3635266a4b0c5596c3ddc3a348cdc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 235359, "upload_time": "2016-03-22T06:00:23", "upload_time_iso_8601": "2016-03-22T06:00:23.014345Z", "url": "https://files.pythonhosted.org/packages/e7/a1/db9c81d58480bbac6cd264724dc745f1d5a5f181705c7802b2d33fce3599/aiohttp-0.21.5-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ea5ad57e10bbff3c87e2dae6d6792c7c", "sha256": "fab71a681ef8233369ced34d0ff4fd86ef70a82cdf1cb5d948f208b3cc35b503" }, "downloads": -1, "filename": "aiohttp-0.21.5-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "ea5ad57e10bbff3c87e2dae6d6792c7c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 243791, "upload_time": "2016-03-22T06:03:49", "upload_time_iso_8601": "2016-03-22T06:03:49.927797Z", "url": "https://files.pythonhosted.org/packages/49/0c/ee9136ef577c6e98b6d919785e88318067852ef0c74dc6db9a6722d92830/aiohttp-0.21.5-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e10aeb6fb49c819a7a88de1b9ef281b", "sha256": "bac5c883721e0818e405597d2778f08a38cc097df01f574462de2cc4f8090559" }, "downloads": -1, "filename": "aiohttp-0.21.5.tar.gz", "has_sig": false, "md5_digest": "8e10aeb6fb49c819a7a88de1b9ef281b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 529005, "upload_time": "2016-03-22T05:48:40", "upload_time_iso_8601": "2016-03-22T05:48:40.540287Z", "url": "https://files.pythonhosted.org/packages/18/9b/ab3d2a435d39cd1e7244527fd3642c625197da548a3a3ae8123abc7e7483/aiohttp-0.21.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.21.6": [ { "comment_text": "", "digests": { "md5": "0340a7f612afa0eb6ed4dc8fad119b3d", "sha256": "fb53adcb92c5b8b8197d0c93a72301b55d0a6220c0ef337dff849ca73ad78615" }, "downloads": -1, "filename": "aiohttp-0.21.6-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "0340a7f612afa0eb6ed4dc8fad119b3d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 238423, "upload_time": "2016-05-05T10:46:16", "upload_time_iso_8601": "2016-05-05T10:46:16.066627Z", "url": "https://files.pythonhosted.org/packages/bf/5a/72bd54859fc00698cc20f82af5584498c2cc675a4aaa19b83d5d578f84ec/aiohttp-0.21.6-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "faa71ce68d0ef516c34a8fef2e7b6e16", "sha256": "dfcf66352acf0c6496e624fe3be412a5a68c4f2c212c142c53ac14b853e4e56a" }, "downloads": -1, "filename": "aiohttp-0.21.6-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "faa71ce68d0ef516c34a8fef2e7b6e16", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 246304, "upload_time": "2016-05-05T10:50:30", "upload_time_iso_8601": "2016-05-05T10:50:30.280289Z", "url": "https://files.pythonhosted.org/packages/a3/7c/b8313428e413a60b70900aadd4ec01ffa05b84f311220c74dcef0056dcb0/aiohttp-0.21.6-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d020a7f3d912d0087812e6d77e2011e", "sha256": "7f4a4a0b6438456af386183eb90c586d6c482085cf68af59afb0067f44886e08" }, "downloads": -1, "filename": "aiohttp-0.21.6-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "1d020a7f3d912d0087812e6d77e2011e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 237832, "upload_time": "2016-05-05T10:54:42", "upload_time_iso_8601": "2016-05-05T10:54:42.695984Z", "url": "https://files.pythonhosted.org/packages/de/cf/d87eeb6006fc4ab80a91c66f5aacbd40105f88302efb062155c6f7b96071/aiohttp-0.21.6-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7ad385addbdf57148148e0701e56c365", "sha256": "7d1ec0f5d7324ecd0ce305c1194a9380e16de0816e47cfc0801df048e1cffc0c" }, "downloads": -1, "filename": "aiohttp-0.21.6-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "7ad385addbdf57148148e0701e56c365", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 249067, "upload_time": "2016-05-05T10:58:50", "upload_time_iso_8601": "2016-05-05T10:58:50.273758Z", "url": "https://files.pythonhosted.org/packages/de/0a/e442d8f4cf2919556683098921cfadbc64fc2c25d2e2800c576943faae02/aiohttp-0.21.6-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d7f63e51bc86a61d9bccca13986c3855", "sha256": "8709c6d4b7735705ef46e0d5416083f1e92d9a9ab18e2b4c7f7944e831b73428" }, "downloads": -1, "filename": "aiohttp-0.21.6.tar.gz", "has_sig": false, "md5_digest": "d7f63e51bc86a61d9bccca13986c3855", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 528327, "upload_time": "2016-05-05T11:04:05", "upload_time_iso_8601": "2016-05-05T11:04:05.702815Z", "url": "https://files.pythonhosted.org/packages/04/78/9faeb8b5b1d53e8c81c99764412c2225d982943e4261bba2c6f725e15fce/aiohttp-0.21.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.22.0": [ { "comment_text": "", "digests": { "md5": "3ec6aa8bdd606883963a2c26f5dce682", "sha256": "355614f983226a534ece659ec3fc30d921b57404a9fe18e32121c274eb2477cb" }, "downloads": -1, "filename": "aiohttp-0.22.0-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3ec6aa8bdd606883963a2c26f5dce682", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 144928, "upload_time": "2016-07-15T08:46:04", "upload_time_iso_8601": "2016-07-15T08:46:04.579545Z", "url": "https://files.pythonhosted.org/packages/f2/9a/3498de463f74c8c2adf97464e558650713f34528d7d560627fc010e35d35/aiohttp-0.22.0-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "56e87da62a41e52833ea68cbbee1a402", "sha256": "5831c27aa16b978d88b3018b31291973787750af10c886cfebf6b5475759645e" }, "downloads": -1, "filename": "aiohttp-0.22.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "56e87da62a41e52833ea68cbbee1a402", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 147599, "upload_time": "2016-07-15T08:40:44", "upload_time_iso_8601": "2016-07-15T08:40:44.714110Z", "url": "https://files.pythonhosted.org/packages/64/87/aa772573c1a4ee7566dcd8b7737b5b81ab6ea9a7b93297948670d395d296/aiohttp-0.22.0-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "491c2110cd5d659bfe57ab29b000ae15", "sha256": "ad904936045e4876c14e6484b3b0fdae4be276fb577ee6ae2695dc21035690f5" }, "downloads": -1, "filename": "aiohttp-0.22.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "491c2110cd5d659bfe57ab29b000ae15", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 128156, "upload_time": "2016-07-15T08:42:51", "upload_time_iso_8601": "2016-07-15T08:42:51.352522Z", "url": "https://files.pythonhosted.org/packages/99/67/0caeb62997a88a1e25694f23042ed0f497c947a07be5c374da5c8848525a/aiohttp-0.22.0-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aa64d017cbff12b0b24046a365672366", "sha256": "034c738f406438d2cb6b5c02b53f8ce3de07083e3d0cb3190584508dd5fbd7d2" }, "downloads": -1, "filename": "aiohttp-0.22.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "aa64d017cbff12b0b24046a365672366", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 128497, "upload_time": "2016-07-15T08:47:08", "upload_time_iso_8601": "2016-07-15T08:47:08.607803Z", "url": "https://files.pythonhosted.org/packages/26/25/821210935278c516dce2d1b9893c1eb6c701c6c5e48232c5816a099b8e30/aiohttp-0.22.0-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5de5e9b97bb49120e55a60a80ec204f2", "sha256": "fc79355ea0f29eda0e33d159d0dd8c28e6d710785d99e70731f17c1fa0ab7bed" }, "downloads": -1, "filename": "aiohttp-0.22.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5de5e9b97bb49120e55a60a80ec204f2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 144779, "upload_time": "2016-07-15T08:46:07", "upload_time_iso_8601": "2016-07-15T08:46:07.467444Z", "url": "https://files.pythonhosted.org/packages/05/de/8816f85d8ee9c091dd93952d57b81d1a874d3de9dc4ea3619377faf6b7c4/aiohttp-0.22.0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "942ee3cf2b86f6620afa14ebf9ee1ab0", "sha256": "a7f9438b554a21eb76ab5886d2bfbb7f4a722d2723500253462e486487f5462c" }, "downloads": -1, "filename": "aiohttp-0.22.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "942ee3cf2b86f6620afa14ebf9ee1ab0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 147460, "upload_time": "2016-07-15T08:40:47", "upload_time_iso_8601": "2016-07-15T08:40:47.799531Z", "url": "https://files.pythonhosted.org/packages/da/e6/aab3f96be0883cf3f12edbe4a8e138712c6cf99037390029c8ee3594131b/aiohttp-0.22.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5563dfc3f37416c2925c803874a0a1f7", "sha256": "b5724d1da2a16897a8ad0533d2e4d18ee15fc973521e6ccf3b0b8998649bc7ba" }, "downloads": -1, "filename": "aiohttp-0.22.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "5563dfc3f37416c2925c803874a0a1f7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 129374, "upload_time": "2016-07-15T08:49:32", "upload_time_iso_8601": "2016-07-15T08:49:32.969165Z", "url": "https://files.pythonhosted.org/packages/56/83/7d56e875f3b36baaa34a403de4641d0c65b5388b69085057e774173a216a/aiohttp-0.22.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9199fb215ace72967c507c72f9f64fb3", "sha256": "9ab261b8864eb7a78867b92d7abf3bea0b134ecc97e5f5edb287219f878a4db7" }, "downloads": -1, "filename": "aiohttp-0.22.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "9199fb215ace72967c507c72f9f64fb3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 130590, "upload_time": "2016-07-15T08:51:48", "upload_time_iso_8601": "2016-07-15T08:51:48.698935Z", "url": "https://files.pythonhosted.org/packages/96/02/c767873320b1475e300b7d9c66c8282f75c2feedcc03076f6e07c442edf1/aiohttp-0.22.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d260682e79e8a9792012d9195fe41927", "sha256": "08d2f8f4ddde904548e0da82329be63a57903ec5b8cd962fab607c5875c8d955" }, "downloads": -1, "filename": "aiohttp-0.22.0.tar.gz", "has_sig": false, "md5_digest": "d260682e79e8a9792012d9195fe41927", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 474319, "upload_time": "2016-07-15T08:37:48", "upload_time_iso_8601": "2016-07-15T08:37:48.623906Z", "url": "https://files.pythonhosted.org/packages/4e/72/d3cf089212019330003607d875e9adca2c71dbf56a8a14bb414c305534eb/aiohttp-0.22.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.22.0a0": [ { "comment_text": "", "digests": { "md5": "9de4dbc4914fbdb7024ab241d96dee96", "sha256": "ea8e1dd3eb8b06ff15cdbecdd15db9eb54920546ba78dd09ec362381fbf5d8b1" }, "downloads": -1, "filename": "aiohttp-0.22.0a0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "9de4dbc4914fbdb7024ab241d96dee96", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 120581, "upload_time": "2016-05-05T12:13:46", "upload_time_iso_8601": "2016-05-05T12:13:46.540965Z", "url": "https://files.pythonhosted.org/packages/06/55/641b213304816ffb9fdedc0de9e97d19716d66fe29299fc87aa94b491dc2/aiohttp-0.22.0a0-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1392f6d5e95f394c28dc146d5af020f1", "sha256": "eea2b0b8a0957bc76bdbd1212794c474e5ccf67147fd115a62c2278d9e29579c" }, "downloads": -1, "filename": "aiohttp-0.22.0a0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "1392f6d5e95f394c28dc146d5af020f1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 120922, "upload_time": "2016-05-05T12:18:44", "upload_time_iso_8601": "2016-05-05T12:18:44.379721Z", "url": "https://files.pythonhosted.org/packages/e0/31/cfed7ee880d25710b6ccdb50c23c3ad106540925a3edda4c6b18b8953544/aiohttp-0.22.0a0-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "55ec73c263f7f54cc5116ac34e1a4024", "sha256": "0b1fdce93dfc714c9667de93073f38931337d34877895138674770c7bf31b145" }, "downloads": -1, "filename": "aiohttp-0.22.0a0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "55ec73c263f7f54cc5116ac34e1a4024", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 121890, "upload_time": "2016-05-05T12:23:31", "upload_time_iso_8601": "2016-05-05T12:23:31.807620Z", "url": "https://files.pythonhosted.org/packages/cb/60/0a6cbd3547fdea6e1e406d1d6a523d7cff4c9e4d64f08702674ae8285e2c/aiohttp-0.22.0a0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a8c8964919ffa47e05d0e4a764853902", "sha256": "31a59f8b76cde1ee89e26edcf9da3b89e0920024f97720806ef194ec5ebaed68" }, "downloads": -1, "filename": "aiohttp-0.22.0a0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "a8c8964919ffa47e05d0e4a764853902", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 123075, "upload_time": "2016-05-05T12:28:46", "upload_time_iso_8601": "2016-05-05T12:28:46.686831Z", "url": "https://files.pythonhosted.org/packages/de/77/65d02f59114488ffcb934d9d0b2e6305a6731241aae563bde8938060f945/aiohttp-0.22.0a0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "893f6dadb4aace809be7bde537a69ecb", "sha256": "5c6f1d5d62117d6962cf046a6490fa7798a2939629bf289694d3178ce6c03349" }, "downloads": -1, "filename": "aiohttp-0.22.0a0.tar.gz", "has_sig": false, "md5_digest": "893f6dadb4aace809be7bde537a69ecb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 452338, "upload_time": "2016-05-05T12:12:34", "upload_time_iso_8601": "2016-05-05T12:12:34.858385Z", "url": "https://files.pythonhosted.org/packages/88/10/ba7c03e3cb827efa05cb57e3969a1de002d61497b5941f691af970f07c48/aiohttp-0.22.0a0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.22.0b0": [ { "comment_text": "", "digests": { "md5": "36c251680e2cf75750e6f63c731372c9", "sha256": "06d23d950fb451e461df1342f22090598871a16a5dfd98f72d34b442d6146308" }, "downloads": -1, "filename": "aiohttp-0.22.0b0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "36c251680e2cf75750e6f63c731372c9", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 127978, "upload_time": "2016-07-14T11:12:27", "upload_time_iso_8601": "2016-07-14T11:12:27.383652Z", "url": "https://files.pythonhosted.org/packages/94/35/bad6b9a90f934bdb6438c23235268ffe8c6a37a50c20ce097526bb5931ad/aiohttp-0.22.0b0-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6052e6f092162ad3b9258bd8b7b72b3e", "sha256": "f6454d63c82d558aa3f20b16eb3d96689899df8e0f5b5b6c2c227e432f1b28f8" }, "downloads": -1, "filename": "aiohttp-0.22.0b0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "6052e6f092162ad3b9258bd8b7b72b3e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 128318, "upload_time": "2016-07-14T11:13:37", "upload_time_iso_8601": "2016-07-14T11:13:37.484961Z", "url": "https://files.pythonhosted.org/packages/30/b7/3217f67ec5b0ef4df52de35a09b5a162e29f0d0ee3ff39eb68dfba083cdf/aiohttp-0.22.0b0-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "29ad5044e054f3dc0c451c2098e5459f", "sha256": "f19339a15a599b5ccf8bc9f287f4ca7bbb745b823853208ac6166e397a7f0c40" }, "downloads": -1, "filename": "aiohttp-0.22.0b0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "29ad5044e054f3dc0c451c2098e5459f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 129195, "upload_time": "2016-07-14T11:14:40", "upload_time_iso_8601": "2016-07-14T11:14:40.606958Z", "url": "https://files.pythonhosted.org/packages/5f/02/267560edd7e505f805b1bcaabb5042f6a3cd3d56045d80a9b38dd85405d0/aiohttp-0.22.0b0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9b66f9d18f59cdf8a296ee06aedee3c", "sha256": "6f66eef926ef487b0e2e4be1ad1bae2d2eb8bb379635aedd49769c2807a54bf3" }, "downloads": -1, "filename": "aiohttp-0.22.0b0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "d9b66f9d18f59cdf8a296ee06aedee3c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 130412, "upload_time": "2016-07-14T11:15:39", "upload_time_iso_8601": "2016-07-14T11:15:39.069088Z", "url": "https://files.pythonhosted.org/packages/c8/7a/62d6aca8c25f4f53ffd992f2228c256c01f02272537ff5786340491b216c/aiohttp-0.22.0b0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b72503e492a6c64fa6c1ae13586410aa", "sha256": "4e69fc4354918f994c2b66844d2ef70f4ee607e2cc10aebf1b4336c1be47aee0" }, "downloads": -1, "filename": "aiohttp-0.22.0b0.tar.gz", "has_sig": false, "md5_digest": "b72503e492a6c64fa6c1ae13586410aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 474149, "upload_time": "2016-07-14T11:14:57", "upload_time_iso_8601": "2016-07-14T11:14:57.881936Z", "url": "https://files.pythonhosted.org/packages/69/b3/8ada8696fc3fd414610eb120d4a02760334e8377fda2581906904902a15b/aiohttp-0.22.0b0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.22.0b1": [ { "comment_text": "", "digests": { "md5": "43c6a2bb82a0fb3a7e15d51a7162eded", "sha256": "944a3f8afebdbf71149313edc5e3b67500c2108525dbb3ffbf1907c8857a5664" }, "downloads": -1, "filename": "aiohttp-0.22.0b1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "43c6a2bb82a0fb3a7e15d51a7162eded", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 127979, "upload_time": "2016-07-14T11:36:55", "upload_time_iso_8601": "2016-07-14T11:36:55.995279Z", "url": "https://files.pythonhosted.org/packages/a4/41/ab4b94a28413b6651a503bf5e5e390b0cffd014942c7f668c3086253a8d5/aiohttp-0.22.0b1-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2bb2c565a8764b8c65e7accc9e3196f0", "sha256": "af79f3b28aee02064328ce8d204c2d0ff651090f6b94131e93c5ed22fe5023ec" }, "downloads": -1, "filename": "aiohttp-0.22.0b1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "2bb2c565a8764b8c65e7accc9e3196f0", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 128319, "upload_time": "2016-07-14T11:37:58", "upload_time_iso_8601": "2016-07-14T11:37:58.145200Z", "url": "https://files.pythonhosted.org/packages/ab/35/274d3466bada71aa8bd6c34985b0db6ac141da720d5c89ab78fcf1bdec47/aiohttp-0.22.0b1-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b57b279680dd6df6fb0d52ff6ed877be", "sha256": "bbd8621475147beedc1062d7ebf004d3c59723c793dfef9bdbc7cef9692784b0" }, "downloads": -1, "filename": "aiohttp-0.22.0b1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "b57b279680dd6df6fb0d52ff6ed877be", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 129197, "upload_time": "2016-07-14T11:39:08", "upload_time_iso_8601": "2016-07-14T11:39:08.024564Z", "url": "https://files.pythonhosted.org/packages/60/05/b419c7c4888250f6e8bfb459a07a2318806f29053ff4d1670d02e5b8048a/aiohttp-0.22.0b1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6f9d60483fef7a5288ef4c838da7f8a", "sha256": "dc8756806086381aacf6a1630acecfe5bc8168b32ac0d8f8617c0746a3a47a42" }, "downloads": -1, "filename": "aiohttp-0.22.0b1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "f6f9d60483fef7a5288ef4c838da7f8a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 130412, "upload_time": "2016-07-14T11:40:14", "upload_time_iso_8601": "2016-07-14T11:40:14.567521Z", "url": "https://files.pythonhosted.org/packages/85/52/9ac83a7f9e03c513a13bb6a7a2ac58e10506f9ee4ebcf1aa1e2e621928bd/aiohttp-0.22.0b1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "47a778dcfad79fc8471498e3ffa1f137", "sha256": "2eaebcc3bec5a49746b48244983006be2d9348bfb5c9d18c5178b3c79647b2d6" }, "downloads": -1, "filename": "aiohttp-0.22.0b1.tar.gz", "has_sig": false, "md5_digest": "47a778dcfad79fc8471498e3ffa1f137", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 474142, "upload_time": "2016-07-14T11:39:55", "upload_time_iso_8601": "2016-07-14T11:39:55.208822Z", "url": "https://files.pythonhosted.org/packages/a2/1d/5fad66b00db9ee1f0dd452d7eaac7294d2d2c34ee002a806b3dfac9b96fa/aiohttp-0.22.0b1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.22.0b2": [ { "comment_text": "", "digests": { "md5": "b7764352268adee62a7a51205e30d2aa", "sha256": "aa4f502a299b07e6216cc3955127ec63bf2a54697f6db46054a2d569d37bb47a" }, "downloads": -1, "filename": "aiohttp-0.22.0b2-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "b7764352268adee62a7a51205e30d2aa", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 127982, "upload_time": "2016-07-14T11:54:38", "upload_time_iso_8601": "2016-07-14T11:54:38.180382Z", "url": "https://files.pythonhosted.org/packages/57/0c/c99bdf30acec59baed9c2f4648eeebb5e5a174b3c1258ede6543bee915a2/aiohttp-0.22.0b2-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f28653235064ec47f13c31b7fca581fb", "sha256": "9ec1bf7451051ff680b329ba54ca424e21588ff0a29dc6aff067b42ca985b6bd" }, "downloads": -1, "filename": "aiohttp-0.22.0b2-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "f28653235064ec47f13c31b7fca581fb", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 128322, "upload_time": "2016-07-14T11:55:43", "upload_time_iso_8601": "2016-07-14T11:55:43.848278Z", "url": "https://files.pythonhosted.org/packages/c1/fd/2b98fff31de834414919b3a951a694054e829e807064174ae51e6b77e925/aiohttp-0.22.0b2-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "80815434b6f4ae6ea898d6a8650e7302", "sha256": "5552b4c180ccaa9e29ab2db4e6b66280615125ff2072b8144de0fe6fb5f61f00" }, "downloads": -1, "filename": "aiohttp-0.22.0b2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "80815434b6f4ae6ea898d6a8650e7302", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 129198, "upload_time": "2016-07-14T11:56:51", "upload_time_iso_8601": "2016-07-14T11:56:51.221663Z", "url": "https://files.pythonhosted.org/packages/85/16/976a938121578268b3a702914928690716ab49afa1ea5e55a5a37e57b79a/aiohttp-0.22.0b2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5be9b5f7d3731b8396a7700458f69d5", "sha256": "04c9ab5e69fdd56656a85b9bba5e4b9e7b385d460d68f1850bda467da1e78079" }, "downloads": -1, "filename": "aiohttp-0.22.0b2.tar.gz", "has_sig": false, "md5_digest": "f5be9b5f7d3731b8396a7700458f69d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 474160, "upload_time": "2016-07-14T11:57:59", "upload_time_iso_8601": "2016-07-14T11:57:59.711561Z", "url": "https://files.pythonhosted.org/packages/94/0e/d74c943af8cdedf9fa6d1056a6a82b557abc3ebe877e35b1cd397a72e5a3/aiohttp-0.22.0b2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.22.0b3": [ { "comment_text": "", "digests": { "md5": "6e3d7d43b55a6eeab0127bcac502aa64", "sha256": "052c179929657972ae57088c64b74b7be412a5eee5a13e4df6023a8f24b8ce78" }, "downloads": -1, "filename": "aiohttp-0.22.0b3-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "6e3d7d43b55a6eeab0127bcac502aa64", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 127980, "upload_time": "2016-07-14T12:09:09", "upload_time_iso_8601": "2016-07-14T12:09:09.244145Z", "url": "https://files.pythonhosted.org/packages/54/ea/d9bd81825e663d5b90909738812457335a35df35da4a52a20401984b4024/aiohttp-0.22.0b3-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f94ec71a7dbd04a19c95b819960cdce0", "sha256": "38cc034c8f600f60f55ca7b8de04572ef85a390cc657db58b2c961666991c48f" }, "downloads": -1, "filename": "aiohttp-0.22.0b3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "f94ec71a7dbd04a19c95b819960cdce0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 130412, "upload_time": "2016-07-14T12:12:11", "upload_time_iso_8601": "2016-07-14T12:12:11.938269Z", "url": "https://files.pythonhosted.org/packages/bb/52/41818d7c638041022a775e11374ada8838e86a32682b1e14cb4ceb161b6d/aiohttp-0.22.0b3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef72f137fc83bb2bf8def6f76e95fb2d", "sha256": "7adb28e958cf8896d24b873fce7266d7c6ebe7656309f4b44894e6acbbf6eba2" }, "downloads": -1, "filename": "aiohttp-0.22.0b3.tar.gz", "has_sig": false, "md5_digest": "ef72f137fc83bb2bf8def6f76e95fb2d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 474157, "upload_time": "2016-07-14T12:12:30", "upload_time_iso_8601": "2016-07-14T12:12:30.072296Z", "url": "https://files.pythonhosted.org/packages/bc/73/ee3e3212d4c4738285ea51d059d0324240fad5d426bf7f63e472bd2ad4a4/aiohttp-0.22.0b3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.22.0b4": [ { "comment_text": "", "digests": { "md5": "68f6b10f6d670cd2cb7a1106070352d9", "sha256": "9afb83d3d97401ddeafe444797bca680836c69dfd7575baeeabc3ea6ceb0fc74" }, "downloads": -1, "filename": "aiohttp-0.22.0b4-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "68f6b10f6d670cd2cb7a1106070352d9", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 127980, "upload_time": "2016-07-14T12:22:03", "upload_time_iso_8601": "2016-07-14T12:22:03.198394Z", "url": "https://files.pythonhosted.org/packages/cb/41/b5e758e0546d1485559e3e4c82fb0f117ce24250e6f2b72614de0cedebe2/aiohttp-0.22.0b4-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "320973b7fd9a25a109943722c2463b9b", "sha256": "4e55b78a07a0d20c29665dd1ddbb6698d5fb1cbc9ceba4994ee8547a16d7eb69" }, "downloads": -1, "filename": "aiohttp-0.22.0b4-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "320973b7fd9a25a109943722c2463b9b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 128322, "upload_time": "2016-07-14T12:23:24", "upload_time_iso_8601": "2016-07-14T12:23:24.342520Z", "url": "https://files.pythonhosted.org/packages/f8/67/86e6914c31467efc0f23d713ae736d28955ead90baab8323d8426c96a541/aiohttp-0.22.0b4-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "417a9b47f9f90d216e63d5b9e39df995", "sha256": "a7ff78b8845699cfe8e8579271a8dfbbe97bc8e74088554885db19f03e487206" }, "downloads": -1, "filename": "aiohttp-0.22.0b4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "417a9b47f9f90d216e63d5b9e39df995", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 130413, "upload_time": "2016-07-14T12:25:40", "upload_time_iso_8601": "2016-07-14T12:25:40.984704Z", "url": "https://files.pythonhosted.org/packages/e5/78/11b669916073dd4e3b621025fdd6b30cc2261114e931aa9f9740368612db/aiohttp-0.22.0b4-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c9ad943a253811c54ac248125043750a", "sha256": "1ba54a502092abf3300db3ea3688dc6f4afa049ab18ffe6cb0bdecc2d347fef6" }, "downloads": -1, "filename": "aiohttp-0.22.0b4.tar.gz", "has_sig": false, "md5_digest": "c9ad943a253811c54ac248125043750a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 474149, "upload_time": "2016-07-14T12:23:50", "upload_time_iso_8601": "2016-07-14T12:23:50.367272Z", "url": "https://files.pythonhosted.org/packages/52/dd/c3860a696d4b6845580f6305c54e9eee1b3ed5cd37bb8b4b7fd3d9db76cf/aiohttp-0.22.0b4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.22.0b5": [ { "comment_text": "", "digests": { "md5": "2d4adfc045771cb1f079499cbf206f25", "sha256": "fc3b8867c1a7fd69302461397d3293b1cf500f3234ec9b2d524844d02ebeae05" }, "downloads": -1, "filename": "aiohttp-0.22.0b5-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "2d4adfc045771cb1f079499cbf206f25", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 127983, "upload_time": "2016-07-14T12:54:33", "upload_time_iso_8601": "2016-07-14T12:54:33.490155Z", "url": "https://files.pythonhosted.org/packages/dd/16/eea750e02fd199d489cdbff1a3ac980e37af9db96ed283be4e3b67f655aa/aiohttp-0.22.0b5-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "87e1948585632e46f25617de4cffc9ba", "sha256": "681f304f548e217e75345dc94d5fd67394c2360055aee5aea24317c5370a2c5f" }, "downloads": -1, "filename": "aiohttp-0.22.0b5-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "87e1948585632e46f25617de4cffc9ba", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 128322, "upload_time": "2016-07-14T12:55:56", "upload_time_iso_8601": "2016-07-14T12:55:56.692204Z", "url": "https://files.pythonhosted.org/packages/73/4d/607957f307c54d59da255c880b9342a8cb604361044dc9bc3cbb916d3e1c/aiohttp-0.22.0b5-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "52ca9f662085dc9f752b8b6ba430576f", "sha256": "3d3b61f5290f2a306827912db9e4eb85b621214c3166e83b2170a55aa5b5e294" }, "downloads": -1, "filename": "aiohttp-0.22.0b5-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "52ca9f662085dc9f752b8b6ba430576f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 129199, "upload_time": "2016-07-14T12:57:28", "upload_time_iso_8601": "2016-07-14T12:57:28.518884Z", "url": "https://files.pythonhosted.org/packages/74/23/f12770c538e451b32bdef454dd186858926a82ed23328b958ada43db8b27/aiohttp-0.22.0b5-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b60eb4ed21713c52953f41ee069216c1", "sha256": "731bfba964b1dc48de727f9ec753d924f70b23235c32ad989fa24a2274d02250" }, "downloads": -1, "filename": "aiohttp-0.22.0b5-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "b60eb4ed21713c52953f41ee069216c1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 130414, "upload_time": "2016-07-14T12:58:39", "upload_time_iso_8601": "2016-07-14T12:58:39.499165Z", "url": "https://files.pythonhosted.org/packages/a9/fa/9fa99c3230b14bdd0a7633ee83536282fe99717470ef2435948b03503787/aiohttp-0.22.0b5-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d04042c3a8f575e18c683c837767b8b1", "sha256": "3ea3aa3e130d63292f5ddc54de64364b02b801c0f2e1a71c11da71b9b5495f5c" }, "downloads": -1, "filename": "aiohttp-0.22.0b5.tar.gz", "has_sig": false, "md5_digest": "d04042c3a8f575e18c683c837767b8b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 474168, "upload_time": "2016-07-14T13:00:38", "upload_time_iso_8601": "2016-07-14T13:00:38.523197Z", "url": "https://files.pythonhosted.org/packages/66/b8/b5d2cd240a8e8014126327047fc0c60524bc03c041dadd00d61d7e76c33f/aiohttp-0.22.0b5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.22.0b6": [ { "comment_text": "", "digests": { "md5": "22a20312f7603507be7b0b595928062f", "sha256": "c16cd6a1381992a4d7bdaa6734dafed93eca90988ef610730a82a37199a25fcf" }, "downloads": -1, "filename": "aiohttp-0.22.0b6-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "22a20312f7603507be7b0b595928062f", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 144738, "upload_time": "2016-07-14T13:14:44", "upload_time_iso_8601": "2016-07-14T13:14:44.644009Z", "url": "https://files.pythonhosted.org/packages/a1/7b/d5a6bb93dcd8e25ecfcae58bbac1bbe4528231b16a4d8d2728aede87eacd/aiohttp-0.22.0b6-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d861744889e95736deebe08465b502b3", "sha256": "70c33d277911feb52716d05276c5f2e6a010f3ae59be3f1f05bd535898fe13d8" }, "downloads": -1, "filename": "aiohttp-0.22.0b6-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d861744889e95736deebe08465b502b3", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 147433, "upload_time": "2016-07-14T13:13:02", "upload_time_iso_8601": "2016-07-14T13:13:02.500012Z", "url": "https://files.pythonhosted.org/packages/e2/cd/9cb496ba79a9e0b560db3ef4c3724fbc4ca7cfddf7532ba4817a5a3210ad/aiohttp-0.22.0b6-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa3cd867c0ad779c9aed211a638ea599", "sha256": "b6e7b0dce40661ef5bfb50223de97addfa4e8fc209d2196f337690cc3cc24846" }, "downloads": -1, "filename": "aiohttp-0.22.0b6-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "fa3cd867c0ad779c9aed211a638ea599", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 127980, "upload_time": "2016-07-14T13:08:10", "upload_time_iso_8601": "2016-07-14T13:08:10.431164Z", "url": "https://files.pythonhosted.org/packages/52/b0/60c65803e9bf11461bcf1d5b483614a20328bdbac1d9059bc1e0b65259c1/aiohttp-0.22.0b6-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6cbce6f887ff82ff3c7f325ababc796d", "sha256": "b944e18e744b447bd721d963df89698a27fbc32d675c576f2d710f251ea67dcb" }, "downloads": -1, "filename": "aiohttp-0.22.0b6-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "6cbce6f887ff82ff3c7f325ababc796d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 128322, "upload_time": "2016-07-14T13:09:39", "upload_time_iso_8601": "2016-07-14T13:09:39.222780Z", "url": "https://files.pythonhosted.org/packages/b2/c3/e85a7c854962da6750668313449ccba7e2df2d50fd7ce8075fee4c488585/aiohttp-0.22.0b6-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "092cf8bfa8a1f4354e17cf9cfb8ae159", "sha256": "4167fbf12b0c735e2bf610c2a418404fbfe90b058e75579553659c59f03b6255" }, "downloads": -1, "filename": "aiohttp-0.22.0b6-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "092cf8bfa8a1f4354e17cf9cfb8ae159", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 144607, "upload_time": "2016-07-14T13:14:47", "upload_time_iso_8601": "2016-07-14T13:14:47.394705Z", "url": "https://files.pythonhosted.org/packages/de/21/7d1e9e5d9ea40aae0028e09b6f1c065364b21c602ecd486439e2553a6b17/aiohttp-0.22.0b6-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bcb2ba1cf0065702ca0a8d3382bd2d65", "sha256": "06b87e49cb2fb40d882aa717a09deb26e6bc2c461409ab856f500c2400592e4b" }, "downloads": -1, "filename": "aiohttp-0.22.0b6-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bcb2ba1cf0065702ca0a8d3382bd2d65", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 147300, "upload_time": "2016-07-14T13:13:05", "upload_time_iso_8601": "2016-07-14T13:13:05.675114Z", "url": "https://files.pythonhosted.org/packages/cb/71/11fc66b13c6b32f9db6bd3986f6fe0b46fe263f274bf19a47ed9bfb152c5/aiohttp-0.22.0b6-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8902291622a11f9a6bb0ac9f2fcdc243", "sha256": "5b537367afea48df11606dda432ea4bb09a64e670a43335ac33096d522bc0724" }, "downloads": -1, "filename": "aiohttp-0.22.0b6-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "8902291622a11f9a6bb0ac9f2fcdc243", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 129197, "upload_time": "2016-07-14T13:11:01", "upload_time_iso_8601": "2016-07-14T13:11:01.749805Z", "url": "https://files.pythonhosted.org/packages/06/22/474c54efb92274ba24175682e8589a2eb2564bd0c9ae7c75e82fbfac2ca5/aiohttp-0.22.0b6-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8b906a5e7dc7b27af81ab1089ff605d5", "sha256": "7853b8ca23f184b60385d9c877db02cecd661c0ff59d959db0e162473b6e26f1" }, "downloads": -1, "filename": "aiohttp-0.22.0b6-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "8b906a5e7dc7b27af81ab1089ff605d5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 130415, "upload_time": "2016-07-14T13:12:17", "upload_time_iso_8601": "2016-07-14T13:12:17.269152Z", "url": "https://files.pythonhosted.org/packages/f0/68/d8e67271ac46f34cebc86d7fa97de3dead1fe94e6ab5701fd30025cf70a5/aiohttp-0.22.0b6-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a9ac3eeae51a270b27c6c492dc65b923", "sha256": "4e61267359195adddaf305a5107cff2366f5335d3d39bf87f36217fed447a536" }, "downloads": -1, "filename": "aiohttp-0.22.0b6.tar.gz", "has_sig": false, "md5_digest": "a9ac3eeae51a270b27c6c492dc65b923", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 474156, "upload_time": "2016-07-14T13:11:53", "upload_time_iso_8601": "2016-07-14T13:11:53.974174Z", "url": "https://files.pythonhosted.org/packages/82/fc/6f869a006d80a847c5f84b0308a685262ddf0ba06e5006d9e5daf90eb16d/aiohttp-0.22.0b6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.22.1": [ { "comment_text": "", "digests": { "md5": "fa83aca9fe7ca1e77794d43c71bbb665", "sha256": "56960cd2f51c2b3bde52264d403ed6b14d7fe9e5c7b5407845671d06dd431680" }, "downloads": -1, "filename": "aiohttp-0.22.1-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "fa83aca9fe7ca1e77794d43c71bbb665", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 145159, "upload_time": "2016-07-16T11:38:29", "upload_time_iso_8601": "2016-07-16T11:38:29.617017Z", "url": "https://files.pythonhosted.org/packages/50/26/f4fba968d569e451f98ca2ef6f98fc86b10150d1aec8b8019db203b1d92d/aiohttp-0.22.1-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a03291d1a0b31109b1e5b37db012b0a3", "sha256": "a2beb822813f6d486c76a235e57e43a74c81eae19c1e80bf14236ed22a52c56d" }, "downloads": -1, "filename": "aiohttp-0.22.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a03291d1a0b31109b1e5b37db012b0a3", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 147844, "upload_time": "2016-07-16T11:36:49", "upload_time_iso_8601": "2016-07-16T11:36:49.390190Z", "url": "https://files.pythonhosted.org/packages/53/36/0a1ffadf0db93acefa5a642f2fd3486c686235b36a3d36cd6c106dc310c6/aiohttp-0.22.1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "10b82ac034c7aca54375911d60b24846", "sha256": "0308ae30d522ab0057ba59c85e5a4eaab1e53c35257d7392d55c6ef19e0c1574" }, "downloads": -1, "filename": "aiohttp-0.22.1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "10b82ac034c7aca54375911d60b24846", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 128391, "upload_time": "2016-07-16T11:32:23", "upload_time_iso_8601": "2016-07-16T11:32:23.291532Z", "url": "https://files.pythonhosted.org/packages/2d/dd/b164ddce1b576c9c9977f619d5a3c5db731172775e809c796fdcfaf34a81/aiohttp-0.22.1-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1b22a0fd2a28af3586b9eabfc40e3b69", "sha256": "c7d57d3a91d14ee1ce0bc4cef67940412b95e0ffc6a9f7376647a98a55511efe" }, "downloads": -1, "filename": "aiohttp-0.22.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "1b22a0fd2a28af3586b9eabfc40e3b69", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 128731, "upload_time": "2016-07-16T11:33:29", "upload_time_iso_8601": "2016-07-16T11:33:29.924962Z", "url": "https://files.pythonhosted.org/packages/25/ba/1a8e7fb6c14c083234687acf3e47bf39ebfdbd53fcd37e8b2703f22840bd/aiohttp-0.22.1-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c34e293ffb2621748cc4eb9e9a6ebb1", "sha256": "56d7e64aebf4f07cea351bac66c91ceb50d1bf8270a23b4dc17df669230de406" }, "downloads": -1, "filename": "aiohttp-0.22.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0c34e293ffb2621748cc4eb9e9a6ebb1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 145013, "upload_time": "2016-07-16T11:38:32", "upload_time_iso_8601": "2016-07-16T11:38:32.373348Z", "url": "https://files.pythonhosted.org/packages/22/55/dac6fc1276e595b7bddd1843eb19562d043867f06e26eba5f48dcb4e142d/aiohttp-0.22.1-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a03fd8f590a201b5b4026e8b5157dbf2", "sha256": "ac5cc908f4c2ded6c90a7e1e24f825b592d85b3acf0497dcc54f3f5df881a758" }, "downloads": -1, "filename": "aiohttp-0.22.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a03fd8f590a201b5b4026e8b5157dbf2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 147692, "upload_time": "2016-07-16T11:36:52", "upload_time_iso_8601": "2016-07-16T11:36:52.517229Z", "url": "https://files.pythonhosted.org/packages/c8/71/62ccf522e5f5b064d9d3533a1364fecfe4c041db1e451942c5fd496eaa79/aiohttp-0.22.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "583873faf98e12c994e616aaf24b1d00", "sha256": "87b37520c481e0488663f0c6775e5545dc40f689568c9eee4e8c9dab1bad9dcc" }, "downloads": -1, "filename": "aiohttp-0.22.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "583873faf98e12c994e616aaf24b1d00", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 129610, "upload_time": "2016-07-16T11:34:35", "upload_time_iso_8601": "2016-07-16T11:34:35.721941Z", "url": "https://files.pythonhosted.org/packages/82/bf/14a27e427d3736b2364f9df9d7e56e29ced9ea493fbc4f68f0d037995bc8/aiohttp-0.22.1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb442a95f75e7f2e176441f1b04cb123", "sha256": "4d984f73786cf3b197c93e28e42ae17ee04a8e538d3297dfc2b8e9152fb9f4d4" }, "downloads": -1, "filename": "aiohttp-0.22.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "eb442a95f75e7f2e176441f1b04cb123", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 130826, "upload_time": "2016-07-16T11:35:36", "upload_time_iso_8601": "2016-07-16T11:35:36.166799Z", "url": "https://files.pythonhosted.org/packages/19/98/7c94c52810c817af40e1d95b509ccdba554e696f7946aec9b07815cebf84/aiohttp-0.22.1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ec9d5ad9612fa617beb92f2ef43d97f", "sha256": "19e6c67ea9dea962c0b8404813b41039a4b3a17cfb410d6991de0b47d9f0d544" }, "downloads": -1, "filename": "aiohttp-0.22.1.tar.gz", "has_sig": false, "md5_digest": "2ec9d5ad9612fa617beb92f2ef43d97f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 474579, "upload_time": "2016-07-16T11:37:30", "upload_time_iso_8601": "2016-07-16T11:37:30.522609Z", "url": "https://files.pythonhosted.org/packages/c4/e6/02dde6fce60b1b5b79e6411d972a720be4440dba7bb94285afd9ed2ec6e1/aiohttp-0.22.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.22.2": [ { "comment_text": "", "digests": { "md5": "7ff8592f60b7b658b196d857025b9d0e", "sha256": "d1bae78790ad2595e039a793e64045191a63155426e7a7e0c99828bbabbd3059" }, "downloads": -1, "filename": "aiohttp-0.22.2-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7ff8592f60b7b658b196d857025b9d0e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 145410, "upload_time": "2016-07-23T13:37:04", "upload_time_iso_8601": "2016-07-23T13:37:04.335387Z", "url": "https://files.pythonhosted.org/packages/5c/bf/2a1438145fe3223ac2acc8642fc7499180f19c20b2f4cad2082089efcb81/aiohttp-0.22.2-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5eb19034253d59ec72a8d72722561eb6", "sha256": "7a78705ec936de1ef7471cf7cbfa0a29773b48c0ace4063fa5a1d261807ed10b" }, "downloads": -1, "filename": "aiohttp-0.22.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5eb19034253d59ec72a8d72722561eb6", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 148090, "upload_time": "2016-07-23T13:35:29", "upload_time_iso_8601": "2016-07-23T13:35:29.537536Z", "url": "https://files.pythonhosted.org/packages/c7/67/5b5ba568ef9fab6cf5983ed77f395cd5428a0a89e59f2910660065becf34/aiohttp-0.22.2-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a168229729f17f84842cd7edf772095", "sha256": "c4e7e4e4a5104efec7436df3d43a78b9db0b06616d28e1e567243c81d8d4b67e" }, "downloads": -1, "filename": "aiohttp-0.22.2-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "7a168229729f17f84842cd7edf772095", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 128643, "upload_time": "2016-07-23T13:17:57", "upload_time_iso_8601": "2016-07-23T13:17:57.396670Z", "url": "https://files.pythonhosted.org/packages/e5/d4/4baf793799b96598856164a439d0af8e092bede6ec7ac71f7061020c46b3/aiohttp-0.22.2-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e1994ab0e4d4583a162a6ef77e79513e", "sha256": "9268b8be9d67507dacf85889558c7e839df3ce34e75a92660f31c3ee9e79748d" }, "downloads": -1, "filename": "aiohttp-0.22.2-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "e1994ab0e4d4583a162a6ef77e79513e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 128980, "upload_time": "2016-07-23T13:18:59", "upload_time_iso_8601": "2016-07-23T13:18:59.700947Z", "url": "https://files.pythonhosted.org/packages/83/e8/b17b35adec294ccddfc77b6cbd26bfeae05aaca3858366e0103dbcc61870/aiohttp-0.22.2-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "322efc43e110b2b9043f4f071e73b23d", "sha256": "7ef92062af933bf2e76b2981d3bc385cc90fa29fa34f9acf724d3b3592c36de5" }, "downloads": -1, "filename": "aiohttp-0.22.2-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "322efc43e110b2b9043f4f071e73b23d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 145262, "upload_time": "2016-07-23T13:37:06", "upload_time_iso_8601": "2016-07-23T13:37:06.964076Z", "url": "https://files.pythonhosted.org/packages/2e/0c/686f5079366de747eb5f4efb8b4ae0a0302f21e0ad90c359f427a1842202/aiohttp-0.22.2-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ce26a59ec25322c1b91245a3a8096ea", "sha256": "e54e455ca1ee1aa3679b85e9f1cf39da0f75d9a97f21f1b7e178199f1d3df021" }, "downloads": -1, "filename": "aiohttp-0.22.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6ce26a59ec25322c1b91245a3a8096ea", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 147944, "upload_time": "2016-07-23T13:35:32", "upload_time_iso_8601": "2016-07-23T13:35:32.289518Z", "url": "https://files.pythonhosted.org/packages/da/28/de6915c815e432f3cfe51318f08cff8d7cc1797f77c3d12228652fb340d7/aiohttp-0.22.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3bf83efbb2c16c48b9a9539a6aa39d0a", "sha256": "91823bd19ab9921774796e816a3712ca1a0ff18a8b5b7b5f476f564e81007289" }, "downloads": -1, "filename": "aiohttp-0.22.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "3bf83efbb2c16c48b9a9539a6aa39d0a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 129861, "upload_time": "2016-07-23T13:19:59", "upload_time_iso_8601": "2016-07-23T13:19:59.705698Z", "url": "https://files.pythonhosted.org/packages/19/6c/97f977d97837b275d59befb01fe99423af77c7e565a88f45b882f1575351/aiohttp-0.22.2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7aa9e7bd10284afd7a1e24eabfcc7150", "sha256": "dd438d181796895caf4a16ccc0d67daa83afb90d27e6a88c43c6d6313e73baa8" }, "downloads": -1, "filename": "aiohttp-0.22.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "7aa9e7bd10284afd7a1e24eabfcc7150", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 131075, "upload_time": "2016-07-23T13:21:04", "upload_time_iso_8601": "2016-07-23T13:21:04.346797Z", "url": "https://files.pythonhosted.org/packages/09/79/730180c59e1b87ba873be6c7df376d29f487a39997eae605d15a43681897/aiohttp-0.22.2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "83f4ac27719909f946d995f09f353f04", "sha256": "30b588573c88942dac7438509731e197d74552060547b79cf6ace8564ee4b277" }, "downloads": -1, "filename": "aiohttp-0.22.2.tar.gz", "has_sig": false, "md5_digest": "83f4ac27719909f946d995f09f353f04", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 475062, "upload_time": "2016-07-23T13:33:08", "upload_time_iso_8601": "2016-07-23T13:33:08.634190Z", "url": "https://files.pythonhosted.org/packages/7d/32/6b3b5f1451a13fa4f2926e8c7c6c173a89637cfeda35927f94fff35d6827/aiohttp-0.22.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.22.3": [ { "comment_text": "", "digests": { "md5": "c787878aceeb8a176637168a69f78be9", "sha256": "0aa8e51af7df93adb55e017c625d7f02c59a4f7e419f47fea679f736ecbdaadb" }, "downloads": -1, "filename": "aiohttp-0.22.3-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c787878aceeb8a176637168a69f78be9", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 145526, "upload_time": "2016-07-26T20:05:11", "upload_time_iso_8601": "2016-07-26T20:05:11.195571Z", "url": "https://files.pythonhosted.org/packages/c5/cd/935a312909a7ab8cc16ebf2d543cdc4c8cd8f82a023de7a16956137d38a3/aiohttp-0.22.3-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1c508d229a075b38042e360721008280", "sha256": "e4250da89e5ecc73cc02f84b87458ce87b4fbce07203819585767ac662762710" }, "downloads": -1, "filename": "aiohttp-0.22.3-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1c508d229a075b38042e360721008280", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 148215, "upload_time": "2016-07-26T20:03:38", "upload_time_iso_8601": "2016-07-26T20:03:38.455301Z", "url": "https://files.pythonhosted.org/packages/2c/e7/f2468b23824eea20d9cc5d4de97162782382ddd8f74e4720c7173870b9b9/aiohttp-0.22.3-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6eddbd98ef7bc1ae390213e2dfa28c34", "sha256": "1b050caf10736e305eaf6c0acb252f53e6898765651532ed6a494ceee24eba4c" }, "downloads": -1, "filename": "aiohttp-0.22.3-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "6eddbd98ef7bc1ae390213e2dfa28c34", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 128761, "upload_time": "2016-07-26T19:58:57", "upload_time_iso_8601": "2016-07-26T19:58:57.281393Z", "url": "https://files.pythonhosted.org/packages/60/30/8f688ba87a5190450e308cd9c150e1f94347a430a56b9eedd3dc47885936/aiohttp-0.22.3-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a489deb99d3197ee94844bd4468fe38b", "sha256": "28bbce54ef409ec02c30a463c209ea904f323e58b09e6813f2e95599acbb8d5a" }, "downloads": -1, "filename": "aiohttp-0.22.3-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "a489deb99d3197ee94844bd4468fe38b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 129102, "upload_time": "2016-07-26T20:00:18", "upload_time_iso_8601": "2016-07-26T20:00:18.496371Z", "url": "https://files.pythonhosted.org/packages/be/f8/25bfc8f97b28c653e007455a3596dc8f7432d6d77d0d2c84b26e3b119c9a/aiohttp-0.22.3-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f50387b72362cc798e4c8a8e20ffa78c", "sha256": "23ba000908fa3390fff62ad749c3a09b32978ba8cd5832f98824f6bab773326d" }, "downloads": -1, "filename": "aiohttp-0.22.3-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f50387b72362cc798e4c8a8e20ffa78c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 145381, "upload_time": "2016-07-26T20:05:14", "upload_time_iso_8601": "2016-07-26T20:05:14.465173Z", "url": "https://files.pythonhosted.org/packages/12/30/ffc4b09faa003bb9c060c1352abd1c712ea5294a801678a958f14100041c/aiohttp-0.22.3-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b85e5c06ab167ec0d585d436d44f4e62", "sha256": "8da4f3938b87e8379dedba8560a66b9bff3ff1d6a451bbbbf023b91392f27450" }, "downloads": -1, "filename": "aiohttp-0.22.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b85e5c06ab167ec0d585d436d44f4e62", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 148061, "upload_time": "2016-07-26T20:03:41", "upload_time_iso_8601": "2016-07-26T20:03:41.502672Z", "url": "https://files.pythonhosted.org/packages/8a/4a/abe36e3b386f15969ee2581ca99a9037ff2d766fdf0edb31c55726fb07b9/aiohttp-0.22.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2fe9ffab06060c75faad17c49f4d13d0", "sha256": "4c069a50ee867684bf23d3e96248f881444fd40c511b0581cb42314090ae8f2c" }, "downloads": -1, "filename": "aiohttp-0.22.3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "2fe9ffab06060c75faad17c49f4d13d0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 129981, "upload_time": "2016-07-26T20:01:17", "upload_time_iso_8601": "2016-07-26T20:01:17.715604Z", "url": "https://files.pythonhosted.org/packages/8f/c8/fa6d827573bd9204b90f1e402ecc15f89bd7bbf247a5bf30fd476c2ba81f/aiohttp-0.22.3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "172175b36bdd09dead3ca3d6d5cd5629", "sha256": "35e3c94985cfe4c93145cf2cfcf44a80401174f1f20a28b9fe6339573ab88c77" }, "downloads": -1, "filename": "aiohttp-0.22.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "172175b36bdd09dead3ca3d6d5cd5629", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 131196, "upload_time": "2016-07-26T20:02:21", "upload_time_iso_8601": "2016-07-26T20:02:21.673953Z", "url": "https://files.pythonhosted.org/packages/70/24/d7888256ae59ee0ed187d6670b02085b6b7d6033708a93e6f7e309f708ca/aiohttp-0.22.3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c75aa7aad0c428a0dbed1380e9c0807", "sha256": "c6698615ed6e3167cb35f7d3588596f98702528789410b6148706a5c583e8fc3" }, "downloads": -1, "filename": "aiohttp-0.22.3.tar.gz", "has_sig": false, "md5_digest": "8c75aa7aad0c428a0dbed1380e9c0807", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 475235, "upload_time": "2016-07-26T20:05:23", "upload_time_iso_8601": "2016-07-26T20:05:23.959112Z", "url": "https://files.pythonhosted.org/packages/29/b7/f273c09b120ae84d96c52ec0ebcfd623c5bf7fb1f2469b5d5fdddfe7be41/aiohttp-0.22.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.22.4": [ { "comment_text": "", "digests": { "md5": "804f7a1dc1d2ab4bc6f6ad133fff1c6c", "sha256": "c237850ddef9236abe0de9a3e10572949e0cb805e376ffea7f1f7526c0cc2caf" }, "downloads": -1, "filename": "aiohttp-0.22.4-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "804f7a1dc1d2ab4bc6f6ad133fff1c6c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 145528, "upload_time": "2016-07-28T11:37:51", "upload_time_iso_8601": "2016-07-28T11:37:51.101692Z", "url": "https://files.pythonhosted.org/packages/ac/cd/8931ae288fa2c7dfb9b625b9987cc62dea97f0b305579b95bfa9fd8e0fc6/aiohttp-0.22.4-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "87ff487badfe6d2909948d73844a31a0", "sha256": "457e74752cca12c25c74d2745fc875f26fe49218f308bf1d1c99461f146216f8" }, "downloads": -1, "filename": "aiohttp-0.22.4-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "87ff487badfe6d2909948d73844a31a0", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 148210, "upload_time": "2016-07-28T11:36:09", "upload_time_iso_8601": "2016-07-28T11:36:09.491867Z", "url": "https://files.pythonhosted.org/packages/f7/16/58e341b34d4f3081301c0fab68deb782e8e4ad37f1c402a68ad281b1dbdb/aiohttp-0.22.4-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b0cc7ff91a3bd0301d90133a965f8473", "sha256": "e447c5063642333d7f789e51b9a9cb4b784e483222ccbb35db93769d7517bb11" }, "downloads": -1, "filename": "aiohttp-0.22.4-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "b0cc7ff91a3bd0301d90133a965f8473", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 128771, "upload_time": "2016-07-28T11:27:38", "upload_time_iso_8601": "2016-07-28T11:27:38.738132Z", "url": "https://files.pythonhosted.org/packages/91/c7/5585a7ff01b4c745867c3d1eac458c06c7174f4982d52dfce6ab0390ad1e/aiohttp-0.22.4-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "376657e7b258e1ff8f15106336552803", "sha256": "5c6941c4df28a518c122d3595eee6c3e1fd93e7ac0074187cad5a1e1ec77fa79" }, "downloads": -1, "filename": "aiohttp-0.22.4-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "376657e7b258e1ff8f15106336552803", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 129114, "upload_time": "2016-07-28T11:29:05", "upload_time_iso_8601": "2016-07-28T11:29:05.204775Z", "url": "https://files.pythonhosted.org/packages/4c/6a/912e3af457fed0b5af140a89139f1d62b3afc7590bb77f73d40d74167042/aiohttp-0.22.4-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e2e334b732ed4883f9a9b1d9667eacce", "sha256": "18dcacae4decbca72002444f7901ce5f6419f2171ded919f6abf71176bef44be" }, "downloads": -1, "filename": "aiohttp-0.22.4-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e2e334b732ed4883f9a9b1d9667eacce", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 145395, "upload_time": "2016-07-28T11:37:53", "upload_time_iso_8601": "2016-07-28T11:37:53.945353Z", "url": "https://files.pythonhosted.org/packages/ca/04/5ba7b9ee275b0479531e4ee460f9a8b6daf1a5ebcef49eccbdad08ffb3e4/aiohttp-0.22.4-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cde9372e8168e3cb9d916e78cd2c91d4", "sha256": "40f96e8421d0d6e92e3a7a8d4ca30e87bdd972558f8814de9fe82b422e23ea83" }, "downloads": -1, "filename": "aiohttp-0.22.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "cde9372e8168e3cb9d916e78cd2c91d4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 148075, "upload_time": "2016-07-28T11:36:12", "upload_time_iso_8601": "2016-07-28T11:36:12.661641Z", "url": "https://files.pythonhosted.org/packages/75/c7/53b297b957c5435a5e9317af5881f74c852fd51643694f2227fda2db3cd7/aiohttp-0.22.4-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d94440f371a72bc4038c88734bb8aae1", "sha256": "88bf0bb3eb3557229317a393bc2d5d1dbcb4b65170cedcf33e2e6b33acac72ac" }, "downloads": -1, "filename": "aiohttp-0.22.4-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "d94440f371a72bc4038c88734bb8aae1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 129991, "upload_time": "2016-07-28T11:30:07", "upload_time_iso_8601": "2016-07-28T11:30:07.219773Z", "url": "https://files.pythonhosted.org/packages/ac/8f/f83a3f807da64ed797fa502f939bc20c60cdcdd4f54591edabcdc1be07fb/aiohttp-0.22.4-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "83fdd16df0d9cefc0c3f2d1ae421d501", "sha256": "334f956a1908b46cead8568fa70ba80caab73780986ce65de28b08248e6656a5" }, "downloads": -1, "filename": "aiohttp-0.22.4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "83fdd16df0d9cefc0c3f2d1ae421d501", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 131205, "upload_time": "2016-07-28T11:31:27", "upload_time_iso_8601": "2016-07-28T11:31:27.511147Z", "url": "https://files.pythonhosted.org/packages/f4/be/787ab477c1a8b92d0f773318aa713976ce9efa2cde7750b2a635891026d7/aiohttp-0.22.4-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "872f24d865e9ece06e08d67c4c14a0b6", "sha256": "167ec7373a3319419834e6c61846b7267c5fc6748b9dd2504b7e9378b55afcdd" }, "downloads": -1, "filename": "aiohttp-0.22.4.tar.gz", "has_sig": false, "md5_digest": "872f24d865e9ece06e08d67c4c14a0b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 475257, "upload_time": "2016-07-28T11:33:51", "upload_time_iso_8601": "2016-07-28T11:33:51.926346Z", "url": "https://files.pythonhosted.org/packages/b0/db/f9c64d2c7e84fe333cc0360c9f5e3433f202021ed2cd66ae9c700b55c9bc/aiohttp-0.22.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.22.5": [ { "comment_text": "", "digests": { "md5": "be35ae1c659d3f42115e7ba6102e02fb", "sha256": "6149596be7ee5ee7767e5dcf4613d52b245ac5eb3b24d313b9557f70efa63488" }, "downloads": -1, "filename": "aiohttp-0.22.5-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "be35ae1c659d3f42115e7ba6102e02fb", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 145575, "upload_time": "2016-08-02T18:19:14", "upload_time_iso_8601": "2016-08-02T18:19:14.433493Z", "url": "https://files.pythonhosted.org/packages/f0/71/25b7f236a5f699e0e23b0936628633e0ae00938cf374375a2fbc570bf368/aiohttp-0.22.5-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "762675a2ffa34672e581ea14a6302b42", "sha256": "615650ef881ab57c425f03b752b36b15dc6a2eac592917062736aebe98e19400" }, "downloads": -1, "filename": "aiohttp-0.22.5-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "762675a2ffa34672e581ea14a6302b42", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 148264, "upload_time": "2016-08-02T18:16:54", "upload_time_iso_8601": "2016-08-02T18:16:54.780224Z", "url": "https://files.pythonhosted.org/packages/68/80/a8d56abedf8287ae7a8e2b9d62565f4a3b806f85c8080704d896a5a78797/aiohttp-0.22.5-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4df53684a9d909ef92055bf606c142a4", "sha256": "bb00ea1e70361d74975e176046dcf1b6af23dfbd7e78f1bad6e1fff8fc44a549" }, "downloads": -1, "filename": "aiohttp-0.22.5-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "4df53684a9d909ef92055bf606c142a4", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 129163, "upload_time": "2016-08-02T18:06:47", "upload_time_iso_8601": "2016-08-02T18:06:47.573096Z", "url": "https://files.pythonhosted.org/packages/37/d3/ac9e24481c685e184d7802bc881b17607d59b7f1686b0fe92d05f2787cf6/aiohttp-0.22.5-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c7946d75ae80e417a3239ce2d1122732", "sha256": "eb310ea24f9eb775b90262e051fd5fd908497531881bfba312bfb80834bebf27" }, "downloads": -1, "filename": "aiohttp-0.22.5-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c7946d75ae80e417a3239ce2d1122732", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 145441, "upload_time": "2016-08-02T18:19:19", "upload_time_iso_8601": "2016-08-02T18:19:19.013781Z", "url": "https://files.pythonhosted.org/packages/2e/8e/1b282e4c7650a205db708e63f6e49bba52d8a7f99132ec86d2ca51b3ebf4/aiohttp-0.22.5-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f941018bc68d5b6b73a44e573ce7c4af", "sha256": "174fc9bcf173c7984e2cf0419cec231c4a4c02db5a43782d66f0988dd2d00ffe" }, "downloads": -1, "filename": "aiohttp-0.22.5-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f941018bc68d5b6b73a44e573ce7c4af", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 148130, "upload_time": "2016-08-02T18:16:58", "upload_time_iso_8601": "2016-08-02T18:16:58.445002Z", "url": "https://files.pythonhosted.org/packages/e6/d4/a53c95098167834578202248341d7135e2b5d5888876827bfc504d69d61a/aiohttp-0.22.5-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "81eb7e54bb2ab1085d20519bc6900ee1", "sha256": "35475c64ef54b5e89fb5f6df7010fb6a6d80a6e32bec737317b0dea54bd8dcf3" }, "downloads": -1, "filename": "aiohttp-0.22.5-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "81eb7e54bb2ab1085d20519bc6900ee1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 130044, "upload_time": "2016-08-02T18:07:49", "upload_time_iso_8601": "2016-08-02T18:07:49.612181Z", "url": "https://files.pythonhosted.org/packages/09/15/bb873845f1fb89681f25751877c638069620eadcd25015f6c3e0f81789cb/aiohttp-0.22.5-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5637dc88fd6f7530ec113f8e30fa063", "sha256": "b6989d0ca169e10daf2b45a16cbc9e3072037f108d54f15cb8fd023799c22533" }, "downloads": -1, "filename": "aiohttp-0.22.5-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "f5637dc88fd6f7530ec113f8e30fa063", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 131258, "upload_time": "2016-08-02T18:08:56", "upload_time_iso_8601": "2016-08-02T18:08:56.287014Z", "url": "https://files.pythonhosted.org/packages/88/b8/b3d0c4a9f2b6e72e0d8d21242e75bea0108d21e987899e039989a55d3bd5/aiohttp-0.22.5-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8541b6085fee8f8b51e0144df6470186", "sha256": "9c51af030c866f91e18a219614e39d345db4483ed9860389d0536d74d04b0d3b" }, "downloads": -1, "filename": "aiohttp-0.22.5.tar.gz", "has_sig": false, "md5_digest": "8541b6085fee8f8b51e0144df6470186", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 475312, "upload_time": "2016-08-02T18:16:57", "upload_time_iso_8601": "2016-08-02T18:16:57.236621Z", "url": "https://files.pythonhosted.org/packages/55/9d/38fb3cb174f4723b50a3f0593e18a51418c9a73a7857fdcaee46b83ff1c4/aiohttp-0.22.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3": [ { "comment_text": "", "digests": { "md5": "1437098798977f1102f8310df28dd834", "sha256": "4e7b84eb45786e6c9bddef19c63ee6804b801d5fc1042585c6f66819b3de8b64" }, "downloads": -1, "filename": "aiohttp-0.3.tar.gz", "has_sig": false, "md5_digest": "1437098798977f1102f8310df28dd834", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54294, "upload_time": "2013-11-04T19:01:55", "upload_time_iso_8601": "2013-11-04T19:01:55.243465Z", "url": "https://files.pythonhosted.org/packages/ee/d3/835176e7388da21ed2a83b2e4caac44af5295db654c157f8e6bafa75e5c5/aiohttp-0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4": [ { "comment_text": "", "digests": { "md5": "5890c792143d7a560d853b25b24a3938", "sha256": "23157a98f288060d112687bb1d7f3cf9e6591c67e565da7ae633776f18b31ef2" }, "downloads": -1, "filename": "aiohttp-0.4.tar.gz", "has_sig": false, "md5_digest": "5890c792143d7a560d853b25b24a3938", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54654, "upload_time": "2013-11-07T05:43:05", "upload_time_iso_8601": "2013-11-07T05:43:05.235170Z", "url": "https://files.pythonhosted.org/packages/4e/d4/a3a04ba3ed37d60122666c2bffc5ea98bde070807229cf4d9877f9217f54/aiohttp-0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "6d16b3ce81c6962545c61d2ad9155be3", "sha256": "78b68227284374e807abfb71d4339c2017b4e7621212ceced251b4a54f96a5ec" }, "downloads": -1, "filename": "aiohttp-0.4.1.tar.gz", "has_sig": false, "md5_digest": "6d16b3ce81c6962545c61d2ad9155be3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55325, "upload_time": "2013-11-12T19:34:29", "upload_time_iso_8601": "2013-11-12T19:34:29.654476Z", "url": "https://files.pythonhosted.org/packages/0a/e0/21ddf7e4dfa248559469c99ce2d4d7c84ef2e718c254e166d42bcb673f8c/aiohttp-0.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "a8ce61a859e123e98cc855f2d6646f00", "sha256": "ff25541c0209f4ca654b468e0c4681cabd4177d2d0f9397575b12cd4ee9a3d77" }, "downloads": -1, "filename": "aiohttp-0.4.2.tar.gz", "has_sig": false, "md5_digest": "a8ce61a859e123e98cc855f2d6646f00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56520, "upload_time": "2013-11-14T21:53:31", "upload_time_iso_8601": "2013-11-14T21:53:31.685000Z", "url": "https://files.pythonhosted.org/packages/fc/bd/08ad20959568d5ce5bf1e6cf3903d42833ed0be225dbe8b70cabf80e44bf/aiohttp-0.4.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "35d28028761bad3d450268228144c0c9", "sha256": "b0b8b3f191b814e67d110bc69ef2f0144e2f5dd4f3c606a59f5df72b8d6d1b92" }, "downloads": -1, "filename": "aiohttp-0.4.3.tar.gz", "has_sig": false, "md5_digest": "35d28028761bad3d450268228144c0c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56714, "upload_time": "2013-11-15T18:09:41", "upload_time_iso_8601": "2013-11-15T18:09:41.097604Z", "url": "https://files.pythonhosted.org/packages/92/16/5c344558c266c9942887582378f78a07cb37e70da0ba8da0ad03858bc23e/aiohttp-0.4.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "7c3eab188aa9f3edbbac8f92f1a93753", "sha256": "9efc3b266939f699ce4fcdf349fc90b81f64d9095d3abd8e7f11661b2fb5cf49" }, "downloads": -1, "filename": "aiohttp-0.4.4.tar.gz", "has_sig": false, "md5_digest": "7c3eab188aa9f3edbbac8f92f1a93753", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56922, "upload_time": "2013-11-15T20:00:17", "upload_time_iso_8601": "2013-11-15T20:00:17.084653Z", "url": "https://files.pythonhosted.org/packages/f8/81/6fb0568c40fcbda86e9bddc4d897f844ef0190ca7f9b1d0b174b4bb3a2b4/aiohttp-0.4.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "a910fe75b88cd9540ca295fa90bf4bff", "sha256": "6869f30771e39e71db898d6ae49507b1d43dd8f34990c8da4570dcc4684abdcd" }, "downloads": -1, "filename": "aiohttp-0.5.0.tar.gz", "has_sig": false, "md5_digest": "a910fe75b88cd9540ca295fa90bf4bff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57141, "upload_time": "2014-01-29T17:29:29", "upload_time_iso_8601": "2014-01-29T17:29:29.540757Z", "url": "https://files.pythonhosted.org/packages/89/34/ca37bd78166195c1ccf7c2653cb8b4ac18e0379c4c2c71b9b9b42bc1a1ae/aiohttp-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "023a60912c1e9e1a837b4fc5f4b2bd40", "sha256": "971a901914ebe9a5b4e27bccf547969ac432c4d2af95f20c09078877bfb9f1d0" }, "downloads": -1, "filename": "aiohttp-0.6.0.tar.gz", "has_sig": false, "md5_digest": "023a60912c1e9e1a837b4fc5f4b2bd40", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57422, "upload_time": "2014-02-12T07:14:52", "upload_time_iso_8601": "2014-02-12T07:14:52.875597Z", "url": "https://files.pythonhosted.org/packages/a5/02/37b8f76f302696f1f8e98259741b7c66ff30fff67e003ab45895483b7171/aiohttp-0.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "e230bfad088e1800a52be82f0f73740c", "sha256": "cd63fe739f14559dd98c3387c2876c33d94ba9152d188b633d3a0e9e8823c698" }, "downloads": -1, "filename": "aiohttp-0.6.1.tar.gz", "has_sig": false, "md5_digest": "e230bfad088e1800a52be82f0f73740c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58579, "upload_time": "2014-02-18T07:07:18", "upload_time_iso_8601": "2014-02-18T07:07:18.159178Z", "url": "https://files.pythonhosted.org/packages/cb/98/e646482b9dd4c6cee0bd52b3641b19bb535ca050c55fdaa05be455ae2890/aiohttp-0.6.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "5f42ad10c43b07e14090d6e01e6c0fb8", "sha256": "969e166aa30b703e24f00b045c217a946136daf70377298a013c5c96c19ba7c4" }, "downloads": -1, "filename": "aiohttp-0.6.2.tar.gz", "has_sig": false, "md5_digest": "5f42ad10c43b07e14090d6e01e6c0fb8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58725, "upload_time": "2014-02-18T19:10:28", "upload_time_iso_8601": "2014-02-18T19:10:28.406505Z", "url": "https://files.pythonhosted.org/packages/4d/36/8dccd7fd6630acb02fc5c80bd8d5d15f8da315980800288dba5e2c246d37/aiohttp-0.6.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "31fd67c0899c5ef434bd4a6d26f59b73", "sha256": "54249af504ae3c5bb837bf0208098296d31fad846273490d0b2b09802c1d6099" }, "downloads": -1, "filename": "aiohttp-0.6.3.tar.gz", "has_sig": false, "md5_digest": "31fd67c0899c5ef434bd4a6d26f59b73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59118, "upload_time": "2014-02-28T01:36:02", "upload_time_iso_8601": "2014-02-28T01:36:02.161649Z", "url": "https://files.pythonhosted.org/packages/44/8e/3ffa98b45e1c626753d57b6816a65dc67b7f88ce508ca442639e8831bed4/aiohttp-0.6.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "1a9bb7b6606a2fd40e8543051de0d7e2", "sha256": "4106ba08c4d84b89129f88e876121a3e2df368951c061eb1391be9f23230c5df" }, "downloads": -1, "filename": "aiohttp-0.6.4.tar.gz", "has_sig": false, "md5_digest": "1a9bb7b6606a2fd40e8543051de0d7e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59190, "upload_time": "2014-02-28T02:17:24", "upload_time_iso_8601": "2014-02-28T02:17:24.087029Z", "url": "https://files.pythonhosted.org/packages/6f/c6/618b849b9764d0cdd224ef76f0cf7351aa9a904396be028b34299c886658/aiohttp-0.6.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "121d14371554848f6194fa9e80143e9f", "sha256": "9e0e7a7c6322502a18b66fb645c2c03a38319616a746a6b1cf78af89646c4ad7" }, "downloads": -1, "filename": "aiohttp-0.6.5.tar.gz", "has_sig": false, "md5_digest": "121d14371554848f6194fa9e80143e9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66194, "upload_time": "2014-03-29T15:41:43", "upload_time_iso_8601": "2014-03-29T15:41:43.368513Z", "url": "https://files.pythonhosted.org/packages/4f/26/9d5e42b084260717689da6766d468e21ea6bc1eb9ff03d49c66695710145/aiohttp-0.6.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "e9993c58486ba98fa85ec47302393599", "sha256": "121999db9a1f10a5d4a0aba9809e0a752fe9428482532ea0ea830f7be2f10458" }, "downloads": -1, "filename": "aiohttp-0.7.0.tar.gz", "has_sig": false, "md5_digest": "e9993c58486ba98fa85ec47302393599", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69012, "upload_time": "2014-04-16T19:35:11", "upload_time_iso_8601": "2014-04-16T19:35:11.191271Z", "url": "https://files.pythonhosted.org/packages/c4/32/271ca16194d6f0ee01c50e86ff10a1036813dd6d62f4d0573bd691ad6eda/aiohttp-0.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "3309ec48468b7b1e68d94e89d4baa995", "sha256": "2095c4cd5e5644faae4b128be1103841cad946b4fd654934182db89ec25a4f45" }, "downloads": -1, "filename": "aiohttp-0.7.1.tar.gz", "has_sig": false, "md5_digest": "3309ec48468b7b1e68d94e89d4baa995", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69254, "upload_time": "2014-04-28T06:16:58", "upload_time_iso_8601": "2014-04-28T06:16:58.266265Z", "url": "https://files.pythonhosted.org/packages/1a/2d/4deecf7291b5b87a420238bcff4ba07067a3537cf3c2e978bcd07e61aa6a/aiohttp-0.7.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "b1af2edbcd3ad9bbf1ef641c4e5a7a7c", "sha256": "f8428ab02a8585948f054190e61aa877df45f12aed74fc4dc3c67c5522c2cec3" }, "downloads": -1, "filename": "aiohttp-0.7.2.tar.gz", "has_sig": false, "md5_digest": "b1af2edbcd3ad9bbf1ef641c4e5a7a7c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69885, "upload_time": "2014-05-14T10:53:30", "upload_time_iso_8601": "2014-05-14T10:53:30.635919Z", "url": "https://files.pythonhosted.org/packages/d4/45/28bbcb3e262451aa31deadf675953cb79a08c3b1e43201f180a80a236c29/aiohttp-0.7.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "9cb2f8729cb01b25aa8ede01f0f1b0b8", "sha256": "a67a261ee6c5c8ec1dbc7f16022cf70130646a3fbf37790b20bb637dc90aa3c9" }, "downloads": -1, "filename": "aiohttp-0.7.3.tar.gz", "has_sig": false, "md5_digest": "9cb2f8729cb01b25aa8ede01f0f1b0b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70735, "upload_time": "2014-05-19T20:22:02", "upload_time_iso_8601": "2014-05-19T20:22:02.645003Z", "url": "https://files.pythonhosted.org/packages/98/6e/0eb5013ce2a421884861cc184294e223f04eeaec8ea213cc6adab0d6054a/aiohttp-0.7.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "762af8512cbb47088b15b2bee7b9f9f2", "sha256": "af37972b1cff2ecadbe2c8fbd34dfdc2758fa1e5bfdcf55be2686304e93d8f09" }, "downloads": -1, "filename": "aiohttp-0.8.0.tar.gz", "has_sig": false, "md5_digest": "762af8512cbb47088b15b2bee7b9f9f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74984, "upload_time": "2014-06-09T06:52:58", "upload_time_iso_8601": "2014-06-09T06:52:58.715921Z", "url": "https://files.pythonhosted.org/packages/09/96/7aee4e7c315fa4ea6e87ee212d6b092b95cd30823eed9beed4687ad62440/aiohttp-0.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "a934b3cbfcb5ce35e221b346f724af96", "sha256": "605ac693c681d9582afaca5db6ecda6a8782a38beeafe1adc2dddbbd0fcd10f2" }, "downloads": -1, "filename": "aiohttp-0.8.1.tar.gz", "has_sig": false, "md5_digest": "a934b3cbfcb5ce35e221b346f724af96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76487, "upload_time": "2014-06-19T02:30:37", "upload_time_iso_8601": "2014-06-19T02:30:37.066147Z", "url": "https://files.pythonhosted.org/packages/4e/dd/9d727c1a59206553e127e4d662b5c1477fdc25d27523d99f3497cb8a6d93/aiohttp-0.8.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "52724beba17710d4e93cb1f3b8a8d5ef", "sha256": "667b4edbed7af62d955ace08488e9525471f03225ce913153d5a40a31ecc3f40" }, "downloads": -1, "filename": "aiohttp-0.8.2.tar.gz", "has_sig": false, "md5_digest": "52724beba17710d4e93cb1f3b8a8d5ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77776, "upload_time": "2014-06-22T23:21:41", "upload_time_iso_8601": "2014-06-22T23:21:41.173391Z", "url": "https://files.pythonhosted.org/packages/b2/52/a15563a156552945fd150e3143f178c22a88ddbc62fbbb9c65de739f08f9/aiohttp-0.8.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "915593851ee1f9c9bac9003e3e011727", "sha256": "d057af4007b358bb595bd7418def17806d9b438a11fe03d8679c1687fc4d945d" }, "downloads": -1, "filename": "aiohttp-0.8.3.tar.gz", "has_sig": false, "md5_digest": "915593851ee1f9c9bac9003e3e011727", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80459, "upload_time": "2014-07-04T04:18:35", "upload_time_iso_8601": "2014-07-04T04:18:35.879905Z", "url": "https://files.pythonhosted.org/packages/d0/bb/0a4df5a65e063bfbda5a9cc60ef3246b6e9d6f9381bef32fc95ed6f5d0ec/aiohttp-0.8.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "7ea863a56cdfb457d27a5cdb3db9f896", "sha256": "c18575bc8ea8a75be3ced0ae11954fa8c2adb0956cde58aec4d049048c8c0b33" }, "downloads": -1, "filename": "aiohttp-0.8.4.tar.gz", "has_sig": false, "md5_digest": "7ea863a56cdfb457d27a5cdb3db9f896", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80693, "upload_time": "2014-07-04T14:54:13", "upload_time_iso_8601": "2014-07-04T14:54:13.036241Z", "url": "https://files.pythonhosted.org/packages/78/db/9c441aceae4ecd65a002e7df48b629228b2bf3d3b3e576480c99967b4ab3/aiohttp-0.8.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "a4ffb2c64303db3f2dffa07a4109c65e", "sha256": "0dc56ffa035e1cd367d52630671e449a534677bf6ff23168f52a053bb4e3fe4b" }, "downloads": -1, "filename": "aiohttp-0.9.0.tar.gz", "has_sig": false, "md5_digest": "a4ffb2c64303db3f2dffa07a4109c65e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86409, "upload_time": "2014-07-08T19:05:48", "upload_time_iso_8601": "2014-07-08T19:05:48.474057Z", "url": "https://files.pythonhosted.org/packages/57/d9/2ee0f988f07aee315ad00176135b709cfdd2fe455c6340b98e8f5cc975a7/aiohttp-0.9.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "28c5574b9a004a9ac2cfe1617f009d69", "sha256": "758a16cc26afd01ae74fb14ae9a1246a9e686c50785e7b75b39657cb0c775afe" }, "downloads": -1, "filename": "aiohttp-0.9.1.tar.gz", "has_sig": false, "md5_digest": "28c5574b9a004a9ac2cfe1617f009d69", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 93688, "upload_time": "2014-08-30T16:15:39", "upload_time_iso_8601": "2014-08-30T16:15:39.571236Z", "url": "https://files.pythonhosted.org/packages/be/dc/6668136b14340d32eeb6787f15cd227b23f1e611ba2d3fff0e89ec6dcac3/aiohttp-0.9.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "4409e8dce68baaa480e56b46f6aa0fb3", "sha256": "d4c6e2771e5530711863c6723141bdf31a177dfa0c7a02c48e1f2075b797ae36" }, "downloads": -1, "filename": "aiohttp-0.9.2-py3-none-any.whl", "has_sig": false, "md5_digest": "4409e8dce68baaa480e56b46f6aa0fb3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 51793, "upload_time": "2014-10-16T17:49:48", "upload_time_iso_8601": "2014-10-16T17:49:48.507946Z", "url": "https://files.pythonhosted.org/packages/50/be/5ddca1c94b666886d1520f49fc7fdcff7c2d17328a52e1dd4e8ee3d1f1d5/aiohttp-0.9.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8b0bde9116e91860319e3250b3897a3f", "sha256": "a76ded64204fa4f06eaa37dcc29d7bf529c996943e12ee2c3e21151da2bac513" }, "downloads": -1, "filename": "aiohttp-0.9.2.tar.gz", "has_sig": false, "md5_digest": "8b0bde9116e91860319e3250b3897a3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 632572, "upload_time": "2014-10-16T17:49:51", "upload_time_iso_8601": "2014-10-16T17:49:51.583830Z", "url": "https://files.pythonhosted.org/packages/a7/82/94c71f3cadba40ca43c1f97924c23c16743cb5826344662b378e294df11e/aiohttp-0.9.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "16629f16c75d168fb7c7b2055583cc61", "sha256": "f5d944f4bf5cdb56f6038f8382e8328f45334cb9ad3fad24d822c11c336c3507" }, "downloads": -1, "filename": "aiohttp-0.9.3-py3-none-any.whl", "has_sig": false, "md5_digest": "16629f16c75d168fb7c7b2055583cc61", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 51180, "upload_time": "2014-10-30T12:52:55", "upload_time_iso_8601": "2014-10-30T12:52:55.564189Z", "url": "https://files.pythonhosted.org/packages/e4/46/ee43efe546381c6cd42003a2388d75f88973dff5b82ce1f7d447d2f4e85e/aiohttp-0.9.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c2c629b779a05d029ee52a475a7610d", "sha256": "ebfe85bef06b2a23e067136f295653bdf932ed1e22b9b6f9c7989e18bf3d193d" }, "downloads": -1, "filename": "aiohttp-0.9.3.tar.gz", "has_sig": false, "md5_digest": "0c2c629b779a05d029ee52a475a7610d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 676268, "upload_time": "2014-10-30T12:53:01", "upload_time_iso_8601": "2014-10-30T12:53:01.173515Z", "url": "https://files.pythonhosted.org/packages/94/5a/1d8cefb7e35757497ef5c07a813f4e0d082e7254405e817fd11a6fdb2b6b/aiohttp-0.9.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "0dba9aff04089cbbb5f79d00e9c6201c", "sha256": "f0e98091d377c80648cea31cf977a8b4261db00e17d93ad8d6b5d5421a83a706" }, "downloads": -1, "filename": "aiohttp-1.0.0-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0dba9aff04089cbbb5f79d00e9c6201c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 147343, "upload_time": "2016-09-16T12:41:33", "upload_time_iso_8601": "2016-09-16T12:41:33.956149Z", "url": "https://files.pythonhosted.org/packages/7e/c9/e89732bdc6a40333e532a2935815e7b88000807c3792e97abc22fcc4c38b/aiohttp-1.0.0-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43c1f8fe7004b226a14b750c9ff06621", "sha256": "67555e4eb5d53857c8ce72eba713a83ef86c66b6fa19c19783d59178ccea2453" }, "downloads": -1, "filename": "aiohttp-1.0.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "43c1f8fe7004b226a14b750c9ff06621", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 150013, "upload_time": "2016-09-16T12:40:35", "upload_time_iso_8601": "2016-09-16T12:40:35.140726Z", "url": "https://files.pythonhosted.org/packages/cf/92/605f8d9420fa136f81ae1eb7000131f4d1d22a300ee0be4055ea63370b9b/aiohttp-1.0.0-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5fa4f13ab0d5bbe46bb2650c777fa989", "sha256": "b50d180ef587d24725c864677f9a381583c7ea538e4cdcbe6cf277d88f93f9ba" }, "downloads": -1, "filename": "aiohttp-1.0.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "5fa4f13ab0d5bbe46bb2650c777fa989", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 130573, "upload_time": "2016-09-16T19:32:53", "upload_time_iso_8601": "2016-09-16T19:32:53.967671Z", "url": "https://files.pythonhosted.org/packages/08/f0/232efa1b54cd101d9dd3e524599bb44a111ed8ca34f0613f0c8b139dda2d/aiohttp-1.0.0-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2efe45177e525e848d75453d19c93310", "sha256": "880c205e344a05a9454623ff44de50370b20c99b75241614304ddb83a641b245" }, "downloads": -1, "filename": "aiohttp-1.0.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "2efe45177e525e848d75453d19c93310", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 130915, "upload_time": "2016-09-16T19:34:27", "upload_time_iso_8601": "2016-09-16T19:34:27.141974Z", "url": "https://files.pythonhosted.org/packages/de/9f/91869833a02df0c8fba8f31231ed18045cb0269ada0684e818c50e2a2978/aiohttp-1.0.0-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "238de895426c4bec871b36fbaa243272", "sha256": "6d17240761445cff90d84ac876897d567448df3b6a49f2ce51a3a5fce264a88e" }, "downloads": -1, "filename": "aiohttp-1.0.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "238de895426c4bec871b36fbaa243272", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 147178, "upload_time": "2016-09-16T12:41:37", "upload_time_iso_8601": "2016-09-16T12:41:37.204960Z", "url": "https://files.pythonhosted.org/packages/5c/7a/4fc966c0a24eb7f739257f7116589fdcfc764c53e48d797734484aec0924/aiohttp-1.0.0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "12e2c47bf37d84091fae1bb56b43f8e2", "sha256": "57e89c7e71ca18b5fc64a2261d56504b646f9bfc42320f600fd74cf6b727bce2" }, "downloads": -1, "filename": "aiohttp-1.0.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "12e2c47bf37d84091fae1bb56b43f8e2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 149881, "upload_time": "2016-09-16T12:40:38", "upload_time_iso_8601": "2016-09-16T12:40:38.263216Z", "url": "https://files.pythonhosted.org/packages/1f/cb/9854f19dc635738f9fd34b4405afee2638a68e0c9f279f3cfc2e35bb6233/aiohttp-1.0.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1e363b4f32b0336f7a82eee899c9b6ed", "sha256": "1ea46c28afacdcf67c01d78a7565e8782fc25aefc772394a388b17e574745325" }, "downloads": -1, "filename": "aiohttp-1.0.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "1e363b4f32b0336f7a82eee899c9b6ed", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 131792, "upload_time": "2016-09-16T19:35:55", "upload_time_iso_8601": "2016-09-16T19:35:55.914999Z", "url": "https://files.pythonhosted.org/packages/05/e4/57559dd9f818a0b832a54c23d90e708b2dfe1d7953d252039fff6ff4a8c2/aiohttp-1.0.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c4c27be3ee483aafb0b56be85e17188", "sha256": "b4f578a7b01ce9ca7b238ca0c3454dc5fc1d39e791b0cdf84d1c8ca9647c4dc2" }, "downloads": -1, "filename": "aiohttp-1.0.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "8c4c27be3ee483aafb0b56be85e17188", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 133010, "upload_time": "2016-09-16T19:37:24", "upload_time_iso_8601": "2016-09-16T19:37:24.609015Z", "url": "https://files.pythonhosted.org/packages/43/c0/7310952067a2268322312b22462be6ad7791784fbde49cb636013da83272/aiohttp-1.0.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d5746d69eb6ecee0d865845aaba5a2e5", "sha256": "1a7d4416bcf80459c876a83b2bf61ddc313609322d17875b37a0142ec743810d" }, "downloads": -1, "filename": "aiohttp-1.0.0.tar.gz", "has_sig": false, "md5_digest": "d5746d69eb6ecee0d865845aaba5a2e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 498246, "upload_time": "2016-09-16T12:49:51", "upload_time_iso_8601": "2016-09-16T12:49:51.770745Z", "url": "https://files.pythonhosted.org/packages/3c/78/74152807c83b4689f86133ee47136d6c62301399cd713e21d1d3e6caab26/aiohttp-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "645fe57f150cd9138d3fd157c8ea24f3", "sha256": "cdf2dd1b1874232c970a35671f47368a91e34b13d74b4e9cf442555b9086689c" }, "downloads": -1, "filename": "aiohttp-1.0.1-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "645fe57f150cd9138d3fd157c8ea24f3", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 147738, "upload_time": "2016-09-16T19:22:33", "upload_time_iso_8601": "2016-09-16T19:22:33.995915Z", "url": "https://files.pythonhosted.org/packages/a8/c7/c4790043448c555e7ea6841aed5d82959ce115181c7180e2b8eba391ff82/aiohttp-1.0.1-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad17df2b8c29a5c3fc841ee4b7635bfc", "sha256": "70ba7d230cb1422c6f2a3e5d0efd406eb8c914199ae75d1a88547d9610cc06b4" }, "downloads": -1, "filename": "aiohttp-1.0.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ad17df2b8c29a5c3fc841ee4b7635bfc", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 150422, "upload_time": "2016-09-16T19:21:38", "upload_time_iso_8601": "2016-09-16T19:21:38.623026Z", "url": "https://files.pythonhosted.org/packages/3f/25/94a2e4d932dc0d0ab40e493d99cee2f8f84610c8399bc856c9da7c1c76bc/aiohttp-1.0.1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c5c3d2ea66789bb6aa0aea648c73cb26", "sha256": "58dd84ce7e869d9476dd796511daa8b887f31496d804e7f509495a07adf75dfb" }, "downloads": -1, "filename": "aiohttp-1.0.1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "c5c3d2ea66789bb6aa0aea648c73cb26", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 130979, "upload_time": "2016-09-16T19:38:51", "upload_time_iso_8601": "2016-09-16T19:38:51.722951Z", "url": "https://files.pythonhosted.org/packages/b3/44/801b158ad3277416b51fb3c2a3e61bba9d0d86e761ae72e0b17333a58acb/aiohttp-1.0.1-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dddd1b9655b586d50fcefe2ec484cbe2", "sha256": "8d2596140c251172b25f549f3dd7fe0f4fc8f49aaedf8fa748520bf3b85dd740" }, "downloads": -1, "filename": "aiohttp-1.0.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "dddd1b9655b586d50fcefe2ec484cbe2", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 131321, "upload_time": "2016-09-16T19:40:25", "upload_time_iso_8601": "2016-09-16T19:40:25.323290Z", "url": "https://files.pythonhosted.org/packages/af/17/cf5dce92e9309c6a3d90c94d90574c7336895e355444905a3248aa3a6e28/aiohttp-1.0.1-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c14bf016215d7de402f67f7f1d83f410", "sha256": "f54d94faf71d20073b7d58fc16c6d8c3dcbad7ac03ccf93cbd5459c6dd305494" }, "downloads": -1, "filename": "aiohttp-1.0.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c14bf016215d7de402f67f7f1d83f410", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 147592, "upload_time": "2016-09-16T19:22:36", "upload_time_iso_8601": "2016-09-16T19:22:36.743533Z", "url": "https://files.pythonhosted.org/packages/ef/4f/e211021ac8eef7af05f532fc39e0e834082f5d9aa90b8e58548def489c3e/aiohttp-1.0.1-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dfdceb6b5d2dd90bbc62c44dea0b6fa0", "sha256": "bc87c1cb9fb9fbab0cb29e71b438e294ecaa7e1b647b9fae60ddc47ad9cd9cde" }, "downloads": -1, "filename": "aiohttp-1.0.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dfdceb6b5d2dd90bbc62c44dea0b6fa0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 150284, "upload_time": "2016-09-16T19:21:41", "upload_time_iso_8601": "2016-09-16T19:21:41.271222Z", "url": "https://files.pythonhosted.org/packages/91/ed/b211fb605be5bad36fb00ef5caa89ce15eec416851a93364ccf9210f21a3/aiohttp-1.0.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "89a5c43335243b4f477bc1c7777fdd21", "sha256": "fb717512e271a4450b64f2b083a5f5e7adcacef4fc85d763f4f050382d49db60" }, "downloads": -1, "filename": "aiohttp-1.0.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "89a5c43335243b4f477bc1c7777fdd21", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 132197, "upload_time": "2016-09-16T19:41:51", "upload_time_iso_8601": "2016-09-16T19:41:51.856746Z", "url": "https://files.pythonhosted.org/packages/37/54/caa5508b81562d705861b9e5d2867ad63f699b9b607ef73cc0961a3282df/aiohttp-1.0.1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5c08770a3d63c6bd79af92cb9337c995", "sha256": "fb82d4ba0de80f9438c93ca8711d10ca8101706e5e434c39d9aed98d29556072" }, "downloads": -1, "filename": "aiohttp-1.0.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "5c08770a3d63c6bd79af92cb9337c995", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 133415, "upload_time": "2016-09-16T19:43:11", "upload_time_iso_8601": "2016-09-16T19:43:11.694090Z", "url": "https://files.pythonhosted.org/packages/7c/53/ff009ff67ad8547739a436172aec6d0846a72f47f687ff33a660a3c9d431/aiohttp-1.0.1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a66cca5431c0818b1984a054f25f3bc6", "sha256": "f5133431d66ef8838f40d233b0fc9e4b9e69616560cbedb89317d551dcc42e41" }, "downloads": -1, "filename": "aiohttp-1.0.1.tar.gz", "has_sig": false, "md5_digest": "a66cca5431c0818b1984a054f25f3bc6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 498972, "upload_time": "2016-09-16T19:23:29", "upload_time_iso_8601": "2016-09-16T19:23:29.338410Z", "url": "https://files.pythonhosted.org/packages/f6/17/3111f78d71208424e2f082e682a25eaf75fd9d737123a37b4799392d783b/aiohttp-1.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "444c2f34cd507af2470e8df809b807c1", "sha256": "928d886947235a810e625d49bfb90a3878d6e4cf9263444c98d7ddf619adf967" }, "downloads": -1, "filename": "aiohttp-1.0.2-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "444c2f34cd507af2470e8df809b807c1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 147936, "upload_time": "2016-09-22T09:22:25", "upload_time_iso_8601": "2016-09-22T09:22:25.335189Z", "url": "https://files.pythonhosted.org/packages/16/84/e2d095d31d6371034150b8cc66ad5025822ef1206a850e2055ce3e805590/aiohttp-1.0.2-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "20c73c76d08c18c94cac807c7a98a4d8", "sha256": "5d758c88dca9dd128b00a1ffd17d260b193f1cb52bc829cbe152e1b2207d1c50" }, "downloads": -1, "filename": "aiohttp-1.0.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "20c73c76d08c18c94cac807c7a98a4d8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 150630, "upload_time": "2016-09-22T09:20:50", "upload_time_iso_8601": "2016-09-22T09:20:50.343887Z", "url": "https://files.pythonhosted.org/packages/3d/41/83e3610c67e28613ae461eb81de5f6bc36da9213bc9fd165844b040b6de2/aiohttp-1.0.2-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08fe25e6770015ed9b067857464b1855", "sha256": "f12f0be14da5379f798c2fb41ebf993de42373f48cab769988bdfa56241a9b05" }, "downloads": -1, "filename": "aiohttp-1.0.2-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "08fe25e6770015ed9b067857464b1855", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 131172, "upload_time": "2016-09-22T09:16:30", "upload_time_iso_8601": "2016-09-22T09:16:30.990810Z", "url": "https://files.pythonhosted.org/packages/96/38/58fc90df5a9716d98788f0a4b438198cf2658c51d7a2415a5f79dc214308/aiohttp-1.0.2-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50197424fa280e71ddd8ea6dd928eca1", "sha256": "45103496b3ae95ba9136f0532ca0b3746c14cefda1ea1aeac7bd3be71efcd1f4" }, "downloads": -1, "filename": "aiohttp-1.0.2-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "50197424fa280e71ddd8ea6dd928eca1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 131514, "upload_time": "2016-09-22T09:17:54", "upload_time_iso_8601": "2016-09-22T09:17:54.620574Z", "url": "https://files.pythonhosted.org/packages/70/c3/c83cb0404c5dbf5087dd8d6c816032e6863e093d0e81fc42431764bf8dda/aiohttp-1.0.2-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e0e5213af7b2019a0289f3424815eac", "sha256": "e0c5a8a7bffb6d3c22588326a4531877deedc4a7eae5748d4c49945dc2513335" }, "downloads": -1, "filename": "aiohttp-1.0.2-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "9e0e5213af7b2019a0289f3424815eac", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 147786, "upload_time": "2016-09-22T09:22:28", "upload_time_iso_8601": "2016-09-22T09:22:28.239299Z", "url": "https://files.pythonhosted.org/packages/d8/89/4c6d5899b43cc178060c9f1f6ab9974b87483f6be897d0518a9556008cac/aiohttp-1.0.2-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "22fed62ceacdd4eca6d3cd1e278ff90b", "sha256": "d18e76023641bbd256813bcaddfd00a3b6b844dd9053c1053de4d611f75fedb5" }, "downloads": -1, "filename": "aiohttp-1.0.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "22fed62ceacdd4eca6d3cd1e278ff90b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 150477, "upload_time": "2016-09-22T09:20:53", "upload_time_iso_8601": "2016-09-22T09:20:53.331189Z", "url": "https://files.pythonhosted.org/packages/b4/b7/7d75aa70d00c71722441ba8ebe6d53a94f34ea3ddc636ca2f3734afc66a5/aiohttp-1.0.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aabf392930e3695a7a74673cb6c3591f", "sha256": "1fb04341c17eafa03654d38ab9a8ebd9425b0a924c0239c9e136be671f7fc700" }, "downloads": -1, "filename": "aiohttp-1.0.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "aabf392930e3695a7a74673cb6c3591f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 132394, "upload_time": "2016-09-22T09:19:17", "upload_time_iso_8601": "2016-09-22T09:19:17.637063Z", "url": "https://files.pythonhosted.org/packages/e1/2b/5354cf681eb649ea6e93fb1a8117e48dd7c38c311fe8da2ee19c3024e216/aiohttp-1.0.2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aa34118be7f6e1e614833c7bba470246", "sha256": "acb473768ff4b1467c05b17d463ad1a8f6576e296e2f8da7be03ba67589688a9" }, "downloads": -1, "filename": "aiohttp-1.0.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "aa34118be7f6e1e614833c7bba470246", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 133612, "upload_time": "2016-09-22T09:20:39", "upload_time_iso_8601": "2016-09-22T09:20:39.782393Z", "url": "https://files.pythonhosted.org/packages/f1/15/ab8870e99c5bb18ceafc72060dcc08726caff3a63123eca0fc21316d6e09/aiohttp-1.0.2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c30b737446848d0d0067063d25cf2814", "sha256": "d104a8e762debc1acc3fe40dbc4f0da4cace5a797a93d59c618673b390d3947c" }, "downloads": -1, "filename": "aiohttp-1.0.2.tar.gz", "has_sig": false, "md5_digest": "c30b737446848d0d0067063d25cf2814", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 499266, "upload_time": "2016-09-22T09:24:31", "upload_time_iso_8601": "2016-09-22T09:24:31.661964Z", "url": "https://files.pythonhosted.org/packages/75/45/f81bcce8441a09cb7de7cfe54358452cf9eab6068cde239ea98ccf52c608/aiohttp-1.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "b686f365ecc7c2fd407d6c50c8943ef9", "sha256": "cc6266e9d9b303374c05f7652b671b1afbf7fc3a278e20ef16aa6b229d0e1d59" }, "downloads": -1, "filename": "aiohttp-1.0.3-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b686f365ecc7c2fd407d6c50c8943ef9", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 148091, "upload_time": "2016-10-04T16:13:48", "upload_time_iso_8601": "2016-10-04T16:13:48.272839Z", "url": "https://files.pythonhosted.org/packages/7c/f7/419af141fe306c492456859690c8b6f9d1039c25a1208eb3951c27ceca6b/aiohttp-1.0.3-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3444224172b4dca077de499358dc3a63", "sha256": "269de438fc5a543830818bdc1fe7e304ae6d8f9bf55ee872104d1b22f682f713" }, "downloads": -1, "filename": "aiohttp-1.0.3-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3444224172b4dca077de499358dc3a63", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 150766, "upload_time": "2016-10-04T16:12:05", "upload_time_iso_8601": "2016-10-04T16:12:05.816844Z", "url": "https://files.pythonhosted.org/packages/4f/3d/48586709e8b28add9bf4a1e2f61157e13ce4c591f813231c593af8d58d6c/aiohttp-1.0.3-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "30cc8f63ba21ba80d1900b179190731c", "sha256": "683bb6f580c3dfb54ba9d0ccd6b8ad8b8f54bf474ee2e206bf36fb27eee13a0e" }, "downloads": -1, "filename": "aiohttp-1.0.3-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "30cc8f63ba21ba80d1900b179190731c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 131323, "upload_time": "2016-10-04T16:10:57", "upload_time_iso_8601": "2016-10-04T16:10:57.840831Z", "url": "https://files.pythonhosted.org/packages/e1/85/e2194f49a878bfed6abdaf6a2b797aba1e27ea779b3900212884dff8b83c/aiohttp-1.0.3-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "253694744ef2155e9df06bd2e1814591", "sha256": "ebf7a26b83beffbfc94d84eb44e3ef5149e9df190faa9e958d1ef2fc5337174d" }, "downloads": -1, "filename": "aiohttp-1.0.3-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "253694744ef2155e9df06bd2e1814591", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 131665, "upload_time": "2016-10-04T16:12:43", "upload_time_iso_8601": "2016-10-04T16:12:43.113689Z", "url": "https://files.pythonhosted.org/packages/55/76/8dfb6b689670d8f2386e8d71380272c9a4b77984009fa34bb3831013c93e/aiohttp-1.0.3-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08ae5e8a594ad85fee2049ffdad4a81f", "sha256": "6892af85542d2c2be0e490c4161bd2508b2f4b1f9f19639bb0a218f8f035608e" }, "downloads": -1, "filename": "aiohttp-1.0.3-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "08ae5e8a594ad85fee2049ffdad4a81f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 147956, "upload_time": "2016-10-04T16:13:52", "upload_time_iso_8601": "2016-10-04T16:13:52.394781Z", "url": "https://files.pythonhosted.org/packages/a1/2f/bb6b8f465da7aea2972c0f491d8e1038f42411bf2630c0be5bb3e2237111/aiohttp-1.0.3-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "758bb9a5192df469cde8a32ffcf69607", "sha256": "04fc641f2bf39aec6fa3dd0179613f593de47e44d45da5475c34b5395cda1922" }, "downloads": -1, "filename": "aiohttp-1.0.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "758bb9a5192df469cde8a32ffcf69607", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 150624, "upload_time": "2016-10-04T16:12:10", "upload_time_iso_8601": "2016-10-04T16:12:10.575188Z", "url": "https://files.pythonhosted.org/packages/39/e5/d00560c04e0c4e10ad2f0ba0b76f97a6a55acc9661194a06921fdfcefd7c/aiohttp-1.0.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de047bc2c7d490b656e613f4d4166e7b", "sha256": "ea15a880c6c559c3ad298170debe1b97087bdeef4d14c5ccf22310b9a8154de6" }, "downloads": -1, "filename": "aiohttp-1.0.3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "de047bc2c7d490b656e613f4d4166e7b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 132540, "upload_time": "2016-10-04T16:14:24", "upload_time_iso_8601": "2016-10-04T16:14:24.604703Z", "url": "https://files.pythonhosted.org/packages/6c/1c/6a339f26a79f8bec694ccfaea84f1ce775ca284e1582ca7d7b0922a6003c/aiohttp-1.0.3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "115a3215065dacdf3308d9d49eabb92b", "sha256": "4e019bec120e3c20f33e78a4660405591c904548a06ef783acc7ab8c57199a7b" }, "downloads": -1, "filename": "aiohttp-1.0.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "115a3215065dacdf3308d9d49eabb92b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 133761, "upload_time": "2016-10-04T16:15:55", "upload_time_iso_8601": "2016-10-04T16:15:55.512085Z", "url": "https://files.pythonhosted.org/packages/5a/01/bd8f765adccd6c092d3294741c52f05925f0e24dff29e56dd965398219d7/aiohttp-1.0.3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "091352af566ebab3c17c35b34b1d71ce", "sha256": "5ec0fdf17868bcabfef4effa3ce53c4cfa6108b481585bda88498f46435d5eaa" }, "downloads": -1, "filename": "aiohttp-1.0.3.tar.gz", "has_sig": false, "md5_digest": "091352af566ebab3c17c35b34b1d71ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 499693, "upload_time": "2016-10-04T16:16:56", "upload_time_iso_8601": "2016-10-04T16:16:56.421654Z", "url": "https://files.pythonhosted.org/packages/9e/98/982208caf31a284f020e9bb3b5f7b13dbd1d122d903b39e91620481de70b/aiohttp-1.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "2988237ccce7a44755f33d52f5eddc63", "sha256": "81a6aaace2b9e8a87531277a5d5f998efbd3554c15bf47173834386966d1bbe1" }, "downloads": -1, "filename": "aiohttp-1.0.5-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2988237ccce7a44755f33d52f5eddc63", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 148254, "upload_time": "2016-10-11T17:22:54", "upload_time_iso_8601": "2016-10-11T17:22:54.665624Z", "url": "https://files.pythonhosted.org/packages/0f/15/2c3d937e71d285cd34dfc14f5479753926f29bf7a5816df4b14406ec1dd2/aiohttp-1.0.5-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b625aad1f8d6bbe7765f8e675ce0cf07", "sha256": "ad374a5d7be1de271ecd0fb0ef87c0f8dd9fb062e6fae350fa6c098360018978" }, "downloads": -1, "filename": "aiohttp-1.0.5-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b625aad1f8d6bbe7765f8e675ce0cf07", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 150929, "upload_time": "2016-10-11T17:21:13", "upload_time_iso_8601": "2016-10-11T17:21:13.234915Z", "url": "https://files.pythonhosted.org/packages/f6/b3/5eebf91e86a32f30edeab6b1fba387d2173ca12bf57fc034fc046ab78bb5/aiohttp-1.0.5-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "371722c75d82387e66d55016d9ba8daa", "sha256": "3ac6fa105355928e2fc02e876d0d72d6230557d4637017ebf09aec7611124155" }, "downloads": -1, "filename": "aiohttp-1.0.5-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "371722c75d82387e66d55016d9ba8daa", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 131482, "upload_time": "2016-10-11T17:21:47", "upload_time_iso_8601": "2016-10-11T17:21:47.723068Z", "url": "https://files.pythonhosted.org/packages/c8/1b/9bf9042cce322790398547a3e62feb0c15d972ef0fb9410a213a9b879ac5/aiohttp-1.0.5-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fdef147c023a3d60f2fca8f5b7d4fe8e", "sha256": "3a253332a0d8f82549e65035ebe7199580c3ea0e47071b7428f25b109b3c0310" }, "downloads": -1, "filename": "aiohttp-1.0.5-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "fdef147c023a3d60f2fca8f5b7d4fe8e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 131823, "upload_time": "2016-10-11T17:23:20", "upload_time_iso_8601": "2016-10-11T17:23:20.111549Z", "url": "https://files.pythonhosted.org/packages/3c/27/1a76748bc91024e9c379d7d7bbada64afca064e03a5e887cd83aff2aa92d/aiohttp-1.0.5-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f68f98484e7386d3547926bf02b4a3a6", "sha256": "e1985766a4c83fcbdf7dde06544231fc9fb3de8929788179e623d6f9f9f321d2" }, "downloads": -1, "filename": "aiohttp-1.0.5-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f68f98484e7386d3547926bf02b4a3a6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 148105, "upload_time": "2016-10-11T17:22:57", "upload_time_iso_8601": "2016-10-11T17:22:57.512504Z", "url": "https://files.pythonhosted.org/packages/c4/4b/83fc421303f3e8a575d66c7ae035cfc603bb9942b37b7b51bcb3624da32a/aiohttp-1.0.5-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5d525802c337829fe2c17a448adbe977", "sha256": "714c62532ca6be90be4b54002743e7ea277ec78b45f04ae86cdc6f45a8400abd" }, "downloads": -1, "filename": "aiohttp-1.0.5-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5d525802c337829fe2c17a448adbe977", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 150788, "upload_time": "2016-10-11T17:21:16", "upload_time_iso_8601": "2016-10-11T17:21:16.741263Z", "url": "https://files.pythonhosted.org/packages/63/5e/c89bd7117b235a2f3168afea2b570dbab752d70fdaf7f4f243a80386792d/aiohttp-1.0.5-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f765e3cd7dc70b398f47a5180bffc298", "sha256": "c579ec606f25b3f756f177fee6db344f8d7ef75cfc0603a94c9fa1d1c645789d" }, "downloads": -1, "filename": "aiohttp-1.0.5-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "f765e3cd7dc70b398f47a5180bffc298", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 132701, "upload_time": "2016-10-11T17:24:35", "upload_time_iso_8601": "2016-10-11T17:24:35.336235Z", "url": "https://files.pythonhosted.org/packages/72/7e/b08a7b86cc7824486a26dc8ae708e58f417c2aa3e08cfc54fe12564fe7d3/aiohttp-1.0.5-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b7418ae8ba0dfdb91f3ee4e4cee84840", "sha256": "3bfcb76553d7f6296d1a598162d5fb890198f98c021540cbbb85bb604ff198db" }, "downloads": -1, "filename": "aiohttp-1.0.5-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "b7418ae8ba0dfdb91f3ee4e4cee84840", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 133920, "upload_time": "2016-10-11T17:26:08", "upload_time_iso_8601": "2016-10-11T17:26:08.511198Z", "url": "https://files.pythonhosted.org/packages/11/e2/a9d6dec7447710b3e7f69b6a0ba79b4adf71e5667654060e138ab94ae3b7/aiohttp-1.0.5-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "488026a1c1e716741842403b7b9f030a", "sha256": "c3e1897726f97d40e067e8b658b2dbdfe216f32b801c5c589212e1b1f9aa8388" }, "downloads": -1, "filename": "aiohttp-1.0.5.tar.gz", "has_sig": false, "md5_digest": "488026a1c1e716741842403b7b9f030a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 499935, "upload_time": "2016-10-11T17:24:51", "upload_time_iso_8601": "2016-10-11T17:24:51.714194Z", "url": "https://files.pythonhosted.org/packages/09/5a/7b81ea8729d41f44c6fe6a116e466c8fb884950a0061aa3768dbd6bee2f8/aiohttp-1.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "09244b8673db72d91f4714e05a1d0cd8", "sha256": "06d751fbe6e50990df022babc5b289508da02af40045cd2cef0a44666bb7112a" }, "downloads": -1, "filename": "aiohttp-1.1.0-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "09244b8673db72d91f4714e05a1d0cd8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 150716, "upload_time": "2016-11-03T20:58:15", "upload_time_iso_8601": "2016-11-03T20:58:15.104608Z", "url": "https://files.pythonhosted.org/packages/55/c9/64145ad328a11747a59da4b7cc0e48f513921159b0223ad22023c559b99d/aiohttp-1.1.0-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7f3fc5e5646e600734e547e68449d171", "sha256": "1276040895ab085827daa2c5a667caffce3531299a7679fda92ed50039b7d188" }, "downloads": -1, "filename": "aiohttp-1.1.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7f3fc5e5646e600734e547e68449d171", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 153405, "upload_time": "2016-11-03T20:56:23", "upload_time_iso_8601": "2016-11-03T20:56:23.415163Z", "url": "https://files.pythonhosted.org/packages/41/8d/eefa631c900b5d2b0ace40ec101ee4c8f2079d954a1263984cd33ba14224/aiohttp-1.1.0-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e591a9c220434cb787a854ce779d573d", "sha256": "ab005bbbfa8f0a980ecebcd8a632fdc6407298f1562f74cf01e566c0fabaf3aa" }, "downloads": -1, "filename": "aiohttp-1.1.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "e591a9c220434cb787a854ce779d573d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 133929, "upload_time": "2016-11-03T20:50:43", "upload_time_iso_8601": "2016-11-03T20:50:43.097328Z", "url": "https://files.pythonhosted.org/packages/80/2b/23d819a0fdcad6cd306af3e2d9eeb091f244d48ed0bef362440c06c85b2a/aiohttp-1.1.0-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "90358088cdf070fbbff7020abe42fc5b", "sha256": "20ca5752c5cd141f56ede1bc2817a7c2046af2f3b05d84f5510e4ffcb3e1b66b" }, "downloads": -1, "filename": "aiohttp-1.1.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "90358088cdf070fbbff7020abe42fc5b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 134271, "upload_time": "2016-11-03T20:52:23", "upload_time_iso_8601": "2016-11-03T20:52:23.662288Z", "url": "https://files.pythonhosted.org/packages/33/f3/828906ed9005dd965a988f6d94ad2dc13c92977f96c681416eba272e501a/aiohttp-1.1.0-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac7fccaa42d816619300f0fc320a6c94", "sha256": "cf5f6bd15edbfc21daf03e7d8eaa6fb452c05500b534b0999fade28a65b15973" }, "downloads": -1, "filename": "aiohttp-1.1.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ac7fccaa42d816619300f0fc320a6c94", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 150565, "upload_time": "2016-11-03T20:58:19", "upload_time_iso_8601": "2016-11-03T20:58:19.464996Z", "url": "https://files.pythonhosted.org/packages/da/0d/cc605614f69c7369ed27006c3f5944a53c07a57aecae0e7ad826373cb3d2/aiohttp-1.1.0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0d1dc1eb0f6504059c9ee78128ddcae", "sha256": "c05b95448deabdba71c1c28f778479f4c63140345f5635946f35b3211087f2b3" }, "downloads": -1, "filename": "aiohttp-1.1.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e0d1dc1eb0f6504059c9ee78128ddcae", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 153250, "upload_time": "2016-11-03T20:56:26", "upload_time_iso_8601": "2016-11-03T20:56:26.235050Z", "url": "https://files.pythonhosted.org/packages/9f/21/f7e5005b10443cbb1de87b30235e19ce5e1c7ef5c90baa9d315e03e458c3/aiohttp-1.1.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dc03688d38bc28af418fcc8cac6e20fc", "sha256": "c5144a89ed314d5435434294ca5bd4cd2a24c791158fb36695cdfb8970489209" }, "downloads": -1, "filename": "aiohttp-1.1.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "dc03688d38bc28af418fcc8cac6e20fc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 135147, "upload_time": "2016-11-03T20:53:55", "upload_time_iso_8601": "2016-11-03T20:53:55.184848Z", "url": "https://files.pythonhosted.org/packages/a5/7b/73e7b75090fa1aebaf2768330d14775013ddf40fab6b5c244444fae0a4fe/aiohttp-1.1.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc4b0e10c99bab3ef4a269338ef8aba9", "sha256": "1112a1b7b45f000a08f497fdff0ff97abcb02a2ef28dc19038af98261426a1d0" }, "downloads": -1, "filename": "aiohttp-1.1.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "fc4b0e10c99bab3ef4a269338ef8aba9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 136370, "upload_time": "2016-11-03T20:55:32", "upload_time_iso_8601": "2016-11-03T20:55:32.681413Z", "url": "https://files.pythonhosted.org/packages/66/3e/549cdc5bdf6d444001b3f9e450226d3e878eb1b392182342f53718d07d99/aiohttp-1.1.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "727a427b59cfe35f044fe9595ce5fe64", "sha256": "7a33afa92c5eab20252aba4aa184b6ec206bb718fcb51d1d0566d91f8b0dc9be" }, "downloads": -1, "filename": "aiohttp-1.1.0.tar.gz", "has_sig": false, "md5_digest": "727a427b59cfe35f044fe9595ce5fe64", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 508512, "upload_time": "2016-11-03T20:58:57", "upload_time_iso_8601": "2016-11-03T20:58:57.900916Z", "url": "https://files.pythonhosted.org/packages/3f/7e/7035a96a1d5a68636d47ea48d0abda0e25994ef092167fd5dd12fe380cde/aiohttp-1.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "1ddc468c1bc9d1753c8f6f025460b1b6", "sha256": "ecd8cf7b6ab0d99eca39ea13ee4a4faaaf095e170660cb034fc0dfe352111900" }, "downloads": -1, "filename": "aiohttp-1.1.1-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1ddc468c1bc9d1753c8f6f025460b1b6", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 150761, "upload_time": "2016-11-04T09:02:58", "upload_time_iso_8601": "2016-11-04T09:02:58.695045Z", "url": "https://files.pythonhosted.org/packages/65/58/696b7f465b4505464b216a6a5ff759b793647a5b7685522d8449eb062490/aiohttp-1.1.1-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "27ff92bce2aea9affa8d0359da8fec0a", "sha256": "6b6f5ce6614601ee811e06ffe18a0bbc110ae6bad89f0424ce6485c2821ba5d1" }, "downloads": -1, "filename": "aiohttp-1.1.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "27ff92bce2aea9affa8d0359da8fec0a", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 153434, "upload_time": "2016-11-04T09:01:17", "upload_time_iso_8601": "2016-11-04T09:01:17.563751Z", "url": "https://files.pythonhosted.org/packages/8b/e1/4143a4c783815361c9b1f74f776ee63a8bfe8dea308c788775b22cce061c/aiohttp-1.1.1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6bbd1a248ef0298c9d77efe66ebf9b90", "sha256": "7b8d8e93fcec1b4303c7325dfe05698221e391220001d0e84e941df4dddba030" }, "downloads": -1, "filename": "aiohttp-1.1.1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "6bbd1a248ef0298c9d77efe66ebf9b90", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 133968, "upload_time": "2016-11-04T09:06:02", "upload_time_iso_8601": "2016-11-04T09:06:02.885911Z", "url": "https://files.pythonhosted.org/packages/43/5c/8a1d5b68b9fcdc3f725c2d7e10571ebe3ae3730b9d2f4a207f69ac9ec2d0/aiohttp-1.1.1-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e0082303c6ab434be87de1aa41e38c0", "sha256": "05c8cc3e7138c5e6b725d0376f2233ec9f9b3e78952d4395afa6f9b8384d663e" }, "downloads": -1, "filename": "aiohttp-1.1.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "8e0082303c6ab434be87de1aa41e38c0", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 134315, "upload_time": "2016-11-04T09:07:49", "upload_time_iso_8601": "2016-11-04T09:07:49.940619Z", "url": "https://files.pythonhosted.org/packages/0e/3b/2518410c4734f69727fb2f9ba82b06465fdf8b1f24b313d9c455e51981c1/aiohttp-1.1.1-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b38369a298cced0ebf4aaef1255f06a0", "sha256": "3698765d05b1af8ed90281de54a7d4872a6d021744c2f09e2bcd89d8a6584db9" }, "downloads": -1, "filename": "aiohttp-1.1.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b38369a298cced0ebf4aaef1255f06a0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 150618, "upload_time": "2016-11-04T09:03:01", "upload_time_iso_8601": "2016-11-04T09:03:01.075383Z", "url": "https://files.pythonhosted.org/packages/fe/6e/6b2569b1ef078770cd78f6796e69956294f16cce8584132d0294b4170da6/aiohttp-1.1.1-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "93ffd016edbf46f8fb3ab92f6aa29885", "sha256": "60510e00023729f55d8c9b9229d43b325b763fddaf9767d71b40e2247a56f316" }, "downloads": -1, "filename": "aiohttp-1.1.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "93ffd016edbf46f8fb3ab92f6aa29885", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 153291, "upload_time": "2016-11-04T09:01:21", "upload_time_iso_8601": "2016-11-04T09:01:21.679886Z", "url": "https://files.pythonhosted.org/packages/12/0a/0356b35f12aefb262de5b5f2aa1785356d6d250e912abb90bdcd2ce0784d/aiohttp-1.1.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "76c1cd6dc24abb0896c49e575382ed0a", "sha256": "7f7837e00ba01205ef289eee8f45069e79c78d84890000f25b01fec01d282090" }, "downloads": -1, "filename": "aiohttp-1.1.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "76c1cd6dc24abb0896c49e575382ed0a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 135187, "upload_time": "2016-11-04T09:09:17", "upload_time_iso_8601": "2016-11-04T09:09:17.870115Z", "url": "https://files.pythonhosted.org/packages/d8/37/f396473d7cd1a2fe4f8478a0b40fe999a44dcac12bb54f853f3de1ba9ea4/aiohttp-1.1.1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f9d8b545e74ba3fc3a272615fba7aed5", "sha256": "7012598700bd7769c55de5a9b0949bfa2adbbed47c3c821f4cef62f2c0c824d6" }, "downloads": -1, "filename": "aiohttp-1.1.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "f9d8b545e74ba3fc3a272615fba7aed5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 136410, "upload_time": "2016-11-04T09:10:49", "upload_time_iso_8601": "2016-11-04T09:10:49.264994Z", "url": "https://files.pythonhosted.org/packages/d8/8f/c33dce63672a55daebad36aac897742b29c095fa57b48a69ef6e708dd98d/aiohttp-1.1.1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c67c7e13eef5d707ac51fbc0043824c", "sha256": "15d440616c6211099d7c3d08fea20fe2c775a75261c218a4051041e104019ee5" }, "downloads": -1, "filename": "aiohttp-1.1.1.tar.gz", "has_sig": false, "md5_digest": "0c67c7e13eef5d707ac51fbc0043824c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 508565, "upload_time": "2016-11-04T09:05:42", "upload_time_iso_8601": "2016-11-04T09:05:42.129127Z", "url": "https://files.pythonhosted.org/packages/2e/22/ecfe0a6620294e6c7554ce9e5c216d68b816aaa9f6ec62e8a0081f3d091c/aiohttp-1.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "478f9b9c0595de7970ffffe78d2a5287", "sha256": "cd7a553e09fe937ac913c1a193403be7b36c801a0764338c08a32bf219d64038" }, "downloads": -1, "filename": "aiohttp-1.1.2-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "478f9b9c0595de7970ffffe78d2a5287", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 151044, "upload_time": "2016-11-08T15:59:13", "upload_time_iso_8601": "2016-11-08T15:59:13.391747Z", "url": "https://files.pythonhosted.org/packages/aa/ad/fc29d9782085e85d94742fd1809e9cac3338269841c583ec0a0ae3a08d2b/aiohttp-1.1.2-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9be8c40be198354254d53a5cb9cdd169", "sha256": "63a014ab43e3df8438b9b8dd37723fb7f4afda6fe791c482651c65c79cb04eb3" }, "downloads": -1, "filename": "aiohttp-1.1.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9be8c40be198354254d53a5cb9cdd169", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 153746, "upload_time": "2016-11-08T15:57:25", "upload_time_iso_8601": "2016-11-08T15:57:25.284947Z", "url": "https://files.pythonhosted.org/packages/cb/4f/9cb0f69c9125f34b2707709f59f2329089ebe6dc4e9ef4f3c2a5002a8799/aiohttp-1.1.2-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ae56101254667c02cc81dc88ca6fb281", "sha256": "5c1ca4ed13ed3fde44755ec42cff0faea70c88220f68b94cc5f44ef43e1e94f7" }, "downloads": -1, "filename": "aiohttp-1.1.2-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "ae56101254667c02cc81dc88ca6fb281", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 134277, "upload_time": "2016-11-08T15:58:05", "upload_time_iso_8601": "2016-11-08T15:58:05.491471Z", "url": "https://files.pythonhosted.org/packages/c9/21/cd5de104e19d025ddfe31c90fbcc7a8610333b69c3c45d8261fc8bab407d/aiohttp-1.1.2-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d24d3e5c62c3b74b46078adf8c7ff777", "sha256": "833de9a7f0d67c60f7705c7a66856208f97fc679e686043e2e50b7a6bc4735fb" }, "downloads": -1, "filename": "aiohttp-1.1.2-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "d24d3e5c62c3b74b46078adf8c7ff777", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 134619, "upload_time": "2016-11-08T15:59:40", "upload_time_iso_8601": "2016-11-08T15:59:40.219935Z", "url": "https://files.pythonhosted.org/packages/a1/0d/279975d898d22c5c91d435661417f6d3aaa4af9d7a34a54a5930d3e73e76/aiohttp-1.1.2-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "52b84f2e47e19bb00df4aeeddacc9f24", "sha256": "c5dc16a9419fadc3fdc27f27dd82fe9b96360871cad7fd80d944f6cb93c73602" }, "downloads": -1, "filename": "aiohttp-1.1.2-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "52b84f2e47e19bb00df4aeeddacc9f24", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 150922, "upload_time": "2016-11-08T15:59:18", "upload_time_iso_8601": "2016-11-08T15:59:18.828844Z", "url": "https://files.pythonhosted.org/packages/26/1f/683c3ad92c0b81034f198874232cfde292aa4d9393aea03910ac2e07da21/aiohttp-1.1.2-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8dd0a5be9187482a22ad530b6c592e16", "sha256": "c68fd96a7083cfea78f2ecd8e14c1800808e8ec96332de583c9c8bb561ac5851" }, "downloads": -1, "filename": "aiohttp-1.1.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8dd0a5be9187482a22ad530b6c592e16", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 153584, "upload_time": "2016-11-08T15:57:28", "upload_time_iso_8601": "2016-11-08T15:57:28.410064Z", "url": "https://files.pythonhosted.org/packages/be/05/311570db3f739d16e6029d2a3e386fc5aa68a71b8a2fef35a72cb2ae064a/aiohttp-1.1.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "25a9464cfc5755b9a099b39c325a386f", "sha256": "7914926079ffd955d091687c6cbe51fff34cbd2e712d1d323f987888f0b54e43" }, "downloads": -1, "filename": "aiohttp-1.1.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "25a9464cfc5755b9a099b39c325a386f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 135495, "upload_time": "2016-11-08T16:01:04", "upload_time_iso_8601": "2016-11-08T16:01:04.721208Z", "url": "https://files.pythonhosted.org/packages/16/f1/a3c4830f2d5e1fae2a9e762ed9266703c69c610f5016730e0cb6d8fcc7b3/aiohttp-1.1.2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "76ae30e70838eeaaf37b0a3a30093004", "sha256": "002b3fb2a4302fecbf67e99841c199c0aa2ffc6cbe658134a486a3fb985ac395" }, "downloads": -1, "filename": "aiohttp-1.1.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "76ae30e70838eeaaf37b0a3a30093004", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 136714, "upload_time": "2016-11-08T16:02:47", "upload_time_iso_8601": "2016-11-08T16:02:47.855709Z", "url": "https://files.pythonhosted.org/packages/61/6d/c6aa5cc502e47906e2af3cda75cde17b2309830f0d93a3f02d4fca9202d3/aiohttp-1.1.2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "32d575c36d1d7e29ff7d1aa225ad1a69", "sha256": "16f16dc5ddb1d5676452f35abb58190ff034198d4e97770e0f59b99ca6d76c2d" }, "downloads": -1, "filename": "aiohttp-1.1.2.tar.gz", "has_sig": false, "md5_digest": "32d575c36d1d7e29ff7d1aa225ad1a69", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 508997, "upload_time": "2016-11-08T16:01:11", "upload_time_iso_8601": "2016-11-08T16:01:11.140878Z", "url": "https://files.pythonhosted.org/packages/cc/5e/1eb03bc43c482f0987b2c533488e98e007284d15098f97b326dcb739bcff/aiohttp-1.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "312a80ea560eacce607d08dee5c91cc7", "sha256": "5cf620f0d39437216809e164bae58e3549c4d5ea29a6a3d204b38f3ab84eb91d" }, "downloads": -1, "filename": "aiohttp-1.1.3-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "312a80ea560eacce607d08dee5c91cc7", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 151200, "upload_time": "2016-11-10T22:59:58", "upload_time_iso_8601": "2016-11-10T22:59:58.657408Z", "url": "https://files.pythonhosted.org/packages/20/c8/051f7c13f3afe6c488e652e742de7fdf84160886b5c562abf34b05de6d24/aiohttp-1.1.3-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc33c1fdc1fde42d2ef80e2e858d6d21", "sha256": "7ad2f89e1a6847100cef4f15302755c4cbf525a67035d222b90e2efcc2315653" }, "downloads": -1, "filename": "aiohttp-1.1.3-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fc33c1fdc1fde42d2ef80e2e858d6d21", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 153883, "upload_time": "2016-11-10T22:57:47", "upload_time_iso_8601": "2016-11-10T22:57:47.811410Z", "url": "https://files.pythonhosted.org/packages/00/cc/c78311aad9f5ec91b2b826327477371c7b904e735148793e52b943f506b6/aiohttp-1.1.3-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4945cb1e88e9f88f51eca46ccaf57e5a", "sha256": "c3fa6ee54a2061fa65677447d17348ea5125cb466444f4f6a92e4ba4ba44d76b" }, "downloads": -1, "filename": "aiohttp-1.1.3-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "4945cb1e88e9f88f51eca46ccaf57e5a", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 134411, "upload_time": "2016-11-10T21:19:15", "upload_time_iso_8601": "2016-11-10T21:19:15.060325Z", "url": "https://files.pythonhosted.org/packages/86/b0/a4e00245abb3e01727b6fcb65f1c0f34a3b90bf496140eb7f4816ad426e2/aiohttp-1.1.3-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08e3be8371e6d34d26d39e3190ee4c4e", "sha256": "1c0e1f175021996b7547ddcf7df3f8f3d6ff4b34f7f20b8fc9411b51fd716fe0" }, "downloads": -1, "filename": "aiohttp-1.1.3-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "08e3be8371e6d34d26d39e3190ee4c4e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 134757, "upload_time": "2016-11-10T21:21:05", "upload_time_iso_8601": "2016-11-10T21:21:05.835776Z", "url": "https://files.pythonhosted.org/packages/4f/89/4b4c6ce6afaea260de6d146bde9317d50d9f78f68e58301759fc181f7e79/aiohttp-1.1.3-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2429a30ebd6de834e14c4e36440e466e", "sha256": "41543567870b6e0e041b7adbe3bd8d4de58d01e330067ebbe3d51ae6f6cf29ef" }, "downloads": -1, "filename": "aiohttp-1.1.3-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2429a30ebd6de834e14c4e36440e466e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 151048, "upload_time": "2016-11-10T23:00:02", "upload_time_iso_8601": "2016-11-10T23:00:02.391505Z", "url": "https://files.pythonhosted.org/packages/84/1c/d80f469537765f76d7db1dfa5d51ea4ba695a13506a3966a1705bf2b6226/aiohttp-1.1.3-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3c91e0d6e2d64512150ca3adc9c38c96", "sha256": "fb23c78f7226d0af4c21a18001ba3b72be785c36e0d11031bcb6d4914ea948d3" }, "downloads": -1, "filename": "aiohttp-1.1.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3c91e0d6e2d64512150ca3adc9c38c96", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 153726, "upload_time": "2016-11-10T22:57:51", "upload_time_iso_8601": "2016-11-10T22:57:51.215451Z", "url": "https://files.pythonhosted.org/packages/57/52/bf0bb2ee68957954d5e5315e7c5955dd08d5353217aff8f3db5fa88662fc/aiohttp-1.1.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "30214c870201b68710f1a9b86c5d865b", "sha256": "2ec7b8fc201a6d0163207a664a9c3c6759e0a6abdb8d4518fccd319fa0389d88" }, "downloads": -1, "filename": "aiohttp-1.1.3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "30214c870201b68710f1a9b86c5d865b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 135629, "upload_time": "2016-11-10T21:22:44", "upload_time_iso_8601": "2016-11-10T21:22:44.013130Z", "url": "https://files.pythonhosted.org/packages/72/b8/07be9e39240cea1240db41349e2334e71df7e248b28502366bbe634bd798/aiohttp-1.1.3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c0e719c10bb1487f4b1837c6e1c32fe", "sha256": "762c25cc7a003ab0e2b376ff21d57fa3a15d52bcaf8d08ffa61dc7d3f5591446" }, "downloads": -1, "filename": "aiohttp-1.1.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "4c0e719c10bb1487f4b1837c6e1c32fe", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 136851, "upload_time": "2016-11-10T21:24:23", "upload_time_iso_8601": "2016-11-10T21:24:23.258584Z", "url": "https://files.pythonhosted.org/packages/59/5e/0b076a7c2e64d42ec3c1e9a64960778c959c0eee1aa91a1dd5d7c63a887f/aiohttp-1.1.3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "72731b05c331ebec6ca72fed3f94ee74", "sha256": "622791cce46c1fd4c0e7e6fa769b511202b28135575b4de9a01d735433712725" }, "downloads": -1, "filename": "aiohttp-1.1.3.tar.gz", "has_sig": false, "md5_digest": "72731b05c331ebec6ca72fed3f94ee74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 509182, "upload_time": "2016-11-10T23:10:10", "upload_time_iso_8601": "2016-11-10T23:10:10.494350Z", "url": "https://files.pythonhosted.org/packages/6d/cf/8dee15a66a455507fa3c48099ba95c5a5050daab6357bb0dde09ce5289d3/aiohttp-1.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "5301245e69a55ceb31bb11573476499b", "sha256": "49210d0a2480b62c3aaba12132898acd35a29e94f55d3a40b20345716b6c7623" }, "downloads": -1, "filename": "aiohttp-1.1.4-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5301245e69a55ceb31bb11573476499b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 151375, "upload_time": "2016-11-14T17:33:40", "upload_time_iso_8601": "2016-11-14T17:33:40.879213Z", "url": "https://files.pythonhosted.org/packages/82/58/9cb238d4720c6d013418b5f70d58c110f057a58ae774aec913eca73eebc7/aiohttp-1.1.4-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "04b37031ecd8a993f64d215039ba2830", "sha256": "17c7d2dc125c1e5a38b48a77633daf1f7482bd1f2f5cf89b88208d0ba031ee91" }, "downloads": -1, "filename": "aiohttp-1.1.4-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "04b37031ecd8a993f64d215039ba2830", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 154050, "upload_time": "2016-11-14T17:31:49", "upload_time_iso_8601": "2016-11-14T17:31:49.518127Z", "url": "https://files.pythonhosted.org/packages/51/ac/2c8368207b53157de413bd0a0ad3a77d03a67f40d4d4cd9a0e600d482688/aiohttp-1.1.4-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "61a2b127c3e95e86a892747747800941", "sha256": "d48adcf2e2a2f5c830823f4df96c982bc60eed0140e3770223cf843c25d8221e" }, "downloads": -1, "filename": "aiohttp-1.1.4-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "61a2b127c3e95e86a892747747800941", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 134583, "upload_time": "2016-11-14T17:41:40", "upload_time_iso_8601": "2016-11-14T17:41:40.874023Z", "url": "https://files.pythonhosted.org/packages/d7/e1/7cbf59d88d710d2323239d891a4cc3c92b3b9b691dcf957079d2ba632b1c/aiohttp-1.1.4-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e528261b00d7ac7bed0c03408e977c53", "sha256": "fca5b62281dd3a310ed485abaef1672943eaa59cbb113d79c61b04df4289beae" }, "downloads": -1, "filename": "aiohttp-1.1.4-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "e528261b00d7ac7bed0c03408e977c53", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 134928, "upload_time": "2016-11-14T17:43:13", "upload_time_iso_8601": "2016-11-14T17:43:13.462250Z", "url": "https://files.pythonhosted.org/packages/78/75/4d3262e11e9f346d4d0d41004dc66e384b0610fe7f765bdb44234c123b44/aiohttp-1.1.4-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "370f15acd77c6b2cdf9225141e2d9063", "sha256": "00f4f3c55eabb42db5fb5b4e34faa4a38e042281ebb40d35a70bbefd95db4aed" }, "downloads": -1, "filename": "aiohttp-1.1.4-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "370f15acd77c6b2cdf9225141e2d9063", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 151226, "upload_time": "2016-11-14T17:33:43", "upload_time_iso_8601": "2016-11-14T17:33:43.627410Z", "url": "https://files.pythonhosted.org/packages/f9/99/e61a501867f47033dd1a27c3f507ec087f68d0f669f70b29cff42ea29ee1/aiohttp-1.1.4-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "49858a2b2f05da7302c4d0e409c4ae79", "sha256": "d173e4c88f291e1d57b3bbca760270e9635a1267db7e795483050b0af40484fe" }, "downloads": -1, "filename": "aiohttp-1.1.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "49858a2b2f05da7302c4d0e409c4ae79", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 153907, "upload_time": "2016-11-14T17:31:52", "upload_time_iso_8601": "2016-11-14T17:31:52.318643Z", "url": "https://files.pythonhosted.org/packages/97/6f/df160dd0b217dbede247acf0850cd08d921f5f41199ad5e96876e00aa598/aiohttp-1.1.4-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bc17d34ca8a31dec29e782aee8f2afd2", "sha256": "c7264182af0475e91226a7de566b52f494a62dbd3727e8388579449ab64e2cf4" }, "downloads": -1, "filename": "aiohttp-1.1.4-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "bc17d34ca8a31dec29e782aee8f2afd2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 135801, "upload_time": "2016-11-14T17:44:50", "upload_time_iso_8601": "2016-11-14T17:44:50.227529Z", "url": "https://files.pythonhosted.org/packages/5e/a9/b95453ce072f19e1893e4b604989deafe904350c117a69ba1f7d2cccaa9a/aiohttp-1.1.4-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6093657c5cd372fbf68ec0fac79ce834", "sha256": "fc9391a7540493f5dd9b16c3e623134dd7c3bf75afdb3af4f3cfc0af6bb644c1" }, "downloads": -1, "filename": "aiohttp-1.1.4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "6093657c5cd372fbf68ec0fac79ce834", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 137023, "upload_time": "2016-11-14T17:46:17", "upload_time_iso_8601": "2016-11-14T17:46:17.951989Z", "url": "https://files.pythonhosted.org/packages/1b/5d/9a72b64d36cf9a364cf3303d97e64fd9f2313e07f5da82ca4a280bff86aa/aiohttp-1.1.4-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2a096b103baa381d9ac910626f57ef2b", "sha256": "11397e2dfdda688d98d9a22f822234c1f2b2071f661f4a8b261ca346e2103eaf" }, "downloads": -1, "filename": "aiohttp-1.1.4.tar.gz", "has_sig": false, "md5_digest": "2a096b103baa381d9ac910626f57ef2b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 510149, "upload_time": "2016-11-14T17:36:28", "upload_time_iso_8601": "2016-11-14T17:36:28.999751Z", "url": "https://files.pythonhosted.org/packages/cf/bc/eaf04ca05c42fa2716a46bcac5e4b0dcadf2032f6c6bd3a36418e14aede7/aiohttp-1.1.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "f7971cd6d92b140fc1d02cf029f90d70", "sha256": "f9bf35edb7e1483e06f6c887ed2a7a823acdb8c8f0daf64d08d7cafe628a0aec" }, "downloads": -1, "filename": "aiohttp-1.1.5-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f7971cd6d92b140fc1d02cf029f90d70", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 151435, "upload_time": "2016-11-16T18:20:50", "upload_time_iso_8601": "2016-11-16T18:20:50.113681Z", "url": "https://files.pythonhosted.org/packages/4d/ed/cfd300ec84a0164d30fac7ed9bf409fc247113f6650d4d3fddcec40cb9d2/aiohttp-1.1.5-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "febecf2e21a6b2517bb7308fab6cc629", "sha256": "374832ea71c292a221e0bf7e0dde193db19807a1286dca0183eb7bfa794479f9" }, "downloads": -1, "filename": "aiohttp-1.1.5-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "febecf2e21a6b2517bb7308fab6cc629", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 154121, "upload_time": "2016-11-16T18:19:09", "upload_time_iso_8601": "2016-11-16T18:19:09.779303Z", "url": "https://files.pythonhosted.org/packages/35/ca/9a7279d1cd5b442496d078d10db3a9db929d9281e29e374b4bd9801c74de/aiohttp-1.1.5-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "070266f33c533ef7b5d6b41bf462ec0a", "sha256": "97f6f974029432a42e65c7084b8c4221baaf8a1be0eb5c4817be5538017a76ab" }, "downloads": -1, "filename": "aiohttp-1.1.5-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "070266f33c533ef7b5d6b41bf462ec0a", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 134650, "upload_time": "2016-11-16T17:18:06", "upload_time_iso_8601": "2016-11-16T17:18:06.003866Z", "url": "https://files.pythonhosted.org/packages/7e/5f/2a2ec3d0d2dd4f801091993040421d897afb0004828d67345dcdf7423cee/aiohttp-1.1.5-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c5d04e0913f33dba6c56c92995a0364", "sha256": "d034760f4fc3ff8fa61fe41ca7d36e8782e49d7f90e7567484a11afd7e0fb4ee" }, "downloads": -1, "filename": "aiohttp-1.1.5-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "0c5d04e0913f33dba6c56c92995a0364", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 134997, "upload_time": "2016-11-16T17:19:48", "upload_time_iso_8601": "2016-11-16T17:19:48.406173Z", "url": "https://files.pythonhosted.org/packages/b6/e4/3dd60792bf4978f1c2af335cd964661f5f19f780a4fd7b640a66b9273bfc/aiohttp-1.1.5-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7ea5b12f6004a750fb1248094b27877e", "sha256": "af3d548eea3dc366c0559a7f43820d7f4d8cba0be824b2bbdaef95be9e1361e4" }, "downloads": -1, "filename": "aiohttp-1.1.5-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7ea5b12f6004a750fb1248094b27877e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 151307, "upload_time": "2016-11-16T18:20:55", "upload_time_iso_8601": "2016-11-16T18:20:55.472984Z", "url": "https://files.pythonhosted.org/packages/08/a5/cb7e38f43fa974efcbc6c72291df154b6623d16c27f2037e04cae75dde73/aiohttp-1.1.5-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb6b878e5f02c3b46f23eec70c05e29c", "sha256": "9bdc4fe5b4907f4a80caf46b173fe6fd3ca138477f9220ab22d009c328c6edf2" }, "downloads": -1, "filename": "aiohttp-1.1.5-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "cb6b878e5f02c3b46f23eec70c05e29c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 153963, "upload_time": "2016-11-16T18:19:12", "upload_time_iso_8601": "2016-11-16T18:19:12.897866Z", "url": "https://files.pythonhosted.org/packages/de/8d/acbdd6862d7a94e08855ad1c18964e6370a4fb8c58fd92e0fbeb152882d1/aiohttp-1.1.5-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82ea0edf5b5ca470cf1e5b435da39d24", "sha256": "4a2ac388457d55861e42a123d5307cd8ea6d02a8665065daee19ab7239a9e61d" }, "downloads": -1, "filename": "aiohttp-1.1.5-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "82ea0edf5b5ca470cf1e5b435da39d24", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 135873, "upload_time": "2016-11-16T17:21:26", "upload_time_iso_8601": "2016-11-16T17:21:26.890134Z", "url": "https://files.pythonhosted.org/packages/f6/dc/34db27e6ff34fede41c08cc6e563dc3b48818c0e2c53eb36b1cfbf8b5e83/aiohttp-1.1.5-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4705100852cb0948c9b01e442c51f506", "sha256": "91a5d6f5f8083e0339e02f21a59d873dadd2a003c5c5bb360cce2d23155980ca" }, "downloads": -1, "filename": "aiohttp-1.1.5-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "4705100852cb0948c9b01e442c51f506", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 137091, "upload_time": "2016-11-16T17:24:56", "upload_time_iso_8601": "2016-11-16T17:24:56.947842Z", "url": "https://files.pythonhosted.org/packages/5d/b6/deaa802e95f6433a4b61ae2d3aef12f1eb00e2f3200076f491f5d0461279/aiohttp-1.1.5-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d3f7518ea20f1681f37249d926b3d800", "sha256": "e6c5a8008ab8bbdb706034bedc91835ed820cdc2367ddea9142697612908df84" }, "downloads": -1, "filename": "aiohttp-1.1.5.tar.gz", "has_sig": false, "md5_digest": "d3f7518ea20f1681f37249d926b3d800", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 510247, "upload_time": "2016-11-16T18:23:30", "upload_time_iso_8601": "2016-11-16T18:23:30.793907Z", "url": "https://files.pythonhosted.org/packages/5f/60/afb29b5712ade524efdce339e2a6a0cb69c44115804ab5d4e976bf3f1983/aiohttp-1.1.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "816d7d0dc8b6fa8a70f7f0befe17bd51", "sha256": "ceb6ade3ed9cc11a279182ad41da3757008d089d2c3e87066a7dc8bc3d8a6436" }, "downloads": -1, "filename": "aiohttp-1.1.6-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "816d7d0dc8b6fa8a70f7f0befe17bd51", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 151535, "upload_time": "2016-11-28T18:06:54", "upload_time_iso_8601": "2016-11-28T18:06:54.061373Z", "url": "https://files.pythonhosted.org/packages/e4/af/b0d6fdf3b55592861addc806f2c5fc7edb6bb60567bb0d51d1dae3824f1e/aiohttp-1.1.6-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5cc4dea925757b6deb8588629610ecfb", "sha256": "e9414c0a500f1f8b3c8df709413177e9cf7f7e283151747c347d4cc7067add66" }, "downloads": -1, "filename": "aiohttp-1.1.6-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5cc4dea925757b6deb8588629610ecfb", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 154213, "upload_time": "2016-11-28T18:04:53", "upload_time_iso_8601": "2016-11-28T18:04:53.291276Z", "url": "https://files.pythonhosted.org/packages/28/54/5418cafbee5e9d2daf77ec4355d027518b26b1ef5833c19f092a1c765b89/aiohttp-1.1.6-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "689ef0c18527fa97fe72db08bc374dd7", "sha256": "aac01b6438d9a76a0504d18a2d17681bcbd82d3b9479208288f287db55bbb095" }, "downloads": -1, "filename": "aiohttp-1.1.6-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "689ef0c18527fa97fe72db08bc374dd7", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 134740, "upload_time": "2016-11-28T18:02:44", "upload_time_iso_8601": "2016-11-28T18:02:44.957728Z", "url": "https://files.pythonhosted.org/packages/60/0a/4d0dddbcfc20a3f3ee6be18b8fa5d4de9a0f37ecc6b6473f82ce30e8479b/aiohttp-1.1.6-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f929c5a2d85c3ff9f65b8bfbaf9ff28", "sha256": "73bf30c378e8ed89279600b19d78f21046af06cd3e88bfd7dd77449307d800a2" }, "downloads": -1, "filename": "aiohttp-1.1.6-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "5f929c5a2d85c3ff9f65b8bfbaf9ff28", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 135088, "upload_time": "2016-11-28T18:04:38", "upload_time_iso_8601": "2016-11-28T18:04:38.053226Z", "url": "https://files.pythonhosted.org/packages/a7/ea/3299ecebfb68af6e1d383716bec01831490d5166a4919b977cd6df66572c/aiohttp-1.1.6-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "338b372a46da2c732c909f554b065d2e", "sha256": "286f14c6df810c346e32dc49fceeeac027917f18a02f12759dd9a59d27731974" }, "downloads": -1, "filename": "aiohttp-1.1.6-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "338b372a46da2c732c909f554b065d2e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 151382, "upload_time": "2016-11-28T18:06:56", "upload_time_iso_8601": "2016-11-28T18:06:56.966623Z", "url": "https://files.pythonhosted.org/packages/25/6c/8a7c39ee3a58c0c5e325475a19777142451a79174343d058df8edf57a107/aiohttp-1.1.6-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "71ce2ec9d7740601ce4ee0aecb0a3d69", "sha256": "7ca2679e549eedff67b7fe8011a8ff854355228d99f702e0c4cdb571b231a52a" }, "downloads": -1, "filename": "aiohttp-1.1.6-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "71ce2ec9d7740601ce4ee0aecb0a3d69", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 154066, "upload_time": "2016-11-28T18:04:56", "upload_time_iso_8601": "2016-11-28T18:04:56.395083Z", "url": "https://files.pythonhosted.org/packages/28/5d/d8fc4caf95baf8716f245de95365ac25217836f0c8c4be9caec27972f294/aiohttp-1.1.6-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2e401a5af6d5f2fb3f4938ce3414cbad", "sha256": "1c8fe882f37293c6a3d80d42d4dc987dbab9e88b1c1441de7206e83b20892a9b" }, "downloads": -1, "filename": "aiohttp-1.1.6-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "2e401a5af6d5f2fb3f4938ce3414cbad", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 135959, "upload_time": "2016-11-28T18:06:42", "upload_time_iso_8601": "2016-11-28T18:06:42.228637Z", "url": "https://files.pythonhosted.org/packages/d2/74/a5a6fb122e6fa9c75fd926a501fbd2a1a478ec2f19ac7d5801500e5b05b2/aiohttp-1.1.6-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d146373473edac9406c56e3c5430def", "sha256": "62ca95054ee7bb5baa8569ac95ccdb5dfdd68c3604bb8038ab2b7e1d15b7194c" }, "downloads": -1, "filename": "aiohttp-1.1.6-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "1d146373473edac9406c56e3c5430def", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 137179, "upload_time": "2016-11-28T18:09:03", "upload_time_iso_8601": "2016-11-28T18:09:03.990403Z", "url": "https://files.pythonhosted.org/packages/4a/e8/df4d729db4e431b91af0de2a56f4249a69365b4522d18448b7a1704470b8/aiohttp-1.1.6-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dc080616b14155a202288bb3dbf07f8b", "sha256": "0742feb9759a5832aa4a30abf64e53055e139ed41e26f79b9558d08e05c74d60" }, "downloads": -1, "filename": "aiohttp-1.1.6.tar.gz", "has_sig": false, "md5_digest": "dc080616b14155a202288bb3dbf07f8b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 510407, "upload_time": "2016-11-28T18:07:23", "upload_time_iso_8601": "2016-11-28T18:07:23.760238Z", "url": "https://files.pythonhosted.org/packages/e4/c5/c131fb2c8e42eb8cf0e42d41c8cecfc22e1247307c25a0f77c4565ca690f/aiohttp-1.1.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "95736bf6d2ff6a1517421eff6ebe6b7b", "sha256": "688711d00877ef000fcc16b19fd2c7635ce60a24fd4f6624e7ca8324bb91a648" }, "downloads": -1, "filename": "aiohttp-1.2.0-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "95736bf6d2ff6a1517421eff6ebe6b7b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 152630, "upload_time": "2016-12-17T04:11:10", "upload_time_iso_8601": "2016-12-17T04:11:10.791443Z", "url": "https://files.pythonhosted.org/packages/f4/ca/27d486a5a7a1af62ba7ce731b8e5888ad53373ed7a6fdcf41faae1870a8a/aiohttp-1.2.0-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb9b3b065ce78e5ffd1985067027edc9", "sha256": "a679b1396a311f623f3918a0fb2015c287dcc1c2214be62f17d824e8a95b55ef" }, "downloads": -1, "filename": "aiohttp-1.2.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "eb9b3b065ce78e5ffd1985067027edc9", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 155324, "upload_time": "2016-12-17T04:09:17", "upload_time_iso_8601": "2016-12-17T04:09:17.141038Z", "url": "https://files.pythonhosted.org/packages/0e/a2/a4d6bc2227206a68f45053f83d4ef69312886ee3feb9e919006675c13db5/aiohttp-1.2.0-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d85729f22b2148a9412c522686f98ed", "sha256": "3bfc8c4a91d8c52543253e9374d2185174b09b6e0b4c2a660ec451d6893e34cf" }, "downloads": -1, "filename": "aiohttp-1.2.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "0d85729f22b2148a9412c522686f98ed", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 135857, "upload_time": "2016-12-17T04:03:29", "upload_time_iso_8601": "2016-12-17T04:03:29.942459Z", "url": "https://files.pythonhosted.org/packages/b7/01/abe338b164c8e82c663aa7121cc645813ed7f896b8ed9491207d88b0c933/aiohttp-1.2.0-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de305f40b4090e64d7d532e398dc51bd", "sha256": "daec40ea3652e85ee6bbf5fe0151fee342c4c5fb9fcd19f007397be06d53e82d" }, "downloads": -1, "filename": "aiohttp-1.2.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "de305f40b4090e64d7d532e398dc51bd", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 136195, "upload_time": "2016-12-17T04:05:02", "upload_time_iso_8601": "2016-12-17T04:05:02.459792Z", "url": "https://files.pythonhosted.org/packages/4e/42/42e3fa31990007ee8b1ed4a0952eb509c50822ec8a51a6b5d32de1c6a00d/aiohttp-1.2.0-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f28ee44ff624f305f379b1b751a16a2", "sha256": "4ebd81d92d4f3fda89572864466536e8b085acdf4a1edf4567110538e3def2eb" }, "downloads": -1, "filename": "aiohttp-1.2.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3f28ee44ff624f305f379b1b751a16a2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 152506, "upload_time": "2016-12-17T04:11:12", "upload_time_iso_8601": "2016-12-17T04:11:12.619979Z", "url": "https://files.pythonhosted.org/packages/d5/fe/6e9025c03acab96181e0b88ce1fac782de451cc694baab39a1943eb56f47/aiohttp-1.2.0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a97f7471ae6c72c1b774b8bf98b562a5", "sha256": "f7d68b17e0267ddd90406cdc8ca68a501e000b614702e916625df448b94c490f" }, "downloads": -1, "filename": "aiohttp-1.2.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a97f7471ae6c72c1b774b8bf98b562a5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 155170, "upload_time": "2016-12-17T04:09:19", "upload_time_iso_8601": "2016-12-17T04:09:19.231192Z", "url": "https://files.pythonhosted.org/packages/bb/4d/8e57306aa8b7386054056957b6c73ffb51ef6aeb3b5d2f83acb1e4f8577a/aiohttp-1.2.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ccbb815dddaf2837e932bf500bcb7c34", "sha256": "6f7552d70c271e3d881fd70d176d2c5606572797a0f6789e8ebb8af5deb83e89" }, "downloads": -1, "filename": "aiohttp-1.2.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "ccbb815dddaf2837e932bf500bcb7c34", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 137075, "upload_time": "2016-12-17T04:06:35", "upload_time_iso_8601": "2016-12-17T04:06:35.957035Z", "url": "https://files.pythonhosted.org/packages/44/82/a63cba1261abe636d93d62be8c37bc83a4ca033e2b67b5949e17d61121cd/aiohttp-1.2.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "26c314f2b30e105e7d64cccee7673a13", "sha256": "f28cebb9439ad17ea09d3c7078559b60cc581e46b2e1894ac300fb896d4ff6d1" }, "downloads": -1, "filename": "aiohttp-1.2.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "26c314f2b30e105e7d64cccee7673a13", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 138293, "upload_time": "2016-12-17T04:08:13", "upload_time_iso_8601": "2016-12-17T04:08:13.008807Z", "url": "https://files.pythonhosted.org/packages/3a/50/fed51844e340cb3e5ca52dc07651bad9c8496ef17eca075016fd9f352313/aiohttp-1.2.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a7b25d51bf887ec4f9b87463a6bff6d4", "sha256": "8ce0ab4301bf38db2ae13e4921bdb3841507919c9121373405a43c7bd0a07f78" }, "downloads": -1, "filename": "aiohttp-1.2.0.tar.gz", "has_sig": false, "md5_digest": "a7b25d51bf887ec4f9b87463a6bff6d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 519187, "upload_time": "2016-12-17T04:12:08", "upload_time_iso_8601": "2016-12-17T04:12:08.702876Z", "url": "https://files.pythonhosted.org/packages/e5/a5/ade96691f6423c56f7911a42a51ecd5454619efd6d5026df7e08a556a36a/aiohttp-1.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "db1b2e4eac804260c0b1fd04ccb291f1", "sha256": "4824249e2e7f1d04046fe9f3a7d019f09029026f21e8f00a19c5df0bc5c1b66a" }, "downloads": -1, "filename": "aiohttp-1.3.0-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "db1b2e4eac804260c0b1fd04ccb291f1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 164150, "upload_time": "2017-02-08T18:50:51", "upload_time_iso_8601": "2017-02-08T18:50:51.693333Z", "url": "https://files.pythonhosted.org/packages/2b/fe/af9463cb8405679404c8f090f8da5c0e0a746d72eab42c28b00c564bb64b/aiohttp-1.3.0-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5ac2b04e28f0f57215297a18790d9c45", "sha256": "d7b26bd009db4e8dc2fb75073dc86496ba42b4e6cb7fe6d869d255a37624576c" }, "downloads": -1, "filename": "aiohttp-1.3.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5ac2b04e28f0f57215297a18790d9c45", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 166849, "upload_time": "2017-02-08T18:48:35", "upload_time_iso_8601": "2017-02-08T18:48:35.469572Z", "url": "https://files.pythonhosted.org/packages/c0/0b/4c20a0ff14c643880dc943c76aba5330b2ca91b37ec266ef4e9ba0de3041/aiohttp-1.3.0-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc5f0bf23a1be03ea6fe20628f34b938", "sha256": "938557c0f47a5d344631c6f2e698d93cc105b87ad64f01878e778b0c953e29fb" }, "downloads": -1, "filename": "aiohttp-1.3.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "fc5f0bf23a1be03ea6fe20628f34b938", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 147384, "upload_time": "2017-02-08T18:42:46", "upload_time_iso_8601": "2017-02-08T18:42:46.475580Z", "url": "https://files.pythonhosted.org/packages/e2/c0/34680840c1c65e6ff83fd6a218a0866b9f4e8049c9e403a77a44e1c29b25/aiohttp-1.3.0-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5d331189cf234990f951dfcbe0fdcc53", "sha256": "973ea928154f8f261e0fc2ec4a76ed029bc500cd8b1149436d8648f78f7fa81d" }, "downloads": -1, "filename": "aiohttp-1.3.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "5d331189cf234990f951dfcbe0fdcc53", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 147723, "upload_time": "2017-02-08T18:44:46", "upload_time_iso_8601": "2017-02-08T18:44:46.076266Z", "url": "https://files.pythonhosted.org/packages/6b/7b/63a2fb07462980b251960f3a145cdd45d3c18c5098484417450f0e5fea7f/aiohttp-1.3.0-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "86de744e3b7b264ded264ad0f22b5ded", "sha256": "c415bf633d9017ed957b98754034d145f736e380e307af6d14a684389e8bd69c" }, "downloads": -1, "filename": "aiohttp-1.3.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "86de744e3b7b264ded264ad0f22b5ded", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 164020, "upload_time": "2017-02-08T18:50:53", "upload_time_iso_8601": "2017-02-08T18:50:53.748016Z", "url": "https://files.pythonhosted.org/packages/dc/d0/acfe38e781a6ff0fc10c0bdbd8d8b423e7146e35044ee2c40a95bdd2f9f3/aiohttp-1.3.0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7712faa70266b69af34496fe7859548c", "sha256": "5485c44ffae28d4580277d9071eeef0f738d42752e4250837af11e534541f91d" }, "downloads": -1, "filename": "aiohttp-1.3.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7712faa70266b69af34496fe7859548c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 166708, "upload_time": "2017-02-08T18:48:38", "upload_time_iso_8601": "2017-02-08T18:48:38.546868Z", "url": "https://files.pythonhosted.org/packages/e3/0e/13fbba29f19d2541750210541cba4ebb185f9b8084e0315da5826e280414/aiohttp-1.3.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9015ef9e1a5e294ed1bb80b55bf28652", "sha256": "75c74b06e9aa70e9815172d616fa6235c73c8aa0094855058143328fcd1cd369" }, "downloads": -1, "filename": "aiohttp-1.3.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "9015ef9e1a5e294ed1bb80b55bf28652", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 148601, "upload_time": "2017-02-08T18:46:40", "upload_time_iso_8601": "2017-02-08T18:46:40.381309Z", "url": "https://files.pythonhosted.org/packages/e7/26/e437d502b0dccb22f47a355e6f015eb0f49b009996deec6eaa2691ce3204/aiohttp-1.3.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed81b138df8d2df998c544875ca380bf", "sha256": "fb6b2a2a4ea1c359e24a76e2997eec0932bb3357c36b0e811a27c5e41429eb25" }, "downloads": -1, "filename": "aiohttp-1.3.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "ed81b138df8d2df998c544875ca380bf", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 149820, "upload_time": "2017-02-08T18:48:45", "upload_time_iso_8601": "2017-02-08T18:48:45.314836Z", "url": "https://files.pythonhosted.org/packages/2c/2d/894f7ffb97ca0c827088c8973e775f1671041a1d4ecc3a7b065211013b5b/aiohttp-1.3.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac5351a77bcfd90d5a87de3d419a8d9a", "sha256": "4bfa7810e35ac9f7bba23b9c2e738d1acdd618471fa492740b4b77f5d317bfb3" }, "downloads": -1, "filename": "aiohttp-1.3.0.tar.gz", "has_sig": false, "md5_digest": "ac5351a77bcfd90d5a87de3d419a8d9a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 538860, "upload_time": "2017-02-08T19:51:29", "upload_time_iso_8601": "2017-02-08T19:51:29.530010Z", "url": "https://files.pythonhosted.org/packages/23/89/5c703e7a3dfe7796fe24f9c8e82a45f9a544e07b22524c6124e7e67167f7/aiohttp-1.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "6fc677e8479f5dfb8c9dd2535a845090", "sha256": "a7c1ea6d0bae3b959e5fd219bc4900c08f2bd55157b26ac634e610704376fc3c" }, "downloads": -1, "filename": "aiohttp-1.3.1-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6fc677e8479f5dfb8c9dd2535a845090", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 164369, "upload_time": "2017-02-09T15:01:31", "upload_time_iso_8601": "2017-02-09T15:01:31.611220Z", "url": "https://files.pythonhosted.org/packages/64/1e/2cdfd081ab3a133dadcdc7cf3dcb6815843314421c059925e362d903e5b5/aiohttp-1.3.1-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "05c0b20294ac78d1f46dcff286552d10", "sha256": "8e79e85793bcbf5df04555b90a9a1be71a6b74e5a6b3aa85eaf7f8de6c97faaf" }, "downloads": -1, "filename": "aiohttp-1.3.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "05c0b20294ac78d1f46dcff286552d10", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 167044, "upload_time": "2017-02-09T14:59:04", "upload_time_iso_8601": "2017-02-09T14:59:04.705054Z", "url": "https://files.pythonhosted.org/packages/bd/b8/f5b7fd5dd7b007be9f7de84fe46608d9e8dc40bd06e1833ef781b5bbb258/aiohttp-1.3.1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "40a6e1e5f6c6940f1aa1ea42a5edeaf3", "sha256": "01f57f73ae8b448ed0f48b0bc479047429d81adc8b96106b955028decba0943c" }, "downloads": -1, "filename": "aiohttp-1.3.1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "40a6e1e5f6c6940f1aa1ea42a5edeaf3", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 147571, "upload_time": "2017-02-09T15:49:31", "upload_time_iso_8601": "2017-02-09T15:49:31.300848Z", "url": "https://files.pythonhosted.org/packages/5e/7d/9a8b886a6d0a87afd2858fa88efbf6f50cda26346242776b8e67cccd1a64/aiohttp-1.3.1-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2a6deaf0d62c63e09e697a7fb72e6e7d", "sha256": "54ea9e6d43e8446a17ede03f80c17885899d0284cbab3cc273958e6088c75429" }, "downloads": -1, "filename": "aiohttp-1.3.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "2a6deaf0d62c63e09e697a7fb72e6e7d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 147915, "upload_time": "2017-02-09T15:51:32", "upload_time_iso_8601": "2017-02-09T15:51:32.221991Z", "url": "https://files.pythonhosted.org/packages/31/a2/1b493ebfc4b4a56600a37eb7004cf8ae3bbe69ce781055a41bc0df4cf7ec/aiohttp-1.3.1-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d1048b80ab29df8b039e94d64d0d79d", "sha256": "0977a790c34b1c199df17d7205033c89a55c287495da5aff3af813f1d312bc4f" }, "downloads": -1, "filename": "aiohttp-1.3.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3d1048b80ab29df8b039e94d64d0d79d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 164198, "upload_time": "2017-02-09T15:01:34", "upload_time_iso_8601": "2017-02-09T15:01:34.784557Z", "url": "https://files.pythonhosted.org/packages/fd/24/43e57d1d5c463c4b7f03b05fde0b85278ca5a186d01ed20fffac723cdc08/aiohttp-1.3.1-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "df15a56c4a568302ed833200eb55b00b", "sha256": "52aa64ae3fa7b9681805ef321d27dd129e1e0c083646c693e688bed46fd141b6" }, "downloads": -1, "filename": "aiohttp-1.3.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "df15a56c4a568302ed833200eb55b00b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 166892, "upload_time": "2017-02-09T14:59:07", "upload_time_iso_8601": "2017-02-09T14:59:07.157892Z", "url": "https://files.pythonhosted.org/packages/c6/3b/a38626ed0bc5514baecf0e8843492720e2974969c877c4e668f4f0936f52/aiohttp-1.3.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e6cc2d442b84c3401e12da96216410c", "sha256": "0e8f441d06f6236ceab2f46ba9df0a61e2353b267f23bb74bf2d8e8e2f7df35a" }, "downloads": -1, "filename": "aiohttp-1.3.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "8e6cc2d442b84c3401e12da96216410c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 148789, "upload_time": "2017-02-09T15:53:31", "upload_time_iso_8601": "2017-02-09T15:53:31.693137Z", "url": "https://files.pythonhosted.org/packages/14/52/7780aaeeee1a5adc0a574c706075ded04dded392f22b23536d3451ef5345/aiohttp-1.3.1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "342fafe416873f1607a63bd3087c7ee4", "sha256": "bdd4b816dd2fdda95ca78170c1c2b5763325278ece8e77a6127e1dd4496b6b23" }, "downloads": -1, "filename": "aiohttp-1.3.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "342fafe416873f1607a63bd3087c7ee4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 150009, "upload_time": "2017-02-09T15:56:05", "upload_time_iso_8601": "2017-02-09T15:56:05.391322Z", "url": "https://files.pythonhosted.org/packages/0d/03/2336cb25efb4b5171731aa6f02ef4a9048785356a362d3d0eb8fd69a7f55/aiohttp-1.3.1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "26dd55be4c7cbf56849738c4a8ca10e4", "sha256": "8e71993f16870ebb1e8af21cb65dbac0cb6418ce9ab5a8cfaefce1c986a306bf" }, "downloads": -1, "filename": "aiohttp-1.3.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "26dd55be4c7cbf56849738c4a8ca10e4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 148790, "upload_time": "2017-02-09T15:59:38", "upload_time_iso_8601": "2017-02-09T15:59:38.353749Z", "url": "https://files.pythonhosted.org/packages/a4/01/569a73217dc2367e604979eee20f67dd94f929651c4227445ff08712ccf6/aiohttp-1.3.1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6de3c4efc3c52629970f870aded1bec", "sha256": "13f44a971da01093a5abcc6436596558e0c5bfac2532407a097be8607510ee1a" }, "downloads": -1, "filename": "aiohttp-1.3.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "f6de3c4efc3c52629970f870aded1bec", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 150007, "upload_time": "2017-02-09T16:03:07", "upload_time_iso_8601": "2017-02-09T16:03:07.422916Z", "url": "https://files.pythonhosted.org/packages/3a/c1/49a013795a1369815673263b3c17b26d761c8d4f4cd399d8e0cd22c52775/aiohttp-1.3.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b5a74c8e28e3538e1245577f9374af3", "sha256": "e147b0cea568773443683becce9de4071506431118609b5d477fe61508417af1" }, "downloads": -1, "filename": "aiohttp-1.3.1.tar.gz", "has_sig": false, "md5_digest": "5b5a74c8e28e3538e1245577f9374af3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 525355, "upload_time": "2017-02-09T15:01:56", "upload_time_iso_8601": "2017-02-09T15:01:56.583682Z", "url": "https://files.pythonhosted.org/packages/41/42/76a4cff04488799e78d37c5bb3b607e36d2c4686141621002d2479b54dbe/aiohttp-1.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "9af3332739b4874379c931d6e349d88e", "sha256": "85e91a663201b2b36107206c975cbad3d635e52e24395ee9c4f0d220038cbe1c" }, "downloads": -1, "filename": "aiohttp-1.3.2-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "9af3332739b4874379c931d6e349d88e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 164626, "upload_time": "2017-02-16T19:38:57", "upload_time_iso_8601": "2017-02-16T19:38:57.708189Z", "url": "https://files.pythonhosted.org/packages/d2/39/7a8ba6fd57bb114f8724b5f4c3400f5fec1598540bc860d0e409422d905f/aiohttp-1.3.2-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67dfb798d655deaa4209d7513820be55", "sha256": "974573cde91377c0e9e52ddf001ac0c095cb6ceee0efaa34ea173ee7a3c35d52" }, "downloads": -1, "filename": "aiohttp-1.3.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "67dfb798d655deaa4209d7513820be55", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 167313, "upload_time": "2017-02-16T19:35:27", "upload_time_iso_8601": "2017-02-16T19:35:27.158655Z", "url": "https://files.pythonhosted.org/packages/e5/5e/5542ec2d6c9afc1848eda5923ad27c55e86097245b19a2343a918391e075/aiohttp-1.3.2-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d40b2bba0b545174a2e0e351eb591578", "sha256": "6f4157ec17443559f5990d68cd3247b80b4c2ab8e1b0d8947f00de80d28db0b9" }, "downloads": -1, "filename": "aiohttp-1.3.2-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "d40b2bba0b545174a2e0e351eb591578", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 147850, "upload_time": "2017-02-16T19:59:01", "upload_time_iso_8601": "2017-02-16T19:59:01.333849Z", "url": "https://files.pythonhosted.org/packages/31/29/230ee5dd4019ea9857a335e0d0de10af8a5594ab3d163c4e58809379155b/aiohttp-1.3.2-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa49c7e461fe1663c1edf1fd30cd9d5e", "sha256": "715635ca77ec8a2218b21561a907146b579d30eef732502ad30f70b8cb1bb88b" }, "downloads": -1, "filename": "aiohttp-1.3.2-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "fa49c7e461fe1663c1edf1fd30cd9d5e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 148188, "upload_time": "2017-02-16T20:00:59", "upload_time_iso_8601": "2017-02-16T20:00:59.377198Z", "url": "https://files.pythonhosted.org/packages/aa/6e/e5e5550a1051850d667394125033a53bebdd8b8680b16f0d0e4394b86fa7/aiohttp-1.3.2-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7023382cf1f480efe70353c1df32972f", "sha256": "baef9521f8012d602644b4b5722b9d1e1d96d093ce0d2e065a89e3342b7f80fc" }, "downloads": -1, "filename": "aiohttp-1.3.2-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7023382cf1f480efe70353c1df32972f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 164488, "upload_time": "2017-02-16T19:39:00", "upload_time_iso_8601": "2017-02-16T19:39:00.448566Z", "url": "https://files.pythonhosted.org/packages/9f/f5/3ea958a6a9ec54aaf274696267273975b5480a8483a51b4b96202ef6b106/aiohttp-1.3.2-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ed92ecc98f58b911834fd17be151f6a", "sha256": "9e62a5c08d29211d685aebfaebae0b0f2403c81e6e1a687834e791483bcada55" }, "downloads": -1, "filename": "aiohttp-1.3.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9ed92ecc98f58b911834fd17be151f6a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 167162, "upload_time": "2017-02-16T19:35:30", "upload_time_iso_8601": "2017-02-16T19:35:30.195248Z", "url": "https://files.pythonhosted.org/packages/6a/bc/c553a0240cbc5a0837d880ecb48f6f2d13a8a67bc49a695085b1aba8fe33/aiohttp-1.3.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f76f67e952e0254fbe5e0953c6b4d1b", "sha256": "79821d32608a286f776e438a42e5f1471ccf46d50b59a062d91e304fbc538654" }, "downloads": -1, "filename": "aiohttp-1.3.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "8f76f67e952e0254fbe5e0953c6b4d1b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 149073, "upload_time": "2017-02-16T20:03:46", "upload_time_iso_8601": "2017-02-16T20:03:46.933934Z", "url": "https://files.pythonhosted.org/packages/de/a8/90421662d054bfb168e3644e5f79f7fbd3d863493ee558b0fe0a1e831ef4/aiohttp-1.3.2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1390eadb4611938306110d84f662351f", "sha256": "fef465facb975dfd360b40a7d22cadce619ba4975ddf1722b48a143e3f94fefe" }, "downloads": -1, "filename": "aiohttp-1.3.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "1390eadb4611938306110d84f662351f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 150293, "upload_time": "2017-02-16T20:05:49", "upload_time_iso_8601": "2017-02-16T20:05:49.483266Z", "url": "https://files.pythonhosted.org/packages/13/08/25d553129c83e9f2e5bc07d9fd345d43b0fd8a354bbf2f0bdda6dd189eff/aiohttp-1.3.2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7f26c29f37ff7eff6dd98719d5278572", "sha256": "39fefae0f4e0c4edfb2de6d8fc4e153801cb5577af268a69ea2a5846acafa720" }, "downloads": -1, "filename": "aiohttp-1.3.2-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7f26c29f37ff7eff6dd98719d5278572", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 164658, "upload_time": "2017-02-16T19:39:03", "upload_time_iso_8601": "2017-02-16T19:39:03.438186Z", "url": "https://files.pythonhosted.org/packages/31/0c/561b37a7db207aac7677dd4ff1af34df4211dceb4a6d1bad8e7ce207443d/aiohttp-1.3.2-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c31db3f972ce00e45b2edf87802d0a46", "sha256": "fb32c587e01cff2ae591e99e5e47a43e374a7ff4f191ee6a9e308561e9a625bc" }, "downloads": -1, "filename": "aiohttp-1.3.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c31db3f972ce00e45b2edf87802d0a46", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 167336, "upload_time": "2017-02-16T19:35:33", "upload_time_iso_8601": "2017-02-16T19:35:33.562112Z", "url": "https://files.pythonhosted.org/packages/d7/51/d9c607f8af73ae6a47117e74f2b0ab00a12c934ad07121f4793e75af184f/aiohttp-1.3.2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2deefd099ac7af431d6c75964d1e56ae", "sha256": "f11f2829f740b351102a0557fecc7911e0d174fd8c61f39501a1e9936a6370e3" }, "downloads": -1, "filename": "aiohttp-1.3.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "2deefd099ac7af431d6c75964d1e56ae", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 149073, "upload_time": "2017-02-16T20:08:57", "upload_time_iso_8601": "2017-02-16T20:08:57.015191Z", "url": "https://files.pythonhosted.org/packages/f1/cd/f4f41cf5c00a272e277c3c59919ca595a87dc1561fec89c31c1c14a0871a/aiohttp-1.3.2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1174f9bf8ae48e5c49b91715251730ea", "sha256": "a5f78266881e53a4b84c49b3a1947c92080043ed5dde037c0a487539b2b346c1" }, "downloads": -1, "filename": "aiohttp-1.3.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "1174f9bf8ae48e5c49b91715251730ea", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 150284, "upload_time": "2017-02-16T20:12:03", "upload_time_iso_8601": "2017-02-16T20:12:03.711054Z", "url": "https://files.pythonhosted.org/packages/26/53/eaa657ddbeacf8bffbba00855948fa8c23bfe5e67ff3c15cc5124160cf2f/aiohttp-1.3.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e46ca60f296439639964a184811b271", "sha256": "8a14837dd81740dc23ef777b971fd4d98f21248001a8c9949ad1ca31887812c8" }, "downloads": -1, "filename": "aiohttp-1.3.2.tar.gz", "has_sig": false, "md5_digest": "7e46ca60f296439639964a184811b271", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 526226, "upload_time": "2017-02-16T19:59:49", "upload_time_iso_8601": "2017-02-16T19:59:49.939217Z", "url": "https://files.pythonhosted.org/packages/e6/56/7959b331961b34996c83688ccc3a4a1a0000be2bd10bbdbc4ea750c48d1b/aiohttp-1.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "bcaf18332e2e6e87a146539705e1b0e1", "sha256": "8f71fbd7d2dbf21d686117400224296fc12f5e0b14a0697797b39258b6f39510" }, "downloads": -1, "filename": "aiohttp-1.3.3-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "bcaf18332e2e6e87a146539705e1b0e1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 164674, "upload_time": "2017-02-20T02:30:13", "upload_time_iso_8601": "2017-02-20T02:30:13.289381Z", "url": "https://files.pythonhosted.org/packages/b1/4a/5c73248b6431448141913315237bbb34263fddac925224c05b380ff49939/aiohttp-1.3.3-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8b5ea26c08ef4d8b910d86bf6d96eeef", "sha256": "4cccbac9a7ec7c26fe8c223febb697850b7ca191e1092fe5286c6de32f2ab86b" }, "downloads": -1, "filename": "aiohttp-1.3.3-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8b5ea26c08ef4d8b910d86bf6d96eeef", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 167356, "upload_time": "2017-02-20T02:26:55", "upload_time_iso_8601": "2017-02-20T02:26:55.955541Z", "url": "https://files.pythonhosted.org/packages/ae/3b/c5a5602f98d8f945bd995039e0c15624cfc961a28824c42bdb56cdfa3fff/aiohttp-1.3.3-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "750bd9578660d5e7c96ab2e1c0339663", "sha256": "bb8af23f2b886a067bb7ffc38e77aad6e5580986a2620a4739f22804a8510e3e" }, "downloads": -1, "filename": "aiohttp-1.3.3-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "750bd9578660d5e7c96ab2e1c0339663", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 147893, "upload_time": "2017-02-20T02:30:53", "upload_time_iso_8601": "2017-02-20T02:30:53.461701Z", "url": "https://files.pythonhosted.org/packages/98/c5/b3ea1ac3b9f3399daa45be1b9e31ac9a165bd59913e6ab6d02da98792ce4/aiohttp-1.3.3-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e84047eb84f5e52d94e73b64dd58b70e", "sha256": "0a480c3dc8e0f55decf72497dbd5a53601a4ee1526b6dfe085ea9c3cf5c00ebe" }, "downloads": -1, "filename": "aiohttp-1.3.3-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "e84047eb84f5e52d94e73b64dd58b70e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 148235, "upload_time": "2017-02-20T02:32:36", "upload_time_iso_8601": "2017-02-20T02:32:36.455656Z", "url": "https://files.pythonhosted.org/packages/9d/67/5de6676176944babd7ec952569c307959928caebfd0799bcbd05e84f3692/aiohttp-1.3.3-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b4bbdd6b3739f4eee8ca905eb624dfc2", "sha256": "0bbb12e9fac2c8365f4831710bca35a00f4ce3ecd52c22b36620fcc72b32f059" }, "downloads": -1, "filename": "aiohttp-1.3.3-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b4bbdd6b3739f4eee8ca905eb624dfc2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 164535, "upload_time": "2017-02-20T02:30:15", "upload_time_iso_8601": "2017-02-20T02:30:15.316559Z", "url": "https://files.pythonhosted.org/packages/89/18/1c4b3eab61f6aaf140aa30817f46fa63c1fad703a9b095e9827442b4e9a7/aiohttp-1.3.3-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "92e38b84964380ef3c8957fccb7fa464", "sha256": "331bca78048022e52ab99a3049bd72ae18953c5a3e9549265489afcfce065a9c" }, "downloads": -1, "filename": "aiohttp-1.3.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "92e38b84964380ef3c8957fccb7fa464", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 167220, "upload_time": "2017-02-20T02:26:57", "upload_time_iso_8601": "2017-02-20T02:26:57.964997Z", "url": "https://files.pythonhosted.org/packages/64/6f/817da9651f73536ad6138427617742052e1f8614c3f968467c6ab629cc3f/aiohttp-1.3.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "179d44010fab49c4e680c9d2025f4d1f", "sha256": "bd46cb66a7e01179af2ab6885566e8d12d938ee5d4bcc0bbc4dbc13e95a7c46c" }, "downloads": -1, "filename": "aiohttp-1.3.3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "179d44010fab49c4e680c9d2025f4d1f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 149106, "upload_time": "2017-02-20T02:34:10", "upload_time_iso_8601": "2017-02-20T02:34:10.048229Z", "url": "https://files.pythonhosted.org/packages/64/41/31fafd9acd94810eb417112c40789ed04c3594211dd549c218ea01299df6/aiohttp-1.3.3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e60617711b00942b3f620a5590ebc3d", "sha256": "ea3cf8a14ea2e219ccd38f0166fd1afb568d689ed35d250f34477e6799801236" }, "downloads": -1, "filename": "aiohttp-1.3.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "8e60617711b00942b3f620a5590ebc3d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 150336, "upload_time": "2017-02-20T02:35:51", "upload_time_iso_8601": "2017-02-20T02:35:51.117264Z", "url": "https://files.pythonhosted.org/packages/3c/a0/4cb100b2d642fa1b653a8a39b729ac124a68b7fb6d46a4341155ae27479f/aiohttp-1.3.3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ffe5e6da7953d6121c8168a6cbf0093", "sha256": "3c58339b8817f13397fd64e958aec10b4aebaf5514fc747f63d6ed4714b30d46" }, "downloads": -1, "filename": "aiohttp-1.3.3-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6ffe5e6da7953d6121c8168a6cbf0093", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 164717, "upload_time": "2017-02-20T02:30:17", "upload_time_iso_8601": "2017-02-20T02:30:17.773497Z", "url": "https://files.pythonhosted.org/packages/57/d1/6cd29c05edfdd19bf36dfba1d5a4e69e4e5147ebda5091b0a656515dddb4/aiohttp-1.3.3-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7d6dcd2e6ce8b9dffd111d4380800a27", "sha256": "93fb44f50b1385b2c143b25f0c695a7cf82ecd5bcac6a326a3ddc7a7c4e138e9" }, "downloads": -1, "filename": "aiohttp-1.3.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7d6dcd2e6ce8b9dffd111d4380800a27", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 167397, "upload_time": "2017-02-20T02:26:59", "upload_time_iso_8601": "2017-02-20T02:26:59.898696Z", "url": "https://files.pythonhosted.org/packages/aa/16/08172f0a8be97e6b4d81e89afa70ff5f52d98d357c9ea3a1b221e48b3f75/aiohttp-1.3.3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "901c8fae3c5921e79160b9cdddc57cb8", "sha256": "8eba325bf3da75569d2aeaf2350b0395e52f565a15b290a2449660a2d15dd33f" }, "downloads": -1, "filename": "aiohttp-1.3.3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "901c8fae3c5921e79160b9cdddc57cb8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 149118, "upload_time": "2017-02-20T02:38:42", "upload_time_iso_8601": "2017-02-20T02:38:42.592162Z", "url": "https://files.pythonhosted.org/packages/25/84/bece0fa84522c3058254a0384ba48f6cd35df23ff29385d10a8b8ec54d6f/aiohttp-1.3.3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "191519b7ad94d80be07385a45cfb9144", "sha256": "ad088e3248f0d24e5fe32cb4b4fba26a9eee7ed279486167f199f3e6801c327d" }, "downloads": -1, "filename": "aiohttp-1.3.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "191519b7ad94d80be07385a45cfb9144", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 150325, "upload_time": "2017-02-20T02:41:44", "upload_time_iso_8601": "2017-02-20T02:41:44.583972Z", "url": "https://files.pythonhosted.org/packages/87/3a/59b1cf8c92506cdad64ff9123e75305848aaba2c74e8af2fcf0d12fc8e56/aiohttp-1.3.3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "880e6744e7d125331467b8d3e2637392", "sha256": "103433f594442b98ed4af9db02331e548a0ef2d4cfd02207ea24ed9eb85862e4" }, "downloads": -1, "filename": "aiohttp-1.3.3.tar.gz", "has_sig": false, "md5_digest": "880e6744e7d125331467b8d3e2637392", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 526273, "upload_time": "2017-02-20T02:35:46", "upload_time_iso_8601": "2017-02-20T02:35:46.927852Z", "url": "https://files.pythonhosted.org/packages/da/c1/b95412e44f81622a8aa743bddcd28f8192ccf5db81d228ab7d713d6ec9e8/aiohttp-1.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.4": [ { "comment_text": "", "digests": { "md5": "86b5db5fdad3af6588e8acc5bc41c4df", "sha256": "f6fa8ec31add46a5e7ef39edf120a32959e8c999ddb38e03dd09c5c3cdf5a8c3" }, "downloads": -1, "filename": "aiohttp-1.3.4-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "86b5db5fdad3af6588e8acc5bc41c4df", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 165648, "upload_time": "2017-03-15T02:54:58", "upload_time_iso_8601": "2017-03-15T02:54:58.008387Z", "url": "https://files.pythonhosted.org/packages/ac/b7/56b1ffbca63fb7e0ea33c0a7da593c5b11cc2668c6ec9f35ce916d4ee45e/aiohttp-1.3.4-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42775078d500f5d760f0dd2e9fe7cfe6", "sha256": "9f32e32aeb39418a94606952736929013f3672e76302b2ce3b43eb4c5c785aa9" }, "downloads": -1, "filename": "aiohttp-1.3.4-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "42775078d500f5d760f0dd2e9fe7cfe6", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 168317, "upload_time": "2017-03-15T02:51:41", "upload_time_iso_8601": "2017-03-15T02:51:41.748233Z", "url": "https://files.pythonhosted.org/packages/a0/b1/4e9a56a7387e03f7b8e13ea1412a8aeab19d5385410770eaa1e2d1c8abdc/aiohttp-1.3.4-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46bc34c3c16363d6913c7002db354e67", "sha256": "89ca62ed76ce119393fc64b84e8ca148558d04db300542255f9f57af0e8a7237" }, "downloads": -1, "filename": "aiohttp-1.3.4-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "46bc34c3c16363d6913c7002db354e67", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 165501, "upload_time": "2017-03-15T02:54:59", "upload_time_iso_8601": "2017-03-15T02:54:59.887952Z", "url": "https://files.pythonhosted.org/packages/13/a4/6941dbbee91db89825603f6449f1928e2047a898052d67449dcf1f553871/aiohttp-1.3.4-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2f95acd8dc25a25d8f0ccc8c60d0e2f4", "sha256": "c404009edf24766e2bf31b4668eaeb3dd05f14832a161dd809efae24d084a01b" }, "downloads": -1, "filename": "aiohttp-1.3.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2f95acd8dc25a25d8f0ccc8c60d0e2f4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 168169, "upload_time": "2017-03-15T02:51:43", "upload_time_iso_8601": "2017-03-15T02:51:43.963416Z", "url": "https://files.pythonhosted.org/packages/c5/47/45e641d56d96bf0b544c76efa9086c1f85af847f55e1daf7e0df4f5c68fc/aiohttp-1.3.4-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "be511a7f8b230f80398b0b1308f690d0", "sha256": "febfb20b171203dd7b523890008484bf0b29d9354000143ab7dd6292a22c642f" }, "downloads": -1, "filename": "aiohttp-1.3.4-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "be511a7f8b230f80398b0b1308f690d0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 165679, "upload_time": "2017-03-15T02:55:01", "upload_time_iso_8601": "2017-03-15T02:55:01.823908Z", "url": "https://files.pythonhosted.org/packages/32/08/d0bc8541eaf3105a6fa1e7417d24393c5d48397f8cbf41b41412348ce890/aiohttp-1.3.4-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "77a1f52d1da4c3cab058003207daef4a", "sha256": "bf7eef8814fbba31ef61561b6f5ff23260f5bc8551a8eceac14421b0e044751a" }, "downloads": -1, "filename": "aiohttp-1.3.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "77a1f52d1da4c3cab058003207daef4a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 168344, "upload_time": "2017-03-15T02:51:46", "upload_time_iso_8601": "2017-03-15T02:51:46.682065Z", "url": "https://files.pythonhosted.org/packages/0a/23/34c4dd0a3157ab21d0241205e58370ef4d14e75dc24a9b51066493b83b58/aiohttp-1.3.4-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a5b65b0f2048fa26686d3f6d06b5db41", "sha256": "bd8d48e53c0464bb36a880c4156d83802a111f46bac1385f07ee4cd7b3589b07" }, "downloads": -1, "filename": "aiohttp-1.3.4.tar.gz", "has_sig": false, "md5_digest": "a5b65b0f2048fa26686d3f6d06b5db41", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 527331, "upload_time": "2017-03-15T02:56:43", "upload_time_iso_8601": "2017-03-15T02:56:43.523356Z", "url": "https://files.pythonhosted.org/packages/6c/3d/60db8104272e63af28f48bfabcac58579e20334b4b07d73e22822593a409/aiohttp-1.3.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.5": [ { "comment_text": "", "digests": { "md5": "a5cf0991f57013ecf9a7b025031a5577", "sha256": "b85f5a411dd994ce815d10461a2d9e490441d1cfde1be621b09146b0357cf4da" }, "downloads": -1, "filename": "aiohttp-1.3.5-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a5cf0991f57013ecf9a7b025031a5577", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 165687, "upload_time": "2017-03-16T16:32:47", "upload_time_iso_8601": "2017-03-16T16:32:47.392792Z", "url": "https://files.pythonhosted.org/packages/8f/d8/723245a6d04d3d2c592f5aa90342319d8db036712d188b1692c198e28274/aiohttp-1.3.5-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8ff47860d22b1d04001b079553e73032", "sha256": "e922e0be63eb7bf600f2b82f475ab2710415f098218583a1f5e3b7ef573f21d3" }, "downloads": -1, "filename": "aiohttp-1.3.5-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8ff47860d22b1d04001b079553e73032", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 168363, "upload_time": "2017-03-16T16:29:25", "upload_time_iso_8601": "2017-03-16T16:29:25.718388Z", "url": "https://files.pythonhosted.org/packages/c6/43/f14ad6dc9123f4fc9584b6af174e9f11b8ee3f58d5397a1cc25b0027799e/aiohttp-1.3.5-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "77d87381bb9e8b61c17764a712713e8a", "sha256": "2fc496888a49c18903419f28717909def477408d33a49a145573174b8f9a7219" }, "downloads": -1, "filename": "aiohttp-1.3.5-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "77d87381bb9e8b61c17764a712713e8a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 165545, "upload_time": "2017-03-16T16:32:49", "upload_time_iso_8601": "2017-03-16T16:32:49.235700Z", "url": "https://files.pythonhosted.org/packages/69/61/7c564b1410d397160934fd61856efada2cca4689a734018821e023099d76/aiohttp-1.3.5-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "48d2b0f984144826d195761134d46e58", "sha256": "fd39fa8bede6ab806b0138f678408e720f6ce1893fd44dfda3dcefd3915f7dca" }, "downloads": -1, "filename": "aiohttp-1.3.5-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "48d2b0f984144826d195761134d46e58", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 168223, "upload_time": "2017-03-16T16:29:28", "upload_time_iso_8601": "2017-03-16T16:29:28.103153Z", "url": "https://files.pythonhosted.org/packages/7a/a9/a4829fb463b6472c470af0c7d375b815352f14b41ec04bf721d195e0d098/aiohttp-1.3.5-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6c0fb90a854ff42208bf1792963e8da6", "sha256": "d0cfed3fb87935e0703196d9d52b43aa9a92570a2b8cb9d2501cf20b25cf3208" }, "downloads": -1, "filename": "aiohttp-1.3.5-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6c0fb90a854ff42208bf1792963e8da6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 165699, "upload_time": "2017-03-16T16:32:51", "upload_time_iso_8601": "2017-03-16T16:32:51.439127Z", "url": "https://files.pythonhosted.org/packages/38/2d/0cd562fbb3b6a3c6c1496fbc64fa4c98a57c1071820bea683d2a14fe69f7/aiohttp-1.3.5-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "07bf1e50c61811ec8cc2b6a7f67789b8", "sha256": "d1a55e05643e44108fd6cee64ff60500ad952fe0f90e36e16cb68eb2c8cc85b1" }, "downloads": -1, "filename": "aiohttp-1.3.5-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "07bf1e50c61811ec8cc2b6a7f67789b8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 168392, "upload_time": "2017-03-16T16:29:30", "upload_time_iso_8601": "2017-03-16T16:29:30.095964Z", "url": "https://files.pythonhosted.org/packages/b5/1b/284511923d15b2ea9ef930c100a1c57655f459dd2896dc2a2b6e151065b7/aiohttp-1.3.5-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fac473aa71b5e49a6978b5bcc393a7ef", "sha256": "cd14a45da385b5e860849ffaff3ecee56f9b37bf9e7f3f7bc5ce3f17556cf842" }, "downloads": -1, "filename": "aiohttp-1.3.5.tar.gz", "has_sig": false, "md5_digest": "fac473aa71b5e49a6978b5bcc393a7ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 527432, "upload_time": "2017-03-16T16:34:52", "upload_time_iso_8601": "2017-03-16T16:34:52.796882Z", "url": "https://files.pythonhosted.org/packages/e9/08/721f2e99f4ed694335f533a2910b4c75b1b37a376fe65da07903e0bbe1d2/aiohttp-1.3.5.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "862817feb1fa999e5762ca2ed0b95a4c", "sha256": "bda5f69197cd9a7c9cc9839ef4c9c12e53f5a9d52d55c1f775cae534d14fa23a" }, "downloads": -1, "filename": "aiohttp-2.0.0-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "862817feb1fa999e5762ca2ed0b95a4c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 418822, "upload_time": "2017-03-20T17:32:03", "upload_time_iso_8601": "2017-03-20T17:32:03.090921Z", "url": "https://files.pythonhosted.org/packages/d0/d9/91a468edd0731136a28fc9f029e55f2a8bcf77116998d324a1b77734124f/aiohttp-2.0.0-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8deea890f150060fbac4a800520d8c2d", "sha256": "b7c61dfccdcd69822596066a3f92ccb7412de8f12fc9be30427284f0505cacfd" }, "downloads": -1, "filename": "aiohttp-2.0.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8deea890f150060fbac4a800520d8c2d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 436247, "upload_time": "2017-03-20T17:28:21", "upload_time_iso_8601": "2017-03-20T17:28:21.787186Z", "url": "https://files.pythonhosted.org/packages/8b/c0/961bdf8dc8795ab1e624c966fcb5411935cfdd4609f85c41514a63f7ed0d/aiohttp-2.0.0-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60e706140afde657759e0c73038169e7", "sha256": "a769a1af5c7645bc744c4904ab4662c544b1315a7c0b81e5e6ca5e0dd22a4a58" }, "downloads": -1, "filename": "aiohttp-2.0.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "60e706140afde657759e0c73038169e7", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 250568, "upload_time": "2017-03-20T19:27:21", "upload_time_iso_8601": "2017-03-20T19:27:21.153154Z", "url": "https://files.pythonhosted.org/packages/8e/07/16318cfb42dc787e7905dc2eb2b668f89b32f91c042fa459452a6dc81c6f/aiohttp-2.0.0-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7500f93687645cac9e2d7750ef03f4de", "sha256": "4bff5fe18c198044873e57c80cb3528b1284e05fc9f89c0bdf920907d9e880c7" }, "downloads": -1, "filename": "aiohttp-2.0.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "7500f93687645cac9e2d7750ef03f4de", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 254218, "upload_time": "2017-03-20T19:31:09", "upload_time_iso_8601": "2017-03-20T19:31:09.351354Z", "url": "https://files.pythonhosted.org/packages/aa/97/35b4882d414e2ff934a58c9ce87e66b2f709d0e4909b4821d3a778ef4ef5/aiohttp-2.0.0-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e62c411203cc8392f2a438a08b48bb92", "sha256": "a24cef553055453aee2347aeac5bc02a946223e88d3079712ba0a54a96e79f7b" }, "downloads": -1, "filename": "aiohttp-2.0.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e62c411203cc8392f2a438a08b48bb92", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 617302, "upload_time": "2017-03-20T17:32:05", "upload_time_iso_8601": "2017-03-20T17:32:05.297688Z", "url": "https://files.pythonhosted.org/packages/33/6c/36f959ed83f55f0475a18cecad25e0d4fe9608dcd44db214dffdb5a85801/aiohttp-2.0.0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe24423ad518aafe90696e1787ec5583", "sha256": "41e77a9853a44cee04a748e573ade7806903b867dd7c5ef99981d8bb777b2c9f" }, "downloads": -1, "filename": "aiohttp-2.0.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fe24423ad518aafe90696e1787ec5583", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 633617, "upload_time": "2017-03-20T17:28:24", "upload_time_iso_8601": "2017-03-20T17:28:24.706991Z", "url": "https://files.pythonhosted.org/packages/4b/6e/947276936e520a532e549b96332988fa0ebd20955eecd36f12fb9ce154f6/aiohttp-2.0.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1bb85988c4bb0053d2050744ec01a565", "sha256": "875cb0ec2b7c2fd103d4efaf4d08058876008aacb60394e8d03b9a4e09ae453e" }, "downloads": -1, "filename": "aiohttp-2.0.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "1bb85988c4bb0053d2050744ec01a565", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 251444, "upload_time": "2017-03-20T19:34:32", "upload_time_iso_8601": "2017-03-20T19:34:32.553514Z", "url": "https://files.pythonhosted.org/packages/c9/84/fd40c702a352e1ccf288ad50e2e60331ac45ef92e557141c040bd44875df/aiohttp-2.0.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e9dcf8a1f8b4b6ba3decfe16b5f0b352", "sha256": "53d05ff50e8681d93babf8d134f22aca162e667474df5fb20da5e00e63cab5e0" }, "downloads": -1, "filename": "aiohttp-2.0.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "e9dcf8a1f8b4b6ba3decfe16b5f0b352", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 257186, "upload_time": "2017-03-20T19:36:43", "upload_time_iso_8601": "2017-03-20T19:36:43.706762Z", "url": "https://files.pythonhosted.org/packages/97/42/f1d01a58c5e1c966e7d10b27073f60100d03e54f14a8bfb850970549161e/aiohttp-2.0.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "10428d9a36b98d2f99fe7d8e918b3c64", "sha256": "eaa474f2212a9dcea53a2581a371cba07849dc1799800289bd6045c9f159003b" }, "downloads": -1, "filename": "aiohttp-2.0.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "10428d9a36b98d2f99fe7d8e918b3c64", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 626228, "upload_time": "2017-03-20T17:32:08", "upload_time_iso_8601": "2017-03-20T17:32:08.172690Z", "url": "https://files.pythonhosted.org/packages/d0/01/6c835f6200b3c594bd0654f97204a6d773b9b11974357ece024218cfc2f1/aiohttp-2.0.0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9f816be27e76d6d9defff341d53e49e5", "sha256": "7047ce8553fe390196a115c63d3897464a42fca93270660a0dbf44913ad97b9b" }, "downloads": -1, "filename": "aiohttp-2.0.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9f816be27e76d6d9defff341d53e49e5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 642199, "upload_time": "2017-03-20T17:28:27", "upload_time_iso_8601": "2017-03-20T17:28:27.148725Z", "url": "https://files.pythonhosted.org/packages/87/f2/d9b35bf7bf6a14e4ef199f79f3673699c02a96a8848f71f121b409b0f2e8/aiohttp-2.0.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82a05597b9e311e475f78b889fd4f154", "sha256": "fee37e748b886cb430644fe97249ae986bb6e935f251c446a9e2110038ab1386" }, "downloads": -1, "filename": "aiohttp-2.0.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "82a05597b9e311e475f78b889fd4f154", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 252676, "upload_time": "2017-03-20T19:40:47", "upload_time_iso_8601": "2017-03-20T19:40:47.206706Z", "url": "https://files.pythonhosted.org/packages/13/e3/f875358d5fdb4e9922744df49da5f256c32e7b2df23bde5518737fc1b40f/aiohttp-2.0.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "35c4e4c994f3419f99ff5a0e6d0b0629", "sha256": "bc6510935f73fb2c8b5a674da1f385ce679f8a44deb82c05a7837e9906cb8f7f" }, "downloads": -1, "filename": "aiohttp-2.0.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "35c4e4c994f3419f99ff5a0e6d0b0629", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 258707, "upload_time": "2017-03-20T19:44:36", "upload_time_iso_8601": "2017-03-20T19:44:36.205088Z", "url": "https://files.pythonhosted.org/packages/1d/32/079c6c481df9d5659f1e88dd6c518dab72aaba7a8ce2e74ddddf10683e00/aiohttp-2.0.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "53c81a09db4fb68eec9103ecf682d90c", "sha256": "9d73c4b530ff11ca58f96184618180fbc1f93d08fe8da600dfe9c858e471bdfa" }, "downloads": -1, "filename": "aiohttp-2.0.0.tar.gz", "has_sig": false, "md5_digest": "53c81a09db4fb68eec9103ecf682d90c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 607644, "upload_time": "2017-03-20T17:43:18", "upload_time_iso_8601": "2017-03-20T17:43:18.386858Z", "url": "https://files.pythonhosted.org/packages/b0/88/712947e5c06479ea27a59ebf2ab78bf4358798c0b472dbd2535815f8a293/aiohttp-2.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.0rc1": [ { "comment_text": "", "digests": { "md5": "4d538498fb44ba7cb5963641c87dd3d2", "sha256": "2a4804da7a7a56026ae8a7076f87f24f214b68e39d09c782a9bed5c9ad8dc585" }, "downloads": -1, "filename": "aiohttp-2.0.0rc1-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4d538498fb44ba7cb5963641c87dd3d2", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 418230, "upload_time": "2017-03-15T18:10:21", "upload_time_iso_8601": "2017-03-15T18:10:21.083714Z", "url": "https://files.pythonhosted.org/packages/dc/f4/ad77079cbb6e95bd2191f78dc665442277860619b8ac183c05d772111142/aiohttp-2.0.0rc1-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6cad2bb21b301ce1e82e19dca0271054", "sha256": "57a37ed177e40feeede19dc454f63de0114bab62b6f32f052470180828ebd6ad" }, "downloads": -1, "filename": "aiohttp-2.0.0rc1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6cad2bb21b301ce1e82e19dca0271054", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 435685, "upload_time": "2017-03-15T18:04:50", "upload_time_iso_8601": "2017-03-15T18:04:50.377750Z", "url": "https://files.pythonhosted.org/packages/5d/98/48fe25cf568e2b31d52ff90cffcab842d382d8d085f314b5a3d0dfd4732c/aiohttp-2.0.0rc1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b61eeec8e30e2f15630c9f56b86f6b13", "sha256": "608754bb28f0305428bfe07a9bb79bb094b85238c95f8ede894d068d20a91262" }, "downloads": -1, "filename": "aiohttp-2.0.0rc1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b61eeec8e30e2f15630c9f56b86f6b13", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 616717, "upload_time": "2017-03-15T18:10:23", "upload_time_iso_8601": "2017-03-15T18:10:23.228076Z", "url": "https://files.pythonhosted.org/packages/d5/0a/52229644ce70fd13d8dd9ae02d2be7576b25c9c86862b4ecac1a31f4f9bf/aiohttp-2.0.0rc1-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e3c9b7ad0768707df59830c7679d3731", "sha256": "9ae4ad449c4b2b57442ffb4f1776991015bcdd9439ed1ebdd2a005db6792a70c" }, "downloads": -1, "filename": "aiohttp-2.0.0rc1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e3c9b7ad0768707df59830c7679d3731", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 633024, "upload_time": "2017-03-15T18:04:53", "upload_time_iso_8601": "2017-03-15T18:04:53.111500Z", "url": "https://files.pythonhosted.org/packages/44/4b/696b58512cab914f07eac002ea9931c7cac4d5e66cbf96c673bf219a46bd/aiohttp-2.0.0rc1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ced81b3ebaf16435b3f9d672537e0e80", "sha256": "35744f0810912c15981d5e105dc4b0b7c71d488ce20b3b6e18d35fc589fbb61a" }, "downloads": -1, "filename": "aiohttp-2.0.0rc1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ced81b3ebaf16435b3f9d672537e0e80", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 625670, "upload_time": "2017-03-15T18:10:26", "upload_time_iso_8601": "2017-03-15T18:10:26.916639Z", "url": "https://files.pythonhosted.org/packages/68/c5/a5b629baedd3fc4bfb70ea5db28342cbee6c8ad11ba607680001d7d48ba9/aiohttp-2.0.0rc1-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99ca7a9b44685fd5f68456872e157419", "sha256": "ce4dbb90ca1a005bf3c2fff576c183e0556fd20eb856c4e7f0e521733d0071b4" }, "downloads": -1, "filename": "aiohttp-2.0.0rc1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "99ca7a9b44685fd5f68456872e157419", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 641620, "upload_time": "2017-03-15T18:04:55", "upload_time_iso_8601": "2017-03-15T18:04:55.337958Z", "url": "https://files.pythonhosted.org/packages/70/67/0cc5fd3427ae4267c8ffde8c6a485e3f6be5ac81b8b8ae1cf903be8d359f/aiohttp-2.0.0rc1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "21b4172dcda4c81fec6a3e67ea2f9686", "sha256": "df6cff16929e560078f9d1919b52ffb966f4642d740645518068f16ede66260c" }, "downloads": -1, "filename": "aiohttp-2.0.0rc1.tar.gz", "has_sig": false, "md5_digest": "21b4172dcda4c81fec6a3e67ea2f9686", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 605678, "upload_time": "2017-03-15T18:17:03", "upload_time_iso_8601": "2017-03-15T18:17:03.405654Z", "url": "https://files.pythonhosted.org/packages/bd/d4/92f4205b683586a5f475b46eab1699e0c5551c7b1f6c354a3af4f6cf0bfc/aiohttp-2.0.0rc1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "2e81ebfcf10625e47164f1df9721ffd1", "sha256": "251b8e1cf27a7c23a8b9cb5bf5b1caa06567cf5b7278682a31510d0d65294894" }, "downloads": -1, "filename": "aiohttp-2.0.1-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2e81ebfcf10625e47164f1df9721ffd1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 418915, "upload_time": "2017-03-21T16:57:54", "upload_time_iso_8601": "2017-03-21T16:57:54.375708Z", "url": "https://files.pythonhosted.org/packages/d8/ee/454f799276d44a79bf0fe0cd78c152ae62dcc3755ddd8aa92df06eda544d/aiohttp-2.0.1-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2fac6f1cdcc2f9d0a35f6f07c395199f", "sha256": "90e5adf01f321a0bd881942effa1f1c2986a3d1a18caa0058cd728ba7d47bd76" }, "downloads": -1, "filename": "aiohttp-2.0.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2fac6f1cdcc2f9d0a35f6f07c395199f", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 436353, "upload_time": "2017-03-21T16:54:18", "upload_time_iso_8601": "2017-03-21T16:54:18.096808Z", "url": "https://files.pythonhosted.org/packages/b0/ce/e8507d605960869e8f2b5645fd5e9dee766330095101673862989ed548ae/aiohttp-2.0.1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b4f85770e4f82a5578bf9d8969db5e2", "sha256": "0a6e1dd02dc6aea0c50a321cd6926d75b281b7dd68909695856b050564e252d7" }, "downloads": -1, "filename": "aiohttp-2.0.1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "5b4f85770e4f82a5578bf9d8969db5e2", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 250688, "upload_time": "2017-03-21T16:46:05", "upload_time_iso_8601": "2017-03-21T16:46:05.837071Z", "url": "https://files.pythonhosted.org/packages/2e/e6/eca7da8bed3b1260702589fe22d851e4f2b3c32ff36e09f8ddd3f2d64367/aiohttp-2.0.1-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "35f08a7108e3bcb80c1cdcbddd32e4a8", "sha256": "940cff2688b6c83ec505c9fc1ef9aef61d90c5bed45fc28970bd45696f1d650d" }, "downloads": -1, "filename": "aiohttp-2.0.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "35f08a7108e3bcb80c1cdcbddd32e4a8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 254343, "upload_time": "2017-03-21T16:49:02", "upload_time_iso_8601": "2017-03-21T16:49:02.049829Z", "url": "https://files.pythonhosted.org/packages/61/b1/83bcfeb8c3ba2a44064608ce74c415b65a8ba83561e38906ccfb8a7d0933/aiohttp-2.0.1-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5111eb1d34afd7919a555543c0ee5e2a", "sha256": "fc2978c3ab5d414c2f97a9a2232f9d42e969cc2793e96fde7b14b23178430f8b" }, "downloads": -1, "filename": "aiohttp-2.0.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5111eb1d34afd7919a555543c0ee5e2a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 617408, "upload_time": "2017-03-21T16:57:58", "upload_time_iso_8601": "2017-03-21T16:57:58.746397Z", "url": "https://files.pythonhosted.org/packages/73/83/98d752ef6f83f3dba8e306838bb501f786fa0c9989a38127481143ffc30d/aiohttp-2.0.1-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "28af822d2a9074c7859a7e8e89ddc3b1", "sha256": "227245f1bdfeab9d2a314daabfa23cd2ebc15f002fe945b19973a8d957876254" }, "downloads": -1, "filename": "aiohttp-2.0.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "28af822d2a9074c7859a7e8e89ddc3b1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 633734, "upload_time": "2017-03-21T16:54:20", "upload_time_iso_8601": "2017-03-21T16:54:20.581327Z", "url": "https://files.pythonhosted.org/packages/87/8a/98cc8e08b32366446647510d3ac56f6c79541507224b576c345c565def0d/aiohttp-2.0.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b064b12528dea8025211e0cf9adf2bf", "sha256": "3577fce1699e539b2c420e14513dfc3321eea813022512b4c91cba1e4e33c931" }, "downloads": -1, "filename": "aiohttp-2.0.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "3b064b12528dea8025211e0cf9adf2bf", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 251567, "upload_time": "2017-03-21T16:52:26", "upload_time_iso_8601": "2017-03-21T16:52:26.052301Z", "url": "https://files.pythonhosted.org/packages/c6/f1/c0633d2b49172dc59e2e204f64f0998ede28a04e753e951c9325796a2bde/aiohttp-2.0.1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6f3509b359db56e6eb60d8927cc0766", "sha256": "538e48401939cee93b8df5edca042d18ae59775e3f232754d4e1157d003b2b3e" }, "downloads": -1, "filename": "aiohttp-2.0.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "f6f3509b359db56e6eb60d8927cc0766", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 257300, "upload_time": "2017-03-21T16:54:35", "upload_time_iso_8601": "2017-03-21T16:54:35.583078Z", "url": "https://files.pythonhosted.org/packages/19/21/7ad019942741ee48e5ff2ad535df3947bbb375314f9809be7762e837ac75/aiohttp-2.0.1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "36f64243c54b5f45090254501df8d7ac", "sha256": "1ba00f86d02b7160beaead2bfb294d9deedc81ce8a6e71b6d4e0997f381f7c33" }, "downloads": -1, "filename": "aiohttp-2.0.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "36f64243c54b5f45090254501df8d7ac", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 626364, "upload_time": "2017-03-21T16:58:02", "upload_time_iso_8601": "2017-03-21T16:58:02.885869Z", "url": "https://files.pythonhosted.org/packages/52/0f/419b9affaf13df660a8da960aab8386ada9c39c19cb141c4dfbbbdee4b61/aiohttp-2.0.1-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f139d815b38c179659b6b4368aaa580b", "sha256": "d579734ec1d50f62b42caed5c97d5810d1fbdad944a8eebb388813a6a7bf9874" }, "downloads": -1, "filename": "aiohttp-2.0.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f139d815b38c179659b6b4368aaa580b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 642306, "upload_time": "2017-03-21T16:54:23", "upload_time_iso_8601": "2017-03-21T16:54:23.426146Z", "url": "https://files.pythonhosted.org/packages/50/47/c8c6d05cd6ede205503e1f2e91caf1db540e6366609819b43c32b2e900ec/aiohttp-2.0.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1e65e0c6280aa328ab1ddc7c9e5022fa", "sha256": "244d1864177e6ca16281501acd0aa9f729474f03135f46e4e5e7be78b64d19d3" }, "downloads": -1, "filename": "aiohttp-2.0.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "1e65e0c6280aa328ab1ddc7c9e5022fa", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 252795, "upload_time": "2017-03-21T16:58:37", "upload_time_iso_8601": "2017-03-21T16:58:37.435324Z", "url": "https://files.pythonhosted.org/packages/40/78/e300d3d8faf35bea4aa834b411ecc88054ad8789ad077b89c6dbadaa79da/aiohttp-2.0.1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58b4ce8579f1e40062d729124cb32309", "sha256": "d8a67cbf6391da116ddcc9016c4eccd3cc7938a11dfd0ef0b12e42e67babc8cf" }, "downloads": -1, "filename": "aiohttp-2.0.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "58b4ce8579f1e40062d729124cb32309", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 258828, "upload_time": "2017-03-21T17:03:00", "upload_time_iso_8601": "2017-03-21T17:03:00.257191Z", "url": "https://files.pythonhosted.org/packages/c1/00/90eb476784600a4f289c4b447a786b63ebcaaa716e335291723ee0f648cf/aiohttp-2.0.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d90c9d472755f169e8ebb9c8f353fae9", "sha256": "68c77f74bf28ddc1fb509dc89a3c97ff22e1649abbb4a35aad7f2c91f6d17d93" }, "downloads": -1, "filename": "aiohttp-2.0.1.tar.gz", "has_sig": false, "md5_digest": "d90c9d472755f169e8ebb9c8f353fae9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 607832, "upload_time": "2017-03-21T17:04:04", "upload_time_iso_8601": "2017-03-21T17:04:04.883003Z", "url": "https://files.pythonhosted.org/packages/83/0d/90a20e45723f4da5c584655692d43076f47911f87e53be26aa76ea705889/aiohttp-2.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "9d04462afc2752f76ea0fae9fa93323e", "sha256": "37ec6b596c68dd50c51061b987d5278e4dbaa4c6c29f00cfe575363806d95bfb" }, "downloads": -1, "filename": "aiohttp-2.0.2-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "9d04462afc2752f76ea0fae9fa93323e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 419021, "upload_time": "2017-03-23T06:58:28", "upload_time_iso_8601": "2017-03-23T06:58:28.371891Z", "url": "https://files.pythonhosted.org/packages/86/ee/52702ddf6af35fea3e5183b8bf8f3b09de41afcd900ab57f5e2af3458706/aiohttp-2.0.2-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "604a448a56279744e6e446c67612d5f1", "sha256": "3819fd6bd1424a346bb06b3377c109cd82390653c4620223571da89dac8949c5" }, "downloads": -1, "filename": "aiohttp-2.0.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "604a448a56279744e6e446c67612d5f1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 436436, "upload_time": "2017-03-23T06:55:20", "upload_time_iso_8601": "2017-03-23T06:55:20.549374Z", "url": "https://files.pythonhosted.org/packages/49/d6/86dc72e57b74c21fdefa1c161b5a7866755e137bcb3699923618ae51e9b7/aiohttp-2.0.2-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e8601a0e985c474c10f6d263c75a00bc", "sha256": "97e306955cfde2c2dcfadac9a23f5bb652d9d6dc2ecea28b3aabb8461c40131f" }, "downloads": -1, "filename": "aiohttp-2.0.2-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "e8601a0e985c474c10f6d263c75a00bc", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 250776, "upload_time": "2017-03-23T06:47:24", "upload_time_iso_8601": "2017-03-23T06:47:24.353127Z", "url": "https://files.pythonhosted.org/packages/59/13/372137b20e89704d88f84e57646cd3725b4f6fb23cc072c869414fcb2a99/aiohttp-2.0.2-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef3c538eedfefd14a1e027bd6736f080", "sha256": "9847c6d312e08f13e728e6edc0a0039c7d7a10b015caf35ac1cf88a3fa612f25" }, "downloads": -1, "filename": "aiohttp-2.0.2-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "ef3c538eedfefd14a1e027bd6736f080", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 254427, "upload_time": "2017-03-23T06:49:12", "upload_time_iso_8601": "2017-03-23T06:49:12.907898Z", "url": "https://files.pythonhosted.org/packages/87/9f/c5054a3cf1e6a844fb2ed113c2b84acfbe09979fb27ea2661b49dcc4257d/aiohttp-2.0.2-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c052753784864f3c1d7f1f6d42b47b8", "sha256": "aa817a64bfcb4db772785c4fbeee9fc27db0b1ae1a9f400f75132a674ffd791c" }, "downloads": -1, "filename": "aiohttp-2.0.2-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8c052753784864f3c1d7f1f6d42b47b8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 617498, "upload_time": "2017-03-23T06:58:30", "upload_time_iso_8601": "2017-03-23T06:58:30.923943Z", "url": "https://files.pythonhosted.org/packages/1f/3c/b7fa5530100ac52921228b1f201c4077966e4f832d3886affe3b61f55f57/aiohttp-2.0.2-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cda97fb72db84acf6a90767e0e425e70", "sha256": "1cde8cca3d79ce6189e8d19a511afc75f8fcb25d460ae96ecb1a27b629c5154e" }, "downloads": -1, "filename": "aiohttp-2.0.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "cda97fb72db84acf6a90767e0e425e70", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 633825, "upload_time": "2017-03-23T06:55:23", "upload_time_iso_8601": "2017-03-23T06:55:23.006265Z", "url": "https://files.pythonhosted.org/packages/95/68/800da75c498d0cfb9f4fcfb52b5eec2410bba98055b0af7f0554401b1ae0/aiohttp-2.0.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1578edf7cba66ae3483ec55fbc0857c0", "sha256": "dc04850e04617a77d07c903431a729275960f648d69ad59b23749a1c73b31ec8" }, "downloads": -1, "filename": "aiohttp-2.0.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "1578edf7cba66ae3483ec55fbc0857c0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 251652, "upload_time": "2017-03-23T06:50:50", "upload_time_iso_8601": "2017-03-23T06:50:50.495354Z", "url": "https://files.pythonhosted.org/packages/41/b2/48e21d9fabc9a32c8c25105a7bce3136ecd93fdc328b8532eac31546332d/aiohttp-2.0.2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fafc8d8ed2bd0dcf220662b6a4980872", "sha256": "48d28d5bf6b5393f9ee0ec2b356b4a6fd59308caac847666d29de5fffa608616" }, "downloads": -1, "filename": "aiohttp-2.0.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "fafc8d8ed2bd0dcf220662b6a4980872", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 257388, "upload_time": "2017-03-23T06:52:42", "upload_time_iso_8601": "2017-03-23T06:52:42.819293Z", "url": "https://files.pythonhosted.org/packages/a6/a5/7fa0ffca6b60b20fb61ed68a169c86080247bc51536b156650345980b59b/aiohttp-2.0.2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8fca32ddf1655d87701a347d0bdd0500", "sha256": "17eaf6fd2d85a7feb14d664c0477eeb90b93b60d4bfa1b1cf8be4b6d14a4aed5" }, "downloads": -1, "filename": "aiohttp-2.0.2-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8fca32ddf1655d87701a347d0bdd0500", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 626434, "upload_time": "2017-03-23T06:58:33", "upload_time_iso_8601": "2017-03-23T06:58:33.200243Z", "url": "https://files.pythonhosted.org/packages/9f/fd/e8eeaef5fefa363bfa678baeecf1257b52d4d0f18846d431c1281dc17e6f/aiohttp-2.0.2-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8228ebd91048e556a38b2f594ff4d90c", "sha256": "ba13417850d3dbd06bceaafa70f240b410539ecc4ba2c60202b7b631f5737800" }, "downloads": -1, "filename": "aiohttp-2.0.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8228ebd91048e556a38b2f594ff4d90c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 642405, "upload_time": "2017-03-23T06:55:26", "upload_time_iso_8601": "2017-03-23T06:55:26.194453Z", "url": "https://files.pythonhosted.org/packages/f8/2d/de936058e394c7c312ae32a92783977f2177029a9785b7018658dee3437d/aiohttp-2.0.2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e5d78fba3a9c650d8098bf2be878f1c1", "sha256": "1d5174582945172ef9f6d8e0be723b202700ae7b53b9dc78842d5e0f244398a1" }, "downloads": -1, "filename": "aiohttp-2.0.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "e5d78fba3a9c650d8098bf2be878f1c1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 252882, "upload_time": "2017-03-23T06:55:52", "upload_time_iso_8601": "2017-03-23T06:55:52.254983Z", "url": "https://files.pythonhosted.org/packages/7e/b1/f8a58b28b351415f2db7927d288f46e07feea1ea17d130b971e376e01cc8/aiohttp-2.0.2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d36aa0562ecfdcab5f5e77cd1c3412c5", "sha256": "226b4c0a90590f1a7e8956028dea7a844f33f86fd9f0921820953104d8e76317" }, "downloads": -1, "filename": "aiohttp-2.0.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "d36aa0562ecfdcab5f5e77cd1c3412c5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 258914, "upload_time": "2017-03-23T06:58:47", "upload_time_iso_8601": "2017-03-23T06:58:47.503705Z", "url": "https://files.pythonhosted.org/packages/38/d4/c2db825f8a1469adad1fc2f43e88af81c2444c142feb6b32b8ad86ac8f54/aiohttp-2.0.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1157439a69a058891005ae1be2388313", "sha256": "676404ba694c57f7c374679a6791e8932a97bf2e27ca5c96f0784788d9b4a09d" }, "downloads": -1, "filename": "aiohttp-2.0.2.tar.gz", "has_sig": false, "md5_digest": "1157439a69a058891005ae1be2388313", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 608051, "upload_time": "2017-03-23T07:02:51", "upload_time_iso_8601": "2017-03-23T07:02:51.688200Z", "url": "https://files.pythonhosted.org/packages/98/29/55f9ef5abc9f302a4dfb25903433735da6843717daca100ea73086df5c22/aiohttp-2.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "a2ec7b768cfa7bebb9029a8b05aa9f22", "sha256": "92b39e4986c058d261ae911306ec698c3cdefc1f1248d09bab38c6aa7fe0f4ae" }, "downloads": -1, "filename": "aiohttp-2.0.3-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a2ec7b768cfa7bebb9029a8b05aa9f22", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 419230, "upload_time": "2017-03-24T21:38:44", "upload_time_iso_8601": "2017-03-24T21:38:44.702775Z", "url": "https://files.pythonhosted.org/packages/a9/f4/1837ca87f2f45d2cdfe18418f55125308225154858634c799e81d600a08e/aiohttp-2.0.3-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6110de7a90c5ddd5fb61013230e41bb8", "sha256": "cdc8de7ff297e32b3dc9185bf42500d622ae82751c4051e979339209194a15d7" }, "downloads": -1, "filename": "aiohttp-2.0.3-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6110de7a90c5ddd5fb61013230e41bb8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 436663, "upload_time": "2017-03-24T21:35:38", "upload_time_iso_8601": "2017-03-24T21:35:38.823224Z", "url": "https://files.pythonhosted.org/packages/bd/3b/fe8317f27ee2cebb9d50391bb7c685cfcfd8e5886f8db39b6f8ed6ea6ca9/aiohttp-2.0.3-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e661c3f4ece600696790ab171e8f7908", "sha256": "3ff40440ec1cca04969cc801ef7e2a0436a6e73324d05d0fb519c8dbc0949141" }, "downloads": -1, "filename": "aiohttp-2.0.3-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "e661c3f4ece600696790ab171e8f7908", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 250977, "upload_time": "2017-03-24T21:39:14", "upload_time_iso_8601": "2017-03-24T21:39:14.455521Z", "url": "https://files.pythonhosted.org/packages/83/fa/fab4a33573c823d0da4b9f85e36d092db750ccb8cab4d9f0618be6a4e424/aiohttp-2.0.3-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f41b656b28e17c0151687771b459cbe3", "sha256": "947d2000ac6872b0345567d9897132f5a1139ab20d573a1f1f00a80923515564" }, "downloads": -1, "filename": "aiohttp-2.0.3-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "f41b656b28e17c0151687771b459cbe3", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 254629, "upload_time": "2017-03-24T21:41:30", "upload_time_iso_8601": "2017-03-24T21:41:30.216533Z", "url": "https://files.pythonhosted.org/packages/ca/f7/241235d2e11f1aa1f573c3c1727ff8c2f6cdd3b22f4585c5399f68e90ed1/aiohttp-2.0.3-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b5b68349baa6e928d6c1d867c214de73", "sha256": "63f25192d98518cae9d6b9c0f5ebefca039ff0d71f4ed5dc76200a7f22852f45" }, "downloads": -1, "filename": "aiohttp-2.0.3-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b5b68349baa6e928d6c1d867c214de73", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 617693, "upload_time": "2017-03-24T21:38:47", "upload_time_iso_8601": "2017-03-24T21:38:47.153866Z", "url": "https://files.pythonhosted.org/packages/ec/ae/1f53d9e8d78cf3cbfdea8cdfb4557153ede9a0521046f84ef01458b7de5b/aiohttp-2.0.3-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aab7dfe003c84b888c209f94767acbcf", "sha256": "db43d1fe9c4ac6cc928fde5772f56ef35489f475ee680c983e2c20f663ef016b" }, "downloads": -1, "filename": "aiohttp-2.0.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "aab7dfe003c84b888c209f94767acbcf", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 634010, "upload_time": "2017-03-24T21:35:41", "upload_time_iso_8601": "2017-03-24T21:35:41.210884Z", "url": "https://files.pythonhosted.org/packages/3c/03/32416b53af47075e99a397fdc737556b12b646502a4dee3c95aee53f853a/aiohttp-2.0.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ae69f5615b24f9495c8515c17c40d97", "sha256": "f9d21bf44238089b40fe26ca18126eaff503de89de4ffac5f17fab7f4addce90" }, "downloads": -1, "filename": "aiohttp-2.0.3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "4ae69f5615b24f9495c8515c17c40d97", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 251858, "upload_time": "2017-03-24T21:43:22", "upload_time_iso_8601": "2017-03-24T21:43:22.552535Z", "url": "https://files.pythonhosted.org/packages/6e/a8/64e613780f4c1fe4b6e6594b6562b98e67f1b05a9931d81b63c012cb9952/aiohttp-2.0.3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a41aeeff01d5fc86c5b220294ed46d78", "sha256": "2f029bc8a2ee287c119462d1ceed51c04dadc6a0400742e6536d5158d06b7481" }, "downloads": -1, "filename": "aiohttp-2.0.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "a41aeeff01d5fc86c5b220294ed46d78", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 257593, "upload_time": "2017-03-24T21:45:43", "upload_time_iso_8601": "2017-03-24T21:45:43.510989Z", "url": "https://files.pythonhosted.org/packages/37/8c/c5f09d22ab193d00e20823e3dcb71590f27bd8a331e76b7da9f37679f7a7/aiohttp-2.0.3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba39851bce2cb8278167fd25f50566f7", "sha256": "bee84d233f2daf38b8adf21989d8f607cbc39e8c7cb4637560406a7d8a2e9dff" }, "downloads": -1, "filename": "aiohttp-2.0.3-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ba39851bce2cb8278167fd25f50566f7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 626634, "upload_time": "2017-03-24T21:38:49", "upload_time_iso_8601": "2017-03-24T21:38:49.866136Z", "url": "https://files.pythonhosted.org/packages/70/b2/34c8f045c36a2822bc79765806218f16d49cedfb9d321867aece54f82e72/aiohttp-2.0.3-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b989cfaf72ce364e5e23858e2d866e6b", "sha256": "69d6ae27a23529e7b7cfdcffd02ce914a45f26cb7b0567c00ec4e6e14985216c" }, "downloads": -1, "filename": "aiohttp-2.0.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b989cfaf72ce364e5e23858e2d866e6b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 642604, "upload_time": "2017-03-24T21:35:44", "upload_time_iso_8601": "2017-03-24T21:35:44.830408Z", "url": "https://files.pythonhosted.org/packages/a0/c9/4d8e75017e9d109422743adeff61b8776b12dffaabfae5c6a2eeb90e1f42/aiohttp-2.0.3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6261c5e09cb47d280dbc737f720dcb4e", "sha256": "5c04df10427f39dcfca08919d27587035a5bc22df1fd04c09c2dded1d7d3b044" }, "downloads": -1, "filename": "aiohttp-2.0.3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "6261c5e09cb47d280dbc737f720dcb4e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 253085, "upload_time": "2017-03-24T21:47:55", "upload_time_iso_8601": "2017-03-24T21:47:55.455608Z", "url": "https://files.pythonhosted.org/packages/9f/7f/705610796155af2e7d76706c7fb54ff29fb59183e9a4912a2a7cf7dbe0f9/aiohttp-2.0.3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5bf9820f0f0e9f11e17b96cb23259894", "sha256": "1a77f5c0e3e6261aa48ba4ecd94bf2bf95f487c8058a90a5b26d9c56446016d3" }, "downloads": -1, "filename": "aiohttp-2.0.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "5bf9820f0f0e9f11e17b96cb23259894", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 259119, "upload_time": "2017-03-24T21:50:16", "upload_time_iso_8601": "2017-03-24T21:50:16.864780Z", "url": "https://files.pythonhosted.org/packages/42/87/30833cca40e0f46d7ab68d634ac17b33379e50e68c91caa273c8a9eebd78/aiohttp-2.0.3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a8200672a581211a196a1419d2dcf9b8", "sha256": "e7ab4bc22e36a455d604d6fce8b51afd41141d76052dfce3e447121af4e77acd" }, "downloads": -1, "filename": "aiohttp-2.0.3.tar.gz", "has_sig": false, "md5_digest": "a8200672a581211a196a1419d2dcf9b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 608479, "upload_time": "2017-03-24T21:48:59", "upload_time_iso_8601": "2017-03-24T21:48:59.164124Z", "url": "https://files.pythonhosted.org/packages/e4/82/7200bb3f94cf6009b3213a9d170525395fbc2587d97d961034785597b58d/aiohttp-2.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "9f960658932c35a653741d9b420e9b37", "sha256": "71f626bc45ebf309637da90ab646464f1b2f9ad630dbe37b90a21fea0403e5f3" }, "downloads": -1, "filename": "aiohttp-2.0.4-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "9f960658932c35a653741d9b420e9b37", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 419422, "upload_time": "2017-03-27T19:16:04", "upload_time_iso_8601": "2017-03-27T19:16:04.385441Z", "url": "https://files.pythonhosted.org/packages/e7/6e/83675cd2b660ceadab384c17766cc90fe0a8cefaefc2f26aecf2d272fd69/aiohttp-2.0.4-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c04e9e25e7380d343b772a33c45dca82", "sha256": "b60d303f247a0e9ffd452767acdc4aa916e091f5fd38eb82094db66999b1d5c0" }, "downloads": -1, "filename": "aiohttp-2.0.4-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c04e9e25e7380d343b772a33c45dca82", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 436870, "upload_time": "2017-03-27T19:12:20", "upload_time_iso_8601": "2017-03-27T19:12:20.922108Z", "url": "https://files.pythonhosted.org/packages/7e/8f/3d2bcbb69d90b89f39ad83100fe83c68848d6fb4e873474cea99f1dabcf5/aiohttp-2.0.4-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "01c67f9f9424628883632f59a937c151", "sha256": "c00d332c5720b6d2fb862c4a01c5ef5349481c2a9eca723c1bde3114f92d28e6" }, "downloads": -1, "filename": "aiohttp-2.0.4-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "01c67f9f9424628883632f59a937c151", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 251203, "upload_time": "2017-03-27T19:20:14", "upload_time_iso_8601": "2017-03-27T19:20:14.748518Z", "url": "https://files.pythonhosted.org/packages/49/02/c762eb1e8b7417551c117a104328ad7f7fca0869027aee767efc16abc0b3/aiohttp-2.0.4-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e98bf7819653b770d15e7b1f4c32b593", "sha256": "6e1702162479ca7afecaeb9193d93d7ef92261d0b4b6d39108cb64c408e2c849" }, "downloads": -1, "filename": "aiohttp-2.0.4-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "e98bf7819653b770d15e7b1f4c32b593", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 254854, "upload_time": "2017-03-27T19:23:01", "upload_time_iso_8601": "2017-03-27T19:23:01.996313Z", "url": "https://files.pythonhosted.org/packages/8b/2a/6bd41de03268ed1d2ac85dde3085f100062e4c4134d847098a46c1236d66/aiohttp-2.0.4-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8403e9bb2aad6f2a343ef2a84a5badbe", "sha256": "495b3de55754609fcbcc07a7d5be6905fe0395ecb73b80a80ca55a619c7bc42b" }, "downloads": -1, "filename": "aiohttp-2.0.4-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8403e9bb2aad6f2a343ef2a84a5badbe", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 617925, "upload_time": "2017-03-27T19:16:06", "upload_time_iso_8601": "2017-03-27T19:16:06.602515Z", "url": "https://files.pythonhosted.org/packages/02/29/f393a68cd780c6310ff4a72a883830ae5ef982ddb088de036c7511da9fff/aiohttp-2.0.4-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d91106bf4b33b65204bd5fb1e3aea7fc", "sha256": "0f4738047988494f36d855381b6ea60b9d024f229895026912215d73212e150e" }, "downloads": -1, "filename": "aiohttp-2.0.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d91106bf4b33b65204bd5fb1e3aea7fc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 634242, "upload_time": "2017-03-27T19:12:24", "upload_time_iso_8601": "2017-03-27T19:12:24.250589Z", "url": "https://files.pythonhosted.org/packages/e1/95/6c29b86db596c345d3c088a9abd6b42fa7629c8f652f8b2682642c616c1f/aiohttp-2.0.4-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cee830ef4a8c4daebe6e4a785efa58bb", "sha256": "c3a0ab445c7f82f6f3eba78004bef8a91c58548a8948bef76ea3087fbd04956b" }, "downloads": -1, "filename": "aiohttp-2.0.4-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "cee830ef4a8c4daebe6e4a785efa58bb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 252083, "upload_time": "2017-03-27T19:25:31", "upload_time_iso_8601": "2017-03-27T19:25:31.341531Z", "url": "https://files.pythonhosted.org/packages/53/f6/bf25eea49e05d34a694b03cdbe9677a62141f3df4f384d81deb29f6f35fc/aiohttp-2.0.4-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e86b8d89f5bd7ad5fcbbb6b4a8f7ebbb", "sha256": "a9177b01e163f037c0732ff9485d450573746fda18644089556a102a0a2364f1" }, "downloads": -1, "filename": "aiohttp-2.0.4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "e86b8d89f5bd7ad5fcbbb6b4a8f7ebbb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 257812, "upload_time": "2017-03-27T19:27:39", "upload_time_iso_8601": "2017-03-27T19:27:39.239663Z", "url": "https://files.pythonhosted.org/packages/96/7b/5f529eda81ab9e78deeb3f5a60c4cbf9f2f138d9029fcb998b1259e50902/aiohttp-2.0.4-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a56cb0823151154f9dff58565276ea90", "sha256": "043b083030e2b06c384225e3c92ab95c0dacdf8d82effdf9dc1392b46862f670" }, "downloads": -1, "filename": "aiohttp-2.0.4-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a56cb0823151154f9dff58565276ea90", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 626855, "upload_time": "2017-03-27T19:16:09", "upload_time_iso_8601": "2017-03-27T19:16:09.127589Z", "url": "https://files.pythonhosted.org/packages/14/ea/47fbd4c2fb2ced99957296825fe72d8cc7212617ea9de4b9b3237db14245/aiohttp-2.0.4-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8524a74528ba4875c4be4c5dcd2ce3bb", "sha256": "893d9bd45674a074e1ae201a1ff3ed8cfae52990c9dcc663705add3615cc604e" }, "downloads": -1, "filename": "aiohttp-2.0.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8524a74528ba4875c4be4c5dcd2ce3bb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 642814, "upload_time": "2017-03-27T19:12:26", "upload_time_iso_8601": "2017-03-27T19:12:26.554247Z", "url": "https://files.pythonhosted.org/packages/ec/c6/8be6d208a4d65a0f191542850d7068163e76a0ab66a2ed525897bf5b92ad/aiohttp-2.0.4-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2526ea9c454810184a7ae6a9b238ec7e", "sha256": "9c92b4da6402ef9eb376f8da4960535987369fdb05790cdcb2f35b373059f0b4" }, "downloads": -1, "filename": "aiohttp-2.0.4-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "2526ea9c454810184a7ae6a9b238ec7e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 253310, "upload_time": "2017-03-27T19:30:09", "upload_time_iso_8601": "2017-03-27T19:30:09.900630Z", "url": "https://files.pythonhosted.org/packages/67/bb/fa652b554b0ea04f97ca47581101abafb2afd4ac2b23243a76e23532fb6d/aiohttp-2.0.4-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "51e4a31ef6657e3ccf1598dce9413e62", "sha256": "bd03d0a8a0c7afeafd1c8a3cbce2cf1d41c509963c8211490924c8789eebd523" }, "downloads": -1, "filename": "aiohttp-2.0.4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "51e4a31ef6657e3ccf1598dce9413e62", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 259343, "upload_time": "2017-03-27T19:32:15", "upload_time_iso_8601": "2017-03-27T19:32:15.005899Z", "url": "https://files.pythonhosted.org/packages/f8/4e/c590da806fa04f5ce19ba3e48190805c92ebcbbc5567a25090087d299e40/aiohttp-2.0.4-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "16d1c51ddf21b2198fc630aa3413d46d", "sha256": "9471ec0a59ffa7810fe1d82fb70cacad045d741c6522328660925628c6001730" }, "downloads": -1, "filename": "aiohttp-2.0.4.tar.gz", "has_sig": false, "md5_digest": "16d1c51ddf21b2198fc630aa3413d46d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 608862, "upload_time": "2017-03-27T19:29:39", "upload_time_iso_8601": "2017-03-27T19:29:39.105775Z", "url": "https://files.pythonhosted.org/packages/e9/6e/550f4591bfa358c56e4f8abfdb6d99d747cf20d22af3cd56956165f7be81/aiohttp-2.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.5": [ { "comment_text": "", "digests": { "md5": "1ee3e16ba2160d728b6c83fe5e878691", "sha256": "ec40c131814650ea4f97449f3ad6431a58b4df6ddaa8b2d1e2da6f1c14129185" }, "downloads": -1, "filename": "aiohttp-2.0.5-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1ee3e16ba2160d728b6c83fe5e878691", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 419634, "upload_time": "2017-03-29T18:19:57", "upload_time_iso_8601": "2017-03-29T18:19:57.816096Z", "url": "https://files.pythonhosted.org/packages/e0/c1/110244b67ba6b2162649eeafc627e90f14237f2ff659091b25e3b6259293/aiohttp-2.0.5-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ff9d60b74da391db554cb6a1d4ed2e7", "sha256": "ed5096e883bffc2aa7cff7947c00e24c1ae9f6564b77a20e1f6c21f859d21e8c" }, "downloads": -1, "filename": "aiohttp-2.0.5-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0ff9d60b74da391db554cb6a1d4ed2e7", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 437068, "upload_time": "2017-03-29T18:16:29", "upload_time_iso_8601": "2017-03-29T18:16:29.877803Z", "url": "https://files.pythonhosted.org/packages/95/eb/7629df3681ffb6134e5a0540768c9d227b174551c30128a14b517d8dc5c9/aiohttp-2.0.5-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "33abd52c8d36fdc5eaa1db0bc5d5c471", "sha256": "cd97f51af2a05b16139435dd68b91c3adbb41069b32f2871c20dd43aeae702c0" }, "downloads": -1, "filename": "aiohttp-2.0.5-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "33abd52c8d36fdc5eaa1db0bc5d5c471", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 251403, "upload_time": "2017-03-29T18:14:14", "upload_time_iso_8601": "2017-03-29T18:14:14.216357Z", "url": "https://files.pythonhosted.org/packages/d1/b9/42cec32bf218291ffdc5b54645e393b382cd84ceabcbaed9c1c6581b6b7d/aiohttp-2.0.5-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7446a29548aaae43833ff491b049f9c5", "sha256": "74e3ce0bf3b48ed853ce4806af079620337f048d00e14743dcc35c26329b7af4" }, "downloads": -1, "filename": "aiohttp-2.0.5-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "7446a29548aaae43833ff491b049f9c5", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 255059, "upload_time": "2017-03-29T18:16:30", "upload_time_iso_8601": "2017-03-29T18:16:30.577645Z", "url": "https://files.pythonhosted.org/packages/00/4a/3a2c616e4d96d232f022a602c57afb44087b7022ca0425a4505ff2a92cac/aiohttp-2.0.5-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dd0632b334c3b257bc8507371ae099a7", "sha256": "72dae304a7aae4ba37036fa78f12c5d172c8c61372c7b7b826bbf80cbc60fc26" }, "downloads": -1, "filename": "aiohttp-2.0.5-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "dd0632b334c3b257bc8507371ae099a7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 618133, "upload_time": "2017-03-29T18:20:00", "upload_time_iso_8601": "2017-03-29T18:20:00.781955Z", "url": "https://files.pythonhosted.org/packages/73/27/f93d9f94e54358206488f12eeaa244b4534d6e4c2aa1a24c6b1fe7528ca8/aiohttp-2.0.5-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "77ef86ddcfac400fbebd91061f04fe26", "sha256": "acad1246adb4ff92ec4c3479118195de0f4a30df992e569fa5d0ae2fecbaa04d" }, "downloads": -1, "filename": "aiohttp-2.0.5-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "77ef86ddcfac400fbebd91061f04fe26", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 634453, "upload_time": "2017-03-29T18:16:31", "upload_time_iso_8601": "2017-03-29T18:16:31.996240Z", "url": "https://files.pythonhosted.org/packages/0f/3c/306aa198637cfaa909c7c6b35d6dd06c46492528a8288ee6fcbf48afc95e/aiohttp-2.0.5-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58b5c78e609949cf59e465ad3ee3c811", "sha256": "7d189387d9e8b6b2c7d9a8276f2f760bbdaced861f05960a08e77413a90b4f1d" }, "downloads": -1, "filename": "aiohttp-2.0.5-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "58b5c78e609949cf59e465ad3ee3c811", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 252287, "upload_time": "2017-03-29T18:18:40", "upload_time_iso_8601": "2017-03-29T18:18:40.053803Z", "url": "https://files.pythonhosted.org/packages/74/3f/a27028c78281639e83197e0694f6ac37a818bea2f697dee18e6a1a4caa26/aiohttp-2.0.5-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c31ec86fbb05aba711f1f859ce8e9b50", "sha256": "95d2d2345fafa5de31b472443ca9a06e722af7be7e7364be033da5d60be272fa" }, "downloads": -1, "filename": "aiohttp-2.0.5-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "c31ec86fbb05aba711f1f859ce8e9b50", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 258018, "upload_time": "2017-03-29T18:21:20", "upload_time_iso_8601": "2017-03-29T18:21:20.910057Z", "url": "https://files.pythonhosted.org/packages/de/19/ce25aa37c996d7b157aab9b002949d3a2fb42eaee60fd5471db1a057ad47/aiohttp-2.0.5-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1a4c6304353bf01ecf401789225d1b6e", "sha256": "94aff570b3e8fe9659e7d42bc8811914c0fcf6a4a6f4fc7aa3cbf1440b03df6b" }, "downloads": -1, "filename": "aiohttp-2.0.5-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1a4c6304353bf01ecf401789225d1b6e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 627058, "upload_time": "2017-03-29T18:20:02", "upload_time_iso_8601": "2017-03-29T18:20:02.964436Z", "url": "https://files.pythonhosted.org/packages/bc/cc/4145eee8b0149a615375172ca7e34438688a008715d8a1a58c5918693672/aiohttp-2.0.5-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "09351f21094ec3d60135630c01dc03d3", "sha256": "59e5d0007857e0c10dc2c2aff6a6edab7719b64ebac0880a5f03d8033514a287" }, "downloads": -1, "filename": "aiohttp-2.0.5-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "09351f21094ec3d60135630c01dc03d3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 643016, "upload_time": "2017-03-29T18:16:35", "upload_time_iso_8601": "2017-03-29T18:16:35.357059Z", "url": "https://files.pythonhosted.org/packages/b2/ed/f66e1484b4247a21db7851706dd6234fdde69f6a8db2731ccaee498e4ef6/aiohttp-2.0.5-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c720dcc923b3b910b4ac14dd1267e493", "sha256": "c1683ff2734b11105a085fc51bc1dd9f689689d17701dbe86a5f0eb575ff7b58" }, "downloads": -1, "filename": "aiohttp-2.0.5-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "c720dcc923b3b910b4ac14dd1267e493", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 253516, "upload_time": "2017-03-29T18:23:34", "upload_time_iso_8601": "2017-03-29T18:23:34.815675Z", "url": "https://files.pythonhosted.org/packages/ba/ef/c56f418a73681e48683d647480690ca42a91c9091545be7e98ae5f4f43e8/aiohttp-2.0.5-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4c9913f69d0ee5552e55f8fadb4fe68", "sha256": "0d0b34979c67c2d80443d3b30ce0a7ded92379c0b9892b98ca0c6c92dd03feb4" }, "downloads": -1, "filename": "aiohttp-2.0.5-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "d4c9913f69d0ee5552e55f8fadb4fe68", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 259544, "upload_time": "2017-03-29T18:25:46", "upload_time_iso_8601": "2017-03-29T18:25:46.651328Z", "url": "https://files.pythonhosted.org/packages/59/b7/dbad48fb9bab266259f0979f88ad61d028a0b70a16ceeb340ae946b2ac15/aiohttp-2.0.5-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68e896d943db6059f97013ea4947b49a", "sha256": "ea5d251f8a0a2734e3c19f293307560b9bf52b300e69fdae3060bffb0c433714" }, "downloads": -1, "filename": "aiohttp-2.0.5.tar.gz", "has_sig": false, "md5_digest": "68e896d943db6059f97013ea4947b49a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 609340, "upload_time": "2017-03-29T18:24:19", "upload_time_iso_8601": "2017-03-29T18:24:19.246288Z", "url": "https://files.pythonhosted.org/packages/ba/f0/59bead4038ccc3f42d2dfdcab43bfb6411684bfb0d0764948c778e0f15a8/aiohttp-2.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.6": [ { "comment_text": "", "digests": { "md5": "17207ea5e9fe0a4e16d2cc02f683efe2", "sha256": "0b285c8a5b2cad31c4040039696ead3cbb8a35fb44eb8ab0b1b7840fba3085f0" }, "downloads": -1, "filename": "aiohttp-2.0.6-1.tar.gz", "has_sig": false, "md5_digest": "17207ea5e9fe0a4e16d2cc02f683efe2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1110103, "upload_time": "2017-04-08T17:40:49", "upload_time_iso_8601": "2017-04-08T17:40:49.161693Z", "url": "https://files.pythonhosted.org/packages/66/3f/eac06f68743e2654915650de34893391ff1006cd144a48655d2f75084e17/aiohttp-2.0.6-1.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b0c093c16e3d41b19f2196e4dd5b246", "sha256": "c61668680a509641a02bebf695cf5d5d1a2347d1cd59f9df89e5a50129a9c776" }, "downloads": -1, "filename": "aiohttp-2.0.6-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3b0c093c16e3d41b19f2196e4dd5b246", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 419892, "upload_time": "2017-04-06T15:16:49", "upload_time_iso_8601": "2017-04-06T15:16:49.958912Z", "url": "https://files.pythonhosted.org/packages/c7/73/82bd8ee6b8d9096ecc9c9d700e3404f5656b336379b1664ce7af1df48cf7/aiohttp-2.0.6-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "21bd3a4ebaf943fbe13a90974a29fd72", "sha256": "185beeaa223360123ee0cb8466e2d2d55e268f8773c6423b93d5e90216ce4f9a" }, "downloads": -1, "filename": "aiohttp-2.0.6-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "21bd3a4ebaf943fbe13a90974a29fd72", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 437335, "upload_time": "2017-04-06T15:13:32", "upload_time_iso_8601": "2017-04-06T15:13:32.247608Z", "url": "https://files.pythonhosted.org/packages/a6/5b/6b0de3d930fae2ef3a9af64f6cd7959ecdfecfd14cd6ad3004fac6d662ea/aiohttp-2.0.6-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "facf87a841e408cc4e3c9812746eadb0", "sha256": "aa74c29d54d0f2c99aa2a3f39922030f46442959dfcc2da77c2317814c0d43b7" }, "downloads": -1, "filename": "aiohttp-2.0.6-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "facf87a841e408cc4e3c9812746eadb0", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 251686, "upload_time": "2017-04-06T15:07:54", "upload_time_iso_8601": "2017-04-06T15:07:54.577765Z", "url": "https://files.pythonhosted.org/packages/8f/70/6ed1452a0d724886ed188ddd884049136839d3fbcaf36292c245ad7ac290/aiohttp-2.0.6-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "238daf1765b06bb54128b7c810d62405", "sha256": "f755fece844063c48bdda95ce51f7706f7344dd32c8f20ad99f0367a8c62dcc3" }, "downloads": -1, "filename": "aiohttp-2.0.6-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "238daf1765b06bb54128b7c810d62405", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 255316, "upload_time": "2017-04-06T15:10:17", "upload_time_iso_8601": "2017-04-06T15:10:17.433701Z", "url": "https://files.pythonhosted.org/packages/bc/6c/e2e9eb6c3d6b6a9adc938af06da0cc86c12bf272c9c9e0691db680f11c76/aiohttp-2.0.6-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "004d00ff70474c7d996a49249f8a6b80", "sha256": "c84dbf4286a23d56a41957a8ec10959643a67dea92fb5cf32f9bdf6d61117048" }, "downloads": -1, "filename": "aiohttp-2.0.6-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "004d00ff70474c7d996a49249f8a6b80", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 618635, "upload_time": "2017-04-06T15:16:52", "upload_time_iso_8601": "2017-04-06T15:16:52.898795Z", "url": "https://files.pythonhosted.org/packages/cc/8d/d9d720f2de9c90b2776098da1e4eebf8c578171946c28a9ac68dcc9e6551/aiohttp-2.0.6-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "36cc40b8204762820b46daaf35b29797", "sha256": "4a7e10226cee4b69c3eba810fa560622b86df6682e1dfbe21b8cfbbe6eabd8f0" }, "downloads": -1, "filename": "aiohttp-2.0.6-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "36cc40b8204762820b46daaf35b29797", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 634876, "upload_time": "2017-04-06T15:13:36", "upload_time_iso_8601": "2017-04-06T15:13:36.495113Z", "url": "https://files.pythonhosted.org/packages/60/ab/b19d90bed6e4dc932d398b5a1583dbc57e38bc4bd14532cb8b29e46b9212/aiohttp-2.0.6-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d2d3ed97ce9fdd2089df7fd7612f13cd", "sha256": "6971be0fcbccab4e736bbda9880a0f5598260997f7d1607b0a7d8b493e8fbc46" }, "downloads": -1, "filename": "aiohttp-2.0.6-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "d2d3ed97ce9fdd2089df7fd7612f13cd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 252557, "upload_time": "2017-04-06T15:12:05", "upload_time_iso_8601": "2017-04-06T15:12:05.831882Z", "url": "https://files.pythonhosted.org/packages/cf/3e/0d1129bd6cfe0676fac1b0e6ff97c26f72ae29cd95c7c831770f9352755e/aiohttp-2.0.6-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "381746587fa0c5570981a816a8d66b79", "sha256": "787508a954f204873eee631064c30b3382c423a9761678b8e8bf88e3c86f875f" }, "downloads": -1, "filename": "aiohttp-2.0.6-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "381746587fa0c5570981a816a8d66b79", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 258299, "upload_time": "2017-04-06T15:14:51", "upload_time_iso_8601": "2017-04-06T15:14:51.760955Z", "url": "https://files.pythonhosted.org/packages/76/56/00db4a12cc5dd49d5eb60e5fe3878bdf5b4b3caa9b5ffc07a0c184b4a6d5/aiohttp-2.0.6-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43fcb0bc85098d786fb3f090759b22ab", "sha256": "1ff4fa51d8c902323f217f0b75914ac7f84a3e2b06e2bc14873daa31b0bc68fa" }, "downloads": -1, "filename": "aiohttp-2.0.6-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "43fcb0bc85098d786fb3f090759b22ab", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 627492, "upload_time": "2017-04-06T15:16:56", "upload_time_iso_8601": "2017-04-06T15:16:56.014604Z", "url": "https://files.pythonhosted.org/packages/bc/0f/6fced0461aa12e75731aed06e40c46bc8dbd5170caeaa74fa69d3c395fa0/aiohttp-2.0.6-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "40f5daaead51dbd6e4136f993bd6d37d", "sha256": "4419e5caeb81c3bcfbd7c749212f7873f3c8696db1d3e8d9e515a2de5dab949f" }, "downloads": -1, "filename": "aiohttp-2.0.6-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "40f5daaead51dbd6e4136f993bd6d37d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 643528, "upload_time": "2017-04-06T15:13:47", "upload_time_iso_8601": "2017-04-06T15:13:47.619290Z", "url": "https://files.pythonhosted.org/packages/35/1a/d94737c2170554ce9f1d2189ec4de7d4bad8b5e94b2ad48f77d70f6a122f/aiohttp-2.0.6-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c6ae43142c01f1130c63965119185e91", "sha256": "4ebb0d75b19d0f411711793267a488671b49402ebf65af8d6a56b48ad7c9ec47" }, "downloads": -1, "filename": "aiohttp-2.0.6-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "c6ae43142c01f1130c63965119185e91", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 253782, "upload_time": "2017-04-06T15:16:50", "upload_time_iso_8601": "2017-04-06T15:16:50.976792Z", "url": "https://files.pythonhosted.org/packages/71/93/8dc3bf67c6e04a4ccd9cb907be50c1d13060ece0f7bf1217c2d27f3bfafd/aiohttp-2.0.6-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c9d0b3bb4e4aeb0676fb3457563d5f5b", "sha256": "d7466bf92e101cc52ab8aa118588b1fc9665b10a59bd653171b27087f880e63a" }, "downloads": -1, "filename": "aiohttp-2.0.6-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "c9d0b3bb4e4aeb0676fb3457563d5f5b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 259820, "upload_time": "2017-04-06T15:18:47", "upload_time_iso_8601": "2017-04-06T15:18:47.763713Z", "url": "https://files.pythonhosted.org/packages/f9/57/0b88c54f327ecb6e176a8d25233f03c9907c1679f8248f2e481532e20919/aiohttp-2.0.6-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "2.0.7": [ { "comment_text": "", "digests": { "md5": "f1a436e745adfc057af5f5fddb68d181", "sha256": "a2ae98eb19afb6bc1974681fefab27582b06d164ed1766ae129bfd1e2f47dd6b" }, "downloads": -1, "filename": "aiohttp-2.0.7-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f1a436e745adfc057af5f5fddb68d181", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 420065, "upload_time": "2017-04-12T22:50:12", "upload_time_iso_8601": "2017-04-12T22:50:12.110663Z", "url": "https://files.pythonhosted.org/packages/f4/63/ad9ab1e6d151252462ac36191f2a9a728e0e90ed35635a042bd7d4b13515/aiohttp-2.0.7-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f83946802b6d75a42da1a3271ed921f9", "sha256": "1f6c065607f620d0c7ef33bb1bc6f49048b660bd5547c5e6f45b5fe008f0f75c" }, "downloads": -1, "filename": "aiohttp-2.0.7-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f83946802b6d75a42da1a3271ed921f9", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 437511, "upload_time": "2017-04-12T22:46:53", "upload_time_iso_8601": "2017-04-12T22:46:53.589139Z", "url": "https://files.pythonhosted.org/packages/f1/49/ac07b473443361208ed82e4b6caf5d103161c2c71b01b6f8a4d7c019eb3e/aiohttp-2.0.7-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9801e6006ece825c319f5fd23f94ee79", "sha256": "63bc53c8bfe872dbf5839db5e0ecd1fc77eb3bebc82a7c918b3dcbac5f13b859" }, "downloads": -1, "filename": "aiohttp-2.0.7-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "9801e6006ece825c319f5fd23f94ee79", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 251854, "upload_time": "2017-04-12T22:39:10", "upload_time_iso_8601": "2017-04-12T22:39:10.859680Z", "url": "https://files.pythonhosted.org/packages/37/1e/efbd0fde15a562b703fa705edec255dc1cc4405c039cd3ab48266a81f8d1/aiohttp-2.0.7-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "385eed22019c10083cf9b1e126c1a71e", "sha256": "3300a6af381deb018f48de7a49b8585ba37fd30efae8afcce3f66213b102483a" }, "downloads": -1, "filename": "aiohttp-2.0.7-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "385eed22019c10083cf9b1e126c1a71e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 618805, "upload_time": "2017-04-12T22:50:14", "upload_time_iso_8601": "2017-04-12T22:50:14.281380Z", "url": "https://files.pythonhosted.org/packages/ca/46/73e90531eb27fc69756910f4cf4294f2631b4e214fadf9b0a0f2c7883746/aiohttp-2.0.7-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4a85aefa6986a8c4995c812bf73862bc", "sha256": "3568111ef0bc927693b6f218d86e6b47c4068b293f1b48e0ffe766a2f6bbe116" }, "downloads": -1, "filename": "aiohttp-2.0.7-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4a85aefa6986a8c4995c812bf73862bc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 635030, "upload_time": "2017-04-12T22:46:56", "upload_time_iso_8601": "2017-04-12T22:46:56.929998Z", "url": "https://files.pythonhosted.org/packages/eb/ae/935f456bcae96d00cd78ba6e1a28580702b30cf1cc14ce1f1067b1945095/aiohttp-2.0.7-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aaa94ee758092fccf6e9120b8fddb7b4", "sha256": "eee289fb0097a7a154534ce7169eb5bc695ecb00008a98d8731206ebb85c042b" }, "downloads": -1, "filename": "aiohttp-2.0.7-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "aaa94ee758092fccf6e9120b8fddb7b4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 627666, "upload_time": "2017-04-12T22:50:16", "upload_time_iso_8601": "2017-04-12T22:50:16.623259Z", "url": "https://files.pythonhosted.org/packages/36/6f/ca9a01827ce5d8689a3d6b127aad8435588032b8d2cb847e980f7741f309/aiohttp-2.0.7-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7b12a075df37faf47780d410cc12d913", "sha256": "18be84041ef293554a85be224cf36e6058011e705dd10dbef4f10044ad6ca153" }, "downloads": -1, "filename": "aiohttp-2.0.7-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7b12a075df37faf47780d410cc12d913", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 643683, "upload_time": "2017-04-12T22:46:59", "upload_time_iso_8601": "2017-04-12T22:46:59.273529Z", "url": "https://files.pythonhosted.org/packages/8f/31/e4f21953634bf4b505d30a415de0df6ccb7ca481e38ebdf8451389903933/aiohttp-2.0.7-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1ae6e69655389cbd0c81346492267314", "sha256": "76bfd47ee7fbda115cff486c3944fcb237ecbf6195bf2943fae74052fb40c4fe" }, "downloads": -1, "filename": "aiohttp-2.0.7.tar.gz", "has_sig": false, "md5_digest": "1ae6e69655389cbd0c81346492267314", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 739606, "upload_time": "2017-04-12T22:53:33", "upload_time_iso_8601": "2017-04-12T22:53:33.994242Z", "url": "https://files.pythonhosted.org/packages/f1/1a/e6090179b3c272c6e437cc6e0d78be6220727a7bdc9ee74bef214144c5d3/aiohttp-2.0.7.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "1bb0dd6da744b431ff53943a88c0d1a3", "sha256": "a286c122822410338cae3bb6b87c389d13151c5d3c781e17213f8b89ebef3602" }, "downloads": -1, "filename": "aiohttp-2.1.0-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1bb0dd6da744b431ff53943a88c0d1a3", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 433813, "upload_time": "2017-05-26T14:47:07", "upload_time_iso_8601": "2017-05-26T14:47:07.441705Z", "url": "https://files.pythonhosted.org/packages/cb/a8/4d90644b60a166c7389b89e16dcb97b3df88a748c419bba5692417fe090a/aiohttp-2.1.0-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4c166df38dd7c6cfb037b87fea9f07f", "sha256": "40e8132f064618f08ba8797267c805f57a8b1c4f32f08bf5c6964e9a2dd4f4a8" }, "downloads": -1, "filename": "aiohttp-2.1.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d4c166df38dd7c6cfb037b87fea9f07f", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 451061, "upload_time": "2017-05-26T14:43:26", "upload_time_iso_8601": "2017-05-26T14:43:26.799832Z", "url": "https://files.pythonhosted.org/packages/8d/4c/08e5b8432f87a2e35e4cf1b947859750d95976f129db335e91c4e2f888f2/aiohttp-2.1.0-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "10e3edf9f4e70f0ea8a06fa58b8db988", "sha256": "9db769467be396f8569d88964b3b4d1e1a1002d8d420dd057123a2c7b2f95adc" }, "downloads": -1, "filename": "aiohttp-2.1.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "10e3edf9f4e70f0ea8a06fa58b8db988", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 260524, "upload_time": "2017-05-26T14:44:16", "upload_time_iso_8601": "2017-05-26T14:44:16.657896Z", "url": "https://files.pythonhosted.org/packages/ec/01/cb15675d9bbca54f67cc176bc098d839357bf5053ff737860c4c02083098/aiohttp-2.1.0-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d7ff912b5c712002fefca28c685c664f", "sha256": "b3fb47c9f8772e5e31a55244f99751650b7efb11f3f381ad596d978fb906856b" }, "downloads": -1, "filename": "aiohttp-2.1.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "d7ff912b5c712002fefca28c685c664f", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 264174, "upload_time": "2017-05-26T14:46:48", "upload_time_iso_8601": "2017-05-26T14:46:48.866541Z", "url": "https://files.pythonhosted.org/packages/80/4e/b6d4a137d706063ba7e91609787f42ab8d0d67e324de7c49cc2680b7de69/aiohttp-2.1.0-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "51817e4b7809a8c3b04e55151e1194f6", "sha256": "d5cf7c61df6544af81eda5f43020a5a02e9f1c7ec52fd0f2b113397bd5034911" }, "downloads": -1, "filename": "aiohttp-2.1.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "51817e4b7809a8c3b04e55151e1194f6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 635626, "upload_time": "2017-05-26T14:47:10", "upload_time_iso_8601": "2017-05-26T14:47:10.456557Z", "url": "https://files.pythonhosted.org/packages/bb/6e/4420a6e254e5957c428d37a27eea3f6510d1a57733362da60041f37d69c5/aiohttp-2.1.0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f426531661dd88b3acd29cda987fe9ca", "sha256": "36a12a8373bc50cac00d3577820c6f14e7ac3aea301f72d954a6ae17b73629ef" }, "downloads": -1, "filename": "aiohttp-2.1.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f426531661dd88b3acd29cda987fe9ca", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 652600, "upload_time": "2017-05-26T14:43:30", "upload_time_iso_8601": "2017-05-26T14:43:30.058497Z", "url": "https://files.pythonhosted.org/packages/22/ab/8bb0a7d214a30238303c6959ae3d8a06fbfa1e2f0047be96a595ff376852/aiohttp-2.1.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c403b020ad9ab439177f48a712bff02f", "sha256": "c85e0494988067a91b57388cdbbcf5a4c31213b919fd72b73ba941f29e08014c" }, "downloads": -1, "filename": "aiohttp-2.1.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "c403b020ad9ab439177f48a712bff02f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 261061, "upload_time": "2017-05-26T14:48:57", "upload_time_iso_8601": "2017-05-26T14:48:57.389823Z", "url": "https://files.pythonhosted.org/packages/03/15/86ed07661a1436077e9da1f5fc48d5abe4350dc082b8384155ccf3b12935/aiohttp-2.1.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f4670fb62bd92ab368d068bd8f7e769", "sha256": "932d42f114b690e05248170f563fdf3d5e35d581fd7b2f2fecc8eaef3b7f2fbc" }, "downloads": -1, "filename": "aiohttp-2.1.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "3f4670fb62bd92ab368d068bd8f7e769", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 266964, "upload_time": "2017-05-26T14:51:39", "upload_time_iso_8601": "2017-05-26T14:51:39.982838Z", "url": "https://files.pythonhosted.org/packages/f3/c4/41dc17ee874f0973096c3aa79c6e9b115820bd707cf1018b6b0b75c11fd6/aiohttp-2.1.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "839cada4bf41865307f94b504f2893a0", "sha256": "dbc24980b4d6c7f669909e476de135e677bcab3a2ff699fff2ff2d74868aa44e" }, "downloads": -1, "filename": "aiohttp-2.1.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "839cada4bf41865307f94b504f2893a0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 644248, "upload_time": "2017-05-26T14:47:13", "upload_time_iso_8601": "2017-05-26T14:47:13.709833Z", "url": "https://files.pythonhosted.org/packages/61/59/de41ce812acce08b24183f7076764015b721fbc7025c01ae6708c1ae9084/aiohttp-2.1.0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "04f08e76125840d31fbf16d49cb7d122", "sha256": "f26aab1480ada5b80e963f4f9bce870d3d5bd0c1e883b7e0d9c622ea190418d5" }, "downloads": -1, "filename": "aiohttp-2.1.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "04f08e76125840d31fbf16d49cb7d122", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 661518, "upload_time": "2017-05-26T14:43:33", "upload_time_iso_8601": "2017-05-26T14:43:33.526622Z", "url": "https://files.pythonhosted.org/packages/fe/d7/df8b17f2f2ed460ad67a35656c5e62d28ab983bb0f55c136ff58f5ace395/aiohttp-2.1.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ae942d030d8a7ef73c78e3fb9d571a3", "sha256": "d9fe9c417ce9ff3ca56fcba9af62a23f31364f935a1e3dba9e6695118dc4072c" }, "downloads": -1, "filename": "aiohttp-2.1.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "3ae942d030d8a7ef73c78e3fb9d571a3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 262394, "upload_time": "2017-05-26T14:54:11", "upload_time_iso_8601": "2017-05-26T14:54:11.168420Z", "url": "https://files.pythonhosted.org/packages/1a/62/b44f988ed2dd993b803ae9c08a07053333c592eb3fdcafb96c63c6accd47/aiohttp-2.1.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c710d6d4cd15db2684dd057e743efe57", "sha256": "88efaf9c9a3c5510e285bca0245156187f1e1d7fcd7b53682d09a592c5981375" }, "downloads": -1, "filename": "aiohttp-2.1.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "c710d6d4cd15db2684dd057e743efe57", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 268519, "upload_time": "2017-05-26T14:56:26", "upload_time_iso_8601": "2017-05-26T14:56:26.633795Z", "url": "https://files.pythonhosted.org/packages/0f/08/8c19f170797769627a73bcba9914004e84a0ee0bb344029cb34bc003390b/aiohttp-2.1.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "52c94bf1735485d9e02fd097ff7d7db9", "sha256": "3e80d944e9295b1360e422d89746b99e23a99118420f826f990a632d284e21df" }, "downloads": -1, "filename": "aiohttp-2.1.0.tar.gz", "has_sig": false, "md5_digest": "52c94bf1735485d9e02fd097ff7d7db9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 748642, "upload_time": "2017-05-26T15:05:11", "upload_time_iso_8601": "2017-05-26T15:05:11.315001Z", "url": "https://files.pythonhosted.org/packages/cf/4a/bec3705f07294d9a4057fe5abd93ca89f52149931301674e1e6a9dd66366/aiohttp-2.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "11cf61f4e97c928aa0fccb8cad896557", "sha256": "019daf6428df624322f6063449bf81c3971b6c77778980ef7e9a56c25aea22f3" }, "downloads": -1, "filename": "aiohttp-2.2.0-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "11cf61f4e97c928aa0fccb8cad896557", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 535182, "upload_time": "2017-06-20T11:52:18", "upload_time_iso_8601": "2017-06-20T11:52:18.964563Z", "url": "https://files.pythonhosted.org/packages/05/b5/881604e573da60cc8c9674a049fea97bb0696cd240a1eca3516327e3966b/aiohttp-2.2.0-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d27942db86c3b96999b78831ace03e04", "sha256": "c39f00b8ab8fbc734a7045e0aa9b8302ffd9512dbe58be82b49cf0780d83a457" }, "downloads": -1, "filename": "aiohttp-2.2.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d27942db86c3b96999b78831ace03e04", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 559103, "upload_time": "2017-06-20T11:48:59", "upload_time_iso_8601": "2017-06-20T11:48:59.481125Z", "url": "https://files.pythonhosted.org/packages/6c/d1/41f69670e35b703c9a0c4927197b0b73e2d2f5e863c14dea7ec71a624014/aiohttp-2.2.0-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ec71c19476b2422b4a633cd018377618", "sha256": "2271e5d173a491304c72c63b81c00233baa8bdba6b7f3d31884aa7b5ae5331e0" }, "downloads": -1, "filename": "aiohttp-2.2.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "ec71c19476b2422b4a633cd018377618", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 308277, "upload_time": "2017-06-20T11:40:39", "upload_time_iso_8601": "2017-06-20T11:40:39.814044Z", "url": "https://files.pythonhosted.org/packages/da/ba/9f67e50a9fe0b9a0a9a8eac5cca7a794f7299deacb48e91878bf38cad4bb/aiohttp-2.2.0-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "94d1c5d3969997873c8acd43ed338fd8", "sha256": "ac0ae873d99ca56999e5df53e3c9db7f4970ddd22b8affaa5f84fdb275720631" }, "downloads": -1, "filename": "aiohttp-2.2.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "94d1c5d3969997873c8acd43ed338fd8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 313593, "upload_time": "2017-06-20T11:43:52", "upload_time_iso_8601": "2017-06-20T11:43:52.889233Z", "url": "https://files.pythonhosted.org/packages/13/7f/1722ce2352c7ea1754ffad8a193febd0129231b28508dae583aaba7c55a2/aiohttp-2.2.0-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "30760f072b525ced98456378534e44f1", "sha256": "501a8e5dd5c30518e5babc99b2158225593b4a9c5263e648eaf4c67ff05ea2d0" }, "downloads": -1, "filename": "aiohttp-2.2.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "30760f072b525ced98456378534e44f1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 735526, "upload_time": "2017-06-20T11:52:22", "upload_time_iso_8601": "2017-06-20T11:52:22.382525Z", "url": "https://files.pythonhosted.org/packages/7a/29/b99c0574abd9f92632164e95d643262b8bc6319a5e78fc6b2b1143defbfe/aiohttp-2.2.0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c1b4d78f0874fc4a168e8ce8a2708121", "sha256": "2b19c3fc595d7a37d5445405b87ec9e9746d19c7e7b15c5d08a975bf0a1cbaf8" }, "downloads": -1, "filename": "aiohttp-2.2.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c1b4d78f0874fc4a168e8ce8a2708121", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 758612, "upload_time": "2017-06-20T11:49:02", "upload_time_iso_8601": "2017-06-20T11:49:02.168280Z", "url": "https://files.pythonhosted.org/packages/2b/b8/f8331846fc582bb8c24c0425cfa32bf5d00446be080316cf2a7296fbd6e0/aiohttp-2.2.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d36a95bd332aab38f937c2da461ed35", "sha256": "54f1e6c6fc86001c88013341198af77678a146201c0a9cbcf452e12f97ce8c21" }, "downloads": -1, "filename": "aiohttp-2.2.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "8d36a95bd332aab38f937c2da461ed35", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 309408, "upload_time": "2017-06-20T11:46:02", "upload_time_iso_8601": "2017-06-20T11:46:02.638148Z", "url": "https://files.pythonhosted.org/packages/83/3b/3ddadde2f3b55340315bdfeb1a7287d0cf3030e6f87010b6def4606f63c3/aiohttp-2.2.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d2e338eb47cb40f0ba748c8c22dbf2d3", "sha256": "9984e859dc27eeb1f5a507df356ce02d96ffeccdce5ce3f7c549d87ad1709ea4" }, "downloads": -1, "filename": "aiohttp-2.2.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "d2e338eb47cb40f0ba748c8c22dbf2d3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 318087, "upload_time": "2017-06-20T11:48:26", "upload_time_iso_8601": "2017-06-20T11:48:26.542724Z", "url": "https://files.pythonhosted.org/packages/34/00/99528c6d9af5fd7ef53eafb21732b8e32af357dec20d19900b90b2feb9ae/aiohttp-2.2.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "afc4707b74c2315fdd8ef00b74092900", "sha256": "5935f37db277fcc552b7ce41210175bd54589185c8908726a652090b4430efda" }, "downloads": -1, "filename": "aiohttp-2.2.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "afc4707b74c2315fdd8ef00b74092900", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 748690, "upload_time": "2017-06-20T11:52:25", "upload_time_iso_8601": "2017-06-20T11:52:25.275828Z", "url": "https://files.pythonhosted.org/packages/4a/81/a73812ce6b84d3d3d151333e357575ba3c340df820f853ec534076c66aa4/aiohttp-2.2.0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b1c72538840a8c766b0b4e4fef0b642", "sha256": "ec2cb06d1c68ae31077f4eb043b2a2586b0d25285f9a15bae6d27c4b46c4afcc" }, "downloads": -1, "filename": "aiohttp-2.2.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5b1c72538840a8c766b0b4e4fef0b642", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 770289, "upload_time": "2017-06-20T11:49:04", "upload_time_iso_8601": "2017-06-20T11:49:04.833131Z", "url": "https://files.pythonhosted.org/packages/d6/a1/588eabb1d227137ffaf5de3b7ab35b603c469d45542c228abe3e70a3abd4/aiohttp-2.2.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "02ec61e8b46307bd075f3259f462c142", "sha256": "57b00f09f7de8cde740c7f01cc62c430ce97c20949d8bf965bf8afa508a4f9b9" }, "downloads": -1, "filename": "aiohttp-2.2.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "02ec61e8b46307bd075f3259f462c142", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 310952, "upload_time": "2017-06-20T11:50:48", "upload_time_iso_8601": "2017-06-20T11:50:48.138052Z", "url": "https://files.pythonhosted.org/packages/d9/e5/c44461bb7574feaf40dec59b8c6cee2845ff91b33caa5766bc7ae23e75a5/aiohttp-2.2.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ac343a6480f132448822419340918b1", "sha256": "902ce0ab5b17a44fdff71edd3461229f07aa23c03412ed4d938f8d9cce4c92c4" }, "downloads": -1, "filename": "aiohttp-2.2.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "6ac343a6480f132448822419340918b1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 319726, "upload_time": "2017-06-20T11:53:19", "upload_time_iso_8601": "2017-06-20T11:53:19.238206Z", "url": "https://files.pythonhosted.org/packages/1c/b6/445d55221b983c28a21489a626c537810b4bfb9bd8639934571454bbcd21/aiohttp-2.2.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e50ea3d70f2d821b7e40442fb470e8ef", "sha256": "1558ba6896c2ed4e1b3cbdc4ba479b4a03a0c1433af2fe23704d2959a0c5191e" }, "downloads": -1, "filename": "aiohttp-2.2.0.tar.gz", "has_sig": false, "md5_digest": "e50ea3d70f2d821b7e40442fb470e8ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 781951, "upload_time": "2017-06-20T12:00:01", "upload_time_iso_8601": "2017-06-20T12:00:01.868987Z", "url": "https://files.pythonhosted.org/packages/38/db/8cff056477179e480142c5c9ed673489f91b7e65945405bcd1449f8c2db6/aiohttp-2.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "5f0fefbc0300dee5cd9997b3b763e437", "sha256": "0640fd4350343728c2edd1ec5e03e0d1ca17e239b91e09d7fb320ff802fa4b6a" }, "downloads": -1, "filename": "aiohttp-2.2.1-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5f0fefbc0300dee5cd9997b3b763e437", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 535300, "upload_time": "2017-07-02T18:12:09", "upload_time_iso_8601": "2017-07-02T18:12:09.342559Z", "url": "https://files.pythonhosted.org/packages/90/92/a8d6021aeb69f5a9e11d3a41bbe60dbd1fd0e87df736be53645da458943b/aiohttp-2.2.1-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b09b1658cf7b7c2b831ee0cec357e349", "sha256": "8de0485e52a86171421d6655e17c73690dd7e4e282d4cd0c41c889e62f1afb9e" }, "downloads": -1, "filename": "aiohttp-2.2.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b09b1658cf7b7c2b831ee0cec357e349", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 559235, "upload_time": "2017-07-02T18:08:47", "upload_time_iso_8601": "2017-07-02T18:08:47.222742Z", "url": "https://files.pythonhosted.org/packages/84/c0/e4c7f005b1b133f8488b63177a6cd4015d68666358e1cef87691bd929440/aiohttp-2.2.1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e7c31fcbf54b140e7f508e372bcc921", "sha256": "bb4b04cd7e87e70417f805957e12aece352af346760faa5b21384a4dd1d34509" }, "downloads": -1, "filename": "aiohttp-2.2.1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "9e7c31fcbf54b140e7f508e372bcc921", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 308386, "upload_time": "2017-07-02T18:03:16", "upload_time_iso_8601": "2017-07-02T18:03:16.274285Z", "url": "https://files.pythonhosted.org/packages/61/fa/359731c63e26b1ffe53b15e6923887f77664aac0ebe3c644679da2eff6c7/aiohttp-2.2.1-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5ae762934c516a85e4792ef7e03b490f", "sha256": "cfe99f629e84d5bdd6372c5ee1451d8ecba9c44ea470d730e50a754406b08a63" }, "downloads": -1, "filename": "aiohttp-2.2.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "5ae762934c516a85e4792ef7e03b490f", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 313712, "upload_time": "2017-07-02T18:05:25", "upload_time_iso_8601": "2017-07-02T18:05:25.438480Z", "url": "https://files.pythonhosted.org/packages/15/41/593fa01dd61fe7dbffe38eb66dc0e68753b2b220185beb6b06018e90e8d5/aiohttp-2.2.1-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "96d16b665583cf4e9af2d90d766765f6", "sha256": "662f831b5065c5b9f14da08139aa543004776243e4a3e2e79c3c802e7836c2dd" }, "downloads": -1, "filename": "aiohttp-2.2.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "96d16b665583cf4e9af2d90d766765f6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 735634, "upload_time": "2017-07-02T18:12:11", "upload_time_iso_8601": "2017-07-02T18:12:11.708447Z", "url": "https://files.pythonhosted.org/packages/46/14/1a6cf317e8981a50898e7a272181f83071375b9998ba242ad13f39b9455b/aiohttp-2.2.1-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "76a084bf69340d129f9e622cd401b2ef", "sha256": "2ed468c8aedf32a67036d00210eca9431e99cb6cd093fc39c4f8dc960bd755e9" }, "downloads": -1, "filename": "aiohttp-2.2.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "76a084bf69340d129f9e622cd401b2ef", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 758769, "upload_time": "2017-07-02T18:08:49", "upload_time_iso_8601": "2017-07-02T18:08:49.446275Z", "url": "https://files.pythonhosted.org/packages/54/95/446abee8a32d82ccda7919ae439d3daa063f7609c6947cd3705116361e22/aiohttp-2.2.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3edd5cdfc4bdf1db7866244d1c44c12e", "sha256": "91a78083256e455b2344a86fb0219839397d4584dbc27846dc0aacaab3f50cbe" }, "downloads": -1, "filename": "aiohttp-2.2.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "3edd5cdfc4bdf1db7866244d1c44c12e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 309521, "upload_time": "2017-07-02T18:07:14", "upload_time_iso_8601": "2017-07-02T18:07:14.659870Z", "url": "https://files.pythonhosted.org/packages/c8/66/24ca3b6287bebba47fe1d7e492f8386e14f86e8bf5f12a5bcbc41b7576a0/aiohttp-2.2.1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9de8a9994efdf5f07b4cd8da92c5dd6e", "sha256": "2186f98b4082449d51b4de7210e46cb5902d12bef2ce478e3773dce8ab5ad060" }, "downloads": -1, "filename": "aiohttp-2.2.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "9de8a9994efdf5f07b4cd8da92c5dd6e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 318207, "upload_time": "2017-07-02T18:09:10", "upload_time_iso_8601": "2017-07-02T18:09:10.141105Z", "url": "https://files.pythonhosted.org/packages/4a/48/9b3259df0f5ad513a845f817a926974b7d0f10c9bf6147626ded893a9e8d/aiohttp-2.2.1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fbe5f8105ea4c100696ec327aa2e501a", "sha256": "17745a44ffb68a6c994117b09fedaaa22c6474a68aa963a7f369383ef64b7dd1" }, "downloads": -1, "filename": "aiohttp-2.2.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "fbe5f8105ea4c100696ec327aa2e501a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 748792, "upload_time": "2017-07-02T18:12:14", "upload_time_iso_8601": "2017-07-02T18:12:14.538354Z", "url": "https://files.pythonhosted.org/packages/ec/54/c391da7c17a45b4df90ad3a30876c71746751f86cf444394ebeac0ac7e3a/aiohttp-2.2.1-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f400aaa30d62fe584805830a60e85541", "sha256": "9211d8523520fd7764cf0fd071cc3b59466b4a51d75e60ca0eacbd7b2c299f65" }, "downloads": -1, "filename": "aiohttp-2.2.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f400aaa30d62fe584805830a60e85541", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 770413, "upload_time": "2017-07-02T18:08:52", "upload_time_iso_8601": "2017-07-02T18:08:52.131599Z", "url": "https://files.pythonhosted.org/packages/72/ff/2eb29a16fec66964816d62d010e1310940116bd6bcd4de5b1de1570739d6/aiohttp-2.2.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9bcfc9c1c0e1d10e1d9456e62ddf4e68", "sha256": "490367b98782e10005ca35963ed16031afede94eec7e42184f0db75430cc8936" }, "downloads": -1, "filename": "aiohttp-2.2.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "9bcfc9c1c0e1d10e1d9456e62ddf4e68", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 311065, "upload_time": "2017-07-02T18:10:54", "upload_time_iso_8601": "2017-07-02T18:10:54.975472Z", "url": "https://files.pythonhosted.org/packages/46/de/47ffe56f3147a6e9e424a229eb5818aca20dcac956dfa062a5659dda2d5f/aiohttp-2.2.1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a445a4d797fc67381ee0e69c9a5274c", "sha256": "19146b5c1e88462a8dbd5b1e74c7606a28ad1fed6fd6e63d1fae38b75a2061cb" }, "downloads": -1, "filename": "aiohttp-2.2.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "9a445a4d797fc67381ee0e69c9a5274c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 319841, "upload_time": "2017-07-02T18:12:50", "upload_time_iso_8601": "2017-07-02T18:12:50.268423Z", "url": "https://files.pythonhosted.org/packages/f6/c8/43cf17b295db321159dabbb96e0eaa601eb68fe7278e2de3ce9a832ec15a/aiohttp-2.2.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3715f4807018fafa0e34a80128341e27", "sha256": "9470050ec764ae19a9f1d19cc91d61d7aa7097daa1d919216530d01f31602158" }, "downloads": -1, "filename": "aiohttp-2.2.1.tar.gz", "has_sig": false, "md5_digest": "3715f4807018fafa0e34a80128341e27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 787635, "upload_time": "2017-07-02T18:18:26", "upload_time_iso_8601": "2017-07-02T18:18:26.417955Z", "url": "https://files.pythonhosted.org/packages/03/d6/ac965bfde0a2b334cdccaea93df0888ef9484c402a85a6117052552faf2e/aiohttp-2.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.2": [ { "comment_text": "", "digests": { "md5": "6f0c896e34552d0a29fb76f54ff4c690", "sha256": "d3d5584a69788f18a948434e75ede64fcc383ce7bdf3712255056482c41d3989" }, "downloads": -1, "filename": "aiohttp-2.2.2-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6f0c896e34552d0a29fb76f54ff4c690", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 535385, "upload_time": "2017-07-03T08:29:51", "upload_time_iso_8601": "2017-07-03T08:29:51.103892Z", "url": "https://files.pythonhosted.org/packages/ae/51/867bc01048702be387c0d4d534da261dde9625e9f5fb4b24fccfd63268d1/aiohttp-2.2.2-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e978d74b832b2fb882202ed9995cd5bf", "sha256": "fa5b06383c039d8a765f2043631821327ab36facf442d123ecf186e42f6fadbb" }, "downloads": -1, "filename": "aiohttp-2.2.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e978d74b832b2fb882202ed9995cd5bf", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 559298, "upload_time": "2017-07-03T08:26:26", "upload_time_iso_8601": "2017-07-03T08:26:26.444362Z", "url": "https://files.pythonhosted.org/packages/74/41/8d371cb7c9a367c203dae4cdff8557c75bc073af638848842811818980bd/aiohttp-2.2.2-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b3a9ecde81bb09d4ce67352c6534c4a0", "sha256": "a2969d891a95ca684e5901741c1372fb73344ae22428fd1ac404babe656c7d51" }, "downloads": -1, "filename": "aiohttp-2.2.2-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "b3a9ecde81bb09d4ce67352c6534c4a0", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 308477, "upload_time": "2017-07-03T08:18:24", "upload_time_iso_8601": "2017-07-03T08:18:24.605729Z", "url": "https://files.pythonhosted.org/packages/f8/43/e23bfadd4fe8107c9c26b41ad5d52d7dd494d366985920269c48af7cd104/aiohttp-2.2.2-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "33b369dc4894e53ffea7e3f4341ac1fb", "sha256": "8af683211d4fb2987bc98d79376e2dac824c59a5d1aedcda70c63a801e3bdec9" }, "downloads": -1, "filename": "aiohttp-2.2.2-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "33b369dc4894e53ffea7e3f4341ac1fb", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 313796, "upload_time": "2017-07-03T08:21:18", "upload_time_iso_8601": "2017-07-03T08:21:18.030546Z", "url": "https://files.pythonhosted.org/packages/a3/f2/2077615f05af614cb1b7b2d77ee51c3e9f9ccd2d6329f3d6670b3b2e508c/aiohttp-2.2.2-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f46a8911b216d8689cf2cd62e4d33a18", "sha256": "20299d48ef4d46d3240ab90802e53680ba2ffe3d4bf836f8b66d66123f620996" }, "downloads": -1, "filename": "aiohttp-2.2.2-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f46a8911b216d8689cf2cd62e4d33a18", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 735730, "upload_time": "2017-07-03T08:29:55", "upload_time_iso_8601": "2017-07-03T08:29:55.127657Z", "url": "https://files.pythonhosted.org/packages/78/1e/10a4e34a9b940e0a8690d26206ab6bd89f00da1352706a57186aa29fa5e0/aiohttp-2.2.2-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "128c6c1e677fa12a5d6affa0cfe9e09c", "sha256": "9034d9a578abb620432ab65e0e831471cd064bd1039200a1842ab6180471e7fc" }, "downloads": -1, "filename": "aiohttp-2.2.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "128c6c1e677fa12a5d6affa0cfe9e09c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 758816, "upload_time": "2017-07-03T08:26:29", "upload_time_iso_8601": "2017-07-03T08:26:29.418358Z", "url": "https://files.pythonhosted.org/packages/18/9f/34806d8a15e20e7ee73d9ae53cef40760f575923c6531d4691b35af3ef80/aiohttp-2.2.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d21bb518f5b872ca42cf396031627820", "sha256": "e8e67b569eff6c932324293c448b7f066daa1c12c98e50f82dbf2abbbde3cff6" }, "downloads": -1, "filename": "aiohttp-2.2.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "d21bb518f5b872ca42cf396031627820", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 309610, "upload_time": "2017-07-03T08:23:21", "upload_time_iso_8601": "2017-07-03T08:23:21.745766Z", "url": "https://files.pythonhosted.org/packages/d8/d2/84f0e40219e772da4ecca4bf700c15822a8aa09e809fc19d3570ece77474/aiohttp-2.2.2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d64249754cb497325ab30a1487730b8", "sha256": "5fb59327a246fea0e5045808e36e9f150b53d32eca26d519c5ef4bbb53ad097a" }, "downloads": -1, "filename": "aiohttp-2.2.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "3d64249754cb497325ab30a1487730b8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 318290, "upload_time": "2017-07-03T08:25:44", "upload_time_iso_8601": "2017-07-03T08:25:44.386071Z", "url": "https://files.pythonhosted.org/packages/2d/11/a437d91690ad0e9c8b7d6fcca1a823f8cfd3d03b275c2cf1683d4bde1269/aiohttp-2.2.2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "378f0d1b9eb3112a2d9b1f19f22ad5ea", "sha256": "e6453644ce717cc58a2b454445d273c58fbb1819d1a6037704cd357232ab6718" }, "downloads": -1, "filename": "aiohttp-2.2.2-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "378f0d1b9eb3112a2d9b1f19f22ad5ea", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 748893, "upload_time": "2017-07-03T08:29:58", "upload_time_iso_8601": "2017-07-03T08:29:58.580202Z", "url": "https://files.pythonhosted.org/packages/86/87/f1aba1633f5886638d87c8cd2de4e931a3154979de35f6737c3951ef5747/aiohttp-2.2.2-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e1e1aae68f436afb544e65266de7e2cb", "sha256": "307282aff93e599f7a1de0e5167e3f74961664f1fb25ddef901253847aa11388" }, "downloads": -1, "filename": "aiohttp-2.2.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e1e1aae68f436afb544e65266de7e2cb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 770503, "upload_time": "2017-07-03T08:26:32", "upload_time_iso_8601": "2017-07-03T08:26:32.730310Z", "url": "https://files.pythonhosted.org/packages/87/29/d8d4cc6b165f5e87e21af9fcde59531424d6e2e338260437cb24b95922fd/aiohttp-2.2.2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "02d90910e45c4713c1d481b232177e0c", "sha256": "078e9ee8242e94d3a60cdef4668b8b3b94bca79addd80d36bbb80847cf85099d" }, "downloads": -1, "filename": "aiohttp-2.2.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "02d90910e45c4713c1d481b232177e0c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 311150, "upload_time": "2017-07-03T08:27:26", "upload_time_iso_8601": "2017-07-03T08:27:26.487651Z", "url": "https://files.pythonhosted.org/packages/b1/b1/51380dc56ff3e7ce112706341796a3bd700b86b7a5dff49d52a116e88a11/aiohttp-2.2.2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "090e6381ad611d72afcbf0b746e1dca1", "sha256": "28b8ba000ca219a62384f9d3c0c7effe6c5ad0b0d02fba75dd3b7c1c1b705b5f" }, "downloads": -1, "filename": "aiohttp-2.2.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "090e6381ad611d72afcbf0b746e1dca1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 319929, "upload_time": "2017-07-03T08:29:11", "upload_time_iso_8601": "2017-07-03T08:29:11.126483Z", "url": "https://files.pythonhosted.org/packages/8c/bd/a4779c719bb6370b93615e3c3e74cce6694d874453096b919938915c0b7b/aiohttp-2.2.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4cae55fe71ef39ff9af05a99b33f082c", "sha256": "eee762d165170ad19eecc22a04614b1e66628ab4765ce6ac671b70757be93608" }, "downloads": -1, "filename": "aiohttp-2.2.2.tar.gz", "has_sig": false, "md5_digest": "4cae55fe71ef39ff9af05a99b33f082c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 787756, "upload_time": "2017-07-03T08:33:10", "upload_time_iso_8601": "2017-07-03T08:33:10.699969Z", "url": "https://files.pythonhosted.org/packages/f1/cc/828ce95d4d638f54936bbd1f896a75ba937839b17a63a57c1c491db6c26d/aiohttp-2.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.3": [ { "comment_text": "", "digests": { "md5": "a18a16b87cad30668c8a3249c749b1dd", "sha256": "b941ce5089b4b5b7e4df45229438869080322e733a43725d6b105c8f413ba7ff" }, "downloads": -1, "filename": "aiohttp-2.2.3-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a18a16b87cad30668c8a3249c749b1dd", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 535447, "upload_time": "2017-07-04T15:16:54", "upload_time_iso_8601": "2017-07-04T15:16:54.882812Z", "url": "https://files.pythonhosted.org/packages/c9/a3/a746df9ad93b522e6abffa4af66e9e253e71456ba87533ceaacb5e08ed54/aiohttp-2.2.3-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1ef375b3a941e8359425d7c60c017c4f", "sha256": "4a13e7588cae72f54df0697422990084e024a5ab2136ffcd70fa190d29220d42" }, "downloads": -1, "filename": "aiohttp-2.2.3-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1ef375b3a941e8359425d7c60c017c4f", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 559374, "upload_time": "2017-07-04T15:13:32", "upload_time_iso_8601": "2017-07-04T15:13:32.438237Z", "url": "https://files.pythonhosted.org/packages/7c/6a/c59b08e32a7dae0f1f68c9297eaa9b27e1f37f797fb00c81f50441c7730f/aiohttp-2.2.3-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0596ec94eefa594fe908df9b0c687d4a", "sha256": "9e0f22161a1fa079ef4fcd97a19b6e55654375b13473204afb69b81d0e12b58b" }, "downloads": -1, "filename": "aiohttp-2.2.3-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "0596ec94eefa594fe908df9b0c687d4a", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 308543, "upload_time": "2017-07-04T15:13:19", "upload_time_iso_8601": "2017-07-04T15:13:19.578041Z", "url": "https://files.pythonhosted.org/packages/e2/f4/08e4ad924bb891ae322f0113d28f6ba7a291bbb3a55217e2449cc4c44a3e/aiohttp-2.2.3-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2871570adbf3d41dc632433a578981c8", "sha256": "ddf46cc74d13bd79ce9ae54a5092c04b272a974c8cb7d6859582aa28ba699424" }, "downloads": -1, "filename": "aiohttp-2.2.3-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "2871570adbf3d41dc632433a578981c8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 313866, "upload_time": "2017-07-04T15:16:02", "upload_time_iso_8601": "2017-07-04T15:16:02.437985Z", "url": "https://files.pythonhosted.org/packages/74/62/e48b2004443b26f5cf9f1399ff096a92ae52ffa0ba63f6c93cb4d9abdaf4/aiohttp-2.2.3-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cfb3093c0ea44773b1d80e44ec0a4152", "sha256": "4156e9257dbeef314e105509eef38dd1f1e831a83eb6101ed5e124d02f4ddf89" }, "downloads": -1, "filename": "aiohttp-2.2.3-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "cfb3093c0ea44773b1d80e44ec0a4152", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 735797, "upload_time": "2017-07-04T15:16:58", "upload_time_iso_8601": "2017-07-04T15:16:58.219517Z", "url": "https://files.pythonhosted.org/packages/fe/f2/86913ee1b0ad346f2076785f01cb577674ea2e9b1453f61ae7a593c8ff80/aiohttp-2.2.3-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bc7f682c3ea75a01f31d34f35daabfa7", "sha256": "a08d8857f5ea7e1010eab8f8137538ddca0700070897065e89ec470d7e66d029" }, "downloads": -1, "filename": "aiohttp-2.2.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bc7f682c3ea75a01f31d34f35daabfa7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 758896, "upload_time": "2017-07-04T15:13:35", "upload_time_iso_8601": "2017-07-04T15:13:35.953303Z", "url": "https://files.pythonhosted.org/packages/8b/f9/93f8393ff83575d1cbfef65ddde523d77c0e54ca7debd0c52bedf30e5a37/aiohttp-2.2.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "48386c6d48d3dd597ae81a45291fca7c", "sha256": "fc3e4b5ec85e6fbbc89132d1c04a88492dbeba915c1c710879573c7246245250" }, "downloads": -1, "filename": "aiohttp-2.2.3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "48386c6d48d3dd597ae81a45291fca7c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 309680, "upload_time": "2017-07-04T15:17:55", "upload_time_iso_8601": "2017-07-04T15:17:55.087010Z", "url": "https://files.pythonhosted.org/packages/64/af/9c6afd96bcfac0d9983fa741f3c75dfc451f7c142a1bde7c7d9305b902bf/aiohttp-2.2.3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c8d6cdca7f7ce3ffd23b4c28800b9a7", "sha256": "9f1aee9002e726c47e9997c9b68df7663964fe486c893397645c38b9b82b60eb" }, "downloads": -1, "filename": "aiohttp-2.2.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "8c8d6cdca7f7ce3ffd23b4c28800b9a7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 318359, "upload_time": "2017-07-04T15:20:22", "upload_time_iso_8601": "2017-07-04T15:20:22.785221Z", "url": "https://files.pythonhosted.org/packages/67/87/47442bf8be3e7d493b3020f56c9fc26df2e2e43e540db531b657aa1df19d/aiohttp-2.2.3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82f9a5953360b22fd4a8badd41bbfb91", "sha256": "893bafb2562ef0b8860e5cacaed89a84c1f1e01081d99cdce456111b5356b273" }, "downloads": -1, "filename": "aiohttp-2.2.3-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "82f9a5953360b22fd4a8badd41bbfb91", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 748962, "upload_time": "2017-07-04T15:17:00", "upload_time_iso_8601": "2017-07-04T15:17:00.686322Z", "url": "https://files.pythonhosted.org/packages/10/17/8fe3e63dfef29783588adb2f21e5b2d563b7259b143b80ccda61d6f8ed87/aiohttp-2.2.3-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e9e6db70cc07df017984388adafb6bde", "sha256": "0e921684726fa79c8d328885cf6131e37983303cf17b5695c98c5e3659f8f1b0" }, "downloads": -1, "filename": "aiohttp-2.2.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e9e6db70cc07df017984388adafb6bde", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 770592, "upload_time": "2017-07-04T15:13:38", "upload_time_iso_8601": "2017-07-04T15:13:38.429969Z", "url": "https://files.pythonhosted.org/packages/1e/af/6b0b1e6da49e570f433b7f9fa9b2e9e7b2c2b39a3b1f48f0f7febd2117e2/aiohttp-2.2.3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "104626a6f10539c847520f79e50d70d0", "sha256": "c4477474c7ddd931a698c6bd7e3de0b519383d2f2165c7ff4c4e1940fca6703b" }, "downloads": -1, "filename": "aiohttp-2.2.3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "104626a6f10539c847520f79e50d70d0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 311222, "upload_time": "2017-07-04T15:22:21", "upload_time_iso_8601": "2017-07-04T15:22:21.096104Z", "url": "https://files.pythonhosted.org/packages/d8/56/859ddc5fcf74e315b14587bf6779be367449fc57095e5734792509bbc3d0/aiohttp-2.2.3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0b18f765dfdc59e05846c411c9691a2", "sha256": "27304c87942dd4d6d412affa3870fbe4e04456bff0b53883f35de15ddf447b85" }, "downloads": -1, "filename": "aiohttp-2.2.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "e0b18f765dfdc59e05846c411c9691a2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 320001, "upload_time": "2017-07-04T15:24:25", "upload_time_iso_8601": "2017-07-04T15:24:25.015540Z", "url": "https://files.pythonhosted.org/packages/b8/0b/fbecba1346d6279aba71418a0dd5dfe08e5bcb9f3926f8f1b7a6c81ac6d1/aiohttp-2.2.3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7793829c8c2fed46f798e9c75bb68869", "sha256": "997d89e884c6b90a7a891b676f65ca30ca331ceab0b2db6810210b4a984c87f8" }, "downloads": -1, "filename": "aiohttp-2.2.3.tar.gz", "has_sig": false, "md5_digest": "7793829c8c2fed46f798e9c75bb68869", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 787819, "upload_time": "2017-07-04T15:25:45", "upload_time_iso_8601": "2017-07-04T15:25:45.868419Z", "url": "https://files.pythonhosted.org/packages/9b/3a/b560a411b97203fb20b5eee084c1e292862b3092029d9d9faaa8714797fa/aiohttp-2.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.4": [ { "comment_text": "", "digests": { "md5": "584914c3b983cc21accdcba5e4d8ec09", "sha256": "10a59c3e2ad7e18531edfbbab51e1c0432c108348bc3ac2a703be09ca3914eb3" }, "downloads": -1, "filename": "aiohttp-2.2.4-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "584914c3b983cc21accdcba5e4d8ec09", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 535579, "upload_time": "2017-08-02T19:42:18", "upload_time_iso_8601": "2017-08-02T19:42:18.701102Z", "url": "https://files.pythonhosted.org/packages/95/76/d24ddad0cc4514d30a707fc1bce2babcf7c405f8c19f614a92b855845f18/aiohttp-2.2.4-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "01cfce17261673295f7594ad8abbd804", "sha256": "44df3197cbdd3fd953a2e76d1f354bea91ca274fe8246afb89fe8ac364df4b9f" }, "downloads": -1, "filename": "aiohttp-2.2.4-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "01cfce17261673295f7594ad8abbd804", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 559528, "upload_time": "2017-08-02T19:38:45", "upload_time_iso_8601": "2017-08-02T19:38:45.909508Z", "url": "https://files.pythonhosted.org/packages/f1/1a/77a25bd39313dcb6694548533fc9a98972ac8817a75dba9f3c8ede4ebebb/aiohttp-2.2.4-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "338a492083a7f35055b0754ed21821ed", "sha256": "6bdfcd134275e48dde374af8a1b3d130c42eaa743f5eab952b8752d1ca6d4407" }, "downloads": -1, "filename": "aiohttp-2.2.4-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "338a492083a7f35055b0754ed21821ed", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 308679, "upload_time": "2017-08-02T19:36:14", "upload_time_iso_8601": "2017-08-02T19:36:14.024624Z", "url": "https://files.pythonhosted.org/packages/24/76/f9aded6da0fd58c0a2fe3811760c655082d9e639990c85ca641e75136cbe/aiohttp-2.2.4-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f8f090ff985ce02176eb904108555a3", "sha256": "b4c35fee746fc01283c5f2f5faf661a26898c5927d5179c247137259f2ee5f4a" }, "downloads": -1, "filename": "aiohttp-2.2.4-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "8f8f090ff985ce02176eb904108555a3", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 313999, "upload_time": "2017-08-02T19:38:14", "upload_time_iso_8601": "2017-08-02T19:38:14.648385Z", "url": "https://files.pythonhosted.org/packages/78/0a/42f677ca34f2b3ab606705c99c352751f78665d6855370f528d675a1376e/aiohttp-2.2.4-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "654a83062aa28ea77bae1ee954db04b0", "sha256": "796dad34d0ae75f6b68f71db13d4f1cd85dd393d135502ce4f3f57254480299e" }, "downloads": -1, "filename": "aiohttp-2.2.4-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "654a83062aa28ea77bae1ee954db04b0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 735930, "upload_time": "2017-08-02T19:42:21", "upload_time_iso_8601": "2017-08-02T19:42:21.208907Z", "url": "https://files.pythonhosted.org/packages/5d/4c/3a84e99fc43813f61ddb1418c6188b0e366d91624d1dd03c10c1ae098d66/aiohttp-2.2.4-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6d7bb50e588a88d45373637ea5b9386e", "sha256": "65990e3013d9d2f30dbd96cd05d82b02002006a733a24fd70fd9f81d507ad102" }, "downloads": -1, "filename": "aiohttp-2.2.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6d7bb50e588a88d45373637ea5b9386e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 759037, "upload_time": "2017-08-02T19:38:48", "upload_time_iso_8601": "2017-08-02T19:38:48.409905Z", "url": "https://files.pythonhosted.org/packages/c9/4d/690ec8660a0b089b4f8494caa085aa711367bb63d0d12a0d42b9429f4e32/aiohttp-2.2.4-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a2d9447ee983b6b128a8d0fcd95b440", "sha256": "fe780cb75d598bd6fe5e7c704b89be6f27f420c5589dece64d8833ee461cff92" }, "downloads": -1, "filename": "aiohttp-2.2.4-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "9a2d9447ee983b6b128a8d0fcd95b440", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 309811, "upload_time": "2017-08-02T19:40:12", "upload_time_iso_8601": "2017-08-02T19:40:12.648445Z", "url": "https://files.pythonhosted.org/packages/7b/1a/f64d5a09131b569e32eff33f01f1b0f4fe5ae320487b7adac59fd8e559b0/aiohttp-2.2.4-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "79c882e3d4cdaeca7d2ac4d4bd2247fc", "sha256": "6c895352171fec76eda7e77a9389789214c83d0418bcb657b51a9538822db65b" }, "downloads": -1, "filename": "aiohttp-2.2.4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "79c882e3d4cdaeca7d2ac4d4bd2247fc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 318492, "upload_time": "2017-08-02T19:42:22", "upload_time_iso_8601": "2017-08-02T19:42:22.159604Z", "url": "https://files.pythonhosted.org/packages/3e/09/16dfa2ec77662292f813f33babc7b6a3b8ff4d506ba3af66effc1a4796cc/aiohttp-2.2.4-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "64d155cae49bb8f00851d6f96a4a59fb", "sha256": "0c149594046854346d460ee7b35f24e4f157bd4debd59ffbd2aad468d7a9b878" }, "downloads": -1, "filename": "aiohttp-2.2.4-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "64d155cae49bb8f00851d6f96a4a59fb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 749093, "upload_time": "2017-08-02T19:42:24", "upload_time_iso_8601": "2017-08-02T19:42:24.117469Z", "url": "https://files.pythonhosted.org/packages/10/0d/21292e262d41539c1bf4bb4b44f1d4fd2cd4a422e7470677d9f82b936900/aiohttp-2.2.4-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "869f11d534a27e9cb0ed6a1f528de6e1", "sha256": "9b146fbeab472deaa5e586977241812b6d57a3f608c05576910c5c8cf0218353" }, "downloads": -1, "filename": "aiohttp-2.2.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "869f11d534a27e9cb0ed6a1f528de6e1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 770725, "upload_time": "2017-08-02T19:38:50", "upload_time_iso_8601": "2017-08-02T19:38:50.894041Z", "url": "https://files.pythonhosted.org/packages/d5/2b/a99aacf3826ab276a45dc08554dfc6edb38c8d8d727b5964d28ef890c6f4/aiohttp-2.2.4-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b2e1c338076f677b1247bc9c19ff2f2c", "sha256": "60ad89a2269cf231adfd911546003fea2e627e5f2641d1b1e72ff74b3e38a1a4" }, "downloads": -1, "filename": "aiohttp-2.2.4-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "b2e1c338076f677b1247bc9c19ff2f2c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 311349, "upload_time": "2017-08-02T19:44:47", "upload_time_iso_8601": "2017-08-02T19:44:47.072458Z", "url": "https://files.pythonhosted.org/packages/6b/ad/3965f81e6b9f760291a405d4192c8eadb79d78995a10ab23690b7419cdc8/aiohttp-2.2.4-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4d180a4e7200b7e17134f6080063f4c7", "sha256": "6fefc75ac82747f5e0c0d38e7301997d2aa35de3f5d7a600031e5e632a4d5197" }, "downloads": -1, "filename": "aiohttp-2.2.4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "4d180a4e7200b7e17134f6080063f4c7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 320130, "upload_time": "2017-08-02T19:46:51", "upload_time_iso_8601": "2017-08-02T19:46:51.290594Z", "url": "https://files.pythonhosted.org/packages/bd/1b/c42f332dc3b235a8f37c182404041c6dcd67ab6e18b66a9d9bbebf8120f0/aiohttp-2.2.4-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "897e6de4704b1736213c2da069850f3a", "sha256": "8e72be7111c487e5a474d8d8020e29be5de259bb7a72db1ec74af37ba7aa664a" }, "downloads": -1, "filename": "aiohttp-2.2.4.tar.gz", "has_sig": false, "md5_digest": "897e6de4704b1736213c2da069850f3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 788478, "upload_time": "2017-08-02T20:03:06", "upload_time_iso_8601": "2017-08-02T20:03:06.236686Z", "url": "https://files.pythonhosted.org/packages/f3/5d/50e45c48f69f80728704689fe4fd58a9cff97a26a2c9451af01510116b8b/aiohttp-2.2.4.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.5": [ { "comment_text": "", "digests": { "md5": "90b2d5c038c66275fc21641fe9826204", "sha256": "9705ded5a0faa25c8f14c6afb7044002d66c9120ed7eadb4aa9ca4aad32bd00c" }, "downloads": -1, "filename": "aiohttp-2.2.5-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "90b2d5c038c66275fc21641fe9826204", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 535637, "upload_time": "2017-08-03T14:50:07", "upload_time_iso_8601": "2017-08-03T14:50:07.181870Z", "url": "https://files.pythonhosted.org/packages/84/d8/acaa76e5652850041c24c080cf5bbc9bf829040996cdc2df02e42199b119/aiohttp-2.2.5-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "825735ed55f584ad1924be0a098293c3", "sha256": "de8ef106e130b94ca143fdfc6f27cda1d8ba439462542377738af4d99d9f5dd2" }, "downloads": -1, "filename": "aiohttp-2.2.5-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "825735ed55f584ad1924be0a098293c3", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 559576, "upload_time": "2017-08-03T14:47:14", "upload_time_iso_8601": "2017-08-03T14:47:14.313519Z", "url": "https://files.pythonhosted.org/packages/6f/a3/70986a7ca4d15365a1b6421c449b622f396db33823ca34225da0913818bb/aiohttp-2.2.5-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d673bf8bec7206dd042a1c0d631ee8e", "sha256": "f0e2ac69cb709367400008cebccd5d48161dd146096a009a632a132babe5714c" }, "downloads": -1, "filename": "aiohttp-2.2.5-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "8d673bf8bec7206dd042a1c0d631ee8e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 308744, "upload_time": "2017-08-03T14:30:04", "upload_time_iso_8601": "2017-08-03T14:30:04.824450Z", "url": "https://files.pythonhosted.org/packages/2c/cf/03760d31e1605dd89c91b7336adb553a97d587563d344e148f2ff150eeaf/aiohttp-2.2.5-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "150a465f78c85b673d8cfcb2c41373f4", "sha256": "33c62afd115c456b0cf1e890fe6753055effe0f31a28321efd4f787378d6f4ab" }, "downloads": -1, "filename": "aiohttp-2.2.5-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "150a465f78c85b673d8cfcb2c41373f4", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 314065, "upload_time": "2017-08-03T14:32:26", "upload_time_iso_8601": "2017-08-03T14:32:26.511036Z", "url": "https://files.pythonhosted.org/packages/85/3f/efac030a5e89c0edeb3c7840bb95eb4ddfe2d9fa50fe24fad43d93811a3e/aiohttp-2.2.5-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "28480565a23cd847e5ae07ebbc73f200", "sha256": "dcc7e4dcec6b0012537b9f8a0726f8b111188894ab0f924b680d40b13d3298a0" }, "downloads": -1, "filename": "aiohttp-2.2.5-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "28480565a23cd847e5ae07ebbc73f200", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 736017, "upload_time": "2017-08-03T14:50:09", "upload_time_iso_8601": "2017-08-03T14:50:09.997474Z", "url": "https://files.pythonhosted.org/packages/dc/fc/3fc36f9062ee6af43b265f6c40c2901a8f4163463a5bcf2c4a5998a78f27/aiohttp-2.2.5-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e6769ec793a0c34073b946b44ac06a9", "sha256": "b80f44b99fa3c9b4530fcfa324a99b84843043c35b084e0b653566049974435d" }, "downloads": -1, "filename": "aiohttp-2.2.5-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8e6769ec793a0c34073b946b44ac06a9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 759099, "upload_time": "2017-08-03T14:47:18", "upload_time_iso_8601": "2017-08-03T14:47:18.110597Z", "url": "https://files.pythonhosted.org/packages/dd/48/308b5f6d3e38e49ceb84c41e1823992e1494ab034bd07caee0d159ae8010/aiohttp-2.2.5-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d7aaa6954441f6c1685bc8c45b98790d", "sha256": "eb6f1405b607fff7e44168e3ceb5d3c8a8c5a2d3effe0a27f843b16ec047a6d7" }, "downloads": -1, "filename": "aiohttp-2.2.5-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "d7aaa6954441f6c1685bc8c45b98790d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 309876, "upload_time": "2017-08-03T14:34:35", "upload_time_iso_8601": "2017-08-03T14:34:35.471861Z", "url": "https://files.pythonhosted.org/packages/53/c5/ceddfb96f4e7cc94147e246fdbfbefd1abab57eb38f35b2082d2cb1d8eaa/aiohttp-2.2.5-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ee37fbaca1504b7b5abecbea2284b02", "sha256": "666756e1d4cf161ed1486b82f65fdd386ac07dd20fb10f025abf4be54be12746" }, "downloads": -1, "filename": "aiohttp-2.2.5-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "0ee37fbaca1504b7b5abecbea2284b02", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 318560, "upload_time": "2017-08-03T14:37:11", "upload_time_iso_8601": "2017-08-03T14:37:11.507747Z", "url": "https://files.pythonhosted.org/packages/05/be/e3e5e24339e6b8e02d636b4d89a37095e387bcc71fed990a9079177ed0b6/aiohttp-2.2.5-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ceb9f110b1016f47cf9bd16abaa805df", "sha256": "d611ebd1ef48498210b65486306e065fde031040a1f3c455ca1b6baa7bf32ad3" }, "downloads": -1, "filename": "aiohttp-2.2.5-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ceb9f110b1016f47cf9bd16abaa805df", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 749161, "upload_time": "2017-08-03T14:50:12", "upload_time_iso_8601": "2017-08-03T14:50:12.496687Z", "url": "https://files.pythonhosted.org/packages/cd/95/28e629e5202a2b6a8bc9183bab40b001a17712529db46ed50f10f357e16c/aiohttp-2.2.5-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a262e673c0e1ad71f36a99c33a6249ac", "sha256": "c67e105ec74b85c8cb666b6877569dee6f55b9548f982983b9bee80b3d47e6f3" }, "downloads": -1, "filename": "aiohttp-2.2.5-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a262e673c0e1ad71f36a99c33a6249ac", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 770793, "upload_time": "2017-08-03T14:47:21", "upload_time_iso_8601": "2017-08-03T14:47:21.387433Z", "url": "https://files.pythonhosted.org/packages/66/0e/93b5655b21b769aa202b2f2d1bfce126eb0d16553522e0e9b3aa9cd2ea99/aiohttp-2.2.5-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "407fd2045eae4e58d6ba9b9e8c40fc55", "sha256": "129d83dd067760cec3cfd4456b5c6d7ac29f2c639d856884568fd539bed5a51f" }, "downloads": -1, "filename": "aiohttp-2.2.5-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "407fd2045eae4e58d6ba9b9e8c40fc55", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 311417, "upload_time": "2017-08-03T14:39:14", "upload_time_iso_8601": "2017-08-03T14:39:14.446810Z", "url": "https://files.pythonhosted.org/packages/e7/27/746878e6d378cd8477c091f27629cc49143e271fd376adc547978d694301/aiohttp-2.2.5-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "951a7007bd932f3b0dcc7801ec97c4b0", "sha256": "d15c6658de5b7783c2538407278fa062b079a46d5f814a133ae0f09bbb2cfbc4" }, "downloads": -1, "filename": "aiohttp-2.2.5-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "951a7007bd932f3b0dcc7801ec97c4b0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 320200, "upload_time": "2017-08-03T14:41:30", "upload_time_iso_8601": "2017-08-03T14:41:30.094554Z", "url": "https://files.pythonhosted.org/packages/32/05/c3cd2cc3a38547ea81697cd46c9b504dfe1b4e693187006c930cc7b6dc95/aiohttp-2.2.5-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d684d09550074b3c4a93dc1862ac5170", "sha256": "af5bfdd164256118a0a306b3f7046e63207d1f8cba73a67dcc0bd858dcfcd3bc" }, "downloads": -1, "filename": "aiohttp-2.2.5.tar.gz", "has_sig": false, "md5_digest": "d684d09550074b3c4a93dc1862ac5170", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 788626, "upload_time": "2017-08-03T15:02:46", "upload_time_iso_8601": "2017-08-03T15:02:46.159601Z", "url": "https://files.pythonhosted.org/packages/1e/d4/c1206b016b42a0b223aadb559318966b64ec27e5406bed79c36356e62082/aiohttp-2.2.5.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "eed9deae0659a6a95506c9aa558b0175", "sha256": "4ef8aa726fec5d8fa810e61c6c42b51276c7ae962391bcdc6ac1066b49c90e7c" }, "downloads": -1, "filename": "aiohttp-2.3.0-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "eed9deae0659a6a95506c9aa558b0175", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 627466, "upload_time": "2017-10-18T07:15:19", "upload_time_iso_8601": "2017-10-18T07:15:19.634461Z", "url": "https://files.pythonhosted.org/packages/a6/d4/0588aaa25c490229778b604141eac714be32f518fd38bd11324470cbc29f/aiohttp-2.3.0-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d83b539cadbf8eeda4124e652055a577", "sha256": "4b1d216a1ef7b7f2b06172243b1361362b94fbdbc790479c7c4f97a3c7d2e76e" }, "downloads": -1, "filename": "aiohttp-2.3.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d83b539cadbf8eeda4124e652055a577", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 653424, "upload_time": "2017-10-18T07:15:24", "upload_time_iso_8601": "2017-10-18T07:15:24.796731Z", "url": "https://files.pythonhosted.org/packages/1a/02/49f43edee5b9d202adbb17f5c214fb8d8510c89dd7da68cb55109f732f31/aiohttp-2.3.0-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bce9610cb66c21ed442be5497d163588", "sha256": "842abbbfefbe8b9c2433c6305a533a1c361541136937e4fb3bbe70da010b5326" }, "downloads": -1, "filename": "aiohttp-2.3.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "bce9610cb66c21ed442be5497d163588", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 355885, "upload_time": "2017-10-18T06:35:56", "upload_time_iso_8601": "2017-10-18T06:35:56.232040Z", "url": "https://files.pythonhosted.org/packages/a9/36/64d1f892465c269c4592b1adb3f0f783a2f2dc867c1bc26052a6553a17ff/aiohttp-2.3.0-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef31c50a8c39c84dbd3848bea072844e", "sha256": "9039c784bea791de382719056383f61e672318273cf13a8824721eb50012ebc6" }, "downloads": -1, "filename": "aiohttp-2.3.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "ef31c50a8c39c84dbd3848bea072844e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 362755, "upload_time": "2017-10-18T06:37:57", "upload_time_iso_8601": "2017-10-18T06:37:57.071199Z", "url": "https://files.pythonhosted.org/packages/2c/94/c7a232590fb72d5ee8e77a4d7c1c5df169e2d4662a449f226d5f9ba81c47/aiohttp-2.3.0-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc438cad046259fa648837d1d460c57c", "sha256": "1ed6ce22fee3ad6d56ae139a5af0dbb6361b52ce035a4dc585a8afa5f85b394e" }, "downloads": -1, "filename": "aiohttp-2.3.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "fc438cad046259fa648837d1d460c57c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 617422, "upload_time": "2017-10-18T07:15:26", "upload_time_iso_8601": "2017-10-18T07:15:26.627512Z", "url": "https://files.pythonhosted.org/packages/f4/c3/4ef68a8897bbf15374d225968536b8b25a99aff265fdbe1a5f5dcf36ca66/aiohttp-2.3.0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad57409983e1cff93b649db6dec68ad8", "sha256": "a230016d972cb45dcf2b20512e39dc1f4d043eedfc181c811199ff1ef7c4df59" }, "downloads": -1, "filename": "aiohttp-2.3.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ad57409983e1cff93b649db6dec68ad8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 646991, "upload_time": "2017-10-18T07:15:29", "upload_time_iso_8601": "2017-10-18T07:15:29.430154Z", "url": "https://files.pythonhosted.org/packages/cf/b0/e3f0f7068c521d79b4ef9e28d28d13128b0f5dc64d08cacccba8b44ef074/aiohttp-2.3.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50c6677e749c62c83598cbfceb995bfe", "sha256": "1f73f38145a6952c4b9931f759e3ff14aaddd8f1c6ac2140fd4ecec8d1b159f6" }, "downloads": -1, "filename": "aiohttp-2.3.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "50c6677e749c62c83598cbfceb995bfe", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 356281, "upload_time": "2017-10-18T06:39:44", "upload_time_iso_8601": "2017-10-18T06:39:44.383186Z", "url": "https://files.pythonhosted.org/packages/73/4a/b1dfed480d53fd89d0ffaf629bb30562747000da5e305de7e608ff296833/aiohttp-2.3.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ee941e3366ea02086d63c4ffeb44d43", "sha256": "3441fdc7378192a482a263d3b8ba0ddcb5210076e1fb0b6005f3ae765db85ee4" }, "downloads": -1, "filename": "aiohttp-2.3.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "0ee941e3366ea02086d63c4ffeb44d43", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 367305, "upload_time": "2017-10-18T06:42:02", "upload_time_iso_8601": "2017-10-18T06:42:02.991523Z", "url": "https://files.pythonhosted.org/packages/b6/a8/5b61099f0f589588dfe1df20caea6609d785439ec51f9a923052ab39bca6/aiohttp-2.3.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4eab156648e6a41228e1ad82cee5442e", "sha256": "a4d106cb3cb1fa25d822510d5cd6b3610f6d75b8d276c1c1cdd44d425efb2d63" }, "downloads": -1, "filename": "aiohttp-2.3.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4eab156648e6a41228e1ad82cee5442e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 633610, "upload_time": "2017-10-18T07:15:32", "upload_time_iso_8601": "2017-10-18T07:15:32.000910Z", "url": "https://files.pythonhosted.org/packages/85/61/94b005f6830b27593c4a44bdeb6b83f24be4765d6d06b4fd75be4ead2100/aiohttp-2.3.0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c381ead420a6579c98bfa50a7473dff8", "sha256": "371d70d62bca62da3de107a9c9f7222960755d865edd6631e530ba702ee5aa86" }, "downloads": -1, "filename": "aiohttp-2.3.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c381ead420a6579c98bfa50a7473dff8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 661352, "upload_time": "2017-10-18T07:15:34", "upload_time_iso_8601": "2017-10-18T07:15:34.641082Z", "url": "https://files.pythonhosted.org/packages/fa/07/4a5c80ed52949a09c42bfbc8b1890c03aac9cac8ac140e13f0dbf82b50e6/aiohttp-2.3.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d8043aa3c31aaa44a134cfbe3c282628", "sha256": "759d6dc3e8b05ac1921301ccb0557552ad7b0530e27376a6e997bc99778379ec" }, "downloads": -1, "filename": "aiohttp-2.3.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "d8043aa3c31aaa44a134cfbe3c282628", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 357945, "upload_time": "2017-10-18T06:43:53", "upload_time_iso_8601": "2017-10-18T06:43:53.070524Z", "url": "https://files.pythonhosted.org/packages/d8/8e/20a5647132a6327d1fe20eeb2958ee1fabd5ee336b5e8bcc4470eaf066eb/aiohttp-2.3.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f2dc14bb9ad3c08f3fe223c52beb973", "sha256": "e15f55a285ad46a9fbcde3d7d555691e6bebcf4e74e856cbcefb6be38f862221" }, "downloads": -1, "filename": "aiohttp-2.3.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "5f2dc14bb9ad3c08f3fe223c52beb973", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 369177, "upload_time": "2017-10-18T06:45:35", "upload_time_iso_8601": "2017-10-18T06:45:35.651296Z", "url": "https://files.pythonhosted.org/packages/be/28/020071b0cd5cfd6246c0f369c005e1ff47a4d3db9dddb1b3bec42a76c42e/aiohttp-2.3.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9375e8d1fca63e174dcc4239bbfe4467", "sha256": "944f9f94a9d66f2506a3f22bf9447c5b77b9ae389eead007db1d618acd157c99" }, "downloads": -1, "filename": "aiohttp-2.3.0.tar.gz", "has_sig": false, "md5_digest": "9375e8d1fca63e174dcc4239bbfe4467", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 591916, "upload_time": "2017-10-18T07:15:37", "upload_time_iso_8601": "2017-10-18T07:15:37.374183Z", "url": "https://files.pythonhosted.org/packages/70/d8/7cb05be60def3db010a1f05127424636df8f460fa572d5bd4943228589e3/aiohttp-2.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.0a1": [ { "comment_text": "", "digests": { "md5": "64da48f5bbfa3f8bb2c9e4c6d7c44e12", "sha256": "95d440abac9c343e72a30e5d4902ef796b936d550decad6d5dee77942515f3be" }, "downloads": -1, "filename": "aiohttp-2.3.0a1-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "64da48f5bbfa3f8bb2c9e4c6d7c44e12", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 622778, "upload_time": "2017-10-17T10:23:34", "upload_time_iso_8601": "2017-10-17T10:23:34.695584Z", "url": "https://files.pythonhosted.org/packages/80/94/c559e9d5db60110718e951b3b21ac64b1b325b7b117e77dc4812094855ce/aiohttp-2.3.0a1-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee924a39e5018875db867a2a140ac304", "sha256": "9578b39b1acbb430dc20e043cb49e13345c5303eb5c404a6b763431459ceff52" }, "downloads": -1, "filename": "aiohttp-2.3.0a1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ee924a39e5018875db867a2a140ac304", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 649375, "upload_time": "2017-10-17T10:23:37", "upload_time_iso_8601": "2017-10-17T10:23:37.632814Z", "url": "https://files.pythonhosted.org/packages/25/86/22d6e20e13cb2a3066533f21b649c8486b5a1d313a49cec43c7e87e1489c/aiohttp-2.3.0a1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b564939e0dfe9c63e406a4be457bd47a", "sha256": "96d7656bd2080c35e30cf7a00fed52ab175f2d08d81c2b0a9a2e65f724a82e03" }, "downloads": -1, "filename": "aiohttp-2.3.0a1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "b564939e0dfe9c63e406a4be457bd47a", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 350757, "upload_time": "2017-10-17T09:49:44", "upload_time_iso_8601": "2017-10-17T09:49:44.736399Z", "url": "https://files.pythonhosted.org/packages/a4/e4/b3422756dfa5d3827265bd2baa12355daf1fcd45e8a79ce85f1555b6380a/aiohttp-2.3.0a1-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e94b5dacbe5c9d1709688892364f55c", "sha256": "054c9a99218d8ff10a6626529acb18180dad5f3adcd14ec0e411b3b15aa24f00" }, "downloads": -1, "filename": "aiohttp-2.3.0a1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "8e94b5dacbe5c9d1709688892364f55c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 357799, "upload_time": "2017-10-17T09:51:52", "upload_time_iso_8601": "2017-10-17T09:51:52.622503Z", "url": "https://files.pythonhosted.org/packages/16/cb/f838c519d58dd2ec0d2d79ec744e7f1e6b7ff8800a2f1f0b3e98b614fc4f/aiohttp-2.3.0a1-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2cb85c6292fbc71176c660712eec1627", "sha256": "70c35570b1f0444135b73f1034809c06d6b7c2ba07c60b3efffc22e5b336058a" }, "downloads": -1, "filename": "aiohttp-2.3.0a1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2cb85c6292fbc71176c660712eec1627", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 612866, "upload_time": "2017-10-17T10:23:39", "upload_time_iso_8601": "2017-10-17T10:23:39.475666Z", "url": "https://files.pythonhosted.org/packages/02/7f/c7cebef6a2760a3386b754a37cd9a93a192cbac4b08fe2fc5201c6279480/aiohttp-2.3.0a1-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4960a5a080dfc3528b2030da4cde2122", "sha256": "47d98eb74ecdfdfcbfaaa75d80cc0e15ad50f941397b403061a5d1d39c196bf9" }, "downloads": -1, "filename": "aiohttp-2.3.0a1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4960a5a080dfc3528b2030da4cde2122", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 642992, "upload_time": "2017-10-17T10:23:41", "upload_time_iso_8601": "2017-10-17T10:23:41.461332Z", "url": "https://files.pythonhosted.org/packages/4d/f4/65403f83ff58b383082d61c8bd5dfabedc67fcf144f395643810f952ec40/aiohttp-2.3.0a1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "832644c091b3548ba7506a6952de76da", "sha256": "d10cef2b4b2766ed5e060b32daa0136dd9742833850ff62b5e30e51b161d5f94" }, "downloads": -1, "filename": "aiohttp-2.3.0a1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "832644c091b3548ba7506a6952de76da", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 351388, "upload_time": "2017-10-17T09:53:56", "upload_time_iso_8601": "2017-10-17T09:53:56.928488Z", "url": "https://files.pythonhosted.org/packages/8c/6d/be7bc0905b8ce5ce02d5ede12af1e1cb1144818d0032aeaea8424e6de7e4/aiohttp-2.3.0a1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "11d3cc81a3e0fd8c4b54c6d828f08a18", "sha256": "daf20049b7de13d07c373c34ca026123821999f31784dd50c54aa0a0d61f3bd1" }, "downloads": -1, "filename": "aiohttp-2.3.0a1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "11d3cc81a3e0fd8c4b54c6d828f08a18", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 362416, "upload_time": "2017-10-17T09:56:07", "upload_time_iso_8601": "2017-10-17T09:56:07.651977Z", "url": "https://files.pythonhosted.org/packages/ac/fd/e7493e4728da658ef04be2dace2f37bf5412fc4cff696c44ac8c009bce07/aiohttp-2.3.0a1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "04f5a17ceec4ba28f98ea7d7816ea27a", "sha256": "95323ba78fef8a300f89af8ba7fcd01bfd0a4f7d52a1f916bef8057ccc07d489" }, "downloads": -1, "filename": "aiohttp-2.3.0a1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "04f5a17ceec4ba28f98ea7d7816ea27a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 629009, "upload_time": "2017-10-17T10:23:43", "upload_time_iso_8601": "2017-10-17T10:23:43.594446Z", "url": "https://files.pythonhosted.org/packages/e7/f6/a3476bb1eaf57f1a464f2179d2bd96399602b62a8222fee2458e7d7738cd/aiohttp-2.3.0a1-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "989fdbe3330fb12d4fd5aa0ff6d4e670", "sha256": "3eb45551a8df2250be965287a2f5b070a1cd38469c2a7bd5de6e10b4bc84b759" }, "downloads": -1, "filename": "aiohttp-2.3.0a1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "989fdbe3330fb12d4fd5aa0ff6d4e670", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 657392, "upload_time": "2017-10-17T10:23:46", "upload_time_iso_8601": "2017-10-17T10:23:46.650260Z", "url": "https://files.pythonhosted.org/packages/75/5a/bf968018e2198469f830321b8595b09f48526fd276778bdb6d559bdc81ff/aiohttp-2.3.0a1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "52b3369805e996e4946e8cd9750bc8fe", "sha256": "2ef09e9d0f2d17d3f722487fcb2ed9bc23cd3629270830500292c63bb9d9de9c" }, "downloads": -1, "filename": "aiohttp-2.3.0a1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "52b3369805e996e4946e8cd9750bc8fe", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 353017, "upload_time": "2017-10-17T09:58:21", "upload_time_iso_8601": "2017-10-17T09:58:21.110166Z", "url": "https://files.pythonhosted.org/packages/bd/72/d5c5a4fc200c2d5a5aa54b62e4e2b2f7d3f8d0f1816809843fde7d1ced9b/aiohttp-2.3.0a1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd1f39653a687798b1f397eda5314524", "sha256": "087d516e5dfc5dafe2d4fe9e4fdca1c88b836ff3c04c6775a23dc565cb53b706" }, "downloads": -1, "filename": "aiohttp-2.3.0a1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "bd1f39653a687798b1f397eda5314524", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 364279, "upload_time": "2017-10-17T10:00:20", "upload_time_iso_8601": "2017-10-17T10:00:20.137456Z", "url": "https://files.pythonhosted.org/packages/0d/17/24340ba63ac3d8d06956e36d1a1b0a02317093f35b5385065844db1bf73d/aiohttp-2.3.0a1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "2.3.0a2": [ { "comment_text": "", "digests": { "md5": "14cc0b2d1a3851223b945a89d30c0f23", "sha256": "baf087afeda7fd28aebf180c92b5e71637fde2419a0c0284a6a8bc27ad715735" }, "downloads": -1, "filename": "aiohttp-2.3.0a2-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "14cc0b2d1a3851223b945a89d30c0f23", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 621910, "upload_time": "2017-10-17T14:24:34", "upload_time_iso_8601": "2017-10-17T14:24:34.850387Z", "url": "https://files.pythonhosted.org/packages/94/44/3676da1fc6b436363210c4fe69f588d3209e1c8f750d8278e176ff426741/aiohttp-2.3.0a2-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b881b298f706c8193e0a3faf66d75d96", "sha256": "4133f1d0176ce7fb9318f3ce634da1d7c0b2084dba1db00024985f4cab60d572" }, "downloads": -1, "filename": "aiohttp-2.3.0a2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b881b298f706c8193e0a3faf66d75d96", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 648522, "upload_time": "2017-10-17T14:24:36", "upload_time_iso_8601": "2017-10-17T14:24:36.668479Z", "url": "https://files.pythonhosted.org/packages/88/bb/ba27ab2c7a546317245671180a153b0f7169b20f7b67196a0a71ef452e6c/aiohttp-2.3.0a2-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "539c5765bbbd5d0e43f88e1f9b4a0d6c", "sha256": "d3df35c33ee1b5c6295986047f81bb39051d68a873a336f40988073614148876" }, "downloads": -1, "filename": "aiohttp-2.3.0a2-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "539c5765bbbd5d0e43f88e1f9b4a0d6c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 349897, "upload_time": "2017-10-17T13:55:51", "upload_time_iso_8601": "2017-10-17T13:55:51.602886Z", "url": "https://files.pythonhosted.org/packages/10/76/c086eb7bc55710a3304df02961c23c9a9f5064fd0c1a0e4878da73cce055/aiohttp-2.3.0a2-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "334a94de8e91da18a5a96693df345ee5", "sha256": "db4b8e4f75b5cfa7bc0897387624c2c03f57ae82f9a191c0c1bf1f85c43b4c6e" }, "downloads": -1, "filename": "aiohttp-2.3.0a2-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "334a94de8e91da18a5a96693df345ee5", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 356936, "upload_time": "2017-10-17T13:57:51", "upload_time_iso_8601": "2017-10-17T13:57:51.317728Z", "url": "https://files.pythonhosted.org/packages/8b/93/577274a15d9e836f103e84053a64793e599c2a6f63f1c57daff3d3ef8149/aiohttp-2.3.0a2-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d198eb8545686bb63cf1a6601ce9f52", "sha256": "0ac3d41f92c255c17fc8ed82b6754238f55880e80172f81cc7cbdde2312b04de" }, "downloads": -1, "filename": "aiohttp-2.3.0a2-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1d198eb8545686bb63cf1a6601ce9f52", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 611977, "upload_time": "2017-10-17T14:24:38", "upload_time_iso_8601": "2017-10-17T14:24:38.924938Z", "url": "https://files.pythonhosted.org/packages/81/91/fc8d8c5536dce0c89d485deef699b5b2db7aad065f0dd9cbd9e37abc12fb/aiohttp-2.3.0a2-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e951b6dd9c9d5a22fdb0b2fa28184b63", "sha256": "80a214f2006cea004d9ba1ce65397de360bd5f6fc643753f6e514e4333881e82" }, "downloads": -1, "filename": "aiohttp-2.3.0a2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e951b6dd9c9d5a22fdb0b2fa28184b63", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 642138, "upload_time": "2017-10-17T14:24:41", "upload_time_iso_8601": "2017-10-17T14:24:41.255785Z", "url": "https://files.pythonhosted.org/packages/7a/a8/813aa677323098af15ffc03edf5ea542b2ff9406443a4f9797c5492e0153/aiohttp-2.3.0a2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6a044c6a585e1096c8d326356357b5df", "sha256": "c67a1d404ab903062a3a9cab689ab7d032f85bdc12e916c099fe2dc2014d3897" }, "downloads": -1, "filename": "aiohttp-2.3.0a2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "6a044c6a585e1096c8d326356357b5df", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 350525, "upload_time": "2017-10-17T13:59:41", "upload_time_iso_8601": "2017-10-17T13:59:41.900637Z", "url": "https://files.pythonhosted.org/packages/76/31/06c2676c88bf239e20754e7acbe5c77c884a48b4ff0be712e15e38259cdb/aiohttp-2.3.0a2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1b4127b27ce041652970d6cc0acd1cbf", "sha256": "8eea1039295f524cca8362a5cafae1eb1cda9a6f66c786e8e0c8cf8b69613b17" }, "downloads": -1, "filename": "aiohttp-2.3.0a2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "1b4127b27ce041652970d6cc0acd1cbf", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 361551, "upload_time": "2017-10-17T14:01:33", "upload_time_iso_8601": "2017-10-17T14:01:33.576231Z", "url": "https://files.pythonhosted.org/packages/b9/2d/a9c63185c5f055546ef16b919fb11f33b51e8aaecd964d65c5ddb6a926b2/aiohttp-2.3.0a2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0a8b132124961c2a0dba083b2b449b0f", "sha256": "023d18b81b5a057b6a8d2116a80a7018ac1b62bc1453eb7bad15de2a688f848a" }, "downloads": -1, "filename": "aiohttp-2.3.0a2-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0a8b132124961c2a0dba083b2b449b0f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 628145, "upload_time": "2017-10-17T14:24:43", "upload_time_iso_8601": "2017-10-17T14:24:43.154202Z", "url": "https://files.pythonhosted.org/packages/37/65/45623da61d18c16f4b62fe6e5e686a8b2966c67955d3e99aa25b31381009/aiohttp-2.3.0a2-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "453d983edd64e2d458e140446fcd14e6", "sha256": "fd904856172c815a193d6034d46a41aae7a5f64241e63101baefc8096669b8e7" }, "downloads": -1, "filename": "aiohttp-2.3.0a2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "453d983edd64e2d458e140446fcd14e6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 656518, "upload_time": "2017-10-17T14:24:45", "upload_time_iso_8601": "2017-10-17T14:24:45.320109Z", "url": "https://files.pythonhosted.org/packages/48/59/da0dda1989844b3b545fb1d8f0129be036ef490d9ba100f14d60c63b96de/aiohttp-2.3.0a2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "55d1308d3857886e86d606b665efd97d", "sha256": "010704667f1605b1b6503a1cd1dca59a9a72e59f23d74794dd358c9169708a09" }, "downloads": -1, "filename": "aiohttp-2.3.0a2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "55d1308d3857886e86d606b665efd97d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 352155, "upload_time": "2017-10-17T14:03:26", "upload_time_iso_8601": "2017-10-17T14:03:26.751200Z", "url": "https://files.pythonhosted.org/packages/af/c3/d3c910d6ee2711e27b00a3e308a339c46b5bf0a6b157e39b85ac1883274a/aiohttp-2.3.0a2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "febb3e2a2a79763a6d9e753969a29b72", "sha256": "f0d3946f991540b8dafd54fa59c69a07cd1d78b0ccae9e0957a4e117a26a0741" }, "downloads": -1, "filename": "aiohttp-2.3.0a2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "febb3e2a2a79763a6d9e753969a29b72", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 363413, "upload_time": "2017-10-17T14:05:27", "upload_time_iso_8601": "2017-10-17T14:05:27.396542Z", "url": "https://files.pythonhosted.org/packages/8f/eb/0d63268466b030717aa0f1884c3644e893be97ad5d6adbc8aa710edb1bf7/aiohttp-2.3.0a2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "2.3.0a3": [ { "comment_text": "", "digests": { "md5": "793b14849a8f4f9bbc07129b05a1f2e4", "sha256": "1dece20dbc7e79191911843ec8513a02273e333421a2f0395778dec40a3a45f7" }, "downloads": -1, "filename": "aiohttp-2.3.0a3-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "793b14849a8f4f9bbc07129b05a1f2e4", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 349894, "upload_time": "2017-10-17T19:31:42", "upload_time_iso_8601": "2017-10-17T19:31:42.336772Z", "url": "https://files.pythonhosted.org/packages/be/95/ba3802792c938f2b69e02ec879d38760d9ce8e83c63db22c57125aa77fd5/aiohttp-2.3.0a3-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2fb0cff32060201aa248b9c7f8cb7fc3", "sha256": "f9f500d1ae7c12be1b4d6a6ed933546dd66bd55b58e09cd6cff1faeb2caf00c9" }, "downloads": -1, "filename": "aiohttp-2.3.0a3-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "2fb0cff32060201aa248b9c7f8cb7fc3", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 356936, "upload_time": "2017-10-17T19:33:40", "upload_time_iso_8601": "2017-10-17T19:33:40.218814Z", "url": "https://files.pythonhosted.org/packages/02/e5/b02a290a774d28f54f86c65acad353c4fd3aaa3d242ba647da9ed877d33e/aiohttp-2.3.0a3-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08430c7ec4519b38129e308519eb9e65", "sha256": "f1d6275e4e6fe7584f2912c3a3b71613a8738ca252eab727ed622c3fc7828f5e" }, "downloads": -1, "filename": "aiohttp-2.3.0a3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "08430c7ec4519b38129e308519eb9e65", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 350525, "upload_time": "2017-10-17T19:35:34", "upload_time_iso_8601": "2017-10-17T19:35:34.569508Z", "url": "https://files.pythonhosted.org/packages/ef/da/e6b42b8869118123105c3eda7f39db62297c0bf4803b576a6b1165ba74a8/aiohttp-2.3.0a3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "393330b7c859ac31d4a7511ff5df2f16", "sha256": "96ac37f4baf3b6e7ab689370b754123fb8501959043b2f7cc316aa46e913b6ba" }, "downloads": -1, "filename": "aiohttp-2.3.0a3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "393330b7c859ac31d4a7511ff5df2f16", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 361553, "upload_time": "2017-10-17T19:37:32", "upload_time_iso_8601": "2017-10-17T19:37:32.760015Z", "url": "https://files.pythonhosted.org/packages/fa/a8/8185fe6cd589d08043c48e61aac1709175d225db1cabfc47caf92b447cf0/aiohttp-2.3.0a3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "53ed6f0011b258321ed5f6efc11580c8", "sha256": "b2be97b75b05934268d7f0fd18c0e501f621cc662c65003d70ae59db45e42e98" }, "downloads": -1, "filename": "aiohttp-2.3.0a3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "53ed6f0011b258321ed5f6efc11580c8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 352154, "upload_time": "2017-10-17T19:39:18", "upload_time_iso_8601": "2017-10-17T19:39:18.569113Z", "url": "https://files.pythonhosted.org/packages/76/05/46372d71f90bf566ef5be58649cf3d511025303c9629b734eada37541d37/aiohttp-2.3.0a3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null } ], "2.3.0a4": [ { "comment_text": "", "digests": { "md5": "e1ed54e36918c6ea1b9ff3b6570cbb9d", "sha256": "dad4fc7e84b8622bfb01fdf06701bed12d51a8058df8c139ed770b417dc040c0" }, "downloads": -1, "filename": "aiohttp-2.3.0a4-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e1ed54e36918c6ea1b9ff3b6570cbb9d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 621638, "upload_time": "2017-10-17T20:52:25", "upload_time_iso_8601": "2017-10-17T20:52:25.717872Z", "url": "https://files.pythonhosted.org/packages/90/43/a431bee0903f36a44c291f32456dff11436ba5271869cee28cba6252924e/aiohttp-2.3.0a4-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "379df9fe257cb525ac71c76e7c901903", "sha256": "a2af3929b363eca8b8814b45003967ea7d10d6fb783c4c2de3200bc9550fda45" }, "downloads": -1, "filename": "aiohttp-2.3.0a4-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "379df9fe257cb525ac71c76e7c901903", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 647615, "upload_time": "2017-10-17T20:52:27", "upload_time_iso_8601": "2017-10-17T20:52:27.717519Z", "url": "https://files.pythonhosted.org/packages/d4/1b/5f6262601f842a8a2b697cb0327925c5b4e144cac9599cbc5bd462841a92/aiohttp-2.3.0a4-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7dee011298bb28c2ff734c6ddf20152f", "sha256": "c74e76778eaca0ac55b9eb1a06eacfdf628a3408e572f9829d0c5d442e41dc86" }, "downloads": -1, "filename": "aiohttp-2.3.0a4-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "7dee011298bb28c2ff734c6ddf20152f", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 350060, "upload_time": "2017-10-17T19:43:13", "upload_time_iso_8601": "2017-10-17T19:43:13.741970Z", "url": "https://files.pythonhosted.org/packages/5e/df/f9c58d89a4342326ec5f6284156d72974d28b3f09b9d3122594efb75042f/aiohttp-2.3.0a4-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a81ffdb850e2f610a55012e02b4c7ad0", "sha256": "22960731ec358e3c217361f4ea7dbbcf1e2fb4bace8349d8cbb259351ef24f1d" }, "downloads": -1, "filename": "aiohttp-2.3.0a4-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "a81ffdb850e2f610a55012e02b4c7ad0", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 356929, "upload_time": "2017-10-17T19:45:32", "upload_time_iso_8601": "2017-10-17T19:45:32.093493Z", "url": "https://files.pythonhosted.org/packages/84/23/8aee4c040e77bc542830029fcb77cfdc42e2ae5940f27a2286b7511c112e/aiohttp-2.3.0a4-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a365045420d0ff1d181ac7f64b68ed2", "sha256": "cc5a2638c3771c4d3a446bebd7e8965cd75a2b5861cd71500de9da3ec731b9ed" }, "downloads": -1, "filename": "aiohttp-2.3.0a4-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5a365045420d0ff1d181ac7f64b68ed2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 611626, "upload_time": "2017-10-17T20:52:32", "upload_time_iso_8601": "2017-10-17T20:52:32.120677Z", "url": "https://files.pythonhosted.org/packages/8a/d8/5ac7411208a95086208fe2e555b42c30b4f7732064fe882e6dada107fce7/aiohttp-2.3.0a4-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6332d40ace12dae846dd11080d7963ce", "sha256": "07713924ad7bb441cc3630496b2b4729504d8c945cd93fef0d2350769d0872ff" }, "downloads": -1, "filename": "aiohttp-2.3.0a4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6332d40ace12dae846dd11080d7963ce", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 641140, "upload_time": "2017-10-17T20:52:34", "upload_time_iso_8601": "2017-10-17T20:52:34.359516Z", "url": "https://files.pythonhosted.org/packages/3f/21/2703e125dbabc31b157264720abb19f65568df0c172c5350eec3dde43b9b/aiohttp-2.3.0a4-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75b74edfa5b4c449e07b27bf5f284660", "sha256": "354426c524bc37d4b6496132acf7c4ce8baa2c5442c02ee9400a3cb81c8e76ee" }, "downloads": -1, "filename": "aiohttp-2.3.0a4-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "75b74edfa5b4c449e07b27bf5f284660", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 350455, "upload_time": "2017-10-17T19:47:21", "upload_time_iso_8601": "2017-10-17T19:47:21.977961Z", "url": "https://files.pythonhosted.org/packages/26/a7/7bb00f7b1d4ded4b06854278985175dfd0e513e279fcbc415e7a5f32164d/aiohttp-2.3.0a4-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "761c4d4f372cb47362c0e9665193b49c", "sha256": "b38fd7d780419a9dc768a917536229ce10ed911f1f6f4b0e781ae019cf09bc6b" }, "downloads": -1, "filename": "aiohttp-2.3.0a4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "761c4d4f372cb47362c0e9665193b49c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 361479, "upload_time": "2017-10-17T19:49:40", "upload_time_iso_8601": "2017-10-17T19:49:40.540385Z", "url": "https://files.pythonhosted.org/packages/be/27/ab223df951455218528a1acc73f0c77c69ff46cf719de887c031cdb86a9c/aiohttp-2.3.0a4-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43fad310ea428e41b55f530991e8e0e4", "sha256": "c601b3af0ae6d2a997158ea485c0b6a97f6b301ccb12e263bb12dbbca3429fd5" }, "downloads": -1, "filename": "aiohttp-2.3.0a4-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "43fad310ea428e41b55f530991e8e0e4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 627782, "upload_time": "2017-10-17T20:52:38", "upload_time_iso_8601": "2017-10-17T20:52:38.434179Z", "url": "https://files.pythonhosted.org/packages/0e/e1/128acb80d8a1eeb78c237caf81b6424202afe8eb4ad8c8fabc874669386a/aiohttp-2.3.0a4-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a38e05216a28805c737d55d01784620c", "sha256": "917d71a99f35ceb28b26cb14a21bd8c01660e8a63bdb1600271b93d52aeed797" }, "downloads": -1, "filename": "aiohttp-2.3.0a4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a38e05216a28805c737d55d01784620c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 655519, "upload_time": "2017-10-17T20:52:41", "upload_time_iso_8601": "2017-10-17T20:52:41.526145Z", "url": "https://files.pythonhosted.org/packages/22/b4/565faf69b1f88e3993319d80254634e6365141598ab3e9308f585190d3c6/aiohttp-2.3.0a4-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b9683cd93fee65c0332e38a727f198c2", "sha256": "99beb63631a87a2c205a2828fddf35486e977b76a4e19274d98b2d11e06f2ecd" }, "downloads": -1, "filename": "aiohttp-2.3.0a4-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "b9683cd93fee65c0332e38a727f198c2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 352120, "upload_time": "2017-10-17T19:51:36", "upload_time_iso_8601": "2017-10-17T19:51:36.959489Z", "url": "https://files.pythonhosted.org/packages/0e/46/a0ae472df4335383966d8a660564c6d648505e736adc4ae0dda688533b90/aiohttp-2.3.0a4-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a6aae1e06894ee95e9c28ecdfb62c8f7", "sha256": "9ab72d17aa585bc06cd24917710a4adbc1a7d80bb0fdbad6c6d27e427cb989d6" }, "downloads": -1, "filename": "aiohttp-2.3.0a4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "a6aae1e06894ee95e9c28ecdfb62c8f7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 363349, "upload_time": "2017-10-17T19:53:28", "upload_time_iso_8601": "2017-10-17T19:53:28.216066Z", "url": "https://files.pythonhosted.org/packages/c7/7d/13e7f6fcda938b65a0068ee9861a9a71265656aed30db450401029b20cff/aiohttp-2.3.0a4-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "debd478de5e16ff0919982b182e5f0eb", "sha256": "c8adb7b6131a7444ea542d7b1e75e89f7ebbcd48ffacb6f527028a0b6b3bf937" }, "downloads": -1, "filename": "aiohttp-2.3.0a4.tar.gz", "has_sig": false, "md5_digest": "debd478de5e16ff0919982b182e5f0eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 585446, "upload_time": "2017-10-17T20:52:44", "upload_time_iso_8601": "2017-10-17T20:52:44.372009Z", "url": "https://files.pythonhosted.org/packages/d7/60/af44588ecc281733870b0a91555b69883aab9178d970def69fb57e632247/aiohttp-2.3.0a4.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "a64f8a0808cc5809484d1639308b8cf6", "sha256": "078e1b47799c04ebf2847da5dd64481aea51c358b3546aa52a30ebb142036f93" }, "downloads": -1, "filename": "aiohttp-2.3.1-cp34-cp34m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "a64f8a0808cc5809484d1639308b8cf6", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 380568, "upload_time": "2017-10-19T11:39:13", "upload_time_iso_8601": "2017-10-19T11:39:13.502940Z", "url": "https://files.pythonhosted.org/packages/cc/b4/e4a16e83e115428869cc58d5e52c4e8f02a1f192a9102906f531b1553a42/aiohttp-2.3.1-cp34-cp34m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4cd1550352f46aff097d840aa233d1c6", "sha256": "6b3a04457ef7477456719179b558dbe74a604c5f1381c31a8609e21c7d769ff0" }, "downloads": -1, "filename": "aiohttp-2.3.1-cp34-cp34m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "4cd1550352f46aff097d840aa233d1c6", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 380572, "upload_time": "2017-10-19T13:53:21", "upload_time_iso_8601": "2017-10-19T13:53:21.088888Z", "url": "https://files.pythonhosted.org/packages/04/e0/edcf66c450f682433a74d7ecec6e8a833fc36ed582c44b499ba5aa10df49/aiohttp-2.3.1-cp34-cp34m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed27d459038cd3802f2015f3c23c64fa", "sha256": "2345cd90aad4a9670edc76930a1b19d7771138c2f711093eb4a1e7fbda55486b" }, "downloads": -1, "filename": "aiohttp-2.3.1-cp34-cp34m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "ed27d459038cd3802f2015f3c23c64fa", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 378648, "upload_time": "2017-10-19T15:25:20", "upload_time_iso_8601": "2017-10-19T15:25:20.598197Z", "url": "https://files.pythonhosted.org/packages/86/8e/5732497ca95f3841d5e5ceecd7a997c5292d331e29948bd612a993e857fe/aiohttp-2.3.1-cp34-cp34m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1aa9e4773fb66f45e03916d5612539e2", "sha256": "3a21dac27dd56c5087b7380ca81544f84b2600b18df07ccecd53fb4c3f50b29c" }, "downloads": -1, "filename": "aiohttp-2.3.1-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1aa9e4773fb66f45e03916d5612539e2", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 627508, "upload_time": "2017-10-19T10:03:51", "upload_time_iso_8601": "2017-10-19T10:03:51.944353Z", "url": "https://files.pythonhosted.org/packages/1f/d4/a85e28ff689ed3268a258a79a26baae8ffaab38996c683b2e116e6dfa8a3/aiohttp-2.3.1-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "21b6d409b6a566b5d89eb66fff57891c", "sha256": "cf89f42dcdf8c31f0ec69c674afaf16511cb8d7c76067aab0642bd521c88bda5" }, "downloads": -1, "filename": "aiohttp-2.3.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "21b6d409b6a566b5d89eb66fff57891c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 653478, "upload_time": "2017-10-19T10:03:54", "upload_time_iso_8601": "2017-10-19T10:03:54.213326Z", "url": "https://files.pythonhosted.org/packages/2e/72/3360442f0d0c93aa9592ac4834db07f9a89deb212a3e227971fb527ce153/aiohttp-2.3.1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "803ad6e86ecccc0026bee8294359cabc", "sha256": "9ed7dcd2c4e930c2af5d1cc270e97fcd90af73f0936fd9513d4165f2c9bb6a3e" }, "downloads": -1, "filename": "aiohttp-2.3.1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "803ad6e86ecccc0026bee8294359cabc", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 355917, "upload_time": "2017-10-19T01:26:59", "upload_time_iso_8601": "2017-10-19T01:26:59.061958Z", "url": "https://files.pythonhosted.org/packages/d1/52/f058334211e1227ddf1e2e447f9b5f2ca0da1364343edfd7afe436d547dd/aiohttp-2.3.1-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b78351064f08fa33dacd14695ca72628", "sha256": "892881fdba7a2b8a8f5da8f74d36e7280043b6373f9194dddae1a6ad55f09bbb" }, "downloads": -1, "filename": "aiohttp-2.3.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "b78351064f08fa33dacd14695ca72628", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 362781, "upload_time": "2017-10-19T01:29:00", "upload_time_iso_8601": "2017-10-19T01:29:00.612006Z", "url": "https://files.pythonhosted.org/packages/94/44/7f5381a6846a3b2267e03f851aa4fd4b3a02cdfc57c1ee9759ca5223f0d2/aiohttp-2.3.1-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "665077ab94ffe676030e431c970b0044", "sha256": "cd004e4fef3c8737ab15b296ea639a1b4f4bc4e18f9f0d8eb9bfed9425d2eb71" }, "downloads": -1, "filename": "aiohttp-2.3.1-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "665077ab94ffe676030e431c970b0044", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 380253, "upload_time": "2017-10-19T12:42:10", "upload_time_iso_8601": "2017-10-19T12:42:10.731540Z", "url": "https://files.pythonhosted.org/packages/91/1a/d74d893d14d47a72bc7fe07ec48ed20d823bfd9f9a543f8644eb016aaf47/aiohttp-2.3.1-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e6f0dd8cc51ae7a133f00e3477e4729", "sha256": "d81a711c888399511f76e3b3fc6473e9c467e0978d1c03e315d92bfd0cf1b817" }, "downloads": -1, "filename": "aiohttp-2.3.1-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "0e6f0dd8cc51ae7a133f00e3477e4729", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 380096, "upload_time": "2017-10-19T14:14:05", "upload_time_iso_8601": "2017-10-19T14:14:05.051845Z", "url": "https://files.pythonhosted.org/packages/cc/29/42e707124c4cd4d6a8645d0b4126c7d545c4b9350c928f62caf1a69524a7/aiohttp-2.3.1-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a1fded6d19f3c1d17cff350a9f13e1da", "sha256": "f2dd961ab8e7033bb966458eaa4707338ec1ec41b553bbdc61920f3746c06a52" }, "downloads": -1, "filename": "aiohttp-2.3.1-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "a1fded6d19f3c1d17cff350a9f13e1da", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 376107, "upload_time": "2017-10-19T16:21:43", "upload_time_iso_8601": "2017-10-19T16:21:43.449842Z", "url": "https://files.pythonhosted.org/packages/fc/52/01dc4ae27df3c92128ba051f86852d4156948b88fb90ea9ed14713e32273/aiohttp-2.3.1-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7f09ea99658c36c9928d6f53585d1f0c", "sha256": "b34ef58ef0dfb3db17b9261904849ecbf2f2376ec6e1dbc25b282612d0446651" }, "downloads": -1, "filename": "aiohttp-2.3.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7f09ea99658c36c9928d6f53585d1f0c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 617484, "upload_time": "2017-10-19T10:03:57", "upload_time_iso_8601": "2017-10-19T10:03:57.296914Z", "url": "https://files.pythonhosted.org/packages/1b/a6/099348350ee3d9c8000647d41554caafbb78860e8b65a1146d4f578dee51/aiohttp-2.3.1-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19a18515781fed201785060b9b0f22f3", "sha256": "29d215f084b743ccbd19fb575cbd3eff1357c7611e0a8a22093e348f2227848a" }, "downloads": -1, "filename": "aiohttp-2.3.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "19a18515781fed201785060b9b0f22f3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 646997, "upload_time": "2017-10-19T10:03:59", "upload_time_iso_8601": "2017-10-19T10:03:59.317984Z", "url": "https://files.pythonhosted.org/packages/54/a2/0d14b66bb7da046c7a1132744a2a52fb3b6a1c96a05700f83557f2ec9c9d/aiohttp-2.3.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58ab9255c341cb79b230a70f20a5214d", "sha256": "bce9f418782789757537657010b2d7b2a7fb5a8171eff206531f248c41617e32" }, "downloads": -1, "filename": "aiohttp-2.3.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "58ab9255c341cb79b230a70f20a5214d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 356313, "upload_time": "2017-10-19T01:30:46", "upload_time_iso_8601": "2017-10-19T01:30:46.817042Z", "url": "https://files.pythonhosted.org/packages/3d/ee/b4d6bbb581c6d518ab69e47ae086ff23d084423ffb0fa38fb3bed9bee312/aiohttp-2.3.1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5061ed0caf78beecce4e1ba8069369c0", "sha256": "ed795ac9548747b04eaf04f6bf4589341556f93aad9ae0016e42f9a47d0e2ffa" }, "downloads": -1, "filename": "aiohttp-2.3.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "5061ed0caf78beecce4e1ba8069369c0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 367336, "upload_time": "2017-10-19T01:32:42", "upload_time_iso_8601": "2017-10-19T01:32:42.691671Z", "url": "https://files.pythonhosted.org/packages/3e/5c/5e4c1b720a0b81cd33cc6cd1333e918845ec7e3bba44efaf5c69fb6f5662/aiohttp-2.3.1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "969eaa45f76be3454ad2c5dbb0983456", "sha256": "d90b33372b12aecdd62ca83b00f384dd5e7f29d1c613ad89d0861515e633a2eb" }, "downloads": -1, "filename": "aiohttp-2.3.1-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "969eaa45f76be3454ad2c5dbb0983456", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 382815, "upload_time": "2017-10-19T13:00:13", "upload_time_iso_8601": "2017-10-19T13:00:13.487741Z", "url": "https://files.pythonhosted.org/packages/f5/8b/ea20b38d6da50245709f5fddda7bc9ababcb1e3a9fe56ae6ff9d5cfbbf6c/aiohttp-2.3.1-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "574b8e55271ff60a32f87d6e0aac90e9", "sha256": "5f7a6bf226b7a3ac9bb7c08ba3fe2e8a5418fd9472e5099f275d8258055bbc2a" }, "downloads": -1, "filename": "aiohttp-2.3.1-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "574b8e55271ff60a32f87d6e0aac90e9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 382387, "upload_time": "2017-10-19T15:05:54", "upload_time_iso_8601": "2017-10-19T15:05:54.309576Z", "url": "https://files.pythonhosted.org/packages/b0/75/69d05eb8a8c7d3f8698b5fb3c9b3442f234e9678ecc8b6b9c858b3fc718f/aiohttp-2.3.1-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e2ea0261e3659a1d978041f58ad18e87", "sha256": "900584dbf8abe851007f155ab9d52466bd6f281cc749f43f86b8f9c1adf3e4e3" }, "downloads": -1, "filename": "aiohttp-2.3.1-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "e2ea0261e3659a1d978041f58ad18e87", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 375842, "upload_time": "2017-10-19T16:39:40", "upload_time_iso_8601": "2017-10-19T16:39:40.993255Z", "url": "https://files.pythonhosted.org/packages/7b/63/e16fd413a99e30868dc883fa0989d6b9f3b0afee0dd2168792930b04c092/aiohttp-2.3.1-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2317773609c7b6c68274d86737fff268", "sha256": "daf8d56b9c7b5ca553ed23c5559a9489d5acb919c20321ccf8145822fc9dc366" }, "downloads": -1, "filename": "aiohttp-2.3.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2317773609c7b6c68274d86737fff268", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 633651, "upload_time": "2017-10-19T10:04:02", "upload_time_iso_8601": "2017-10-19T10:04:02.982851Z", "url": "https://files.pythonhosted.org/packages/35/01/40ea9ed6037f978601f648f8a89e471f613b33cff7819567e3cb65167702/aiohttp-2.3.1-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "139b2f0510b2ba0bba5190b0a0539e5d", "sha256": "f5266fce1990a289c7caa092c6e60d9c5162fa204c338748e5164e67c3a77e4b" }, "downloads": -1, "filename": "aiohttp-2.3.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "139b2f0510b2ba0bba5190b0a0539e5d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 661390, "upload_time": "2017-10-19T10:04:06", "upload_time_iso_8601": "2017-10-19T10:04:06.461632Z", "url": "https://files.pythonhosted.org/packages/5f/d5/e79259187e41e851a238ad150f66d2a433a3a4315c114d70c10ced4d5be2/aiohttp-2.3.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f68afbe90e0fe6d0c54e82963bf8536", "sha256": "14aba6a4c9d3bfcd570c43c7b203837e426459d0e1df5525d50cfb17c1a70bc0" }, "downloads": -1, "filename": "aiohttp-2.3.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "6f68afbe90e0fe6d0c54e82963bf8536", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 357973, "upload_time": "2017-10-19T01:34:35", "upload_time_iso_8601": "2017-10-19T01:34:35.062005Z", "url": "https://files.pythonhosted.org/packages/06/0d/20d3d3abf65638e229c50e639c9b4fc03d0be0d2d7c99d85c3a48b0425ff/aiohttp-2.3.1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4574ce47c557e802785a64af861ab20", "sha256": "6ad91bc57d89c0a4e66a74fdc29b9805bed32b21ba7e2e1b4f51bda68fe264eb" }, "downloads": -1, "filename": "aiohttp-2.3.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "d4574ce47c557e802785a64af861ab20", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 369207, "upload_time": "2017-10-19T01:36:40", "upload_time_iso_8601": "2017-10-19T01:36:40.453271Z", "url": "https://files.pythonhosted.org/packages/12/91/4f6e59c1658c0fcbb491933140842d39bab8bd500add9336813da0e3f046/aiohttp-2.3.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "69cf8ef9e5bdfeee1187b60eeec22545", "sha256": "04f58bbcc9ae6f9aec30b9219ae47fa3c31586c77679405720545738ea62236e" }, "downloads": -1, "filename": "aiohttp-2.3.1.tar.gz", "has_sig": false, "md5_digest": "69cf8ef9e5bdfeee1187b60eeec22545", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1082158, "upload_time": "2017-10-19T10:08:06", "upload_time_iso_8601": "2017-10-19T10:08:06.497625Z", "url": "https://files.pythonhosted.org/packages/2e/e6/9175733f42cec4f2cd6834564517f2f6260e27dab5edb75afdaa66f101bb/aiohttp-2.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.10": [ { "comment_text": "", "digests": { "md5": "c347f83a4fb38351fed0b917d6c2d677", "sha256": "834f687b806fbf49cb135b5a208b5c27338e19c219d6e09e9049936e01e8bea8" }, "downloads": -1, "filename": "aiohttp-2.3.10-cp34-cp34m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "c347f83a4fb38351fed0b917d6c2d677", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 382984, "upload_time": "2018-02-02T11:16:47", "upload_time_iso_8601": "2018-02-02T11:16:47.491558Z", "url": "https://files.pythonhosted.org/packages/fc/5b/a8b6ccfbfa7b1172756e5ff035332e099a8bc84d5e58e217ca0ba536f614/aiohttp-2.3.10-cp34-cp34m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4a742b12f254d5fd9191c239d9d89eae", "sha256": "6b8c5a00432b8a5a083792006e8fdfb558b8b10019ce254200855264d3a25895" }, "downloads": -1, "filename": "aiohttp-2.3.10-cp34-cp34m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "4a742b12f254d5fd9191c239d9d89eae", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 382989, "upload_time": "2018-02-02T11:27:35", "upload_time_iso_8601": "2018-02-02T11:27:35.842494Z", "url": "https://files.pythonhosted.org/packages/06/aa/389b76467638d01674c17a545c1101c45a6f17d64997785bf4f076631996/aiohttp-2.3.10-cp34-cp34m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a05965aeab4ae16240b8f463a9c90ec5", "sha256": "7b407c22b0ab473ffe0a7d3231f2084a8ae80fdb64a31842b88d57d6b7bdab7c" }, "downloads": -1, "filename": "aiohttp-2.3.10-cp34-cp34m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "a05965aeab4ae16240b8f463a9c90ec5", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 377868, "upload_time": "2018-02-02T11:40:39", "upload_time_iso_8601": "2018-02-02T11:40:39.422342Z", "url": "https://files.pythonhosted.org/packages/8b/73/d438f79543da53cf6abd570e7de5da75b12bba3e4a7b7514f049c245bbc7/aiohttp-2.3.10-cp34-cp34m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4152d1026a47cbf6be179029d8a4fb4", "sha256": "14821eb8613bfab9118be3c55afc87bf4cef97689896fa0874c6877b117afbeb" }, "downloads": -1, "filename": "aiohttp-2.3.10-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d4152d1026a47cbf6be179029d8a4fb4", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 629959, "upload_time": "2018-02-02T11:20:33", "upload_time_iso_8601": "2018-02-02T11:20:33.244450Z", "url": "https://files.pythonhosted.org/packages/3c/d8/74e380eac068273391ec1e11eea263fc7747e700d942c7eda268f693794b/aiohttp-2.3.10-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "04f642ed411fed4a9432a816d54e177e", "sha256": "8f32a4e157bad9c60ebc38c3bb93fcc907a020b017ddf8f7ab1580390e21940e" }, "downloads": -1, "filename": "aiohttp-2.3.10-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "04f642ed411fed4a9432a816d54e177e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 655910, "upload_time": "2018-02-02T11:20:35", "upload_time_iso_8601": "2018-02-02T11:20:35.018976Z", "url": "https://files.pythonhosted.org/packages/03/15/e910dd67933d39cb45bc94543d546646e36177f3d35795a190f64c5a8225/aiohttp-2.3.10-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d560e2fc31baac5cb59ad9a547d57df6", "sha256": "82a9068d9cb15eb2d99ecf39f8d56b4ed9f931a77a3622a0de747465fd2a7b96" }, "downloads": -1, "filename": "aiohttp-2.3.10-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "d560e2fc31baac5cb59ad9a547d57df6", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 358390, "upload_time": "2018-02-02T09:47:32", "upload_time_iso_8601": "2018-02-02T09:47:32.009412Z", "url": "https://files.pythonhosted.org/packages/54/9a/23d9d21fdfd30b0f24900ec8051f4334251fa9214ff4f1fa258284319512/aiohttp-2.3.10-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "80479f216c7709258740d0742fd113f3", "sha256": "7ac6378ae364d8e5e5260c7224ea4a1965cb6f4719f15d0552349d0b0cc93953" }, "downloads": -1, "filename": "aiohttp-2.3.10-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "80479f216c7709258740d0742fd113f3", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 365257, "upload_time": "2018-02-02T09:50:04", "upload_time_iso_8601": "2018-02-02T09:50:04.719928Z", "url": "https://files.pythonhosted.org/packages/c6/af/03d71172662c62f5bb34dcb4566cc914d5746fc8499312f89447ae145de0/aiohttp-2.3.10-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bf8e04f46e34a32514dc5ec0e4febc5e", "sha256": "5a952d4af7de5f78dfb3206dbc352717890b37d447f0bbd4b5969b3c8bb713af" }, "downloads": -1, "filename": "aiohttp-2.3.10-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "bf8e04f46e34a32514dc5ec0e4febc5e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 382673, "upload_time": "2018-02-02T11:19:18", "upload_time_iso_8601": "2018-02-02T11:19:18.289707Z", "url": "https://files.pythonhosted.org/packages/72/9d/1e4194c08db81d32c56b7462ef32992a2a5c431b69e73982a04810752316/aiohttp-2.3.10-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "028ece006bb461eb3336618cbb1eb208", "sha256": "b25c7720c495048ed658086a29925ab485ac7ececf1b346f2b459e5431d85016" }, "downloads": -1, "filename": "aiohttp-2.3.10-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "028ece006bb461eb3336618cbb1eb208", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 382512, "upload_time": "2018-02-02T11:34:17", "upload_time_iso_8601": "2018-02-02T11:34:17.274164Z", "url": "https://files.pythonhosted.org/packages/ce/98/8c4f31ccdb2ae16c2de45dc8facf74be3b3f496c67c4a8471991d0ea636d/aiohttp-2.3.10-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a633e0cc97cb0c23e75bdb6056120e0e", "sha256": "528b0b811b6260a79222b055664b82093d01f35fe5c82521d8659cb2b28b8044" }, "downloads": -1, "filename": "aiohttp-2.3.10-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "a633e0cc97cb0c23e75bdb6056120e0e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 375681, "upload_time": "2018-02-02T11:42:44", "upload_time_iso_8601": "2018-02-02T11:42:44.622724Z", "url": "https://files.pythonhosted.org/packages/ec/34/d5f0fb9b8b435b14f9126f643e17810ab8e10e41c1fec2a03dc4370c22a0/aiohttp-2.3.10-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bdad9c0f35635460d2d59c79a4c02b65", "sha256": "46ace48789865a89992419205024ae451d577876f9919fbb0f22f71189822dea" }, "downloads": -1, "filename": "aiohttp-2.3.10-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "bdad9c0f35635460d2d59c79a4c02b65", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 619963, "upload_time": "2018-02-02T11:20:37", "upload_time_iso_8601": "2018-02-02T11:20:37.548701Z", "url": "https://files.pythonhosted.org/packages/24/9e/9e7e8955fd2db59e96bfe7d9da13b29171772006af0edeb60851788fff86/aiohttp-2.3.10-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e481db3dcbc2843d67fd2a78e56c87dc", "sha256": "5436ca0ed752bb05a399fc07dc86dc23c756db523a3b7d5da46a457eacf4c4b5" }, "downloads": -1, "filename": "aiohttp-2.3.10-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e481db3dcbc2843d67fd2a78e56c87dc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 649465, "upload_time": "2018-02-02T11:20:39", "upload_time_iso_8601": "2018-02-02T11:20:39.231481Z", "url": "https://files.pythonhosted.org/packages/4f/ac/a018334fb3302b69aa1418fc06208a6ebb13af4694cdd706fd43aa80d3fa/aiohttp-2.3.10-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5cd9607e9549633fac0ff94d16059b46", "sha256": "f5e7d41d924a1d5274060c467539ee0c4f3bab318c1671ad65abd91f6b637baf" }, "downloads": -1, "filename": "aiohttp-2.3.10-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "5cd9607e9549633fac0ff94d16059b46", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 358760, "upload_time": "2018-02-02T09:52:09", "upload_time_iso_8601": "2018-02-02T09:52:09.611467Z", "url": "https://files.pythonhosted.org/packages/5a/08/0a3d40aae8123ddc741b57db747cd620f12bed23411ddc612e4faea58588/aiohttp-2.3.10-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0089f4b1d60c0a1cf11568c284de8f6e", "sha256": "a8c12f3184c7cad8f66cae6c945d2c97e598b0cb7afd655a5b9471475e67f30e" }, "downloads": -1, "filename": "aiohttp-2.3.10-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "0089f4b1d60c0a1cf11568c284de8f6e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 369783, "upload_time": "2018-02-02T09:54:43", "upload_time_iso_8601": "2018-02-02T09:54:43.424877Z", "url": "https://files.pythonhosted.org/packages/12/15/efda8668ef375a23a524f3260efea0a06ea0ae92a04c9064f8dc6db21911/aiohttp-2.3.10-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ce32c91d99249a8589b7423092233e0", "sha256": "756fc336a29c551b02252685f01bc87116bc9b04bbd02c1a6b8a96b3c6ad713b" }, "downloads": -1, "filename": "aiohttp-2.3.10-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "0ce32c91d99249a8589b7423092233e0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 385236, "upload_time": "2018-02-02T11:26:07", "upload_time_iso_8601": "2018-02-02T11:26:07.058480Z", "url": "https://files.pythonhosted.org/packages/d2/cd/3dc56c613082b8bb5c1708ff6e176e74fb517b19c12526f80493a58539a5/aiohttp-2.3.10-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18e42225cd3915816feef0ba79f440c8", "sha256": "cf790e61c2af0278f39dcedad9a22532bf81fb029c2cd73b1ceba7bea062c908" }, "downloads": -1, "filename": "aiohttp-2.3.10-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "18e42225cd3915816feef0ba79f440c8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 384808, "upload_time": "2018-02-02T11:35:57", "upload_time_iso_8601": "2018-02-02T11:35:57.485207Z", "url": "https://files.pythonhosted.org/packages/a0/32/58f95b8a6f7e3634cddfc2a5a16596bd3d75d6680d3a06d977deede63e85/aiohttp-2.3.10-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1fdc9154f66a5741c53f968e05522b4b", "sha256": "44c9cf24e63576244c13265ef0786b56d6751f5fb722225ecc021d6ecf91b4d2" }, "downloads": -1, "filename": "aiohttp-2.3.10-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "1fdc9154f66a5741c53f968e05522b4b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 377102, "upload_time": "2018-02-02T11:47:09", "upload_time_iso_8601": "2018-02-02T11:47:09.801356Z", "url": "https://files.pythonhosted.org/packages/b8/2d/05e6723bf80bb754724ebfbe240b1fd790da8716814fb05e9254f9aefc4e/aiohttp-2.3.10-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "52f7f609ef618ebda45afa0f0fd921be", "sha256": "ef1a36a16e72b6689ce0a6c7fc6bd88837d8fef4590b16bd72817644ae1f414d" }, "downloads": -1, "filename": "aiohttp-2.3.10-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "52f7f609ef618ebda45afa0f0fd921be", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 636117, "upload_time": "2018-02-02T11:20:41", "upload_time_iso_8601": "2018-02-02T11:20:41.451440Z", "url": "https://files.pythonhosted.org/packages/06/04/3ce26cd7e86b405f21c0e58c098741f725c30fbcbbdfdf84bd4653c5b84b/aiohttp-2.3.10-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5d23383653e021b6f878eb0ad3f3401a", "sha256": "3a4cdb9ca87c099d8ba5eb91cb8f000b60c21f8c1b50c75e04e8777e903bd278" }, "downloads": -1, "filename": "aiohttp-2.3.10-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5d23383653e021b6f878eb0ad3f3401a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 663820, "upload_time": "2018-02-02T11:20:44", "upload_time_iso_8601": "2018-02-02T11:20:44.580596Z", "url": "https://files.pythonhosted.org/packages/7e/af/b2c6b5939e390e29c5a12e74a344bbc56fc866e3b68c05a7d7737e9006d7/aiohttp-2.3.10-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8bb9cb8a1e2fe92c213ae8922c4bcadd", "sha256": "f72bb19cece43483171264584bbaaf8b97717d9c0f244d1ef4a51df1cdb34085" }, "downloads": -1, "filename": "aiohttp-2.3.10-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "8bb9cb8a1e2fe92c213ae8922c4bcadd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 360417, "upload_time": "2018-02-02T09:56:46", "upload_time_iso_8601": "2018-02-02T09:56:46.813625Z", "url": "https://files.pythonhosted.org/packages/8b/a9/fefe7ba005f59f08a0b74f6e62638d259e05d376b0fa267f099a3643855e/aiohttp-2.3.10-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "068625fa304bfe258cd0a4fba4f8065d", "sha256": "c77e29243a79e376a1b51d71a13df4a61bc54fd4d9597ce3790b8d82ec6eb44d" }, "downloads": -1, "filename": "aiohttp-2.3.10-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "068625fa304bfe258cd0a4fba4f8065d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 371662, "upload_time": "2018-02-02T09:59:24", "upload_time_iso_8601": "2018-02-02T09:59:24.269761Z", "url": "https://files.pythonhosted.org/packages/f8/30/d923097fb66aa59858f530b2525732c13249d36223ff8f22d9d0ff4f58f1/aiohttp-2.3.10-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ad682f635a0392e26320b1ab7d6dd26", "sha256": "8adda6583ba438a4c70693374e10b60168663ffa6564c5c75d3c7a9055290964" }, "downloads": -1, "filename": "aiohttp-2.3.10.tar.gz", "has_sig": false, "md5_digest": "0ad682f635a0392e26320b1ab7d6dd26", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4.2", "size": 848324, "upload_time": "2018-02-02T09:47:33", "upload_time_iso_8601": "2018-02-02T09:47:33.869516Z", "url": "https://files.pythonhosted.org/packages/c0/b9/853b158f5cb5d218daaff0fb0dbc2bd7de45b2c6c5f563dff0ee530ec52a/aiohttp-2.3.10.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.1a1": [ { "comment_text": "", "digests": { "md5": "81406baa8d1952670bd1e9d8ae63f4eb", "sha256": "a4af73a5416a5f5ea097b9bd2d44eb35bd7408c918c161ad1a8b74113e8e3446" }, "downloads": -1, "filename": "aiohttp-2.3.1a1-cp34-cp34m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "81406baa8d1952670bd1e9d8ae63f4eb", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 380595, "upload_time": "2017-10-18T22:12:16", "upload_time_iso_8601": "2017-10-18T22:12:16.536431Z", "url": "https://files.pythonhosted.org/packages/80/0a/06165dd156dbc9f9085305cf8283d7ca57d8ec53c00666fae601459b1539/aiohttp-2.3.1a1-cp34-cp34m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d679e4b45d93c801b6aebbe600c820cf", "sha256": "15143c88762c9c585af4dc831002ee66631e9501209dcf0fb5a95c4a3fd2fe0c" }, "downloads": -1, "filename": "aiohttp-2.3.1a1-cp34-cp34m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "d679e4b45d93c801b6aebbe600c820cf", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 380603, "upload_time": "2017-10-18T23:56:57", "upload_time_iso_8601": "2017-10-18T23:56:57.448815Z", "url": "https://files.pythonhosted.org/packages/48/05/6644bfd65adfc758e324fb9d1c9b4dec615b31eb7931feec770ef707b426/aiohttp-2.3.1a1-cp34-cp34m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f955944fb2d4e899e996ee68a6f0d33d", "sha256": "fdc6ccab6c19fdddb6a46164f1d429ded04e0d47fffe382736fe41d1ad781008" }, "downloads": -1, "filename": "aiohttp-2.3.1a1-cp34-cp34m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "f955944fb2d4e899e996ee68a6f0d33d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 378677, "upload_time": "2017-10-19T04:31:30", "upload_time_iso_8601": "2017-10-19T04:31:30.797251Z", "url": "https://files.pythonhosted.org/packages/4a/cc/e70c4c378fc979846efaa81f6546e6fdf3742bde021fd069a2ed475e28b1/aiohttp-2.3.1a1-cp34-cp34m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a76b891252517e82320cca219a16cc1e", "sha256": "4bcbdf3cb8f6fa13583428be3937fdfe61328cc0c439abc4f14b64412db87fda" }, "downloads": -1, "filename": "aiohttp-2.3.1a1-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a76b891252517e82320cca219a16cc1e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 627519, "upload_time": "2017-10-18T20:55:44", "upload_time_iso_8601": "2017-10-18T20:55:44.160101Z", "url": "https://files.pythonhosted.org/packages/47/78/54753a87fc9e2f3dfb934575a179c78b46b078e465608e434a481fa79dea/aiohttp-2.3.1a1-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef54b5a0e620f138de8467d0484bf02b", "sha256": "19fa2969f64ef5f79898f80fec71abe33fc124859f5db72788ff92828d2b7981" }, "downloads": -1, "filename": "aiohttp-2.3.1a1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ef54b5a0e620f138de8467d0484bf02b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 653497, "upload_time": "2017-10-18T20:55:47", "upload_time_iso_8601": "2017-10-18T20:55:47.110750Z", "url": "https://files.pythonhosted.org/packages/e3/2c/12f69cf976cee9b61a5e59c112986caad92a04a9c6524a51990a6f795ceb/aiohttp-2.3.1a1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1fffadc73798f4d46bd98400cab45726", "sha256": "caf1dd39962c20e35fe6f48e8fc7d6f744958d6b3bc8e5e7bd158078a164f500" }, "downloads": -1, "filename": "aiohttp-2.3.1a1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "1fffadc73798f4d46bd98400cab45726", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 355952, "upload_time": "2017-10-18T14:30:21", "upload_time_iso_8601": "2017-10-18T14:30:21.355763Z", "url": "https://files.pythonhosted.org/packages/ea/81/30582a4205973fcf1129c2e65c82e0ccea750fd9c901720bb204a2810077/aiohttp-2.3.1a1-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "018f363f6c19d36a813bb236b6fcf5f5", "sha256": "015e8f7d2da832772569f1afe263e8d8d1b4e58d30773e75089d4a0f5af94d9f" }, "downloads": -1, "filename": "aiohttp-2.3.1a1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "018f363f6c19d36a813bb236b6fcf5f5", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 362820, "upload_time": "2017-10-18T14:32:19", "upload_time_iso_8601": "2017-10-18T14:32:19.397249Z", "url": "https://files.pythonhosted.org/packages/29/1b/46c9e1cf502c27cbed066511a5b54b72e654eea7b7979ea6a33f1b9f686a/aiohttp-2.3.1a1-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a7a2f58c18476f4d0fc4f457adee898f", "sha256": "345bafdf80d13c31764c6918c9773ecaa7ff3391a1695feb49b74e248e9c3c14" }, "downloads": -1, "filename": "aiohttp-2.3.1a1-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "a7a2f58c18476f4d0fc4f457adee898f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 380281, "upload_time": "2017-10-18T22:11:23", "upload_time_iso_8601": "2017-10-18T22:11:23.737842Z", "url": "https://files.pythonhosted.org/packages/98/8e/455d93daf16d51b931af3d9e3b9aa4752778d96c47cfe3c65c2c3f69d178/aiohttp-2.3.1a1-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "71e475124aff8682595af39f83e28475", "sha256": "4deae415fc98c469aa837d49ce454e021bcd306cbc4a99e6b4f7f6e927a2e6e8" }, "downloads": -1, "filename": "aiohttp-2.3.1a1-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "71e475124aff8682595af39f83e28475", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 380124, "upload_time": "2017-10-19T03:14:14", "upload_time_iso_8601": "2017-10-19T03:14:14.174641Z", "url": "https://files.pythonhosted.org/packages/ee/f7/af12e5ae624265dc74913233c2ed4691b7ba59b9afef8593ccd4594404c1/aiohttp-2.3.1a1-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e11468d456e9432065a41c33e976cc0b", "sha256": "50aec077ced04a45d585a0f148ab59afdccba65b60f6c93bd9435754830c5a69" }, "downloads": -1, "filename": "aiohttp-2.3.1a1-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "e11468d456e9432065a41c33e976cc0b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 376136, "upload_time": "2017-10-19T04:30:35", "upload_time_iso_8601": "2017-10-19T04:30:35.159539Z", "url": "https://files.pythonhosted.org/packages/14/4a/b2a52e453c609f44031cae1c66abd7b51d8098356d441bfd1fbb8ff30c80/aiohttp-2.3.1a1-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "86531a603486424f729e197cbea4911b", "sha256": "04a408a643efaeca9b2b5fb5e89f1f84b1d34e6492eb8f0c9c99f1bd397edde4" }, "downloads": -1, "filename": "aiohttp-2.3.1a1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "86531a603486424f729e197cbea4911b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 617516, "upload_time": "2017-10-18T20:55:51", "upload_time_iso_8601": "2017-10-18T20:55:51.885215Z", "url": "https://files.pythonhosted.org/packages/79/6e/8a1a25fb6587349eb3225d7605254353377d84228600104575c1fbc44b80/aiohttp-2.3.1a1-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f4359d9447e08dd3fdfe19d18eee7717", "sha256": "27f85db646616840ffc23d9ee519fd71bae7236cb7fa479aa7075dbe659f8d82" }, "downloads": -1, "filename": "aiohttp-2.3.1a1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f4359d9447e08dd3fdfe19d18eee7717", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 647038, "upload_time": "2017-10-18T20:55:55", "upload_time_iso_8601": "2017-10-18T20:55:55.619948Z", "url": "https://files.pythonhosted.org/packages/d2/81/97465ea447eb2aec9acfd05bf994ba85bc6e45eab89efc2860c3585a1af9/aiohttp-2.3.1a1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95f1d247ea8a31a316d7b35c8e887505", "sha256": "0cda3c815e600b118cb22e21f42dacfca0de21f713d7246bb284bcb4b036d80d" }, "downloads": -1, "filename": "aiohttp-2.3.1a1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "95f1d247ea8a31a316d7b35c8e887505", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 356352, "upload_time": "2017-10-18T14:34:44", "upload_time_iso_8601": "2017-10-18T14:34:44.275757Z", "url": "https://files.pythonhosted.org/packages/02/46/c594325d6d1dbb892fed195cd28bff7d712f64391944eb2991ac5afcaa62/aiohttp-2.3.1a1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e25a88a35b3c7dd7254506b85fab0ac2", "sha256": "6e719097b53cbd49940a8844902be9ebabadb10c8bb005e5f275b3fb6444d6fd" }, "downloads": -1, "filename": "aiohttp-2.3.1a1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "e25a88a35b3c7dd7254506b85fab0ac2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 367373, "upload_time": "2017-10-18T14:36:48", "upload_time_iso_8601": "2017-10-18T14:36:48.891013Z", "url": "https://files.pythonhosted.org/packages/c6/71/5995bf82b8b1726a7c19863ab908228d20e1be57df06f0da9ec662b12d5c/aiohttp-2.3.1a1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7929719b13debd144e068a8f785f13a6", "sha256": "f3733e4ce0652bbd6345c033eb3069691d21e4234f58c2deb2a0847ac404bd38" }, "downloads": -1, "filename": "aiohttp-2.3.1a1-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "7929719b13debd144e068a8f785f13a6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 382848, "upload_time": "2017-10-19T00:09:32", "upload_time_iso_8601": "2017-10-19T00:09:32.262043Z", "url": "https://files.pythonhosted.org/packages/b0/9c/b4725f337cdc93105a06110f20c81f7515fd84e3ad16f63bae1f7ed1d168/aiohttp-2.3.1a1-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d441267424245de37ca66102cab83d67", "sha256": "d5e7983efc9f39b15b34b0e9a630786021a3d2d8975d93282dbbd7ed09d151ca" }, "downloads": -1, "filename": "aiohttp-2.3.1a1-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "d441267424245de37ca66102cab83d67", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 382414, "upload_time": "2017-10-19T02:05:24", "upload_time_iso_8601": "2017-10-19T02:05:24.371731Z", "url": "https://files.pythonhosted.org/packages/77/72/9a645cec0001fc354ee9b9f0c5f407c025544eb007115b883c55d226a2f5/aiohttp-2.3.1a1-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "377bebcb72b4b920f50ddbd73d266f27", "sha256": "9d03d5a514caddf5b0c766d42ee3d972c1d0907850b70c17c2b91ab647ee5cf5" }, "downloads": -1, "filename": "aiohttp-2.3.1a1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "377bebcb72b4b920f50ddbd73d266f27", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 633670, "upload_time": "2017-10-18T20:55:57", "upload_time_iso_8601": "2017-10-18T20:55:57.367161Z", "url": "https://files.pythonhosted.org/packages/d2/24/dda181f9065e0b9c7844fced245337ad6a1661ec0c36a73a96a161c80141/aiohttp-2.3.1a1-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a80fce2898585b12e2c6af0709db1be", "sha256": "63a46e9fcc1ab886f49e68baa26eea9cccfd99b00d270deb29694c8cb910bc69" }, "downloads": -1, "filename": "aiohttp-2.3.1a1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7a80fce2898585b12e2c6af0709db1be", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 661424, "upload_time": "2017-10-18T20:55:59", "upload_time_iso_8601": "2017-10-18T20:55:59.685018Z", "url": "https://files.pythonhosted.org/packages/d7/c1/928755fae3ddf1749fb3e0978ce61addf17c9be067c9bc5cb103a953f24d/aiohttp-2.3.1a1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1aa5021c9639f51fae318c9bcee52680", "sha256": "f98534d67d7dadc9a406970c4ead08e0405ceca256a99dbe44c3dc878d7b166d" }, "downloads": -1, "filename": "aiohttp-2.3.1a1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "1aa5021c9639f51fae318c9bcee52680", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 358019, "upload_time": "2017-10-18T14:38:53", "upload_time_iso_8601": "2017-10-18T14:38:53.480380Z", "url": "https://files.pythonhosted.org/packages/61/89/79682bd114ebb0895f3201687025aa3b3de72bf2e8cb15569e2597034808/aiohttp-2.3.1a1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a404418f3a4c0b0d4b94baf47110b198", "sha256": "58c92be8563d34e80fe723aeae01367290ad4b1394caf6a5484b157e8b35923a" }, "downloads": -1, "filename": "aiohttp-2.3.1a1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "a404418f3a4c0b0d4b94baf47110b198", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 369246, "upload_time": "2017-10-18T14:41:01", "upload_time_iso_8601": "2017-10-18T14:41:01.427657Z", "url": "https://files.pythonhosted.org/packages/e0/ed/bfc0728a0fe82d5fd312a499d54be6e0f7ae407cd63e584a66fcabdfe2ae/aiohttp-2.3.1a1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "2.3.2": [ { "comment_text": "", "digests": { "md5": "3a18d052c4a9172a4f7eeaead96b7975", "sha256": "cb281a30655efe939550b7dfbe8c5d6e84951caf52510528a88ae7fe483109ae" }, "downloads": -1, "filename": "aiohttp-2.3.2-cp34-cp34m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "3a18d052c4a9172a4f7eeaead96b7975", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 381247, "upload_time": "2017-11-01T19:40:45", "upload_time_iso_8601": "2017-11-01T19:40:45.624578Z", "url": "https://files.pythonhosted.org/packages/3d/a4/bac87e532a2717b39b4e1ef5449d6ed568e1fe997d775b5f19e3fcf46c1d/aiohttp-2.3.2-cp34-cp34m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e6be9f9a6035910f02ca0415310f63e", "sha256": "7ff6173cc691a44845e10f452d52932f12b45c6d5db85f5702b17d15addda808" }, "downloads": -1, "filename": "aiohttp-2.3.2-cp34-cp34m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "0e6be9f9a6035910f02ca0415310f63e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 381248, "upload_time": "2017-11-01T20:32:16", "upload_time_iso_8601": "2017-11-01T20:32:16.455872Z", "url": "https://files.pythonhosted.org/packages/5d/d6/d6c5c491bf8faa5e78b2b50ce6c0eb6ec61fbde890578e36eded7df85409/aiohttp-2.3.2-cp34-cp34m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "079db80d1ecc989d823201afbae18411", "sha256": "e5c2c16ae815d883d4072f2d4542effdeae1d9a464b56bd06186d9eeca1981fe" }, "downloads": -1, "filename": "aiohttp-2.3.2-cp34-cp34m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "079db80d1ecc989d823201afbae18411", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 379327, "upload_time": "2017-11-01T22:16:54", "upload_time_iso_8601": "2017-11-01T22:16:54.588508Z", "url": "https://files.pythonhosted.org/packages/23/b7/7e0d6bb71cc83693ad08f1134208c5e7bbc746eb2abbf32ebbaf4405faca/aiohttp-2.3.2-cp34-cp34m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3a448d48604200aa93cef5c7bfcee54c", "sha256": "bd920a8b5da1e0ed89c1a688d1ed252ba71189ff747747d38803728a9fba17d4" }, "downloads": -1, "filename": "aiohttp-2.3.2-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3a448d48604200aa93cef5c7bfcee54c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 628183, "upload_time": "2017-11-01T19:09:16", "upload_time_iso_8601": "2017-11-01T19:09:16.940139Z", "url": "https://files.pythonhosted.org/packages/71/b5/efe8637ba675385ec1afbb88f7196dd2e64b26e10f1e055087b3618d0d77/aiohttp-2.3.2-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e7a432d9167bdf07382aebdb10d1ca92", "sha256": "34dc28c31786f43dcd5a25e19da1dd8a5289d338f4ed1a1a9e5d1431ad4b79e2" }, "downloads": -1, "filename": "aiohttp-2.3.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e7a432d9167bdf07382aebdb10d1ca92", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 654150, "upload_time": "2017-11-01T19:09:18", "upload_time_iso_8601": "2017-11-01T19:09:18.781939Z", "url": "https://files.pythonhosted.org/packages/a0/07/7ec504b2b8c2885df4b924f755e752334dab53ced095062ec456295f223b/aiohttp-2.3.2-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e81cb926f48a8c430c81bd9b476a49e", "sha256": "8b5087310db23b1976776beedab05c8aa8e490755e9f3473fc1f07aa0cbe3bb9" }, "downloads": -1, "filename": "aiohttp-2.3.2-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "7e81cb926f48a8c430c81bd9b476a49e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 356652, "upload_time": "2017-11-01T15:14:36", "upload_time_iso_8601": "2017-11-01T15:14:36.308204Z", "url": "https://files.pythonhosted.org/packages/e7/dd/b038eb1a72d94bbe2a748d37fd1ac94e9ba4f2b65676e89b3deb8d515560/aiohttp-2.3.2-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "abe47bba5d5b8e888bf3bbfbf9970386", "sha256": "3654f4913a6c02e742051881f94b7b8a9dfe527318e8d7a7dd2f2d8474b0c082" }, "downloads": -1, "filename": "aiohttp-2.3.2-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "abe47bba5d5b8e888bf3bbfbf9970386", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 363514, "upload_time": "2017-11-01T15:17:29", "upload_time_iso_8601": "2017-11-01T15:17:29.237281Z", "url": "https://files.pythonhosted.org/packages/ee/7c/bda76872c644319b9207830874cce22d2fdc50a22853221a3c7f80e9cd18/aiohttp-2.3.2-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "27878d78ff0b86f7e94c24d8fc6f0694", "sha256": "9af1260050bb29db245d284c659e710161c45575f8fb365202551c5fd43ed1c1" }, "downloads": -1, "filename": "aiohttp-2.3.2-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "27878d78ff0b86f7e94c24d8fc6f0694", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 380930, "upload_time": "2017-11-01T19:43:43", "upload_time_iso_8601": "2017-11-01T19:43:43.314621Z", "url": "https://files.pythonhosted.org/packages/0c/63/3824938eaeb734ec4ee31e48e48b6b6b02cc783900bf3488f8635a5fc475/aiohttp-2.3.2-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "848419a73958960add86e51b7973d952", "sha256": "0589a94051aa0573b28eb5d330a0d12cee891d2ed9fd9323c9ddbe322e88fc15" }, "downloads": -1, "filename": "aiohttp-2.3.2-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "848419a73958960add86e51b7973d952", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 380775, "upload_time": "2017-11-01T21:17:28", "upload_time_iso_8601": "2017-11-01T21:17:28.744549Z", "url": "https://files.pythonhosted.org/packages/ab/df/a5f42e1daa675351e5277e993d607309b616c6e9617df8e7093962f3e797/aiohttp-2.3.2-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50a05a1b145d0fca1cccf3d283b81459", "sha256": "b3b047ecd8b899f99d669f5e22aeabcc77e78f3eb4ee985755ec49c53fcccfc2" }, "downloads": -1, "filename": "aiohttp-2.3.2-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "50a05a1b145d0fca1cccf3d283b81459", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 376785, "upload_time": "2017-11-01T22:19:39", "upload_time_iso_8601": "2017-11-01T22:19:39.020877Z", "url": "https://files.pythonhosted.org/packages/3e/48/eb899e2fc0a466cf0211bd63afbb37cedfbe8db68eadac6803f1a0623050/aiohttp-2.3.2-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95675bcd8472381560a48b128ffb475f", "sha256": "b73d90381c915c8f873da65520af3e8ac8d26e054b9bc849faa802b25623172a" }, "downloads": -1, "filename": "aiohttp-2.3.2-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "95675bcd8472381560a48b128ffb475f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 618180, "upload_time": "2017-11-01T19:09:20", "upload_time_iso_8601": "2017-11-01T19:09:20.432972Z", "url": "https://files.pythonhosted.org/packages/e0/74/ab3ed2edd1bde357280048284d37e8e792fdfcd1e6b722a68f4d72ec003f/aiohttp-2.3.2-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af6fe86462e2669c6e8b81cc34b20ede", "sha256": "e698a369200b6d4e50a493cf1da4a25f5457f61afd5e7fe91b40f9859f632d1f" }, "downloads": -1, "filename": "aiohttp-2.3.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "af6fe86462e2669c6e8b81cc34b20ede", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 647702, "upload_time": "2017-11-01T19:09:22", "upload_time_iso_8601": "2017-11-01T19:09:22.636218Z", "url": "https://files.pythonhosted.org/packages/80/83/9d556b380512826cf06f45436f4ff8aa574266fa3c7111ff1756c4e1799b/aiohttp-2.3.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "40f33056724e10fb79a712fff42ecf22", "sha256": "c58ddcb3ef4dde692e98738f6b3d06650d2b2722910e4d18184530ff8d092d95" }, "downloads": -1, "filename": "aiohttp-2.3.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "40f33056724e10fb79a712fff42ecf22", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 357022, "upload_time": "2017-11-01T15:19:49", "upload_time_iso_8601": "2017-11-01T15:19:49.250718Z", "url": "https://files.pythonhosted.org/packages/e9/e9/fd8124189715691deeee9fd71cdfa400f7f33da32bd3dc15c92c8dd726db/aiohttp-2.3.2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e85600cc438efb71bdf6964534dbda1f", "sha256": "0965fa5e798b7faacd6417eeb5c476aa6a7d730ba2793106e5bae610fdb043cb" }, "downloads": -1, "filename": "aiohttp-2.3.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "e85600cc438efb71bdf6964534dbda1f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 368044, "upload_time": "2017-11-01T15:22:29", "upload_time_iso_8601": "2017-11-01T15:22:29.141223Z", "url": "https://files.pythonhosted.org/packages/53/4a/bac1f577bb7652dcd3438e66d772d26428d4f6fd5d7b84c7e911692bd79b/aiohttp-2.3.2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c0147d8f73dea9a802e6ec3470d53d65", "sha256": "3979ef9071bd3c909d33cc333bde356f7063555ad8a0383e53f18dc31131b7d8" }, "downloads": -1, "filename": "aiohttp-2.3.2-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "c0147d8f73dea9a802e6ec3470d53d65", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 383495, "upload_time": "2017-11-01T20:28:18", "upload_time_iso_8601": "2017-11-01T20:28:18.560023Z", "url": "https://files.pythonhosted.org/packages/d7/42/6cf3c3fd08f55ece0eadfdd4b5fb146503de0a1a383f354c65c4c99cd0ed/aiohttp-2.3.2-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d1a3920726e18ee3289318549905eb78", "sha256": "85caf471c5216d615b01443293cc5ead7502053dedd804da32dd35de816a7436" }, "downloads": -1, "filename": "aiohttp-2.3.2-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "d1a3920726e18ee3289318549905eb78", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 383063, "upload_time": "2017-11-01T21:23:53", "upload_time_iso_8601": "2017-11-01T21:23:53.890834Z", "url": "https://files.pythonhosted.org/packages/f6/9b/cc8a735cf2e1fc13cdd7b3c00f832d66a6bce33e22ae8e0dcdad1726589e/aiohttp-2.3.2-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b9ec07e1c60a4e26624d3b7bb19c23ea", "sha256": "63de1a47530b7bf770f1ad26f342ea94babb451ae04cd3119e87cbfea1c970e5" }, "downloads": -1, "filename": "aiohttp-2.3.2-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "b9ec07e1c60a4e26624d3b7bb19c23ea", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 376525, "upload_time": "2017-11-01T23:04:50", "upload_time_iso_8601": "2017-11-01T23:04:50.959957Z", "url": "https://files.pythonhosted.org/packages/d8/1b/3f7063932388f0a03b2eebd9bfb8fcc9690a2138f79cabc374da80d8faf5/aiohttp-2.3.2-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5c8dd736c1cbed287cb8599f3b9206d8", "sha256": "04a8c24a376bb547c0c9b6e721d6ced23062d262d24d5e63a3e383c8b49e14ef" }, "downloads": -1, "filename": "aiohttp-2.3.2-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5c8dd736c1cbed287cb8599f3b9206d8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 634350, "upload_time": "2017-11-01T19:09:24", "upload_time_iso_8601": "2017-11-01T19:09:24.273429Z", "url": "https://files.pythonhosted.org/packages/0b/bb/88d215b3e3fc23709cc451be6ddcc5f3be9b794b2eb1fc55b5484c70100d/aiohttp-2.3.2-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c471c97c654226a3e3a7cc9cde1f65cf", "sha256": "9e70efab3bfea1493f3099031e3731a6519adad62e6d3f464b429a80a6e2ff6f" }, "downloads": -1, "filename": "aiohttp-2.3.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c471c97c654226a3e3a7cc9cde1f65cf", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 662057, "upload_time": "2017-11-01T19:09:25", "upload_time_iso_8601": "2017-11-01T19:09:25.972122Z", "url": "https://files.pythonhosted.org/packages/d8/bf/cf0908c4459ccb1b6ff2f5d7e6a3c8032455c10bf84476449b0870fa218a/aiohttp-2.3.2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5669154a2087b0ca4f1040f22f2659ca", "sha256": "c7cb8d2be2f3351a28bee9deca1194e1402171c47b52f16708321ef4ce682333" }, "downloads": -1, "filename": "aiohttp-2.3.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "5669154a2087b0ca4f1040f22f2659ca", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 358686, "upload_time": "2017-11-01T15:24:51", "upload_time_iso_8601": "2017-11-01T15:24:51.736159Z", "url": "https://files.pythonhosted.org/packages/1c/4d/267b1be26b4356f39668cda474bf1f2abf242fc02d2a7679e35c7f2bd142/aiohttp-2.3.2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "182ae421d33822526bf603f522b77124", "sha256": "ab9e7ecf375387ae3d17ac25492801860f2726f541d73cf1108fa157e1da75a3" }, "downloads": -1, "filename": "aiohttp-2.3.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "182ae421d33822526bf603f522b77124", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 369912, "upload_time": "2017-11-01T15:27:15", "upload_time_iso_8601": "2017-11-01T15:27:15.695525Z", "url": "https://files.pythonhosted.org/packages/f5/14/696b132fc652605ec5f9c0c04954b5a38a43938e067152ee50869c4d42ba/aiohttp-2.3.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e17b8d72612d8fb7d1089150e8d606c", "sha256": "42373fbdbe8f09233c17e74f53cee877bc7d5b495b4fc14c32a119255e85e736" }, "downloads": -1, "filename": "aiohttp-2.3.2.tar.gz", "has_sig": false, "md5_digest": "4e17b8d72612d8fb7d1089150e8d606c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4.2", "size": 841030, "upload_time": "2017-11-01T15:14:38", "upload_time_iso_8601": "2017-11-01T15:14:38.016784Z", "url": "https://files.pythonhosted.org/packages/15/17/f069f60fa98279bca7745ed2d4ac6eabe0e24254ca1dc9dec9a4af94cb1d/aiohttp-2.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.2b2": [ { "comment_text": "", "digests": { "md5": "d38db6298820e02d1e85c853b7406cb1", "sha256": "4a8ca121cff117220e8e5ebb894c73738b749071d4aebfa43e8eff3ccf0cff3c" }, "downloads": -1, "filename": "aiohttp-2.3.2b2-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "d38db6298820e02d1e85c853b7406cb1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 356146, "upload_time": "2017-11-01T11:04:06", "upload_time_iso_8601": "2017-11-01T11:04:06.474566Z", "url": "https://files.pythonhosted.org/packages/d7/9a/42dae8a8d60943d72384d4763bfe657d9c6010e8da2a128ebcabd88248c0/aiohttp-2.3.2b2-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "13e5674e7cfb3bd070a47c47ef2eca5a", "sha256": "11973a980366c8572caeca67391c6851e8c04e073c2b8774243af3591c00bc01" }, "downloads": -1, "filename": "aiohttp-2.3.2b2-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "13e5674e7cfb3bd070a47c47ef2eca5a", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 363016, "upload_time": "2017-11-01T11:06:33", "upload_time_iso_8601": "2017-11-01T11:06:33.261626Z", "url": "https://files.pythonhosted.org/packages/d6/83/d4b5425c1d9086af7c15f12b5ddfe918052fab7f04aa747f578e4c676dbb/aiohttp-2.3.2b2-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d71a83c45386ed1bbe60448ce2fecbe6", "sha256": "a1fddf5c438e7c330a497097924b8285fb7fc927aee9395202fed40793b2f4f4" }, "downloads": -1, "filename": "aiohttp-2.3.2b2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "d71a83c45386ed1bbe60448ce2fecbe6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 356541, "upload_time": "2017-11-01T11:08:30", "upload_time_iso_8601": "2017-11-01T11:08:30.777909Z", "url": "https://files.pythonhosted.org/packages/b0/06/4a328021354e56a18df1f40a26b58c76e2b4c03edb1fd8cb68140bb58062/aiohttp-2.3.2b2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3a79ad213fc3f3ef857090945a370564", "sha256": "e3f4f004ed1d98b1c86fa2ea234571093c96aac179480a1031af9a3398dcd2c8" }, "downloads": -1, "filename": "aiohttp-2.3.2b2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "3a79ad213fc3f3ef857090945a370564", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 367565, "upload_time": "2017-11-01T11:10:29", "upload_time_iso_8601": "2017-11-01T11:10:29.675706Z", "url": "https://files.pythonhosted.org/packages/f2/c1/75f6a351573fb7060c4c49d39ce63527e57b6be353ac4f8df10ef1602b78/aiohttp-2.3.2b2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5807c91a44b256d89607f5e8689f5119", "sha256": "68e12d15bc37049f53fbe726f5f7634208fd0ee4f44d51bf3f81e30af89cad44" }, "downloads": -1, "filename": "aiohttp-2.3.2b2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "5807c91a44b256d89607f5e8689f5119", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 358207, "upload_time": "2017-11-01T11:12:38", "upload_time_iso_8601": "2017-11-01T11:12:38.200921Z", "url": "https://files.pythonhosted.org/packages/07/c8/3414a037164c8b86bca97923a2725331b7e8700a841f822a3733dcf47bee/aiohttp-2.3.2b2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d119d3d832075085ba12318cf8c199de", "sha256": "e275ad5f43b0b90456f5b8d09e1d4543cb135c887dbaa2730311ca43221c647f" }, "downloads": -1, "filename": "aiohttp-2.3.2b2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "d119d3d832075085ba12318cf8c199de", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 369434, "upload_time": "2017-11-01T11:14:47", "upload_time_iso_8601": "2017-11-01T11:14:47.080622Z", "url": "https://files.pythonhosted.org/packages/4a/b0/e3fc72612af3aa2faa1fea541aca1f1dcc0b81110dc608678d5d11ed378d/aiohttp-2.3.2b2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e3aa53a0b9d13983ce3b58e30098f80", "sha256": "158e9432d8f4084f3b893764cc0de3b6946160b798b4f025f90c045a5ccf2793" }, "downloads": -1, "filename": "aiohttp-2.3.2b2.zip", "has_sig": false, "md5_digest": "7e3aa53a0b9d13983ce3b58e30098f80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 932550, "upload_time": "2017-11-01T11:04:09", "upload_time_iso_8601": "2017-11-01T11:04:09.554986Z", "url": "https://files.pythonhosted.org/packages/04/81/99e2d8eebe6427ad80db12d2849bb3ced210e65f2545642d69c2cda1d344/aiohttp-2.3.2b2.zip", "yanked": false, "yanked_reason": null } ], "2.3.2b3": [ { "comment_text": "", "digests": { "md5": "af470e008c960036939c9e9d72e52edc", "sha256": "262995a47ee3513a0bf0b05ebc468edb0d27de87ba84ef891aa82c0302548934" }, "downloads": -1, "filename": "aiohttp-2.3.2b3-cp34-cp34m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "af470e008c960036939c9e9d72e52edc", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 380786, "upload_time": "2017-11-01T14:07:50", "upload_time_iso_8601": "2017-11-01T14:07:50.746154Z", "url": "https://files.pythonhosted.org/packages/30/89/1b337187b16e2d3d05fa34e49c9099abc5acaaef0baf77d98b7f7c9fdf93/aiohttp-2.3.2b3-cp34-cp34m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a0a2ffc8096ec9ae1646e7a262963488", "sha256": "493b2ee03d642c71d8756d6981d2b149f15611b30a4bb788095156320dac322a" }, "downloads": -1, "filename": "aiohttp-2.3.2b3-cp34-cp34m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "a0a2ffc8096ec9ae1646e7a262963488", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 380795, "upload_time": "2017-11-01T14:24:53", "upload_time_iso_8601": "2017-11-01T14:24:53.443355Z", "url": "https://files.pythonhosted.org/packages/1b/70/7b30fde85f3a9df4b07cf5154ea636d5f5229cd794f29a2586efd466c72b/aiohttp-2.3.2b3-cp34-cp34m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad3bf21bb16f26e9528fef6ebb083d74", "sha256": "534501f1a529aab535e448dc8b2e9e9707502cf36389a0bdb73a27470c6974aa" }, "downloads": -1, "filename": "aiohttp-2.3.2b3-cp34-cp34m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "ad3bf21bb16f26e9528fef6ebb083d74", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 378869, "upload_time": "2017-11-01T15:06:00", "upload_time_iso_8601": "2017-11-01T15:06:00.268836Z", "url": "https://files.pythonhosted.org/packages/8c/06/ac096acbb9909c6c64b682bed5ecb53a467a39b9d0b0762931d64e32e7f6/aiohttp-2.3.2b3-cp34-cp34m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0cd90d1619384ad3b6461912366c33a2", "sha256": "1bee0e8e451428c360e2ea4659181efd855630d01db56a266aa06ab72fe4cede" }, "downloads": -1, "filename": "aiohttp-2.3.2b3-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0cd90d1619384ad3b6461912366c33a2", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 627724, "upload_time": "2017-11-01T14:09:12", "upload_time_iso_8601": "2017-11-01T14:09:12.038574Z", "url": "https://files.pythonhosted.org/packages/ea/56/f55f933424f406e820f431ff9c3d48f8db2d998dc6dfb5b42abc5b09574b/aiohttp-2.3.2b3-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ca08dc5641b72bc92afd732ae3b1eaa8", "sha256": "1b22e90da396fac12bdf130068dd9f3a34a48798009efba425e656089e7d61de" }, "downloads": -1, "filename": "aiohttp-2.3.2b3-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "ca08dc5641b72bc92afd732ae3b1eaa8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 356196, "upload_time": "2017-11-01T11:36:35", "upload_time_iso_8601": "2017-11-01T11:36:35.418157Z", "url": "https://files.pythonhosted.org/packages/3f/e6/fb5152ec8a80147e1520a130a199f05df129a34560655be50bb7458b4e2c/aiohttp-2.3.2b3-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1e67abea9047962a9ead5ff8bf0f80fe", "sha256": "b37b5b6618d8f055297ff7f99662d04aeddb11d61a41395b5b5c9b047d443330" }, "downloads": -1, "filename": "aiohttp-2.3.2b3-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "1e67abea9047962a9ead5ff8bf0f80fe", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 363064, "upload_time": "2017-11-01T11:39:16", "upload_time_iso_8601": "2017-11-01T11:39:16.731782Z", "url": "https://files.pythonhosted.org/packages/41/22/e475c1184a222b65308734f766b9a72310a46c7817d394f2dbc5d8dba7bb/aiohttp-2.3.2b3-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c2c36105892fb508df2727360b05063", "sha256": "016ec11be0d97b43ac19bc9a5166fef649da17226c06bcfac0622329dae93dc1" }, "downloads": -1, "filename": "aiohttp-2.3.2b3-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "4c2c36105892fb508df2727360b05063", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 380479, "upload_time": "2017-11-01T14:06:36", "upload_time_iso_8601": "2017-11-01T14:06:36.344703Z", "url": "https://files.pythonhosted.org/packages/85/7e/209dd20b805eefc4eb5573837df4470a35b2bff0000addc4d93e15d32004/aiohttp-2.3.2b3-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "012f8aa2fab64d6fb9f6aab9a6b65d70", "sha256": "6d172fa74f5c08891ab3b632a8e525d8dcef7ce53df13a79df48de3c9a3b4f3d" }, "downloads": -1, "filename": "aiohttp-2.3.2b3-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "012f8aa2fab64d6fb9f6aab9a6b65d70", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 380316, "upload_time": "2017-11-01T14:44:37", "upload_time_iso_8601": "2017-11-01T14:44:37.276433Z", "url": "https://files.pythonhosted.org/packages/2b/8e/4fc05bc20a18711065f3269b1ef0491c13ec4c7518cb48e2f1209edac225/aiohttp-2.3.2b3-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c199042dd0b01b3408012a526f3ddc82", "sha256": "ee3acd1136ea5b4ceb478db34feeb4c8c4443034ced84322d7559eeefa52c4a7" }, "downloads": -1, "filename": "aiohttp-2.3.2b3-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c199042dd0b01b3408012a526f3ddc82", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 617708, "upload_time": "2017-11-01T14:09:15", "upload_time_iso_8601": "2017-11-01T14:09:15.279113Z", "url": "https://files.pythonhosted.org/packages/2a/af/f96e0271eca37853c84f14503c8316519f2ae64af045494d65ca07a025ba/aiohttp-2.3.2b3-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "db9b4c316f5bf29ad2240d44fe8fa68e", "sha256": "9ed95f10982a331f4aaf5781d5bd4dd5d1e93e2e221979683527d529fdd7f11a" }, "downloads": -1, "filename": "aiohttp-2.3.2b3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "db9b4c316f5bf29ad2240d44fe8fa68e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 356572, "upload_time": "2017-11-01T11:41:20", "upload_time_iso_8601": "2017-11-01T11:41:20.176705Z", "url": "https://files.pythonhosted.org/packages/67/7a/c61f66a0106c58dd210b7fc4d2431f5d0b820a9d6e665d3b2a14a73d9521/aiohttp-2.3.2b3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "71632dcfc04a314436001aa467e44543", "sha256": "0e0201325aac0a5f0dfeaefe306c286812dc6283f2a866a76cc147d0c149dd88" }, "downloads": -1, "filename": "aiohttp-2.3.2b3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "71632dcfc04a314436001aa467e44543", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 367591, "upload_time": "2017-11-01T11:43:35", "upload_time_iso_8601": "2017-11-01T11:43:35.520110Z", "url": "https://files.pythonhosted.org/packages/9e/00/669e9378680d13e2744f4c6bf8463e82f54bf999c536a38622360f987f5a/aiohttp-2.3.2b3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8ce6d2bbf9899ea2cc2bcf86eac9fa53", "sha256": "61e25f64a5b9b70b35c5cb11820cb58a74f1f9bd3d803d83f53dff183f741e2a" }, "downloads": -1, "filename": "aiohttp-2.3.2b3-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "8ce6d2bbf9899ea2cc2bcf86eac9fa53", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 383043, "upload_time": "2017-11-01T14:24:05", "upload_time_iso_8601": "2017-11-01T14:24:05.363022Z", "url": "https://files.pythonhosted.org/packages/bf/5c/e488421f710c352627955644474c279d1ccda07a286555a863c3d257ff48/aiohttp-2.3.2b3-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb2ffa5a57f7b3d0a1ac4fc6830ea217", "sha256": "704a9f1f85f9898526d1216cffd83ba08010744131868e49148395cb5e42cf44" }, "downloads": -1, "filename": "aiohttp-2.3.2b3-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "bb2ffa5a57f7b3d0a1ac4fc6830ea217", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 382611, "upload_time": "2017-11-01T15:03:40", "upload_time_iso_8601": "2017-11-01T15:03:40.288137Z", "url": "https://files.pythonhosted.org/packages/44/ee/52b2a31bea7843f0ae8446e07bca9efc9b2c5c3677807502ed4c864b7532/aiohttp-2.3.2b3-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cc6f34cc271805cc2804d075157ffb82", "sha256": "cb5dc1dff9c2d6a55ec5e4b10ac2a36f5cd371dc80125dbb440cdbc1910cdfc1" }, "downloads": -1, "filename": "aiohttp-2.3.2b3-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "cc6f34cc271805cc2804d075157ffb82", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 633861, "upload_time": "2017-11-01T14:09:19", "upload_time_iso_8601": "2017-11-01T14:09:19.396539Z", "url": "https://files.pythonhosted.org/packages/82/57/782852c4ea3126bc20b7872e7d3767c32b6ba1c5b2ce0fab635c0288d3a7/aiohttp-2.3.2b3-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "280c2a0eab9fa82beae8ffe3706bcdf5", "sha256": "25cea0ad50c856bff0a2bc1e2d8120120ad6dfde81529a1d66c39edb1edd2700" }, "downloads": -1, "filename": "aiohttp-2.3.2b3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "280c2a0eab9fa82beae8ffe3706bcdf5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 358235, "upload_time": "2017-11-01T11:45:44", "upload_time_iso_8601": "2017-11-01T11:45:44.050331Z", "url": "https://files.pythonhosted.org/packages/dc/1f/6a64aaca95c84b278a4d5296b7464ad0e5d4c4d2ef6abca5ff2f17afd309/aiohttp-2.3.2b3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a86ae26e167a9bd44dad8f80ab190e37", "sha256": "d2fc8d84edebfb46baae38e356921551f8d8ae05bb01c05d2125f37cde8d353f" }, "downloads": -1, "filename": "aiohttp-2.3.2b3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "a86ae26e167a9bd44dad8f80ab190e37", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 369460, "upload_time": "2017-11-01T11:47:39", "upload_time_iso_8601": "2017-11-01T11:47:39.179550Z", "url": "https://files.pythonhosted.org/packages/a3/19/46467b3eb650782c48ec9d260c044fb4269acc17ac0d8c76c4fba98cd251/aiohttp-2.3.2b3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b93262afff7b9702d60bde8dd5fff1da", "sha256": "897e87d2420b93bdc61b0a4500e34c18e504691f8d17f08ed1f9c7049aa88a15" }, "downloads": -1, "filename": "aiohttp-2.3.2b3.tar.gz", "has_sig": false, "md5_digest": "b93262afff7b9702d60bde8dd5fff1da", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4.2", "size": 846283, "upload_time": "2017-11-01T11:36:37", "upload_time_iso_8601": "2017-11-01T11:36:37.882997Z", "url": "https://files.pythonhosted.org/packages/22/a8/35d72252c92afd5c9ddbd79be549345e749601ff8051e9ac0c5bcce9b405/aiohttp-2.3.2b3.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.3": [ { "comment_text": "", "digests": { "md5": "86387aa711e1d16bcd12b380597b0ac6", "sha256": "250cbc0d82d596abcf3b01de9835e43bc587f5a8c99ef0d4f1fc1e8721c5cd53" }, "downloads": -1, "filename": "aiohttp-2.3.3-cp34-cp34m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "86387aa711e1d16bcd12b380597b0ac6", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 381739, "upload_time": "2017-11-17T11:59:37", "upload_time_iso_8601": "2017-11-17T11:59:37.517287Z", "url": "https://files.pythonhosted.org/packages/bc/e0/b1be5df6735626f4ba1b44c3c46e181ab9c9e86563be67c4df84e070a4f7/aiohttp-2.3.3-cp34-cp34m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "313142b7c8b866592289149610d1f899", "sha256": "36c031e8b3710df521c6f12faa639c6ee4aff4c65e51ccc5f4113d1720d5a401" }, "downloads": -1, "filename": "aiohttp-2.3.3-cp34-cp34m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "313142b7c8b866592289149610d1f899", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 381743, "upload_time": "2017-11-17T12:23:40", "upload_time_iso_8601": "2017-11-17T12:23:40.476982Z", "url": "https://files.pythonhosted.org/packages/8c/be/1dfb5198bea71f6f0246d86e3b687bc633f0bc6aba595cd2b293249d80fc/aiohttp-2.3.3-cp34-cp34m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "51e4514c5b577a6f7f2dc767b5a92773", "sha256": "0d447e03d4ae1e9afdb183818b5d52353bc3bf1705204730c6c3acd348639e69" }, "downloads": -1, "filename": "aiohttp-2.3.3-cp34-cp34m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "51e4514c5b577a6f7f2dc767b5a92773", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 379817, "upload_time": "2017-11-17T13:25:03", "upload_time_iso_8601": "2017-11-17T13:25:03.153222Z", "url": "https://files.pythonhosted.org/packages/5f/9d/95a4b69daf70db74c7fd5e4986a45a15eb6aed203e6999ea636b86e6906e/aiohttp-2.3.3-cp34-cp34m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e91fd1185a9c0773d6e9a665e19c9d37", "sha256": "f1f79658b4b46b37199d9f1d71b2d34b2163c8adb589c5540f5ad2d79eb1de2f" }, "downloads": -1, "filename": "aiohttp-2.3.3-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e91fd1185a9c0773d6e9a665e19c9d37", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 628705, "upload_time": "2017-11-17T12:07:14", "upload_time_iso_8601": "2017-11-17T12:07:14.357010Z", "url": "https://files.pythonhosted.org/packages/aa/55/b128e6118e7c38c3bb7fd7bcde65dfa03cb36af19ade7b7feaaac04694d5/aiohttp-2.3.3-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9577df32570661aea392d8657301f965", "sha256": "f1e1d414d07b2334642ba6547bb2059772de1e887c6c296092e4b47200a6ae1c" }, "downloads": -1, "filename": "aiohttp-2.3.3-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9577df32570661aea392d8657301f965", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 654682, "upload_time": "2017-11-17T12:07:16", "upload_time_iso_8601": "2017-11-17T12:07:16.604844Z", "url": "https://files.pythonhosted.org/packages/8a/4f/a5f93d89b0bfef083531b1d8fe5bf67c760d9b7cbce4d2f4b4cf74bc511f/aiohttp-2.3.3-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dc7fe29246bdeecfcdf7248456da3a57", "sha256": "56dec8192fd9174735ed6ed24ea8d74aa09ec3cd8d3218300f4eceaa7d65d2c8" }, "downloads": -1, "filename": "aiohttp-2.3.3-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "dc7fe29246bdeecfcdf7248456da3a57", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 357142, "upload_time": "2017-11-17T09:52:10", "upload_time_iso_8601": "2017-11-17T09:52:10.359901Z", "url": "https://files.pythonhosted.org/packages/bc/63/91cfbcc53da74fd7c09d8f960e56d678bef629169e1ecc5d99cae7a4a6ee/aiohttp-2.3.3-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e06dc22f063ee9a728d9ee06588c0d1", "sha256": "7f7776146aeef02042acc22a9212e17ce7e144983090d93fe12fe1b95ef376e2" }, "downloads": -1, "filename": "aiohttp-2.3.3-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "5e06dc22f063ee9a728d9ee06588c0d1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 364007, "upload_time": "2017-11-17T09:54:37", "upload_time_iso_8601": "2017-11-17T09:54:37.900075Z", "url": "https://files.pythonhosted.org/packages/37/c5/8a7f8572cd36160eb1e8a14a3ef435bce4a6a2e3a39444c9b67bac982b41/aiohttp-2.3.3-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d3eb7380cd6e7ea8495df447510a7e83", "sha256": "6d7a8015e490ad6e7e9fcf91ae5e92f668784f2bd3f4e66f2e66fe9be4758b24" }, "downloads": -1, "filename": "aiohttp-2.3.3-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "d3eb7380cd6e7ea8495df447510a7e83", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 381428, "upload_time": "2017-11-17T12:08:51", "upload_time_iso_8601": "2017-11-17T12:08:51.381839Z", "url": "https://files.pythonhosted.org/packages/a6/8c/9e95ea4cf30e0d19ce82b8cede2aa155047c2191288be494fee4c5c1eae5/aiohttp-2.3.3-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a1d842c5bd3434ada3a11d676bbfa13d", "sha256": "0595e93c17f02583764ec08fa4924f9fdf29fed44b39b6b38d350960040bf04b" }, "downloads": -1, "filename": "aiohttp-2.3.3-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "a1d842c5bd3434ada3a11d676bbfa13d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 381262, "upload_time": "2017-11-17T12:23:19", "upload_time_iso_8601": "2017-11-17T12:23:19.139503Z", "url": "https://files.pythonhosted.org/packages/72/e5/f3a962b8ffe5df06172e367bb4c051f67cb6cb17942dbd157b0be6c22e40/aiohttp-2.3.3-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8370a96c2413037355a58ae3efa6430e", "sha256": "1ca67c9e5b279db6856555112013f944ea7e3e5585b682ce2e7aacfcf18cdde0" }, "downloads": -1, "filename": "aiohttp-2.3.3-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "8370a96c2413037355a58ae3efa6430e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 377279, "upload_time": "2017-11-17T13:25:43", "upload_time_iso_8601": "2017-11-17T13:25:43.924787Z", "url": "https://files.pythonhosted.org/packages/29/6f/23dedc5d292f691f422d686af4d82301b48b5bfc545b2a776a1f5ed39dff/aiohttp-2.3.3-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e660de786c3c2cde06b6b68d880c7d81", "sha256": "1abe8c6fe5df9f18244952173b2c425cd3e2a03e0a5de6ed439f071fd3aa930b" }, "downloads": -1, "filename": "aiohttp-2.3.3-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e660de786c3c2cde06b6b68d880c7d81", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 618669, "upload_time": "2017-11-17T12:07:20", "upload_time_iso_8601": "2017-11-17T12:07:20.376938Z", "url": "https://files.pythonhosted.org/packages/9c/0f/156b3d99cfb5690e54d6a7cb126ee9bb002c80658f94ebb430e7ac9f5c80/aiohttp-2.3.3-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a2f9e186418cbf3028cea6866ebf088a", "sha256": "337811af434d5e257b9fc7e7365d213d37d9534d41f5034866a6b808fe23178b" }, "downloads": -1, "filename": "aiohttp-2.3.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a2f9e186418cbf3028cea6866ebf088a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 648210, "upload_time": "2017-11-17T12:07:22", "upload_time_iso_8601": "2017-11-17T12:07:22.125061Z", "url": "https://files.pythonhosted.org/packages/38/55/8b628ce2938f52c0e02719c58fce074b96ad7b9fdbb5b4d64c9a2bfe0b54/aiohttp-2.3.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6050f416b8c8475acf94bd0b1865c2df", "sha256": "e58b2172e456dae4a36fcc5736ff3b66fabd3a61d14213d5f677b5a39eb34d47" }, "downloads": -1, "filename": "aiohttp-2.3.3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "6050f416b8c8475acf94bd0b1865c2df", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 357510, "upload_time": "2017-11-17T09:56:35", "upload_time_iso_8601": "2017-11-17T09:56:35.857972Z", "url": "https://files.pythonhosted.org/packages/37/68/36776d8bb943eedd24b8b7aeffa34a8846525004ad519232172690970aa0/aiohttp-2.3.3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e1c708135b82bf5964334130bcbf3980", "sha256": "39606fe24eed40dfbd8e961f37f8438a64ecbddcbc4bc8162c23d0bfd14b3a8a" }, "downloads": -1, "filename": "aiohttp-2.3.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "e1c708135b82bf5964334130bcbf3980", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 368531, "upload_time": "2017-11-17T09:59:40", "upload_time_iso_8601": "2017-11-17T09:59:40.087671Z", "url": "https://files.pythonhosted.org/packages/97/9e/b28418de33c51bb0b41ac56d43eae323c507b7b51cfec6a27e6c0f5bcfda/aiohttp-2.3.3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "53791975301d3c4e7a9e3711e08a7217", "sha256": "3dd70c3204147720f7b2deec26323f576bcd38ef6cd46a6f234e1528e685da4f" }, "downloads": -1, "filename": "aiohttp-2.3.3-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "53791975301d3c4e7a9e3711e08a7217", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 383990, "upload_time": "2017-11-17T12:11:36", "upload_time_iso_8601": "2017-11-17T12:11:36.792859Z", "url": "https://files.pythonhosted.org/packages/89/9d/9d0bae7b0b2724692ed933df88b68969d311301dcf42a5c22ae65cf5ed28/aiohttp-2.3.3-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b3e9cc64b3413b3dc5fa1fc1c8824db6", "sha256": "340778f9ec2c3e6da8943a376c35f588e1d69e16d8cf3522dd9475f6d656cd0f" }, "downloads": -1, "filename": "aiohttp-2.3.3-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "b3e9cc64b3413b3dc5fa1fc1c8824db6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 383556, "upload_time": "2017-11-17T12:38:38", "upload_time_iso_8601": "2017-11-17T12:38:38.011560Z", "url": "https://files.pythonhosted.org/packages/4d/23/1b379a07dd7b0e3862ebc39c12d76cf887c4d2ffb5895ed4b2838072dd1f/aiohttp-2.3.3-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "620b1569f1f596c9049f676699a76fcb", "sha256": "ec0aabf016ca5cc24a42e6dbd66df747ec86b9dac299e6c4dd980cff9745ab0c" }, "downloads": -1, "filename": "aiohttp-2.3.3-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "620b1569f1f596c9049f676699a76fcb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 377019, "upload_time": "2017-11-17T12:49:47", "upload_time_iso_8601": "2017-11-17T12:49:47.555411Z", "url": "https://files.pythonhosted.org/packages/13/b9/d9f5dfae687446f89fc6072d77fb28e5fc16df12b783eb8b9ed3d4d5d33f/aiohttp-2.3.3-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "48334502cbfe3225575dd3160bad7292", "sha256": "efab9175aab3f8773e56add6c827116658189f10b9e11359e90644db84953ffe" }, "downloads": -1, "filename": "aiohttp-2.3.3-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "48334502cbfe3225575dd3160bad7292", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 634871, "upload_time": "2017-11-17T12:07:23", "upload_time_iso_8601": "2017-11-17T12:07:23.978445Z", "url": "https://files.pythonhosted.org/packages/d4/aa/435d89a25490c7fb717f4270ad347cf31ef265b366ade7d4a96542c7ea91/aiohttp-2.3.3-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e36e4c4f8d9618082d75334af94308c", "sha256": "5152f5f85c9d16d5a3a1123b9f52a3f33314378e59cf46d528aeea8126b99fde" }, "downloads": -1, "filename": "aiohttp-2.3.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7e36e4c4f8d9618082d75334af94308c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 662597, "upload_time": "2017-11-17T12:07:26", "upload_time_iso_8601": "2017-11-17T12:07:26.603282Z", "url": "https://files.pythonhosted.org/packages/13/d6/a99b55b1ce56f8628b5c3fae109b4c06b34fc8e054b8068ce11ba78711ae/aiohttp-2.3.3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e019120de50f8a1f196871d6d3ecebd1", "sha256": "f8970430dd5f0a73d2b49985ee4e69286be175ac268802922479988e0ef12ae6" }, "downloads": -1, "filename": "aiohttp-2.3.3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "e019120de50f8a1f196871d6d3ecebd1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 359174, "upload_time": "2017-11-17T10:04:09", "upload_time_iso_8601": "2017-11-17T10:04:09.265142Z", "url": "https://files.pythonhosted.org/packages/11/ad/d663101a30096556888b8aa2b9d5e08f507efbe190497734563ca9f7fc1c/aiohttp-2.3.3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d46556a6a3882573f2c2f71e9428b253", "sha256": "dcd89fdb7f6e9d22bd90704dcc1949f1b45f7b5fde99c5e3acc58c987eeb6a73" }, "downloads": -1, "filename": "aiohttp-2.3.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "d46556a6a3882573f2c2f71e9428b253", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 370404, "upload_time": "2017-11-17T10:06:45", "upload_time_iso_8601": "2017-11-17T10:06:45.202343Z", "url": "https://files.pythonhosted.org/packages/7e/80/c7344ebab5113fcadbf36e33a7bde8641bea5a679b4a50c80aad5d391f15/aiohttp-2.3.3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "df81ef6c225369a401d908cde1cebbd7", "sha256": "0a2e33e90560dacb819b095b9d9611597925d75d1b93dd9490055d3826d98a82" }, "downloads": -1, "filename": "aiohttp-2.3.3.tar.gz", "has_sig": false, "md5_digest": "df81ef6c225369a401d908cde1cebbd7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4.2", "size": 843972, "upload_time": "2017-11-17T09:52:12", "upload_time_iso_8601": "2017-11-17T09:52:12.383118Z", "url": "https://files.pythonhosted.org/packages/a6/65/c161172c00f29a243ba6a745d7dcbf8b1193b005588f51b70d1be6fb666e/aiohttp-2.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.4": [ { "comment_text": "", "digests": { "md5": "a076707267101c46d69f2ef563860e0c", "sha256": "99198987eb69830dada2d432fd38e4dda7d05c71cfb727728773390ed6ed45fc" }, "downloads": -1, "filename": "aiohttp-2.3.4-cp34-cp34m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "a076707267101c46d69f2ef563860e0c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 382156, "upload_time": "2017-11-29T19:50:15", "upload_time_iso_8601": "2017-11-29T19:50:15.688182Z", "url": "https://files.pythonhosted.org/packages/22/b5/6f362cfe44c066a3d65ce525cbe804aeffc1047147b30e3f0dc27c3d5ae9/aiohttp-2.3.4-cp34-cp34m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "966248c67dc8ffcf0dced0894b357ec5", "sha256": "280ff6e9f2164a75e82cc3705836e163a99dd1a968ba6b49e6971c5d9b160190" }, "downloads": -1, "filename": "aiohttp-2.3.4-cp34-cp34m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "966248c67dc8ffcf0dced0894b357ec5", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 382163, "upload_time": "2017-11-29T20:43:00", "upload_time_iso_8601": "2017-11-29T20:43:00.830987Z", "url": "https://files.pythonhosted.org/packages/c8/65/647df759abdd026e16b43409482dd5262ed60b59c9cc3f3d0f56e564f5ec/aiohttp-2.3.4-cp34-cp34m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4b42a0088402d00324dd5c4543b73711", "sha256": "5eabf8e6b31058ebdcf3c2eb8e29b1af254c2e98b0d16483df8984b2c7c16256" }, "downloads": -1, "filename": "aiohttp-2.3.4-cp34-cp34m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "4b42a0088402d00324dd5c4543b73711", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 377044, "upload_time": "2017-11-30T01:45:46", "upload_time_iso_8601": "2017-11-30T01:45:46.206376Z", "url": "https://files.pythonhosted.org/packages/ae/77/3c72e92ad5cc0c83b7a1a4ed0dcc4a1ce12a866621fa85b3c4bf96e07e40/aiohttp-2.3.4-cp34-cp34m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7969f7a329c464e0c34ae4ba9d619461", "sha256": "cb824565a83935009ab3d4290d8b621b00fd5256d6c45b071e2ac086eb3c6e52" }, "downloads": -1, "filename": "aiohttp-2.3.4-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7969f7a329c464e0c34ae4ba9d619461", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 629097, "upload_time": "2017-11-29T19:39:12", "upload_time_iso_8601": "2017-11-29T19:39:12.875601Z", "url": "https://files.pythonhosted.org/packages/30/8e/33b56b6b5627d2670bd9f39e9d84c0c1b7cffa1eff145b01a4f9ab81389e/aiohttp-2.3.4-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f7c871087467b37c65900cdb3f158db", "sha256": "167fc05218483c7b4ea98f6b4082cbf841fea210a97cfd7752e9869750ca83ae" }, "downloads": -1, "filename": "aiohttp-2.3.4-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8f7c871087467b37c65900cdb3f158db", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 655067, "upload_time": "2017-11-29T19:39:14", "upload_time_iso_8601": "2017-11-29T19:39:14.580391Z", "url": "https://files.pythonhosted.org/packages/be/ed/5ad6f782858f6c4606672ccff91413696051c12fda73d79646863bc21837/aiohttp-2.3.4-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7288d8cd9b45ba5cbba0187d3fcade26", "sha256": "042e2156d140b2e951cc51219243228982b2ef2ac10177cd174baefca4eaacba" }, "downloads": -1, "filename": "aiohttp-2.3.4-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "7288d8cd9b45ba5cbba0187d3fcade26", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 357567, "upload_time": "2017-11-29T14:38:46", "upload_time_iso_8601": "2017-11-29T14:38:46.402265Z", "url": "https://files.pythonhosted.org/packages/17/5a/32c67103fb5f02e6cec61fe99d419af2a75f32e7c7b4209cbb22702b1cba/aiohttp-2.3.4-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "00fdc0869b9858a196749419252555a1", "sha256": "ba2cfa40cc827841bc37446a4e8abd27288ec34f900aa692fd68658bc6b67095" }, "downloads": -1, "filename": "aiohttp-2.3.4-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "00fdc0869b9858a196749419252555a1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 364431, "upload_time": "2017-11-29T14:41:25", "upload_time_iso_8601": "2017-11-29T14:41:25.152316Z", "url": "https://files.pythonhosted.org/packages/c4/f2/dc336dca10d6eb08a041ddc389d66faf2ac4551e93dbb73bfc6f6157ecd5/aiohttp-2.3.4-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b7782b6b85d60a434901a51a9bff893", "sha256": "5c99ef52d98d7ed057b6598159b863f034d7e123334df4800a968c274f42bcfa" }, "downloads": -1, "filename": "aiohttp-2.3.4-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "0b7782b6b85d60a434901a51a9bff893", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 381851, "upload_time": "2017-11-29T19:53:54", "upload_time_iso_8601": "2017-11-29T19:53:54.436162Z", "url": "https://files.pythonhosted.org/packages/df/d5/4ee31ea70436fa3d847c69743a2e7612719b217f4683443878b95f4d5194/aiohttp-2.3.4-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "83d41cfa22301854c7d625bde55f4e06", "sha256": "6e6c5107ddee197cc5dcb96edc986b45d75692452ac556cdeecd9ef95b51e4b9" }, "downloads": -1, "filename": "aiohttp-2.3.4-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "83d41cfa22301854c7d625bde55f4e06", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 381688, "upload_time": "2017-11-29T20:47:09", "upload_time_iso_8601": "2017-11-29T20:47:09.485065Z", "url": "https://files.pythonhosted.org/packages/21/47/02e1198ce11c78b041e0580db53a6ebee8865054cc82c5498fdf042e7fb5/aiohttp-2.3.4-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f41fda490554398ee2f0efb6cc4b9233", "sha256": "5be24237780d1a4b10a4baa3254881f568e8011c7153b2173f534b67cfb1750c" }, "downloads": -1, "filename": "aiohttp-2.3.4-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "f41fda490554398ee2f0efb6cc4b9233", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 374857, "upload_time": "2017-11-29T23:27:15", "upload_time_iso_8601": "2017-11-29T23:27:15.047257Z", "url": "https://files.pythonhosted.org/packages/cd/2e/70ef8e551bc450427dcaae811e9df938622041e33474b40b8f111cf76e3d/aiohttp-2.3.4-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d5e43f9c538f956f52452a30ea9fcee", "sha256": "a6b263a28c1359fb8a421a43c798ad31a528eb7a00e9f001dec51c5f20316ef3" }, "downloads": -1, "filename": "aiohttp-2.3.4-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "9d5e43f9c538f956f52452a30ea9fcee", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 619091, "upload_time": "2017-11-29T19:39:16", "upload_time_iso_8601": "2017-11-29T19:39:16.892619Z", "url": "https://files.pythonhosted.org/packages/71/52/9d59884cf19954da38473c45423103e843b548e761b4e5917786a3a0fa44/aiohttp-2.3.4-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "693ecfb448cf05a84e7ed406adeddec2", "sha256": "86f5a668d4189efcbe80ed94525f49a3277a80454db99b861f7cd14a34509423" }, "downloads": -1, "filename": "aiohttp-2.3.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "693ecfb448cf05a84e7ed406adeddec2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 648616, "upload_time": "2017-11-29T19:39:18", "upload_time_iso_8601": "2017-11-29T19:39:18.872534Z", "url": "https://files.pythonhosted.org/packages/42/6b/f335d9fdf38e009716c31604228309115f1a4558c5cdb43c86ef55ffe0c3/aiohttp-2.3.4-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b39b957be0b9725f5e48685dce320f18", "sha256": "de827b536bcff600ad64b4c45b986978c36f6d35ffae7074e42424cc94df0bf3" }, "downloads": -1, "filename": "aiohttp-2.3.4-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "b39b957be0b9725f5e48685dce320f18", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 357932, "upload_time": "2017-11-29T14:43:42", "upload_time_iso_8601": "2017-11-29T14:43:42.823467Z", "url": "https://files.pythonhosted.org/packages/f8/fa/1fdae3003d098c43c2cf43afeb50d3bd7b534b2cebbf3a3fe3e63424a004/aiohttp-2.3.4-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "90fee743d48d3b117785403fd9f92776", "sha256": "286adb3d77ef5d4bb580a06f8c36e8875a13df80aa453d2d7505a10620c44d9b" }, "downloads": -1, "filename": "aiohttp-2.3.4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "90fee743d48d3b117785403fd9f92776", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 368957, "upload_time": "2017-11-29T14:48:49", "upload_time_iso_8601": "2017-11-29T14:48:49.508974Z", "url": "https://files.pythonhosted.org/packages/87/75/3e9ac61c7377ff1b99335ebec4658776a7ccb26bc4f5c7df08baabc83839/aiohttp-2.3.4-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ea256ce386aac4b7769b07b2aede6e0a", "sha256": "2447ebc86510e79e47470190280debd80253bbe6a555e6f148f7a2fde8200e8e" }, "downloads": -1, "filename": "aiohttp-2.3.4-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "ea256ce386aac4b7769b07b2aede6e0a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 384408, "upload_time": "2017-11-29T20:20:34", "upload_time_iso_8601": "2017-11-29T20:20:34.232062Z", "url": "https://files.pythonhosted.org/packages/e1/1c/90ec5aa2502d84c2feaf23f48ffe517e5b3198e8bc67726b0475a687cd68/aiohttp-2.3.4-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "031a464697e1b5fdb609ee3ea1da54c8", "sha256": "c52e2488a39543a7994b010751a92f6f1b94673ee678583b9859be796aa791c6" }, "downloads": -1, "filename": "aiohttp-2.3.4-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "031a464697e1b5fdb609ee3ea1da54c8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 383976, "upload_time": "2017-11-29T21:03:56", "upload_time_iso_8601": "2017-11-29T21:03:56.745744Z", "url": "https://files.pythonhosted.org/packages/e6/25/daf3048facaa873c02b2f6128336ef63b50583a23cc6a357439638c9dac0/aiohttp-2.3.4-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c2a3cf32ff90e465a127b09435b2495", "sha256": "4cefa78dcb8902f8ee9680484a88485cac9f42d392741f1c7fdd24e7cf5b031c" }, "downloads": -1, "filename": "aiohttp-2.3.4-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "0c2a3cf32ff90e465a127b09435b2495", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 376277, "upload_time": "2017-11-30T00:37:12", "upload_time_iso_8601": "2017-11-30T00:37:12.142313Z", "url": "https://files.pythonhosted.org/packages/fa/23/76dc79d99fec25f8679b1d6f8d0a13b92968060ee88cc0f33abbd5f743ab/aiohttp-2.3.4-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc3e0c44ab0e55832ea83ec77cfdc278", "sha256": "bc872df10b5d572f0c8dbe908a838eb7bae43f90fd1ec10a449cb4e81fdb7415" }, "downloads": -1, "filename": "aiohttp-2.3.4-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "fc3e0c44ab0e55832ea83ec77cfdc278", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 635272, "upload_time": "2017-11-29T19:39:21", "upload_time_iso_8601": "2017-11-29T19:39:21.507296Z", "url": "https://files.pythonhosted.org/packages/d9/60/41babe2b1d3d2f37e2755119f0e057e014c0af7b387b49dcef55f051ec23/aiohttp-2.3.4-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "460b6fd0e65802c8d688bfb9a1a074a4", "sha256": "b951fbbbe0be12a7394bb2f09c7b4676ab800d467643c23eac7a02f7fb1678c8" }, "downloads": -1, "filename": "aiohttp-2.3.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "460b6fd0e65802c8d688bfb9a1a074a4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 662986, "upload_time": "2017-11-29T19:39:24", "upload_time_iso_8601": "2017-11-29T19:39:24.028456Z", "url": "https://files.pythonhosted.org/packages/57/ec/26a0f8180b2650be0c985eec549439a1ee7014914faf42133d54ecff248d/aiohttp-2.3.4-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad94afcdeab2ef4bea965bc1d2c0670b", "sha256": "5229cf46f013f927149790d7eb5c8debc7474209e08144df63a57581233dd161" }, "downloads": -1, "filename": "aiohttp-2.3.4-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "ad94afcdeab2ef4bea965bc1d2c0670b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 359596, "upload_time": "2017-11-29T14:50:53", "upload_time_iso_8601": "2017-11-29T14:50:53.509504Z", "url": "https://files.pythonhosted.org/packages/96/b9/09facc1f3e2ff55cb306e8953ad4cfd314c11b15330fd19d59d49c5d5876/aiohttp-2.3.4-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a20ff41f54f460be44ff8aa071c4ebb", "sha256": "609610a7565861bef2c45e479bef538f05f6b443ae7eedcb4009df0ae6654bd8" }, "downloads": -1, "filename": "aiohttp-2.3.4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "9a20ff41f54f460be44ff8aa071c4ebb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 370824, "upload_time": "2017-11-29T14:53:28", "upload_time_iso_8601": "2017-11-29T14:53:28.916137Z", "url": "https://files.pythonhosted.org/packages/bf/41/c27adfa0d34a522bbad4a9c6930fcb5f24ac61c5380b8f26b861751a8f71/aiohttp-2.3.4-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b64d729ae04e99ec7ee9ee4e56a9445", "sha256": "b7ef2701aa28f453594102a2644b2a0821dce408678e07de84f4a2f036f85c43" }, "downloads": -1, "filename": "aiohttp-2.3.4.tar.gz", "has_sig": false, "md5_digest": "0b64d729ae04e99ec7ee9ee4e56a9445", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4.2", "size": 846028, "upload_time": "2017-11-29T14:38:47", "upload_time_iso_8601": "2017-11-29T14:38:47.960442Z", "url": "https://files.pythonhosted.org/packages/09/d7/2bfd6c69584096992bcf78ca3f00327a893237f33fbd55384642ff187fd9/aiohttp-2.3.4.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.5": [ { "comment_text": "", "digests": { "md5": "0db05df57bb62dd6f33280a0de51079e", "sha256": "6fbafb8883fd943c253b17416cf564a82fd71f161ff700383b09879ba3cce622" }, "downloads": -1, "filename": "aiohttp-2.3.5-cp34-cp34m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "0db05df57bb62dd6f33280a0de51079e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 382214, "upload_time": "2017-11-30T07:24:42", "upload_time_iso_8601": "2017-11-30T07:24:42.316905Z", "url": "https://files.pythonhosted.org/packages/39/45/e2504d1f919bbda8f1005efdf67750731dba33fb9c7b1f24bc43711cd359/aiohttp-2.3.5-cp34-cp34m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cacb56d4e94d6d0378515e257ffbf7a3", "sha256": "588fb25786bb006166f35e75e7dcfb096278f99f458c3e09400ed42f021a2c09" }, "downloads": -1, "filename": "aiohttp-2.3.5-cp34-cp34m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "cacb56d4e94d6d0378515e257ffbf7a3", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 382224, "upload_time": "2017-11-30T07:39:31", "upload_time_iso_8601": "2017-11-30T07:39:31.453276Z", "url": "https://files.pythonhosted.org/packages/b9/73/9f64f5e69e1ec55c65256db9c172521cc3f9af3d910d47453952dc61c06f/aiohttp-2.3.5-cp34-cp34m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "398dc0cb1bd399be941bd20f892435f7", "sha256": "22599849201671588ad62d536591e95d4052806c7c14d7c9ab7a23b2e8bc071f" }, "downloads": -1, "filename": "aiohttp-2.3.5-cp34-cp34m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "398dc0cb1bd399be941bd20f892435f7", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 377099, "upload_time": "2017-11-30T08:29:26", "upload_time_iso_8601": "2017-11-30T08:29:26.082063Z", "url": "https://files.pythonhosted.org/packages/23/4c/cb7aecf693d22becdfda23219a9d33415498d2456f944ac9afaee726b2c6/aiohttp-2.3.5-cp34-cp34m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f970271545903432798c0d0e2d305cd8", "sha256": "07446d6bb192a0fb42ab6204f34741cb269714abce64643cf649efd543e12960" }, "downloads": -1, "filename": "aiohttp-2.3.5-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f970271545903432798c0d0e2d305cd8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 629177, "upload_time": "2017-11-30T07:25:01", "upload_time_iso_8601": "2017-11-30T07:25:01.725392Z", "url": "https://files.pythonhosted.org/packages/21/56/bc3810132a64f4c59083c8bc4b666d32bcf79a9f8357f99654e9feab2030/aiohttp-2.3.5-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b55d54f20be4de14e9d05a4ca3b7894", "sha256": "cbfe5c509aaa2eff789c4fee436e3c1920a94392b60f2e80c74af762c7479b07" }, "downloads": -1, "filename": "aiohttp-2.3.5-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5b55d54f20be4de14e9d05a4ca3b7894", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 655134, "upload_time": "2017-11-30T07:25:03", "upload_time_iso_8601": "2017-11-30T07:25:03.737379Z", "url": "https://files.pythonhosted.org/packages/7c/56/c8909319762bb33bda7a1cc28e1fee839a6d09f2fae343edbd52c1ec3894/aiohttp-2.3.5-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e2facd59a3ad592810f2243d18e7889", "sha256": "0580759823133cd4656a76239328363a8c12be26e9579ed75691b5aa46c61dc2" }, "downloads": -1, "filename": "aiohttp-2.3.5-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "4e2facd59a3ad592810f2243d18e7889", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 357620, "upload_time": "2017-11-30T00:17:56", "upload_time_iso_8601": "2017-11-30T00:17:56.683907Z", "url": "https://files.pythonhosted.org/packages/db/5c/5e850709b6aee4d6aa84a3954ebb9de52b1546c155fa357c120675d66120/aiohttp-2.3.5-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "806138c61f5b698e73c43705464d3664", "sha256": "83bc52dae14d43db1bfad1c1e1d47eab2d096fef0b5008850e30a71b736e8f40" }, "downloads": -1, "filename": "aiohttp-2.3.5-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "806138c61f5b698e73c43705464d3664", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 364484, "upload_time": "2017-11-30T00:20:09", "upload_time_iso_8601": "2017-11-30T00:20:09.157646Z", "url": "https://files.pythonhosted.org/packages/96/c5/37fcf958aea64735cb68d510a56288474d0e73ddcb8c40917f26cd0aef78/aiohttp-2.3.5-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b9c9f404e224bb4c83244bb242ecf6d", "sha256": "df827287fa962de0b3bbe8ea74fa3aa440dd7e1625743b247c0eaf9b9be3d647" }, "downloads": -1, "filename": "aiohttp-2.3.5-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "3b9c9f404e224bb4c83244bb242ecf6d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 381906, "upload_time": "2017-11-30T07:25:27", "upload_time_iso_8601": "2017-11-30T07:25:27.939157Z", "url": "https://files.pythonhosted.org/packages/c0/c7/b148c8efd2fe5ccbace00c787a149e0a9b34d0ca6090b43423efacec8241/aiohttp-2.3.5-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "74d5fb64443162e75aebc4e91efdc8df", "sha256": "689c30f5de00798ce412b8624fe9fd243c1689a50b614a5b9ffa31dba87aa7e9" }, "downloads": -1, "filename": "aiohttp-2.3.5-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "74d5fb64443162e75aebc4e91efdc8df", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 381743, "upload_time": "2017-11-30T08:04:20", "upload_time_iso_8601": "2017-11-30T08:04:20.809393Z", "url": "https://files.pythonhosted.org/packages/79/5c/7b6c937a72e3bae9e520ff3f79e3f284639f1dc82409aa023991f332a103/aiohttp-2.3.5-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "656976d4d62d22fbb4f440ee38c2c32e", "sha256": "e0aff15e4fa97c249290dc5fe8d784eeedf3f04a94a0125e6ca61dc14f8096a4" }, "downloads": -1, "filename": "aiohttp-2.3.5-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "656976d4d62d22fbb4f440ee38c2c32e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 374912, "upload_time": "2017-11-30T09:50:22", "upload_time_iso_8601": "2017-11-30T09:50:22.503558Z", "url": "https://files.pythonhosted.org/packages/83/ba/e9a4ad341a9819e944d1fa691026961b46872217886b40996a7a76205c5c/aiohttp-2.3.5-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c1eaa1872beaf87f982fae5438775d1e", "sha256": "59945743837ced78e3354e443718db2fd99ff0b7e0269f324ef9a3c942121352" }, "downloads": -1, "filename": "aiohttp-2.3.5-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c1eaa1872beaf87f982fae5438775d1e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 619155, "upload_time": "2017-11-30T07:25:06", "upload_time_iso_8601": "2017-11-30T07:25:06.559519Z", "url": "https://files.pythonhosted.org/packages/e0/74/8864287e06c501a4824c64d62a752cee1305f310da3e84e2cc800e9b1d04/aiohttp-2.3.5-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2342deefaf0ad6c03572ab143a28fcb6", "sha256": "5507e614110a1a4ebed82d389ea50c2b4d98b24ec6b500503533081cf1892462" }, "downloads": -1, "filename": "aiohttp-2.3.5-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2342deefaf0ad6c03572ab143a28fcb6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 648698, "upload_time": "2017-11-30T07:25:08", "upload_time_iso_8601": "2017-11-30T07:25:08.108601Z", "url": "https://files.pythonhosted.org/packages/70/68/c7226456a5e681ee1b308ebc4e352058597716d3cb9f25d4eb1efea190f0/aiohttp-2.3.5-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "624ba7a036555abdb870af5ceaa9cca2", "sha256": "d551a3ec5aee881677bf952f5e4ae75146f9bd71bbeae06c814ca00fb1cd2f41" }, "downloads": -1, "filename": "aiohttp-2.3.5-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "624ba7a036555abdb870af5ceaa9cca2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 357987, "upload_time": "2017-11-30T00:22:21", "upload_time_iso_8601": "2017-11-30T00:22:21.928926Z", "url": "https://files.pythonhosted.org/packages/11/d6/4a0348dc56a1222e8705defb3e6e7ff5fef9dc2f8309841cf5aaec8819d6/aiohttp-2.3.5-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3368fa47ab14321e8d90873f682c936c", "sha256": "03848a3961fe7a5ba32fa9f40cfd5ecf139d6e85b59868412fed47d5835f098c" }, "downloads": -1, "filename": "aiohttp-2.3.5-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "3368fa47ab14321e8d90873f682c936c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 369007, "upload_time": "2017-11-30T00:25:46", "upload_time_iso_8601": "2017-11-30T00:25:46.661047Z", "url": "https://files.pythonhosted.org/packages/7c/be/3faae4d89e3bdf7e2378287a21b90652c58ae8b6aba67d8667b2bd7d3604/aiohttp-2.3.5-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c03865d8a4af775ee56d4feddc4de008", "sha256": "764426debf452eb0a479717d68abbc88d0a707da58761784d4b532afd518027c" }, "downloads": -1, "filename": "aiohttp-2.3.5-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "c03865d8a4af775ee56d4feddc4de008", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 384468, "upload_time": "2017-11-30T07:38:39", "upload_time_iso_8601": "2017-11-30T07:38:39.663965Z", "url": "https://files.pythonhosted.org/packages/2c/97/fb39915ea14383305d3daec99b512c34443de6d5bc0e8377aa183df906f4/aiohttp-2.3.5-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a1020c55ecf262aafe6b41491e4e4cd7", "sha256": "0543261f22b7e635abeba354c9f975f877d471615b4e42c730d6894ddf008bf2" }, "downloads": -1, "filename": "aiohttp-2.3.5-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "a1020c55ecf262aafe6b41491e4e4cd7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 384038, "upload_time": "2017-11-30T08:01:05", "upload_time_iso_8601": "2017-11-30T08:01:05.912558Z", "url": "https://files.pythonhosted.org/packages/43/ed/970f9bdc8b4c3abf2a0ef56df2b90346f7109e3be3e5138d2083b561a499/aiohttp-2.3.5-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c28075acb50a8a5a09a3b25f492c029f", "sha256": "df52fc09085f4a7b0952a8f2aef3aa0b15a16dd789e0bce8703043fdbd038f9d" }, "downloads": -1, "filename": "aiohttp-2.3.5-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "c28075acb50a8a5a09a3b25f492c029f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 376334, "upload_time": "2017-11-30T08:47:53", "upload_time_iso_8601": "2017-11-30T08:47:53.034504Z", "url": "https://files.pythonhosted.org/packages/df/79/12dd547a65d4b9d66483df7331ec9d31ccf1271dbabc2f62334f1a3cdd0a/aiohttp-2.3.5-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ae11dabf4af5d8c884fd512110890b62", "sha256": "315c2e0dd2ef657b9142cb00cb77ff240192ce0b2e45e1b6e8f3a1d0dae24b66" }, "downloads": -1, "filename": "aiohttp-2.3.5-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ae11dabf4af5d8c884fd512110890b62", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 635324, "upload_time": "2017-11-30T07:25:10", "upload_time_iso_8601": "2017-11-30T07:25:10.841846Z", "url": "https://files.pythonhosted.org/packages/e9/80/2fe69c7d1412c2d6952b973fa8c1a8a1d549dd75637f7ae5d95dcb5f504c/aiohttp-2.3.5-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ecb086880723dce4e067a8f17912a32", "sha256": "ba2b7d24425fe519f0fb6c9a11e192c47993e5a30943247b45d73f79764f1667" }, "downloads": -1, "filename": "aiohttp-2.3.5-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3ecb086880723dce4e067a8f17912a32", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 663063, "upload_time": "2017-11-30T07:25:13", "upload_time_iso_8601": "2017-11-30T07:25:13.515321Z", "url": "https://files.pythonhosted.org/packages/d3/9d/92195f0ac147067ce3d88ccb6252a28215c19859b23702e6581e7d7c9315/aiohttp-2.3.5-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a499288f40e3ebcc0117764d9077fc79", "sha256": "52086829c4d7d6aac0a98455489c42296435d9ac1b607e27a4fbb1490a012a20" }, "downloads": -1, "filename": "aiohttp-2.3.5-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "a499288f40e3ebcc0117764d9077fc79", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 359651, "upload_time": "2017-11-30T00:27:53", "upload_time_iso_8601": "2017-11-30T00:27:53.757443Z", "url": "https://files.pythonhosted.org/packages/c4/ca/20191794212c2495eb07837b6154375a155375d7be24fe098d87ba04247b/aiohttp-2.3.5-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0685f8ad4f8504c86946b6a17e4bc67", "sha256": "4a7d2221e6d3a8bb8d510e6aa254fd8e165efecc42af5b699e1492ed9cad51e7" }, "downloads": -1, "filename": "aiohttp-2.3.5-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "e0685f8ad4f8504c86946b6a17e4bc67", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 370875, "upload_time": "2017-11-30T00:30:04", "upload_time_iso_8601": "2017-11-30T00:30:04.386523Z", "url": "https://files.pythonhosted.org/packages/48/87/3594f2c8da696eaf000fcc7b2256c9fb0ab3ed78d10541868ab213bd9b41/aiohttp-2.3.5-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "69f514740854322b8fc9c462da01a839", "sha256": "044e4d610a5ab6bd46a04f431f000d0b5074f1aa38df5e326cff031635af6ad7" }, "downloads": -1, "filename": "aiohttp-2.3.5.tar.gz", "has_sig": false, "md5_digest": "69f514740854322b8fc9c462da01a839", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4.2", "size": 846010, "upload_time": "2017-11-30T00:17:58", "upload_time_iso_8601": "2017-11-30T00:17:58.399493Z", "url": "https://files.pythonhosted.org/packages/6f/2c/0a84048729d9703a155b360664bb1216e111c63a38178c27664c4b61e499/aiohttp-2.3.5.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.6": [ { "comment_text": "", "digests": { "md5": "63616d141be0d7a1c2e6f4a498a1a83e", "sha256": "7a2029dcb3e59d70c4520ce95c477577962753b302e3b969c3c97043bd20bc40" }, "downloads": -1, "filename": "aiohttp-2.3.6-cp34-cp34m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "63616d141be0d7a1c2e6f4a498a1a83e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 382282, "upload_time": "2017-12-04T18:51:51", "upload_time_iso_8601": "2017-12-04T18:51:51.133352Z", "url": "https://files.pythonhosted.org/packages/fb/ec/67052c62caecbf3eb77392967300478bfe9afd94464e90bdcc7bf445b34e/aiohttp-2.3.6-cp34-cp34m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ddc63b9d522620c2a4cc596410a874b9", "sha256": "cca6a8715694e0913419b6c0712e33e77d59b73428dd7e9ff18e27851df53a94" }, "downloads": -1, "filename": "aiohttp-2.3.6-cp34-cp34m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "ddc63b9d522620c2a4cc596410a874b9", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 382289, "upload_time": "2017-12-04T20:02:33", "upload_time_iso_8601": "2017-12-04T20:02:33.342736Z", "url": "https://files.pythonhosted.org/packages/51/58/61abf8c83a00538e3e5269bf98854f5c7152301bfe7856a601c2b55f2f8f/aiohttp-2.3.6-cp34-cp34m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67372200207c68e484ecd0d732e7e422", "sha256": "c45d2f20357f04ebb9957074a5139316c01c635f21a54f833ce560846dee795c" }, "downloads": -1, "filename": "aiohttp-2.3.6-cp34-cp34m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "67372200207c68e484ecd0d732e7e422", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 377174, "upload_time": "2017-12-04T22:19:16", "upload_time_iso_8601": "2017-12-04T22:19:16.207243Z", "url": "https://files.pythonhosted.org/packages/ec/4e/53c67442b20167b580a36108e8440d86fdc3baf6289ba5e798061cafc78d/aiohttp-2.3.6-cp34-cp34m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "90f1a4a687c568e14ec9a07d9ffcd4b2", "sha256": "3aaf110f4635db5a1d01f624e441cbcf9c23490d113d8b0c5727f119136d5663" }, "downloads": -1, "filename": "aiohttp-2.3.6-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "90f1a4a687c568e14ec9a07d9ffcd4b2", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 629230, "upload_time": "2017-12-04T18:36:52", "upload_time_iso_8601": "2017-12-04T18:36:52.448539Z", "url": "https://files.pythonhosted.org/packages/11/f9/892c97b30fea283ecfb9f8d1288a8911c9ba40516fb7274672cbd0b099c0/aiohttp-2.3.6-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "809d30e5666d1e146a2dece07bcbb232", "sha256": "524107f04ead82e0684f4bcd915fc3d5c936dbcf86d017b8339e396005879085" }, "downloads": -1, "filename": "aiohttp-2.3.6-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "809d30e5666d1e146a2dece07bcbb232", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 655191, "upload_time": "2017-12-04T18:36:54", "upload_time_iso_8601": "2017-12-04T18:36:54.180629Z", "url": "https://files.pythonhosted.org/packages/8b/fc/6857e2748caad478940de59312f8c7efeda6bbbc30394488b88afb2a0a16/aiohttp-2.3.6-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "79363696d4ccb1efccca42cf2bd95717", "sha256": "14e2f6cd6bc9e40fc79d6d2573fc08231546418f116dcbd30942fb57eec92104" }, "downloads": -1, "filename": "aiohttp-2.3.6-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "79363696d4ccb1efccca42cf2bd95717", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 357694, "upload_time": "2017-12-04T18:12:32", "upload_time_iso_8601": "2017-12-04T18:12:32.763579Z", "url": "https://files.pythonhosted.org/packages/c4/0b/5df931d625eb8ca068eacf523dafbc4ee23b7d528fb3eff9b61571b73de9/aiohttp-2.3.6-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "717325f2e9c385490f13b657a00866ae", "sha256": "74ccdd450da8fb2ac29add97624ee4b573c8891b14c7b833a954343f05aa8772" }, "downloads": -1, "filename": "aiohttp-2.3.6-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "717325f2e9c385490f13b657a00866ae", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 364558, "upload_time": "2017-12-04T18:14:46", "upload_time_iso_8601": "2017-12-04T18:14:46.318038Z", "url": "https://files.pythonhosted.org/packages/46/42/e36f31459b0cc051711fc5e554dcbf240d839c25947b778f8c513839799f/aiohttp-2.3.6-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cf9c3757db8e6e0caea120c5d77b436c", "sha256": "cc1eee0746ab0c876e246960fdb5a839e63e673b8089c79a4c21f4cba66bcd00" }, "downloads": -1, "filename": "aiohttp-2.3.6-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "cf9c3757db8e6e0caea120c5d77b436c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 381979, "upload_time": "2017-12-04T18:52:13", "upload_time_iso_8601": "2017-12-04T18:52:13.482009Z", "url": "https://files.pythonhosted.org/packages/53/23/430e9446ac8fe311211f73050e085027a23f1c4cf97cb81eeb70e255cd7f/aiohttp-2.3.6-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f2fe435859ed441f83d3c82520ca6e00", "sha256": "dbe39eac8a05e2e3b6b8a656dce589bbe3a0d1ab2816e44e64b7595b7bfc1568" }, "downloads": -1, "filename": "aiohttp-2.3.6-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "f2fe435859ed441f83d3c82520ca6e00", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 381813, "upload_time": "2017-12-04T20:43:21", "upload_time_iso_8601": "2017-12-04T20:43:21.340665Z", "url": "https://files.pythonhosted.org/packages/50/d4/dcda39f89c7d040a4311e1294c99b78188dabc52be14b71c6cbd56e5cb0c/aiohttp-2.3.6-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b372783b22e4ab75151692f0a0ea9361", "sha256": "8c14ca8069c0b04aa1c47ec26c494b56bf9dec8085c8cadc655b9cad9719a0df" }, "downloads": -1, "filename": "aiohttp-2.3.6-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "b372783b22e4ab75151692f0a0ea9361", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 374979, "upload_time": "2017-12-04T23:41:13", "upload_time_iso_8601": "2017-12-04T23:41:13.912832Z", "url": "https://files.pythonhosted.org/packages/ee/b0/bc27cc39a833aab5c27cbc81651983e0fa932bbba44a2acee24cf6c6eca0/aiohttp-2.3.6-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "76d9b20782caf3e0dfaf59362e9a19f5", "sha256": "2fcec70bcb60f86b1abdf2c9d28b65e53c52a2325001f2cf7ef7afa5bd5387f4" }, "downloads": -1, "filename": "aiohttp-2.3.6-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "76d9b20782caf3e0dfaf59362e9a19f5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 619198, "upload_time": "2017-12-04T18:36:56", "upload_time_iso_8601": "2017-12-04T18:36:56.027822Z", "url": "https://files.pythonhosted.org/packages/20/df/bda0caeb10f67f9a572483d12e0296a8511743772a010da4830f2f0b8ef9/aiohttp-2.3.6-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a82ecf0747209540a0d9ba2a7b2616b6", "sha256": "3d0a11291d70d82a58dd404a89f0a5294e2b2008cf33f8bbac91dbcf3241fcbe" }, "downloads": -1, "filename": "aiohttp-2.3.6-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a82ecf0747209540a0d9ba2a7b2616b6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 648748, "upload_time": "2017-12-04T18:36:57", "upload_time_iso_8601": "2017-12-04T18:36:57.715449Z", "url": "https://files.pythonhosted.org/packages/1e/4d/4e64755839101288b6599d74459dd639e1359e7d88b5aa3f3ef4d6374488/aiohttp-2.3.6-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "241afffa533ec25fd3fb070975cd5634", "sha256": "e20e1b73e7da29b45915cde65fbec1693df221024522bbc38f017e6de101482a" }, "downloads": -1, "filename": "aiohttp-2.3.6-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "241afffa533ec25fd3fb070975cd5634", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 358059, "upload_time": "2017-12-04T18:17:35", "upload_time_iso_8601": "2017-12-04T18:17:35.112856Z", "url": "https://files.pythonhosted.org/packages/de/27/87f7dffe8be2e7fbda81fa4f317cd2a30c0e02a820a597264faa2b7eb481/aiohttp-2.3.6-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e8d651f5e760bac20ed498922bbd65af", "sha256": "d367eba9aed4f10ee7a85cdfbfe2a2f492c36d0e34785b97cbc9e9c3b3168c12" }, "downloads": -1, "filename": "aiohttp-2.3.6-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "e8d651f5e760bac20ed498922bbd65af", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 369082, "upload_time": "2017-12-04T18:20:40", "upload_time_iso_8601": "2017-12-04T18:20:40.083630Z", "url": "https://files.pythonhosted.org/packages/15/a5/1bd80c78e4bb8dfc69e087d5d9e0005798661049773cbf5821ff0555eb93/aiohttp-2.3.6-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "776c76c43987322729f9d039f4ec8b17", "sha256": "65388aeda85d72b8219c3f8ba33261bc8576da0852e758c555eb17ca2a3069c4" }, "downloads": -1, "filename": "aiohttp-2.3.6-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "776c76c43987322729f9d039f4ec8b17", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 384539, "upload_time": "2017-12-04T19:28:31", "upload_time_iso_8601": "2017-12-04T19:28:31.609275Z", "url": "https://files.pythonhosted.org/packages/53/d1/77e8363a9a3a44f0aa0e6d714fb314eb31cafafd856a9fc4edea01592783/aiohttp-2.3.6-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3a5a0147ea3f5b6ba5ba99583ab6b7a6", "sha256": "6be8389b9de30d31946b1ed3cbec37427646851b763e2f4cab1ba0b87709c3af" }, "downloads": -1, "filename": "aiohttp-2.3.6-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "3a5a0147ea3f5b6ba5ba99583ab6b7a6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 384108, "upload_time": "2017-12-04T20:43:39", "upload_time_iso_8601": "2017-12-04T20:43:39.959362Z", "url": "https://files.pythonhosted.org/packages/72/f6/a7480c6707d0ec22a9bc60a6dedf5c80a2340e4eb0ce90c5c65cbd0c0c2d/aiohttp-2.3.6-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75aad5dfe0fb7b07ffcf74827a9f28e4", "sha256": "f25aac47a1b6e784de0dc4fae2ce1aeaf1c0717801632eec17a304b21e34056f" }, "downloads": -1, "filename": "aiohttp-2.3.6-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "75aad5dfe0fb7b07ffcf74827a9f28e4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 376403, "upload_time": "2017-12-05T01:40:01", "upload_time_iso_8601": "2017-12-05T01:40:01.601128Z", "url": "https://files.pythonhosted.org/packages/df/26/ff98eb7722aa843f29c9f22f7d6fefee9234318bc3ebed1a6c773d6ad0ab/aiohttp-2.3.6-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68bfa2d125c5dd031fdf7f9bf05f5a8b", "sha256": "dc118fae7e6353166a51caecc2044cd3390688fce57d2330b803fc86ffb48b2e" }, "downloads": -1, "filename": "aiohttp-2.3.6-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "68bfa2d125c5dd031fdf7f9bf05f5a8b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 635395, "upload_time": "2017-12-04T18:37:01", "upload_time_iso_8601": "2017-12-04T18:37:01.169737Z", "url": "https://files.pythonhosted.org/packages/7e/45/0afed9e4e4f2d7d67ece1f909fa5984813e127682cfe72c03b31c9a03be8/aiohttp-2.3.6-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08caf6de4714827f3d18f77f4f7d9400", "sha256": "850061409274d2528ff78f773da680eab57efd08efadfe035a92c1c20a46964b" }, "downloads": -1, "filename": "aiohttp-2.3.6-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "08caf6de4714827f3d18f77f4f7d9400", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 663127, "upload_time": "2017-12-04T18:37:03", "upload_time_iso_8601": "2017-12-04T18:37:03.344755Z", "url": "https://files.pythonhosted.org/packages/56/75/bbb1fdd6f789384c82bb74310046b7ead585538c1472a1944c8266d5dee8/aiohttp-2.3.6-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ce15180da8b06544e27d78b599f24cc9", "sha256": "d5ea7feae3cd8e64469ca9d3a6da4981f251b884997007e073cdebc0919a3b55" }, "downloads": -1, "filename": "aiohttp-2.3.6-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "ce15180da8b06544e27d78b599f24cc9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 359720, "upload_time": "2017-12-04T18:22:53", "upload_time_iso_8601": "2017-12-04T18:22:53.054966Z", "url": "https://files.pythonhosted.org/packages/d5/57/ebec1374f320e4a0d282bec69fdee61dccaf7325f03abf9ccf756e9e0b77/aiohttp-2.3.6-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e89425ba83b03fa14fde4848ccd1617", "sha256": "d944aacf988a32ccbe62d3f2533ed8beb1c08dbed96260c5f1cd76fae0539f5c" }, "downloads": -1, "filename": "aiohttp-2.3.6-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "4e89425ba83b03fa14fde4848ccd1617", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 370953, "upload_time": "2017-12-04T18:25:09", "upload_time_iso_8601": "2017-12-04T18:25:09.490628Z", "url": "https://files.pythonhosted.org/packages/ea/a8/85a9e39f2e6117f92398511a2e1e8fb57f1dd6c53f9b521a51c35ca2b46a/aiohttp-2.3.6-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b8683d16f4e45fbb5a28bae5d7dc1ea7", "sha256": "0111b4c71d1121bfcbd392bbabd573d20f133f491161b87718a07976e0459c32" }, "downloads": -1, "filename": "aiohttp-2.3.6.tar.gz", "has_sig": false, "md5_digest": "b8683d16f4e45fbb5a28bae5d7dc1ea7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4.2", "size": 846135, "upload_time": "2017-12-04T18:12:36", "upload_time_iso_8601": "2017-12-04T18:12:36.458541Z", "url": "https://files.pythonhosted.org/packages/3c/1d/a7479eee24e13ed4cfe543f5c1417972c4db5f24c9adbb87fa52f5e0eb1a/aiohttp-2.3.6.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.7": [ { "comment_text": "", "digests": { "md5": "6cb9a6384cb4d469d76f518c2fd162b3", "sha256": "1d3659809cc3cf16007a43df3c3af34a9ad8d7594bfcd651ef2d29ff21d015e3" }, "downloads": -1, "filename": "aiohttp-2.3.7-cp34-cp34m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "6cb9a6384cb4d469d76f518c2fd162b3", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 382441, "upload_time": "2017-12-27T10:01:04", "upload_time_iso_8601": "2017-12-27T10:01:04.147004Z", "url": "https://files.pythonhosted.org/packages/06/72/5cad0193a2ccd5793dca24d85cf9c4b8d2727d656979f50b6e96b7ff03b8/aiohttp-2.3.7-cp34-cp34m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2f00b971edc63ba9fc02e112f40fbde1", "sha256": "18c93827f604e3830535423f22bfaa180d7ba10baa5959a2077f2e29b320138d" }, "downloads": -1, "filename": "aiohttp-2.3.7-cp34-cp34m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "2f00b971edc63ba9fc02e112f40fbde1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 382448, "upload_time": "2017-12-27T10:14:55", "upload_time_iso_8601": "2017-12-27T10:14:55.669754Z", "url": "https://files.pythonhosted.org/packages/2a/e9/3a51ae7fb4f7c5c3a4742f6421a960986bbe7899e58f2452b7252eda27fe/aiohttp-2.3.7-cp34-cp34m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5ce8ecea7ebf06a8be20f2dafd74ccb", "sha256": "080c82112d93fe117a2f605d5a102191ae7fc52349c53cf6676efbfb8bd2d369" }, "downloads": -1, "filename": "aiohttp-2.3.7-cp34-cp34m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "f5ce8ecea7ebf06a8be20f2dafd74ccb", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 377329, "upload_time": "2017-12-27T10:29:48", "upload_time_iso_8601": "2017-12-27T10:29:48.802397Z", "url": "https://files.pythonhosted.org/packages/13/8d/e0c59acd7148695a6378b101ce29346b8f72932c16d90edb9366c059553b/aiohttp-2.3.7-cp34-cp34m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a3b01d3770bc42a0458ff45ebae95218", "sha256": "a1c29fdc56e040c3c67a9fa6da7e05382d5216d1ead9ae8a4fb772a1abb0452a" }, "downloads": -1, "filename": "aiohttp-2.3.7-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a3b01d3770bc42a0458ff45ebae95218", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 629408, "upload_time": "2017-12-27T10:20:15", "upload_time_iso_8601": "2017-12-27T10:20:15.750587Z", "url": "https://files.pythonhosted.org/packages/3b/e2/ecf8976d5cd5492228725b4192236b656179c9f94d152a340b1ab78c467b/aiohttp-2.3.7-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "85da71eb5b664699e866162e28eda9a0", "sha256": "d8f546159ae453572c3b87d88652705c4516dfee1ade8673b47f544b2bf1b33d" }, "downloads": -1, "filename": "aiohttp-2.3.7-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "85da71eb5b664699e866162e28eda9a0", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 655396, "upload_time": "2017-12-27T10:20:18", "upload_time_iso_8601": "2017-12-27T10:20:18.440593Z", "url": "https://files.pythonhosted.org/packages/3e/c9/c9cea7116ded4c6f5b2206f8b5ee3ab9e531d488ddb31f146dc2791833a3/aiohttp-2.3.7-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c6cecc1069fbc12363cc9281543d6eb8", "sha256": "03085220b503bb2cf2d288e1b36cf6dcbf84fcfed550e7c73bad429a6e528084" }, "downloads": -1, "filename": "aiohttp-2.3.7-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "c6cecc1069fbc12363cc9281543d6eb8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 357848, "upload_time": "2017-12-27T09:25:02", "upload_time_iso_8601": "2017-12-27T09:25:02.293900Z", "url": "https://files.pythonhosted.org/packages/fa/c8/6ce10c41688afa179680e7b7d8e1c6aa4a68e38842c5d729296f44146fa7/aiohttp-2.3.7-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4972be73f5aa60b4136feee116c23ebf", "sha256": "00e40b1261bdb6a1e2b986e610be8a2bb0699ce5a261f78c88d761c726e0af10" }, "downloads": -1, "filename": "aiohttp-2.3.7-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "4972be73f5aa60b4136feee116c23ebf", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 364715, "upload_time": "2017-12-27T09:27:18", "upload_time_iso_8601": "2017-12-27T09:27:18.130755Z", "url": "https://files.pythonhosted.org/packages/5c/84/0b1483c2e0ed4459fca35d7beb331bd59a8398ab78da0d293f865f094d42/aiohttp-2.3.7-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "52c6bcb90d404176ba835fc771eae9c8", "sha256": "fcec0a4878c27f04bf62de4b76d51f9583d45031317dd020088d2e258210fcc2" }, "downloads": -1, "filename": "aiohttp-2.3.7-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "52c6bcb90d404176ba835fc771eae9c8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 382132, "upload_time": "2017-12-27T10:04:35", "upload_time_iso_8601": "2017-12-27T10:04:35.610517Z", "url": "https://files.pythonhosted.org/packages/dc/83/9fcf30c5651e30fda3a09ae4c99bb9dfd057d1c6d2a80c666ec7783dec2a/aiohttp-2.3.7-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2fb5c99ae59a8661feb9b2f7ef020d41", "sha256": "52b180767e1b75ff071f316a52946fb311ba4183cb6981201fa7843611cf42e4" }, "downloads": -1, "filename": "aiohttp-2.3.7-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "2fb5c99ae59a8661feb9b2f7ef020d41", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 381969, "upload_time": "2017-12-27T10:21:39", "upload_time_iso_8601": "2017-12-27T10:21:39.927356Z", "url": "https://files.pythonhosted.org/packages/ff/30/d34a86bacc2d287113552a91043512de1ceb2f8f2bf9f16b3e1cbaf680bd/aiohttp-2.3.7-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d80569d606860bed8262fab89861ba8", "sha256": "1fbc4701639ca383dc103840fb478ce726b84c51de8d575c02b740bcb2f60262" }, "downloads": -1, "filename": "aiohttp-2.3.7-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "2d80569d606860bed8262fab89861ba8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 375141, "upload_time": "2017-12-27T10:41:14", "upload_time_iso_8601": "2017-12-27T10:41:14.905517Z", "url": "https://files.pythonhosted.org/packages/65/2f/cd259a2c2a08242ef180c3c822809b19abe6ef682dfdf9cf0bae7e54b03b/aiohttp-2.3.7-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a140af41cfa7bfe58f815d20c12cd21", "sha256": "9d2e10768bca6ff8392df596754adbffee39ab4243d2536f955f9db145685cbe" }, "downloads": -1, "filename": "aiohttp-2.3.7-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7a140af41cfa7bfe58f815d20c12cd21", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 619376, "upload_time": "2017-12-27T10:20:20", "upload_time_iso_8601": "2017-12-27T10:20:20.575432Z", "url": "https://files.pythonhosted.org/packages/06/bd/436ec74cd5c583bdef372462734d20ba9f8b404c745109986d6dcaeaa5ef/aiohttp-2.3.7-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d334df1c4f46bbe18a4ab0f97a91a1c0", "sha256": "3ee498748106c2f8ce937ea27c05d8862118ce055ee3d074b383e927572b51b6" }, "downloads": -1, "filename": "aiohttp-2.3.7-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d334df1c4f46bbe18a4ab0f97a91a1c0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 648920, "upload_time": "2017-12-27T10:20:22", "upload_time_iso_8601": "2017-12-27T10:20:22.704628Z", "url": "https://files.pythonhosted.org/packages/e0/1c/a93ea452298033b8b57d7a421ceea83bde9ea6a984cfee7eeafedf106676/aiohttp-2.3.7-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb81a514a9f2b22de25863b00b8b8205", "sha256": "dc922785064187c45c71eda21d7eb87c7a0b2d867e0d7c9ffc2ea2a37dcca608" }, "downloads": -1, "filename": "aiohttp-2.3.7-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "cb81a514a9f2b22de25863b00b8b8205", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 358215, "upload_time": "2017-12-27T09:29:22", "upload_time_iso_8601": "2017-12-27T09:29:22.234620Z", "url": "https://files.pythonhosted.org/packages/66/72/df15d890b3dfe86f572571586347bec1952df060f9b699ee2d051910bf1e/aiohttp-2.3.7-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b695abb929e2bb2d10bcdc4b9bbe9a81", "sha256": "0415ca37ca047d4b5c2938da024abe4893fe54227b7ad36f98fb169fff4767a3" }, "downloads": -1, "filename": "aiohttp-2.3.7-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "b695abb929e2bb2d10bcdc4b9bbe9a81", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 369237, "upload_time": "2017-12-27T09:31:32", "upload_time_iso_8601": "2017-12-27T09:31:32.267030Z", "url": "https://files.pythonhosted.org/packages/f4/fd/9dd10959c823d32c7d98e2326649b9c4b9d44dcc3d71c5b548cc83eeb333/aiohttp-2.3.7-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "30579cc5350b4783dba1fda5f004e189", "sha256": "08715cc8d0ae00679b7c131804ae92aacc31fd0078dd0d78c309c043a4f8aa57" }, "downloads": -1, "filename": "aiohttp-2.3.7-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "30579cc5350b4783dba1fda5f004e189", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 384697, "upload_time": "2017-12-27T10:11:30", "upload_time_iso_8601": "2017-12-27T10:11:30.054456Z", "url": "https://files.pythonhosted.org/packages/0f/78/53ace70219fd7107b8a2342ea18d6494a24485120e99703c073570b004e1/aiohttp-2.3.7-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d7e650f3e670f1b1547c899b340c65b4", "sha256": "ed8fb8c9b16459895c6949215592df6119961a9999ade84b66594456883d2215" }, "downloads": -1, "filename": "aiohttp-2.3.7-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "d7e650f3e670f1b1547c899b340c65b4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 384258, "upload_time": "2017-12-27T10:24:54", "upload_time_iso_8601": "2017-12-27T10:24:54.488735Z", "url": "https://files.pythonhosted.org/packages/d6/a8/21ebca796e25f22697b1688249c166e4d6b55c7693acbc79275f5e0be6c9/aiohttp-2.3.7-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a675be65f77aecef23ba9019cfe6b5f2", "sha256": "6b2c62e6d54a08c7e4b8b00251d3c877bdf10ceec22c7ecc5d94de64d75fe699" }, "downloads": -1, "filename": "aiohttp-2.3.7-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "a675be65f77aecef23ba9019cfe6b5f2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 376556, "upload_time": "2017-12-27T10:38:14", "upload_time_iso_8601": "2017-12-27T10:38:14.795897Z", "url": "https://files.pythonhosted.org/packages/b3/b6/a0d0f08aa77b5055598a53f20f085814bbf8f3d6107fa662fe01113d9d08/aiohttp-2.3.7-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e825ddc6c10e26758971094a19bb5678", "sha256": "f81850cf4707a2d3d85fcb9c85c091a0df66bf4a67197530c5a4f454b8d1d950" }, "downloads": -1, "filename": "aiohttp-2.3.7-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e825ddc6c10e26758971094a19bb5678", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 635554, "upload_time": "2017-12-27T10:20:25", "upload_time_iso_8601": "2017-12-27T10:20:25.148314Z", "url": "https://files.pythonhosted.org/packages/54/96/8fafc238b4f454052d2227336071f322c42324a2ff03884f70a946a34ea5/aiohttp-2.3.7-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b502ad5c39f6a76a7efe44025f7eba32", "sha256": "5a1c7c890ac13dd05763e3617261f528fedf3255d72ba8c41e97f7de72f3d8b6" }, "downloads": -1, "filename": "aiohttp-2.3.7-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b502ad5c39f6a76a7efe44025f7eba32", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 663302, "upload_time": "2017-12-27T10:20:27", "upload_time_iso_8601": "2017-12-27T10:20:27.649549Z", "url": "https://files.pythonhosted.org/packages/c3/ee/baef3c6704a7082ffa8486539e4c16a53266febb6b4e93c1aa05470a99cb/aiohttp-2.3.7-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f3e1ab04bc753b447d7bb5a16e907421", "sha256": "65d623d32a40826be88ecafe5a49fd0af3092b2bf7e1171aec1d3e7868c969c1" }, "downloads": -1, "filename": "aiohttp-2.3.7-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "f3e1ab04bc753b447d7bb5a16e907421", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 359880, "upload_time": "2017-12-27T09:33:11", "upload_time_iso_8601": "2017-12-27T09:33:11.186230Z", "url": "https://files.pythonhosted.org/packages/df/73/bd0e09d5da5cd05d0aa89bd444fa1da519f978224622eda5eaae7aec9d94/aiohttp-2.3.7-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "30102a044d7c8822ffb07e4e928d0eec", "sha256": "222634adcdcfda1aefafff198415df77946384d10696619f1b163cb36d03bc82" }, "downloads": -1, "filename": "aiohttp-2.3.7-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "30102a044d7c8822ffb07e4e928d0eec", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 371110, "upload_time": "2017-12-27T09:34:51", "upload_time_iso_8601": "2017-12-27T09:34:51.938270Z", "url": "https://files.pythonhosted.org/packages/7b/35/ac6688b0d561c291bfbb00d318fba9be36b38816e308cd6dc7d49bb647b1/aiohttp-2.3.7-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c78ea2441fb3e9dc817d31d19447c88c", "sha256": "fe294df38e9c67374263d783a7a29c79372030f5962bd5734fa51c6f4bbfee3b" }, "downloads": -1, "filename": "aiohttp-2.3.7.tar.gz", "has_sig": false, "md5_digest": "c78ea2441fb3e9dc817d31d19447c88c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4.2", "size": 847163, "upload_time": "2017-12-27T09:25:04", "upload_time_iso_8601": "2017-12-27T09:25:04.206487Z", "url": "https://files.pythonhosted.org/packages/5e/67/c66a608cd61f49f71cedea2bb2e479c9da5bfaf4b83948b2b7a475e8ac8f/aiohttp-2.3.7.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.8": [ { "comment_text": "", "digests": { "md5": "14d762948e5562de3d4f90f0a0c18fae", "sha256": "c7b8a47315e8c0b79a008e33eca4299baa002efd4b53ace068f0894133a8933e" }, "downloads": -1, "filename": "aiohttp-2.3.8-cp34-cp34m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "14d762948e5562de3d4f90f0a0c18fae", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 382599, "upload_time": "2018-01-17T07:10:12", "upload_time_iso_8601": "2018-01-17T07:10:12.060006Z", "url": "https://files.pythonhosted.org/packages/11/aa/1a2b42dcc224dc1642e6885887cb195faa74b975173ec8b5c0e4f5d6288f/aiohttp-2.3.8-cp34-cp34m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2b8ebddf007e08a103b6cb0759947699", "sha256": "8b2c9b1f43e12fe8837455ce4caf3a8621c3ab474219f11bd0270ca1c0735fc7" }, "downloads": -1, "filename": "aiohttp-2.3.8-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2b8ebddf007e08a103b6cb0759947699", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 629560, "upload_time": "2018-01-16T00:24:52", "upload_time_iso_8601": "2018-01-16T00:24:52.305237Z", "url": "https://files.pythonhosted.org/packages/64/e3/8fdc54adfae2c296c50da7dfbb81fa0b06876911da02a67b0f2674a944d6/aiohttp-2.3.8-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6c0cfdfa45522609a5db121182adda2", "sha256": "6a12fa57d0608da29060c6fac531d049317422eecb23f509f8fae5b9a24c5b79" }, "downloads": -1, "filename": "aiohttp-2.3.8-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f6c0cfdfa45522609a5db121182adda2", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 656836, "upload_time": "2018-01-16T11:19:56", "upload_time_iso_8601": "2018-01-16T11:19:56.770629Z", "url": "https://files.pythonhosted.org/packages/59/9a/a283082211365998b82c3c166d079226ab1910052c396a6f14e97818f592/aiohttp-2.3.8-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "90f9b098ad00e8a1342e59ef90ac24d9", "sha256": "b7b5a4e34d3a4d9ecce4aa9e172a0fd13c8f5acee46afeb5944c4489f71701c1" }, "downloads": -1, "filename": "aiohttp-2.3.8-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "90f9b098ad00e8a1342e59ef90ac24d9", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 358000, "upload_time": "2018-01-15T22:48:41", "upload_time_iso_8601": "2018-01-15T22:48:41.362365Z", "url": "https://files.pythonhosted.org/packages/c7/66/17179d8e70ba9b8814c724ace08c175505cb9a90fa0eeb99ee7dc659e3cf/aiohttp-2.3.8-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5cc4213b88b73ddd7ad9e32ce5b7170b", "sha256": "37b62fa71369f2d6c9828d427b9a22829d603943a915fab216a99fc98447342b" }, "downloads": -1, "filename": "aiohttp-2.3.8-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "5cc4213b88b73ddd7ad9e32ce5b7170b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 364866, "upload_time": "2018-01-15T22:51:41", "upload_time_iso_8601": "2018-01-15T22:51:41.321749Z", "url": "https://files.pythonhosted.org/packages/9b/bc/0b18203003daebc8deab9c1ef0b0b98692e40d8079f1f73c2d77d5f88139/aiohttp-2.3.8-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d2460ce976fe4a132117ad08b53471c1", "sha256": "862c68d1237b811915a2614e996a3d60ed8d167e1e66e0b6c031a4aace5cf67f" }, "downloads": -1, "filename": "aiohttp-2.3.8-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "d2460ce976fe4a132117ad08b53471c1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 382281, "upload_time": "2018-01-17T05:56:06", "upload_time_iso_8601": "2018-01-17T05:56:06.237142Z", "url": "https://files.pythonhosted.org/packages/27/5b/4419df3bacd59fb5011f1aec10322b2c179815279f2c45db168ccc6817ac/aiohttp-2.3.8-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f8c27d5607c68f9a258b8406debc2d7", "sha256": "02f77d7d5467d71144a07c5e817a81ef5ccb005cbbba61c2f207b60db320e716" }, "downloads": -1, "filename": "aiohttp-2.3.8-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "3f8c27d5607c68f9a258b8406debc2d7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 382124, "upload_time": "2018-01-17T07:35:44", "upload_time_iso_8601": "2018-01-17T07:35:44.287378Z", "url": "https://files.pythonhosted.org/packages/17/ed/fa457f3ee27486b92c36498274aea1cbe3561470dfb25e0f86b62ade6431/aiohttp-2.3.8-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "efa80b604244f25222b67bbf6f0048cd", "sha256": "b67b4238498225db921911f873e4b6959d51de55d7b71ced8e902aed9d6ff2aa" }, "downloads": -1, "filename": "aiohttp-2.3.8-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "efa80b604244f25222b67bbf6f0048cd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 620132, "upload_time": "2018-01-16T11:20:00", "upload_time_iso_8601": "2018-01-16T11:20:00.382150Z", "url": "https://files.pythonhosted.org/packages/c4/9f/2ea4ecadae2b1ce61b66753e44e91d37c72e548313d8c67978659019bb92/aiohttp-2.3.8-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d88003ca752e4e871e9b0cf75e6e0213", "sha256": "48a798891ec157049f6b02e8ed1909e09c35aa03a29a90006215b8fb936185c4" }, "downloads": -1, "filename": "aiohttp-2.3.8-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d88003ca752e4e871e9b0cf75e6e0213", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 649649, "upload_time": "2018-01-16T11:20:04", "upload_time_iso_8601": "2018-01-16T11:20:04.013453Z", "url": "https://files.pythonhosted.org/packages/a0/e5/63e5ff7371f9bc2bd707aa3b5d4aec90bd462dcc653de4c0028c8264fc68/aiohttp-2.3.8-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b667aba661e7280646bb3abe3cc36173", "sha256": "709ef5e6172b58cadb6575509baf7dacd97504911b54a654ab74f728f764249d" }, "downloads": -1, "filename": "aiohttp-2.3.8-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "b667aba661e7280646bb3abe3cc36173", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 358369, "upload_time": "2018-01-15T22:53:53", "upload_time_iso_8601": "2018-01-15T22:53:53.992986Z", "url": "https://files.pythonhosted.org/packages/18/87/d6ad34ea99b464f0424f8b34756b6b10c3429ff7ce4b7150a16f9122cf4a/aiohttp-2.3.8-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "beb7c20efc43fb8bfe14608111d55601", "sha256": "9ca64837c9a6d66543c1b49e6f04132ef9f2683377fe28f2497b7152e9d3c312" }, "downloads": -1, "filename": "aiohttp-2.3.8-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "beb7c20efc43fb8bfe14608111d55601", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 369392, "upload_time": "2018-01-15T22:57:17", "upload_time_iso_8601": "2018-01-15T22:57:17.958026Z", "url": "https://files.pythonhosted.org/packages/6d/61/ab6f9ebddc917858871d3783c59dcf26d8ec8b3acd98394d579f0c216562/aiohttp-2.3.8-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b632108dc0614bbade47dea94f75e63a", "sha256": "afec8fd2a464f8837cf019a26c52271d65f72512ae8ef2c05217086230fa50f1" }, "downloads": -1, "filename": "aiohttp-2.3.8-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b632108dc0614bbade47dea94f75e63a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 636564, "upload_time": "2018-01-16T11:20:07", "upload_time_iso_8601": "2018-01-16T11:20:07.108753Z", "url": "https://files.pythonhosted.org/packages/d0/97/1a829c44b0bd495c1e021c799f3af5f2e70f7c1f7b74779441d51c5f6e45/aiohttp-2.3.8-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3182b7d22553a1aa4853df7ef95e4320", "sha256": "e81997b2fb4b7f19a80257aa2bb6e35e521d62dcf595599bf34886b115607bad" }, "downloads": -1, "filename": "aiohttp-2.3.8-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3182b7d22553a1aa4853df7ef95e4320", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 664054, "upload_time": "2018-01-16T11:20:10", "upload_time_iso_8601": "2018-01-16T11:20:10.030500Z", "url": "https://files.pythonhosted.org/packages/e5/a0/8fc4e98cfacacfdef70259ac638c5967cd721657ac24638362b0faac5e16/aiohttp-2.3.8-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3c453ea5b49341489c941441b0115e8d", "sha256": "536e9b6d1f8c1ebc44af530879c41fa0204369b5d2257bd1995534faacefad92" }, "downloads": -1, "filename": "aiohttp-2.3.8-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "3c453ea5b49341489c941441b0115e8d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 360030, "upload_time": "2018-01-15T22:59:10", "upload_time_iso_8601": "2018-01-15T22:59:10.693214Z", "url": "https://files.pythonhosted.org/packages/f1/0e/ca4343561c613d151cee731d83ec0433beb8ebb38ffb3da900d887049a72/aiohttp-2.3.8-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a40594301323b28cd871e17e902baaca", "sha256": "335c1ac277784eb6ba3d3b4e6901b06df3c5c93926026c594c4fdb61e270542d" }, "downloads": -1, "filename": "aiohttp-2.3.8-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "a40594301323b28cd871e17e902baaca", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 371260, "upload_time": "2018-01-15T23:01:09", "upload_time_iso_8601": "2018-01-15T23:01:09.022217Z", "url": "https://files.pythonhosted.org/packages/c2/3a/04a2c2a0e5d4327f8ee4a29ee0e6d592b29af1413d1217868f0e4ee87c80/aiohttp-2.3.8-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b6a7bbb9d20f1be3e5d7a2104fb4773b", "sha256": "56fd240c9eb3bc09c081ca2e5b677be433ac84657b13ac29bc8deb16ba0b4f0b" }, "downloads": -1, "filename": "aiohttp-2.3.8.tar.gz", "has_sig": false, "md5_digest": "b6a7bbb9d20f1be3e5d7a2104fb4773b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4.2", "size": 847404, "upload_time": "2018-01-15T22:48:43", "upload_time_iso_8601": "2018-01-15T22:48:43.222948Z", "url": "https://files.pythonhosted.org/packages/87/c4/931c462d08ecfad47a65cec8e9ca9699b4d1f920dd456b197a56fdec2944/aiohttp-2.3.8.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.9": [ { "comment_text": "", "digests": { "md5": "5165ce99fe45d750633d897f5812e691", "sha256": "2d3ca44e2f2d989b6f19c36aac961a221c5ee872ac72290dd56abf25173e79cf" }, "downloads": -1, "filename": "aiohttp-2.3.9-cp34-cp34m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "5165ce99fe45d750633d897f5812e691", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 382659, "upload_time": "2018-01-18T01:56:35", "upload_time_iso_8601": "2018-01-18T01:56:35.892674Z", "url": "https://files.pythonhosted.org/packages/8e/04/78bc4f9ac015a43f9322e691c28664d54f859591b746fdca2a681547148e/aiohttp-2.3.9-cp34-cp34m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "01ba878da3fefa5481f1eb68dc6955dc", "sha256": "cf559687b8a180e2dda9cb6f638c99861c1e927f4a27515c57cba275ae268c7a" }, "downloads": -1, "filename": "aiohttp-2.3.9-cp34-cp34m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "01ba878da3fefa5481f1eb68dc6955dc", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 382668, "upload_time": "2018-01-18T11:29:06", "upload_time_iso_8601": "2018-01-18T11:29:06.242875Z", "url": "https://files.pythonhosted.org/packages/67/85/203447aed578af8fc76223988e154666c9033985551bf8eda0c0ef957ae3/aiohttp-2.3.9-cp34-cp34m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b536c2491994837cfdd2c687054a7e20", "sha256": "713367b92972744d4a7380afc4365f524a490483713cbb9e656060901574c528" }, "downloads": -1, "filename": "aiohttp-2.3.9-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b536c2491994837cfdd2c687054a7e20", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 629611, "upload_time": "2018-01-17T21:07:57", "upload_time_iso_8601": "2018-01-17T21:07:57.739064Z", "url": "https://files.pythonhosted.org/packages/32/b9/f3ab8ae48fa30dd3766a31b6cc47da04eb5a5c2a623f4efbcc52b7279faf/aiohttp-2.3.9-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "670f2e15a162895010400024d6ce6b1b", "sha256": "59788ebe966a4f38f0024fe4174dcdc7dff322d830cf57c84fc86ddbf52428ae" }, "downloads": -1, "filename": "aiohttp-2.3.9-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "670f2e15a162895010400024d6ce6b1b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 655592, "upload_time": "2018-01-17T21:08:00", "upload_time_iso_8601": "2018-01-17T21:08:00.162399Z", "url": "https://files.pythonhosted.org/packages/e8/4b/5e9aff6df31fae436f806260c96a5a252cfee6b81457e14be6c26975050d/aiohttp-2.3.9-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "957cb66dc83ef6728c6f55ce9a4fb137", "sha256": "796799259fe67ea08eeb19c943413bb56f928baab6ed8b2f277ed8e6e7af2d3d" }, "downloads": -1, "filename": "aiohttp-2.3.9-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "957cb66dc83ef6728c6f55ce9a4fb137", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 358067, "upload_time": "2018-01-17T09:00:05", "upload_time_iso_8601": "2018-01-17T09:00:05.945413Z", "url": "https://files.pythonhosted.org/packages/fd/1e/efa78adff0c2ff44553274340fb6680c12b7f83573c4a2d9e4cf6838e2c1/aiohttp-2.3.9-cp34-cp34m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e57acc4c2e75fe48cd8ebf6ac7402026", "sha256": "e7889bd10537dc68619be691d52ba7f5d36b72767d6f8b2993ef6ae441198bcd" }, "downloads": -1, "filename": "aiohttp-2.3.9-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "e57acc4c2e75fe48cd8ebf6ac7402026", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=3.4.2", "size": 364936, "upload_time": "2018-01-17T09:02:35", "upload_time_iso_8601": "2018-01-17T09:02:35.507289Z", "url": "https://files.pythonhosted.org/packages/37/7c/51a9e1874d42ad76dc7fe17bf05044e3af78c7233e63a524418a371149a4/aiohttp-2.3.9-cp34-cp34m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b4087b778fe4520980222fa1dacd6e47", "sha256": "749ce517bdc7afabc6a27bfe4c4dfcece2fa427e5e9a095cbe823bdafe5d9fa2" }, "downloads": -1, "filename": "aiohttp-2.3.9-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b4087b778fe4520980222fa1dacd6e47", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 619592, "upload_time": "2018-01-17T21:08:01", "upload_time_iso_8601": "2018-01-17T21:08:01.795201Z", "url": "https://files.pythonhosted.org/packages/a5/09/5c785e6933e5dd5158dc674cd33355a332c9c47cc8aa42e160a140039026/aiohttp-2.3.9-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b16f68a0499dc08ce7ae457c28b3d646", "sha256": "ba1114b9920db85ec3197a7f6a60d2e97c411d302226cf2425f8ff3fcbee4b3e" }, "downloads": -1, "filename": "aiohttp-2.3.9-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b16f68a0499dc08ce7ae457c28b3d646", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 649142, "upload_time": "2018-01-17T21:08:04", "upload_time_iso_8601": "2018-01-17T21:08:04.048878Z", "url": "https://files.pythonhosted.org/packages/ce/8b/ab05b20c9a7d7777479e56c841233d37235ab62f02985aa948117aa4b2e8/aiohttp-2.3.9-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "efeffe833bd9de5a686ed6c40a18b711", "sha256": "2569c8a84ed26dd33f5c66073029e65138c2d91231c311260802e48ec1beadb8" }, "downloads": -1, "filename": "aiohttp-2.3.9-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "efeffe833bd9de5a686ed6c40a18b711", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 358436, "upload_time": "2018-01-17T09:06:37", "upload_time_iso_8601": "2018-01-17T09:06:37.939872Z", "url": "https://files.pythonhosted.org/packages/6c/52/22f7c4359a35a9c627bd456da20f4d7b6e40c371cad7ec84bd53d7f3bdbb/aiohttp-2.3.9-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3163a214ca7c865189e68930d2d6672", "sha256": "27e8816bb5315c3c70e9e39ac9bfe1479f1f59d40f9d1897a7965485357b1b8a" }, "downloads": -1, "filename": "aiohttp-2.3.9-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "c3163a214ca7c865189e68930d2d6672", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.4.2", "size": 369458, "upload_time": "2018-01-17T09:08:38", "upload_time_iso_8601": "2018-01-17T09:08:38.614078Z", "url": "https://files.pythonhosted.org/packages/ee/77/36147725817e1b4339f0888c85aa96fce5d9b35b25530b15d846c4a96307/aiohttp-2.3.9-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e4e1b4c605272cf2d3c2eb5f61aa6152", "sha256": "4365c3bc108369829f9dcc10ad07d7858a1a46cbf94029beaf2eaff528d7e707" }, "downloads": -1, "filename": "aiohttp-2.3.9-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "e4e1b4c605272cf2d3c2eb5f61aa6152", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 384915, "upload_time": "2018-01-18T05:19:29", "upload_time_iso_8601": "2018-01-18T05:19:29.961453Z", "url": "https://files.pythonhosted.org/packages/d9/a6/c3e40924fe1f3e3c6c8fe465d50ed3a41395d473a2dfb9e4b6a049e5abd2/aiohttp-2.3.9-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef48aef6528c4c9dd8fe16228d426a09", "sha256": "29e0f033a8756278f451b85b5f224f6cf466a998ea180049a4ea1a8105954dde" }, "downloads": -1, "filename": "aiohttp-2.3.9-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ef48aef6528c4c9dd8fe16228d426a09", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 635803, "upload_time": "2018-01-17T21:08:06", "upload_time_iso_8601": "2018-01-17T21:08:06.772225Z", "url": "https://files.pythonhosted.org/packages/a2/ef/52080a02e56843da22e051fb1d09ff35ca217d823ff8f24ec0d4f0d4586d/aiohttp-2.3.9-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "151a7a4601704061a774df952664b4d3", "sha256": "9be7abece545b6f70df62cd80e933191d3a1401186e4fd3e34a6dc9af11337ea" }, "downloads": -1, "filename": "aiohttp-2.3.9-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "151a7a4601704061a774df952664b4d3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 663484, "upload_time": "2018-01-17T21:08:08", "upload_time_iso_8601": "2018-01-17T21:08:08.761615Z", "url": "https://files.pythonhosted.org/packages/6e/2d/f3edab3725b7bfb10cd8c669f46e0219d89fa81c15a5a23212bb16031c05/aiohttp-2.3.9-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1bb27146729cdb95cbd0ffb8c5e55a88", "sha256": "cca71a105218f45b15cac5be4a6b823cb09fe48774ff8359ae719bec29967752" }, "downloads": -1, "filename": "aiohttp-2.3.9-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "1bb27146729cdb95cbd0ffb8c5e55a88", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 360097, "upload_time": "2018-01-17T09:10:27", "upload_time_iso_8601": "2018-01-17T09:10:27.379467Z", "url": "https://files.pythonhosted.org/packages/df/d5/83b27e181b3f414fd780136bf4fbd5d40e21eafd40823e870a10194c1a67/aiohttp-2.3.9-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d402d44a0861376002c0bdd9fc17c037", "sha256": "e34422ad362da7ce4d3fc71ca1ff42d7fef63204b601b49a12062cfa14121129" }, "downloads": -1, "filename": "aiohttp-2.3.9-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "d402d44a0861376002c0bdd9fc17c037", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.4.2", "size": 371328, "upload_time": "2018-01-17T09:12:18", "upload_time_iso_8601": "2018-01-17T09:12:18.743152Z", "url": "https://files.pythonhosted.org/packages/78/90/45dfb8993b87089d8559461f14daf255980341822f3af0f80599ef2d208b/aiohttp-2.3.9-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a57ac5f5d03d99162392cb083b2e3151", "sha256": "6003bed78dc591d31bd89ef16e630a1c4fd97a3cd17b975ec945c0f46d6fc881" }, "downloads": -1, "filename": "aiohttp-2.3.9.tar.gz", "has_sig": false, "md5_digest": "a57ac5f5d03d99162392cb083b2e3151", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4.2", "size": 847835, "upload_time": "2018-01-17T09:00:07", "upload_time_iso_8601": "2018-01-17T09:00:07.411995Z", "url": "https://files.pythonhosted.org/packages/23/01/f8cb3476fdba9016b54cc10197dbea01ae81ece231998d89d5189ff353cb/aiohttp-2.3.9.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "1e37eb514ddc125f01a6c93d4ed12363", "sha256": "990767e6ce98d58b3ff748975592e8c64d26748b7a8791bb194d3e28a3532e1a" }, "downloads": -1, "filename": "aiohttp-3.0.0-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "1e37eb514ddc125f01a6c93d4ed12363", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 370511, "upload_time": "2018-02-12T10:02:44", "upload_time_iso_8601": "2018-02-12T10:02:44.446340Z", "url": "https://files.pythonhosted.org/packages/e7/53/7ba8e07eccbf1a83bea96ca28b5f1240a6741f702678e9830c2cb1635b7f/aiohttp-3.0.0-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6c394c94d0d7f16e0be6c00862677e0", "sha256": "72e8a0f26305628d54d7984489261d7ff52f3bd337d43ff2f11b011361265d55" }, "downloads": -1, "filename": "aiohttp-3.0.0-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "f6c394c94d0d7f16e0be6c00862677e0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 369502, "upload_time": "2018-02-12T10:11:34", "upload_time_iso_8601": "2018-02-12T10:11:34.543262Z", "url": "https://files.pythonhosted.org/packages/f0/f8/dbf1e8bbc96da4567ccd8376835b637fa42d2878815f14ae5d61865388b3/aiohttp-3.0.0-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "290de630acea183b07ece5f3e72a99bb", "sha256": "acef6d4f06c036f4633440abae07064a4fd46de09b7b8c385697036ba3c706a3" }, "downloads": -1, "filename": "aiohttp-3.0.0-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "290de630acea183b07ece5f3e72a99bb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 362496, "upload_time": "2018-02-12T10:18:17", "upload_time_iso_8601": "2018-02-12T10:18:17.608111Z", "url": "https://files.pythonhosted.org/packages/17/f7/eae6439368fcfbcc9f07d66d131e460fde6a24d44eeaee1337669082ec8c/aiohttp-3.0.0-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "32dd0d4c16e5de3969731c5a02e6b548", "sha256": "7241ef86003b5e69d4916361f083a77f682cd6070b328358bbb2bf3a90ab5347" }, "downloads": -1, "filename": "aiohttp-3.0.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "32dd0d4c16e5de3969731c5a02e6b548", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 346756, "upload_time": "2018-02-12T09:13:02", "upload_time_iso_8601": "2018-02-12T09:13:02.660635Z", "url": "https://files.pythonhosted.org/packages/dd/2d/d30646e87ce9cdbc9f56de08b336c03d32256b2f9700df39d7f98fec0ea1/aiohttp-3.0.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dd09c3e9ec10a857653933f44041594f", "sha256": "b0ae6e6392a85a3dde72e158ae375f01d58410c5bfdbe0547cafc93e1b7318ff" }, "downloads": -1, "filename": "aiohttp-3.0.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "dd09c3e9ec10a857653933f44041594f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 357792, "upload_time": "2018-02-12T09:15:44", "upload_time_iso_8601": "2018-02-12T09:15:44.488848Z", "url": "https://files.pythonhosted.org/packages/2b/33/c09ba026ff81357f9f7ccd5c53972383ea47e53328a916916818efcca0e7/aiohttp-3.0.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4dc8ff71def8248daab44fd89457b2a4", "sha256": "c217970cba1904211c387cc6ea07c3eff31287f2ff26c27b418dc0d0320f9da1" }, "downloads": -1, "filename": "aiohttp-3.0.0-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "4dc8ff71def8248daab44fd89457b2a4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 372980, "upload_time": "2018-02-12T10:03:41", "upload_time_iso_8601": "2018-02-12T10:03:41.600396Z", "url": "https://files.pythonhosted.org/packages/47/62/a585758ab12466a40ef70be232336dfad17dafdfe6a7e3f67cfeededd528/aiohttp-3.0.0-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e2804aa53c2c839ee7d6fc9c0f65e44c", "sha256": "7cbf6380acd7b851d6abbeb722492f043eba11dc041520b17b40bd18dc358185" }, "downloads": -1, "filename": "aiohttp-3.0.0-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "e2804aa53c2c839ee7d6fc9c0f65e44c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 371855, "upload_time": "2018-02-12T10:12:17", "upload_time_iso_8601": "2018-02-12T10:12:17.312327Z", "url": "https://files.pythonhosted.org/packages/e7/3a/1a8055a1ca0fa8ba4ab8797ff4d2003310ee908cdabfcc122a75466b16f1/aiohttp-3.0.0-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c1d1650b5e90a39b07257a86cc9d5742", "sha256": "b510eae1a8cb70064f7b274793cd77874634a60158a1588a4a970dfe7dfdaf2e" }, "downloads": -1, "filename": "aiohttp-3.0.0-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "c1d1650b5e90a39b07257a86cc9d5742", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 363824, "upload_time": "2018-02-12T10:18:38", "upload_time_iso_8601": "2018-02-12T10:18:38.535394Z", "url": "https://files.pythonhosted.org/packages/f7/a8/35ff262e491daf2a7f81f56d400d01d95b5792515867e6694e12d1998856/aiohttp-3.0.0-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43b72a642120d8fc1f492074f45a148a", "sha256": "4f506a35e49cac5bbcc9f10fe4abe3c4ac5294790f4aba117d3c16b573ecfb56" }, "downloads": -1, "filename": "aiohttp-3.0.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "43b72a642120d8fc1f492074f45a148a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 348437, "upload_time": "2018-02-12T09:17:53", "upload_time_iso_8601": "2018-02-12T09:17:53.041681Z", "url": "https://files.pythonhosted.org/packages/1c/f5/87d501a8e0a5717b9812353b17ed193aefcd5580f8824d92130efefa23de/aiohttp-3.0.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2feba0567607d273a417e8305477e096", "sha256": "41f5b1ce439db446f18d0f882ecbb65c19bd03edfa53ee92e21e87b788167ef6" }, "downloads": -1, "filename": "aiohttp-3.0.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "2feba0567607d273a417e8305477e096", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 359665, "upload_time": "2018-02-12T09:20:01", "upload_time_iso_8601": "2018-02-12T09:20:01.451730Z", "url": "https://files.pythonhosted.org/packages/78/b4/fc92b2ea275e594753fca0021c1593cc75fcf866e57abe1b0936f3bd0964/aiohttp-3.0.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "603b66b819b0c0d51feee310193cb4cf", "sha256": "f986bd51fc80b42b880d5579f47ef4f5ec8ef37cf7a799b6a8b61fab1b88d2cd" }, "downloads": -1, "filename": "aiohttp-3.0.0.tar.gz", "has_sig": false, "md5_digest": "603b66b819b0c0d51feee310193cb4cf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 737015, "upload_time": "2018-02-12T09:13:05", "upload_time_iso_8601": "2018-02-12T09:13:05.103626Z", "url": "https://files.pythonhosted.org/packages/c6/44/64f7669c65a35b7f339e28ce2419fec4bd7791d2ae5ac9df76f1341fa959/aiohttp-3.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.0b0": [ { "comment_text": "", "digests": { "md5": "48e3e6546e4427d63cf005252b6012d6", "sha256": "120f32516db19cc2e30920c54cb769f27b000390f74831f154573776677a41e8" }, "downloads": -1, "filename": "aiohttp-3.0.0b0-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "48e3e6546e4427d63cf005252b6012d6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.0", "size": 379206, "upload_time": "2018-02-08T11:50:14", "upload_time_iso_8601": "2018-02-08T11:50:14.105951Z", "url": "https://files.pythonhosted.org/packages/d5/d7/ef32b98b5fc62c109050854dfd6f3295737a0cb75568365157a326023d08/aiohttp-3.0.0b0-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aeeb61dc4e551f7c1d124a36e3ac34b8", "sha256": "450029dc3d3134152a17ea56926e1adb1ef29b6ad8f9dbfb75f7c6c1d6311e9f" }, "downloads": -1, "filename": "aiohttp-3.0.0b0-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "aeeb61dc4e551f7c1d124a36e3ac34b8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.0", "size": 378192, "upload_time": "2018-02-08T11:58:47", "upload_time_iso_8601": "2018-02-08T11:58:47.485308Z", "url": "https://files.pythonhosted.org/packages/03/d2/eb66044f12c9e2921e718f16f88e6bdf7d0dbe564f13fccb226f2519a56d/aiohttp-3.0.0b0-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "53e7311f4935c071c769f73f7731564a", "sha256": "d091799fcf01420049db1584d9d586c48f2d50a830ed384a3cce2bd11936b310" }, "downloads": -1, "filename": "aiohttp-3.0.0b0-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "53e7311f4935c071c769f73f7731564a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.0", "size": 371188, "upload_time": "2018-02-08T11:40:59", "upload_time_iso_8601": "2018-02-08T11:40:59.117923Z", "url": "https://files.pythonhosted.org/packages/a1/94/d8a21f951710e33fe87e9eb064ca3000523d03f9ac43b24b64ffd70a3ef7/aiohttp-3.0.0b0-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f11323b589c694f8e1df8cc9b8d5e945", "sha256": "b5a1b78d9a419c819e2d8a3750db1f25e470a062a2fb6d315df0163f775a7381" }, "downloads": -1, "filename": "aiohttp-3.0.0b0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "f11323b589c694f8e1df8cc9b8d5e945", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.0", "size": 355435, "upload_time": "2018-02-08T10:55:30", "upload_time_iso_8601": "2018-02-08T10:55:30.442829Z", "url": "https://files.pythonhosted.org/packages/49/67/656e42ecaa90ebe28d82ee1472b006d0eff4d6f0d7c794456ed960daf8be/aiohttp-3.0.0b0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a6614fd29a987e0a144b4c15b5d8e66", "sha256": "0ee048a1b452dba7f0547765501de1f5db80c9494c46c009e6138ef11755bd6a" }, "downloads": -1, "filename": "aiohttp-3.0.0b0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "9a6614fd29a987e0a144b4c15b5d8e66", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.0", "size": 366477, "upload_time": "2018-02-08T10:58:03", "upload_time_iso_8601": "2018-02-08T10:58:03.402479Z", "url": "https://files.pythonhosted.org/packages/1d/28/13e85c9c6970cef8cea4b1c76620afe4aa768c38157485ee5fd97e9aedef/aiohttp-3.0.0b0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4677b90e932e120f51a745bf90057a8", "sha256": "0c5a7b270b7d1437eb21ad11dbd97365ec063ffca9beba3a519067f686f7a0a8" }, "downloads": -1, "filename": "aiohttp-3.0.0b0-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "d4677b90e932e120f51a745bf90057a8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.0", "size": 381672, "upload_time": "2018-02-08T11:49:59", "upload_time_iso_8601": "2018-02-08T11:49:59.915422Z", "url": "https://files.pythonhosted.org/packages/fe/11/1c500584a05d118f169f6ec3fa4befd8244dc11f06cea63c3aa50954c9ef/aiohttp-3.0.0b0-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bf8434941fa329aae26e268f591c1f19", "sha256": "84aa603a85f928d7aa7f02ad0e2c1fe0c8d95816e54c6f6549fad75027a6001b" }, "downloads": -1, "filename": "aiohttp-3.0.0b0-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "bf8434941fa329aae26e268f591c1f19", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.0", "size": 380547, "upload_time": "2018-02-08T11:59:21", "upload_time_iso_8601": "2018-02-08T11:59:21.646484Z", "url": "https://files.pythonhosted.org/packages/71/f1/fa843e6804d481a1bbe5e204d641492df3e89dc36307104e0889e614a680/aiohttp-3.0.0b0-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b62bd166774d4c712578f7a1d406b98b", "sha256": "ec420a3143a6dad8dd383510b6d47ef96910574e2795c866e9225841cd4585d5" }, "downloads": -1, "filename": "aiohttp-3.0.0b0-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "b62bd166774d4c712578f7a1d406b98b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.0", "size": 372517, "upload_time": "2018-02-08T11:40:38", "upload_time_iso_8601": "2018-02-08T11:40:38.427682Z", "url": "https://files.pythonhosted.org/packages/84/e0/ceba728e6f55c99d7d692836e9c1cdf2b41bfc2925e36e73ad97cfd6ef45/aiohttp-3.0.0b0-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9487686fd3b37350ed93143b4ad7c5e3", "sha256": "4eff34add9668875afb43f69df04364f5aac661abe485e60010e9beebb6f4784" }, "downloads": -1, "filename": "aiohttp-3.0.0b0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "9487686fd3b37350ed93143b4ad7c5e3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.0", "size": 357120, "upload_time": "2018-02-08T11:00:09", "upload_time_iso_8601": "2018-02-08T11:00:09.971189Z", "url": "https://files.pythonhosted.org/packages/4c/5b/6f2109e18f495ade97a940da24bae179d695f8ec0a6e873b10a7c5c20a2e/aiohttp-3.0.0b0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e50adb9db2877b86e3eaf75dcaa0878b", "sha256": "0d4cadba74fed3ef448d34f9ea285ea862ff36ff59b68c18b21ecdcdf0a63397" }, "downloads": -1, "filename": "aiohttp-3.0.0b0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "e50adb9db2877b86e3eaf75dcaa0878b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.0", "size": 368344, "upload_time": "2018-02-08T11:02:40", "upload_time_iso_8601": "2018-02-08T11:02:40.681913Z", "url": "https://files.pythonhosted.org/packages/fd/2e/6f2e16669d4b39c6cd0ecc7e1552379eb35299aba7d75a6f44b1a9f01f5c/aiohttp-3.0.0b0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1fccf4da7ba4b54af06a3dfa800ce533", "sha256": "21d8de1451fbff4f84780566012026707073fcf15f646b7aab33a56ae27392f9" }, "downloads": -1, "filename": "aiohttp-3.0.0b0.tar.gz", "has_sig": false, "md5_digest": "1fccf4da7ba4b54af06a3dfa800ce533", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.0", "size": 748705, "upload_time": "2018-02-08T10:55:33", "upload_time_iso_8601": "2018-02-08T10:55:33.664769Z", "url": "https://files.pythonhosted.org/packages/dc/39/f3c589192bd59bb7be342255ae75cf4e5abee4e64d3e899f27d6b1581b25/aiohttp-3.0.0b0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.0b1": [ { "comment_text": "", "digests": { "md5": "4f642be80529aac2fd12fb374821beda", "sha256": "b35f2ddf5bc608e7ec81d0bd81beea6ee2e82820725e170e7c94756b0973c6bc" }, "downloads": -1, "filename": "aiohttp-3.0.0b1-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "4f642be80529aac2fd12fb374821beda", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 379212, "upload_time": "2018-02-08T14:53:22", "upload_time_iso_8601": "2018-02-08T14:53:22.617805Z", "url": "https://files.pythonhosted.org/packages/6d/2e/a5dcc955d3d8e71de151c9507f50e54cd8b33de5b6948b9f3c0ebbbde0b2/aiohttp-3.0.0b1-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d1ddf7b8bb5286633e7b5bc55304ca4", "sha256": "49ec4dc557ceac6090a5b8e773e6ed8b7e156e3eb6afdfb29dd18042a3c3c495" }, "downloads": -1, "filename": "aiohttp-3.0.0b1-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "2d1ddf7b8bb5286633e7b5bc55304ca4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 378200, "upload_time": "2018-02-08T15:03:14", "upload_time_iso_8601": "2018-02-08T15:03:14.923509Z", "url": "https://files.pythonhosted.org/packages/60/e2/fad24f74c5ef85d4ed357c03eef7b411b49f4fb63f46ae791feb89eb2bf6/aiohttp-3.0.0b1-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad2a6bba2a3b5a3a5977df92b0491b0a", "sha256": "c30219cc95308f1d5233d09abf84423c353fb20edcad4d136b61993dab553631" }, "downloads": -1, "filename": "aiohttp-3.0.0b1-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "ad2a6bba2a3b5a3a5977df92b0491b0a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 371187, "upload_time": "2018-02-08T15:11:37", "upload_time_iso_8601": "2018-02-08T15:11:37.020407Z", "url": "https://files.pythonhosted.org/packages/26/41/929b8586f7b48ed04e4698d44dd26df25ba965d26838245282c975102d1d/aiohttp-3.0.0b1-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a2a45038a1ccb183cfee0dc27999bd5", "sha256": "882fa0015d7e3deb607b4b01d9d4c67634e099fec1752188d0ace306f1a70d26" }, "downloads": -1, "filename": "aiohttp-3.0.0b1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "7a2a45038a1ccb183cfee0dc27999bd5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 355436, "upload_time": "2018-02-08T14:04:49", "upload_time_iso_8601": "2018-02-08T14:04:49.178542Z", "url": "https://files.pythonhosted.org/packages/8b/76/a187ad59a08e9828d1dba9cd0e6ce42b764b4ade50e52f4c813ba9204832/aiohttp-3.0.0b1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3a7cac372f98d40e2a97d2c1f78e6ab1", "sha256": "7c42ad1dc0b1d81bc9473d2ea8899db6bb104b7346779cc4b97924e877e7fba9" }, "downloads": -1, "filename": "aiohttp-3.0.0b1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "3a7cac372f98d40e2a97d2c1f78e6ab1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 366480, "upload_time": "2018-02-08T14:07:22", "upload_time_iso_8601": "2018-02-08T14:07:22.111108Z", "url": "https://files.pythonhosted.org/packages/a6/bb/eaf12bc63355f0d54db4e0378d5aa77c489c638db7882a961456ad8cf173/aiohttp-3.0.0b1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6d773f3e56088e2e6427614318256357", "sha256": "8bcc0526b5ea98242a4a3458e8f6e0977f20e558c7bb6e35400af243ff7751ff" }, "downloads": -1, "filename": "aiohttp-3.0.0b1-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "6d773f3e56088e2e6427614318256357", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 381679, "upload_time": "2018-02-08T14:54:22", "upload_time_iso_8601": "2018-02-08T14:54:22.835871Z", "url": "https://files.pythonhosted.org/packages/df/d0/9c12c47451cbae9c96d1615793c1a2cc6cc113a07bb2f0115e537b1f4cdb/aiohttp-3.0.0b1-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a0d08f8a80f8a2b6f4e61015ba68bcfc", "sha256": "db69a19e01cb1d25608070397ffeea55f957bb26c13dcb5fe2d2c8c11058d106" }, "downloads": -1, "filename": "aiohttp-3.0.0b1-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "a0d08f8a80f8a2b6f4e61015ba68bcfc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 380548, "upload_time": "2018-02-08T15:04:07", "upload_time_iso_8601": "2018-02-08T15:04:07.428213Z", "url": "https://files.pythonhosted.org/packages/84/e4/e32b53cb61c385eff2a3ce24763edb1dc1c1cc3db11a916e3df8baca5409/aiohttp-3.0.0b1-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2f3be74069f5d89e67d9face228f8f20", "sha256": "58c0da8884bc61aeeb7eb71030294cad8567e249c1f35bf7639b729f2609f5d3" }, "downloads": -1, "filename": "aiohttp-3.0.0b1-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "2f3be74069f5d89e67d9face228f8f20", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 372524, "upload_time": "2018-02-08T15:12:13", "upload_time_iso_8601": "2018-02-08T15:12:13.644926Z", "url": "https://files.pythonhosted.org/packages/96/90/a00edbf0a54fe9395c5368ec5b5f147593b35409ea8fb6022136b50415b2/aiohttp-3.0.0b1-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4af0f289e855bddbffc0a56a3aaaf76a", "sha256": "22702fcc33e5e930d36f863aab519570ad37d02a66c2f3d9cc6921e1ea61384b" }, "downloads": -1, "filename": "aiohttp-3.0.0b1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "4af0f289e855bddbffc0a56a3aaaf76a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 357121, "upload_time": "2018-02-08T14:09:57", "upload_time_iso_8601": "2018-02-08T14:09:57.587070Z", "url": "https://files.pythonhosted.org/packages/29/64/d506540ecb9dd00a85fa1a61700ac4dbb47e55464083ab2ca26d66f19bb7/aiohttp-3.0.0b1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ec47d7420c763df7605a2dda349c35da", "sha256": "584ec23faa28daa874fdd5677310633486f05fa1d1a2b765c67823d01c7c48b9" }, "downloads": -1, "filename": "aiohttp-3.0.0b1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "ec47d7420c763df7605a2dda349c35da", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 368350, "upload_time": "2018-02-08T14:12:56", "upload_time_iso_8601": "2018-02-08T14:12:56.490186Z", "url": "https://files.pythonhosted.org/packages/d5/e5/cc3f018d021fa975f0510b1c79f3082b9caf4ff5dffe221e4f28e24d5037/aiohttp-3.0.0b1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "57445855c3046a302e3cd0177fd1538c", "sha256": "6a34578a5d2f4eea9e8791a79e4ca2372501eee6db1452342ed908d6652bb6fc" }, "downloads": -1, "filename": "aiohttp-3.0.0b1.tar.gz", "has_sig": false, "md5_digest": "57445855c3046a302e3cd0177fd1538c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 748661, "upload_time": "2018-02-08T14:04:52", "upload_time_iso_8601": "2018-02-08T14:04:52.760905Z", "url": "https://files.pythonhosted.org/packages/0a/7c/dd5122680d07872b4b7bf1c6635694bfafae0bc134fbadeab9b648df90fe/aiohttp-3.0.0b1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.0b2": [ { "comment_text": "", "digests": { "md5": "336f6be3bb947a22647c2cac25299fc5", "sha256": "e6f907fb1652bb4db7d41ba4a899e2e3624fe9f7bb89a807cc9b83f5314b02bc" }, "downloads": -1, "filename": "aiohttp-3.0.0b2-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "336f6be3bb947a22647c2cac25299fc5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 379242, "upload_time": "2018-02-08T16:05:56", "upload_time_iso_8601": "2018-02-08T16:05:56.648087Z", "url": "https://files.pythonhosted.org/packages/37/e5/8333271d55890aa83c09b6a01cd4565359fc6c808e5efcb13d55f6b6f594/aiohttp-3.0.0b2-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82548306bdaf82c02a473fb8f40b79f6", "sha256": "722683b2ee2d7c885831b4059e36beaaf6a93aaae2de3a6efedb98879f1142e8" }, "downloads": -1, "filename": "aiohttp-3.0.0b2-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "82548306bdaf82c02a473fb8f40b79f6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 378230, "upload_time": "2018-02-08T16:16:08", "upload_time_iso_8601": "2018-02-08T16:16:08.391850Z", "url": "https://files.pythonhosted.org/packages/c6/e5/d2d8311776c0673cac47ade86a8696811c993b4f0d9f06106a0145052df0/aiohttp-3.0.0b2-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6c472e7c5a7d4f29533e1b71af7f4e4f", "sha256": "99bcddee0a1e119c51dab64935caff9363f24fc10ba1ace2f02d09878b8a9c38" }, "downloads": -1, "filename": "aiohttp-3.0.0b2-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "6c472e7c5a7d4f29533e1b71af7f4e4f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 371224, "upload_time": "2018-02-08T16:24:07", "upload_time_iso_8601": "2018-02-08T16:24:07.175001Z", "url": "https://files.pythonhosted.org/packages/2a/12/f4391eab1fcfa1699088b0a27445beb2169d162967449c3f5571faa4ca56/aiohttp-3.0.0b2-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4438ccd25d4576ec1239dfef0166bfc7", "sha256": "7a5d41e286ca4a5e6984daf18796eb68a2e99f0659799f2971d83494a8cd526a" }, "downloads": -1, "filename": "aiohttp-3.0.0b2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "4438ccd25d4576ec1239dfef0166bfc7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 355473, "upload_time": "2018-02-08T15:37:24", "upload_time_iso_8601": "2018-02-08T15:37:24.144091Z", "url": "https://files.pythonhosted.org/packages/45/df/9f9baec195afca4cfc55c229cf2ce3302f5b3bf880cede994084fc555fd6/aiohttp-3.0.0b2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1a669ab85790ca6c2adf0454b5576839", "sha256": "56368518dbdb36abe1a45ed43816a3e30daf4062ca9d6585fdaab9f3234f1387" }, "downloads": -1, "filename": "aiohttp-3.0.0b2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "1a669ab85790ca6c2adf0454b5576839", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 366510, "upload_time": "2018-02-08T15:40:20", "upload_time_iso_8601": "2018-02-08T15:40:20.610344Z", "url": "https://files.pythonhosted.org/packages/fa/12/c4eaa14f9e6586e9c4461a66820fcf75a8b2354a4fa60fe340b068e0ac68/aiohttp-3.0.0b2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f709b514dde3c3c3ab7f3824f69695b6", "sha256": "ea574b53d7d3b3848bc76918478cf611e9b3c25067cd319d3b1a5dd5926aeb06" }, "downloads": -1, "filename": "aiohttp-3.0.0b2-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "f709b514dde3c3c3ab7f3824f69695b6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 381712, "upload_time": "2018-02-08T16:07:14", "upload_time_iso_8601": "2018-02-08T16:07:14.198123Z", "url": "https://files.pythonhosted.org/packages/9e/dd/e557619c54903b94794dd89ada5a648ce148c845cc1b991c6ed13e94b59a/aiohttp-3.0.0b2-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "307eae9406aaf8f6732fa8e3f56e5954", "sha256": "b1fe14a20d4bf1909079294013561410d87d9ceb28875de5cd6b2217d4529c48" }, "downloads": -1, "filename": "aiohttp-3.0.0b2-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "307eae9406aaf8f6732fa8e3f56e5954", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 380582, "upload_time": "2018-02-08T16:17:32", "upload_time_iso_8601": "2018-02-08T16:17:32.574410Z", "url": "https://files.pythonhosted.org/packages/51/85/862d1b42ac3434eaab7901386e261c72d9c72956925272dcdd4c7dc9bda2/aiohttp-3.0.0b2-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee17c3a86e21d23fbd70db0b24aa669c", "sha256": "e885cef6cbb57c155627ad565e1a0f126b6f32ddb4404200e43c4b580ea747e4" }, "downloads": -1, "filename": "aiohttp-3.0.0b2-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "ee17c3a86e21d23fbd70db0b24aa669c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 372558, "upload_time": "2018-02-08T16:25:36", "upload_time_iso_8601": "2018-02-08T16:25:36.517957Z", "url": "https://files.pythonhosted.org/packages/7f/43/1fa3e74edeeffbc0a3cb4271d17f98edea72ed6b2b47377476b34321fcda/aiohttp-3.0.0b2-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "91e61f560fbc650546843bca6a8db75b", "sha256": "3cd37d79b64ed8875c891fc3c9636f9af9d50acc66407c412cc74d23ffb179ab" }, "downloads": -1, "filename": "aiohttp-3.0.0b2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "91e61f560fbc650546843bca6a8db75b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 357157, "upload_time": "2018-02-08T15:42:59", "upload_time_iso_8601": "2018-02-08T15:42:59.002345Z", "url": "https://files.pythonhosted.org/packages/c7/2b/f109043d8119b19d395be143a351367daaf020103e6b41b31b7c76fd8f93/aiohttp-3.0.0b2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43cefeeabd8fb04fc1460b0f801fca56", "sha256": "d9b24b16b765a3bb02433e0ca4284674ced019b5587417038aa14a307acef80a" }, "downloads": -1, "filename": "aiohttp-3.0.0b2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "43cefeeabd8fb04fc1460b0f801fca56", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 368384, "upload_time": "2018-02-08T15:46:32", "upload_time_iso_8601": "2018-02-08T15:46:32.403604Z", "url": "https://files.pythonhosted.org/packages/9d/96/899c598064de8b5cf713fcc1a25c8ccaad02e233a2e22796098dfa551bd0/aiohttp-3.0.0b2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0891fb5a9120afcaa4992291ec14440b", "sha256": "92328fa4bc234a9829c1f5fde67f9c940d21a45846a9124f7666a54dfea9b720" }, "downloads": -1, "filename": "aiohttp-3.0.0b2.tar.gz", "has_sig": false, "md5_digest": "0891fb5a9120afcaa4992291ec14440b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 748948, "upload_time": "2018-02-08T15:37:26", "upload_time_iso_8601": "2018-02-08T15:37:26.231702Z", "url": "https://files.pythonhosted.org/packages/2f/07/17605377e8b913338e11b79dfebbba5a6511cfd3c736ea746834ea60c6d3/aiohttp-3.0.0b2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.0b3": [ { "comment_text": "", "digests": { "md5": "ebf09a2fe2dd7f8641605272aa028df9", "sha256": "f99f11749f4c17a2bfe16a55fbde5d15825017e5764906d123c9b7849a304752" }, "downloads": -1, "filename": "aiohttp-3.0.0b3-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "ebf09a2fe2dd7f8641605272aa028df9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 379248, "upload_time": "2018-02-08T21:56:33", "upload_time_iso_8601": "2018-02-08T21:56:33.084713Z", "url": "https://files.pythonhosted.org/packages/dc/e5/77e1050e0fbd71549fd1ceb42c6326364766d1f606585bb60b6cb037a0cb/aiohttp-3.0.0b3-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d7975da933563b1524ecdf0aad3a2c9a", "sha256": "58ec48ddf26e3774c92888478251ed4c7e9256721517cfb52045ce928bd2fa04" }, "downloads": -1, "filename": "aiohttp-3.0.0b3-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "d7975da933563b1524ecdf0aad3a2c9a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 378232, "upload_time": "2018-02-08T22:05:45", "upload_time_iso_8601": "2018-02-08T22:05:45.827886Z", "url": "https://files.pythonhosted.org/packages/6a/4b/612fdfaed52881e3ae2aab6cb3a2171d0c1145dc2f233eb8222b4fe31091/aiohttp-3.0.0b3-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "11fa79acde48c2ffb13fada39e9345f9", "sha256": "25f112b15656d85bc49196962926473c9f6f288dad2b77733b7cbc2ed9cccd1a" }, "downloads": -1, "filename": "aiohttp-3.0.0b3-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "11fa79acde48c2ffb13fada39e9345f9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 371222, "upload_time": "2018-02-08T22:13:19", "upload_time_iso_8601": "2018-02-08T22:13:19.439985Z", "url": "https://files.pythonhosted.org/packages/c6/bd/dfb267ec7f3c1e6d801f84573ffdae2ea6e86646cba854df3d2d3967025a/aiohttp-3.0.0b3-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "32890f456796145ff6a0c275fc5132ba", "sha256": "386c829545eecf2e0bc8dd2f56ce38fe3236e0f1fac0d4e2be9bfda2957de2cb" }, "downloads": -1, "filename": "aiohttp-3.0.0b3-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "32890f456796145ff6a0c275fc5132ba", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 619944, "upload_time": "2018-02-08T22:04:55", "upload_time_iso_8601": "2018-02-08T22:04:55.824192Z", "url": "https://files.pythonhosted.org/packages/3e/9a/7b54e3680ae1d57e27c3eb363b556e70dbfe29154a27ec54ce379fe0e445/aiohttp-3.0.0b3-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c2d20d6798942cd27ba6d297989555f3", "sha256": "ca84cd8a80c4481372b92879a7007092817ca5cf68a205a5dc98ff6564fa231e" }, "downloads": -1, "filename": "aiohttp-3.0.0b3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c2d20d6798942cd27ba6d297989555f3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 648961, "upload_time": "2018-02-08T22:04:59", "upload_time_iso_8601": "2018-02-08T22:04:59.239776Z", "url": "https://files.pythonhosted.org/packages/5f/4a/75ec982b0c8f8f7a32e5a62f76228f653befe5f5439c53583fc377473402/aiohttp-3.0.0b3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3bda1277de82407d2bcac013c940207", "sha256": "572116c93105ffef33425eef65f9da57fe6e5f2e7c0827c90f2f2b8811aee7b6" }, "downloads": -1, "filename": "aiohttp-3.0.0b3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "c3bda1277de82407d2bcac013c940207", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 355476, "upload_time": "2018-02-08T21:22:09", "upload_time_iso_8601": "2018-02-08T21:22:09.646432Z", "url": "https://files.pythonhosted.org/packages/8a/33/bc7e5edcbc85d8474c6a789fed7bc5ab4401196e23ecc7d6aab64c5ea446/aiohttp-3.0.0b3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "daf7e80d60953b189b168f9beb97905c", "sha256": "b91261a9fddd0e44bf6531dae7661d1b0749a33f8121f6d609674b6100a209a2" }, "downloads": -1, "filename": "aiohttp-3.0.0b3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "daf7e80d60953b189b168f9beb97905c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 366513, "upload_time": "2018-02-08T21:24:56", "upload_time_iso_8601": "2018-02-08T21:24:56.319749Z", "url": "https://files.pythonhosted.org/packages/d4/33/2f3c180f079afd3fd7906a91cb389791db0946fa600c52e33963a595a00d/aiohttp-3.0.0b3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c68645046ddba27053dcea5d4e1cfacf", "sha256": "44b106097412c7b634ca0053daede039f4596ced644944c0a20548be4605bbec" }, "downloads": -1, "filename": "aiohttp-3.0.0b3-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "c68645046ddba27053dcea5d4e1cfacf", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 381710, "upload_time": "2018-02-08T21:56:52", "upload_time_iso_8601": "2018-02-08T21:56:52.535819Z", "url": "https://files.pythonhosted.org/packages/9f/cf/ff93ef5b8b6f8992656ff92cbba77e903c6420398ba1bca5bc340307e706/aiohttp-3.0.0b3-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb4b1ac05c100589852ef035d9f005bb", "sha256": "b8b9e99ab8c525f67a05ea54f78e2867b4456f62ca30d68db5d4378c9d68aefc" }, "downloads": -1, "filename": "aiohttp-3.0.0b3-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "cb4b1ac05c100589852ef035d9f005bb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 380589, "upload_time": "2018-02-08T22:06:20", "upload_time_iso_8601": "2018-02-08T22:06:20.443841Z", "url": "https://files.pythonhosted.org/packages/87/09/10f1c7afb927692c0334e8488023f3ae0b4eccd9de7e74ea358fd0ce6836/aiohttp-3.0.0b3-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2be90be1df5b6c91a9c3a274e9ce6edb", "sha256": "1290c441a328850fc59958a1f1fdd0c17412269126d93fc6f28f4cb68ac726ae" }, "downloads": -1, "filename": "aiohttp-3.0.0b3-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "2be90be1df5b6c91a9c3a274e9ce6edb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 372560, "upload_time": "2018-02-08T22:14:16", "upload_time_iso_8601": "2018-02-08T22:14:16.769455Z", "url": "https://files.pythonhosted.org/packages/0b/70/def26b5de7bafd7738c3aae9e7f3720322361006ba2551225756d9d1047e/aiohttp-3.0.0b3-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ca15b2782217c9f8eb7fe32199c9b43", "sha256": "fec74a35a92db56713d313e590b96f8994079daca9689a09a04d24196546b39d" }, "downloads": -1, "filename": "aiohttp-3.0.0b3-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0ca15b2782217c9f8eb7fe32199c9b43", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 636084, "upload_time": "2018-02-08T22:05:02", "upload_time_iso_8601": "2018-02-08T22:05:02.651556Z", "url": "https://files.pythonhosted.org/packages/d3/f8/d47a98901b3755274845f33598f85a7e77fe3fd92ab2d5fe6a67b09fb4ef/aiohttp-3.0.0b3-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "db233d2d7cde5f18c867a7fb98d15801", "sha256": "6db42bfe8c5921ca72a1f2e8c055a6a46ee6177a71f2e439f494ddbed3220d84" }, "downloads": -1, "filename": "aiohttp-3.0.0b3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "db233d2d7cde5f18c867a7fb98d15801", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 664514, "upload_time": "2018-02-08T22:05:08", "upload_time_iso_8601": "2018-02-08T22:05:08.013978Z", "url": "https://files.pythonhosted.org/packages/bf/fc/0563e50def7ac58c0126d3848dbeabd8ea35131fa67d6b9941105ab5f59c/aiohttp-3.0.0b3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c26e92d7d53b43d8908dbef39049bc79", "sha256": "827c98be37d381c2202ff0188b9a092817a43782e66f0170efed487d90ae72e5" }, "downloads": -1, "filename": "aiohttp-3.0.0b3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "c26e92d7d53b43d8908dbef39049bc79", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 357159, "upload_time": "2018-02-08T21:27:28", "upload_time_iso_8601": "2018-02-08T21:27:28.473167Z", "url": "https://files.pythonhosted.org/packages/fb/80/ec3e5e9bc19cd1064694c06ddcbe3e92f697adc811a8e56dc41bba2c687d/aiohttp-3.0.0b3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "62b7555a9dcb5c1f52d040e190f9a1c4", "sha256": "4bc10c78a586935a69ce1e3c50a28dd4ffe337deabdcae67fa82fe461f582c67" }, "downloads": -1, "filename": "aiohttp-3.0.0b3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "62b7555a9dcb5c1f52d040e190f9a1c4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 368384, "upload_time": "2018-02-08T21:29:53", "upload_time_iso_8601": "2018-02-08T21:29:53.315429Z", "url": "https://files.pythonhosted.org/packages/c3/a9/3a6be4b72a38722d7d14f6ddd538b9fc1957970b5e9e0f96a509bb92158b/aiohttp-3.0.0b3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "10f92a1bf252a8bfbef94597d0aef3bc", "sha256": "67af7c9573847eba95468c55969a05720f47dcf92f5202116554aa9dcfd86507" }, "downloads": -1, "filename": "aiohttp-3.0.0b3.tar.gz", "has_sig": false, "md5_digest": "10f92a1bf252a8bfbef94597d0aef3bc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 749132, "upload_time": "2018-02-08T21:22:11", "upload_time_iso_8601": "2018-02-08T21:22:11.644204Z", "url": "https://files.pythonhosted.org/packages/0b/b5/d662a7b670d1bc6ba2954394d2b9f2b7c0cef39006effb1a9d7cbc48bbca/aiohttp-3.0.0b3.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.0b4": [ { "comment_text": "", "digests": { "md5": "dd513d784c606fb87499c8a33f73e37f", "sha256": "bc3a77748fc27ea400ede17e994418aa99e62bed031c26dffc94996bd9e45c40" }, "downloads": -1, "filename": "aiohttp-3.0.0b4-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "dd513d784c606fb87499c8a33f73e37f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 370462, "upload_time": "2018-02-09T16:15:54", "upload_time_iso_8601": "2018-02-09T16:15:54.891123Z", "url": "https://files.pythonhosted.org/packages/37/5e/3241be559a93063833cb18ce5997e77ed32aa1b6eb5ca09ad3fdf4b0943b/aiohttp-3.0.0b4-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "234e11802369c06973efac4f36345d79", "sha256": "51e6f7f93277734f0deb440273d792abc6cf535f0055ebc42311df387dd62d5f" }, "downloads": -1, "filename": "aiohttp-3.0.0b4-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "234e11802369c06973efac4f36345d79", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 369444, "upload_time": "2018-02-09T16:26:12", "upload_time_iso_8601": "2018-02-09T16:26:12.656413Z", "url": "https://files.pythonhosted.org/packages/cb/7c/5204fc95e9797e282575408478a2c536d34b40378026e4d153d337455788/aiohttp-3.0.0b4-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9849893c7b251f3c4d321cc53562bc52", "sha256": "e9d1393d436163252ae8e8916b07cccf8cd91e4436356f2815bbff71461f4d66" }, "downloads": -1, "filename": "aiohttp-3.0.0b4-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "9849893c7b251f3c4d321cc53562bc52", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 362443, "upload_time": "2018-02-09T16:34:32", "upload_time_iso_8601": "2018-02-09T16:34:32.770437Z", "url": "https://files.pythonhosted.org/packages/a1/4d/387d821905e86c6c1454985e0e135b9a4910f160428344ac9d176b5f917a/aiohttp-3.0.0b4-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3665f35b0c8ce2494fc7ac4ce8a20987", "sha256": "2fff53bbd05e797fdfc6ab286107d3bf0e0cdc7e117e6e6706ce209dff84d430" }, "downloads": -1, "filename": "aiohttp-3.0.0b4-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3665f35b0c8ce2494fc7ac4ce8a20987", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 611164, "upload_time": "2018-02-09T16:25:23", "upload_time_iso_8601": "2018-02-09T16:25:23.313736Z", "url": "https://files.pythonhosted.org/packages/ef/21/56dfc7bc2d6afd039e6ce580b0e10bb88b488a18a1ff2565931ebfa80d5b/aiohttp-3.0.0b4-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58f324f80a36591db66149c75894e72d", "sha256": "0ce68d87989dd33c418aa2fc5f5bc328ab2287928fc68b061361745547e27577" }, "downloads": -1, "filename": "aiohttp-3.0.0b4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "58f324f80a36591db66149c75894e72d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 640178, "upload_time": "2018-02-09T16:25:25", "upload_time_iso_8601": "2018-02-09T16:25:25.264923Z", "url": "https://files.pythonhosted.org/packages/58/81/44ff07404b2f572e5be7d1060b7161a1b7e47e0cd513f7ee77056312bde7/aiohttp-3.0.0b4-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "828b923fe3fb931c69a902a42459f40f", "sha256": "9467b9ab0ee5ed390ae2164aa51a1690be12d784b6f53549b4ca0b5943607fe2" }, "downloads": -1, "filename": "aiohttp-3.0.0b4-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "828b923fe3fb931c69a902a42459f40f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 346698, "upload_time": "2018-02-09T15:28:22", "upload_time_iso_8601": "2018-02-09T15:28:22.317445Z", "url": "https://files.pythonhosted.org/packages/13/db/2b6c3abb7e91978219900a2e4355cbbd71b260c0f05acdc526ccf2d150f5/aiohttp-3.0.0b4-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "48cc7e4170929ac738d5335a054eeb21", "sha256": "6729c1c7c1ab5a8867f3db1909f3fe1c600bb35ce7751542c4b963e7c765c773" }, "downloads": -1, "filename": "aiohttp-3.0.0b4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "48cc7e4170929ac738d5335a054eeb21", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 357739, "upload_time": "2018-02-09T15:31:16", "upload_time_iso_8601": "2018-02-09T15:31:16.177598Z", "url": "https://files.pythonhosted.org/packages/05/ed/8d875dbc2793783560b21a8aaba0d1c39313f566c9a708e944ab2bd6bcf6/aiohttp-3.0.0b4-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0706593f2785299521803c8703ab5bc9", "sha256": "5a0af29d8855ba866124737d49609f309b001dc4f95e3671d0c51f065da3102b" }, "downloads": -1, "filename": "aiohttp-3.0.0b4-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "0706593f2785299521803c8703ab5bc9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 372929, "upload_time": "2018-02-09T16:16:07", "upload_time_iso_8601": "2018-02-09T16:16:07.921273Z", "url": "https://files.pythonhosted.org/packages/71/9f/d0e9d7c77ea0b494c0bba4cb72d0190d7e13400df54ba71745c24240aa34/aiohttp-3.0.0b4-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fac678263a8cb8a443b494000e4b99c9", "sha256": "9e7e0406a5841d0ec011ceadb57e6f7b8bfdb5b64092d8b655adb6fb54d05125" }, "downloads": -1, "filename": "aiohttp-3.0.0b4-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "fac678263a8cb8a443b494000e4b99c9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 371798, "upload_time": "2018-02-09T16:26:55", "upload_time_iso_8601": "2018-02-09T16:26:55.901722Z", "url": "https://files.pythonhosted.org/packages/09/34/5a062537d4a0dd6dacaa3b6db0299e0b427b1523fc3e117481af712e6bac/aiohttp-3.0.0b4-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19a71c4e87db9cef4b8b55c9a740716f", "sha256": "b0cb32edbcd76796bb77c794349f438fa7775394f35a95a1c4d00fe0d128b087" }, "downloads": -1, "filename": "aiohttp-3.0.0b4-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "19a71c4e87db9cef4b8b55c9a740716f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 363766, "upload_time": "2018-02-09T16:34:53", "upload_time_iso_8601": "2018-02-09T16:34:53.361833Z", "url": "https://files.pythonhosted.org/packages/fa/ca/3cebebcaf19a90ed019dac10560f1e87ed5ef6d4a75bdccaf736a2eec10c/aiohttp-3.0.0b4-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "36927ba8e42c0efcf1424439ff9ab302", "sha256": "7ea1b2641b87c288103e7c72bf088a704d8854b9c653d69fa914ae33514035bc" }, "downloads": -1, "filename": "aiohttp-3.0.0b4-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "36927ba8e42c0efcf1424439ff9ab302", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 627310, "upload_time": "2018-02-09T16:25:27", "upload_time_iso_8601": "2018-02-09T16:25:27.575203Z", "url": "https://files.pythonhosted.org/packages/de/1f/c812d5991c88ac7b443c62b3eb9a986b3406e363ce50642e89a3778e842f/aiohttp-3.0.0b4-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2edff8d1eb9e58aa4f54af4daa8b85ac", "sha256": "6cabf53010b11e5160b187c995a29450f34bc874415e555991d38819c6d53591" }, "downloads": -1, "filename": "aiohttp-3.0.0b4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2edff8d1eb9e58aa4f54af4daa8b85ac", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 655734, "upload_time": "2018-02-09T16:25:30", "upload_time_iso_8601": "2018-02-09T16:25:30.095716Z", "url": "https://files.pythonhosted.org/packages/45/16/caa257b1914b3c47eba108669c2c6f03ce0c6e0efe87bdcdea211ad6b15c/aiohttp-3.0.0b4-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "366c745b5e12fe6751ea3a0519557b48", "sha256": "9dfa103542aae8121301fa0fa8c2d6175b0d1abf7fe9494bcb008068ded3c109" }, "downloads": -1, "filename": "aiohttp-3.0.0b4-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "366c745b5e12fe6751ea3a0519557b48", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 348383, "upload_time": "2018-02-09T15:33:35", "upload_time_iso_8601": "2018-02-09T15:33:35.110684Z", "url": "https://files.pythonhosted.org/packages/3f/c1/8723dc5e7b8c45e141dcfe0fec6d5448ec3d75d4337e0ad4a8ea9072fc0a/aiohttp-3.0.0b4-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b6264be54f449ce43a3c46c7e503402b", "sha256": "7e4b2bb59c3462239b3112ce5c0845a1410d4ae9ad4befd703fde664a6088ebe" }, "downloads": -1, "filename": "aiohttp-3.0.0b4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "b6264be54f449ce43a3c46c7e503402b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 359610, "upload_time": "2018-02-09T15:36:09", "upload_time_iso_8601": "2018-02-09T15:36:09.235791Z", "url": "https://files.pythonhosted.org/packages/f9/3c/5874226a5f1971731f0b619001455f4a3bd3f9f78a10ba01da82339f6ac3/aiohttp-3.0.0b4-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "97d75333f9f8666952a54f14c1b0095b", "sha256": "d6aeb2b8020fe2dbdda55002380ced11ab1493ed2c2fa698b737fdd6add1672c" }, "downloads": -1, "filename": "aiohttp-3.0.0b4.tar.gz", "has_sig": false, "md5_digest": "97d75333f9f8666952a54f14c1b0095b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 737112, "upload_time": "2018-02-09T15:28:24", "upload_time_iso_8601": "2018-02-09T15:28:24.292244Z", "url": "https://files.pythonhosted.org/packages/28/8f/59ae8d42b2e5a1f06bdd629396f0c86bb69d2d4dee4ee56f5d6381f16a02/aiohttp-3.0.0b4.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "d842f042280b3f2c3d023cfd58d9ed40", "sha256": "2e8be4c46083ced9d9bc9ff4d77f31bfcd3e7486613f6138c5aa302d33ea54ed" }, "downloads": -1, "filename": "aiohttp-3.0.1-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "d842f042280b3f2c3d023cfd58d9ed40", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 370602, "upload_time": "2018-02-12T13:05:03", "upload_time_iso_8601": "2018-02-12T13:05:03.202880Z", "url": "https://files.pythonhosted.org/packages/c9/89/62157128930a0ab5e401bc4d089f20ec92ead4461f9f549ed88e8365c631/aiohttp-3.0.1-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4dd377194751c7edf37d5bf40b21a0b5", "sha256": "4634dd3bbb68d0c7e5e4bca7571369d53c497b3300d9d678f939038e1b1231ee" }, "downloads": -1, "filename": "aiohttp-3.0.1-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "4dd377194751c7edf37d5bf40b21a0b5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 369588, "upload_time": "2018-02-12T13:13:23", "upload_time_iso_8601": "2018-02-12T13:13:23.588994Z", "url": "https://files.pythonhosted.org/packages/d3/79/952948e5ca6ba8211933c3133d85e4693dd672e2eba3872c8fc4eb1762e7/aiohttp-3.0.1-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "31d474105f82488b0c1771299aab7e21", "sha256": "25825c61688fc95e09d6be19e513e925cb4f08aae4d7a7c38a1fa75e0e4c22bd" }, "downloads": -1, "filename": "aiohttp-3.0.1-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "31d474105f82488b0c1771299aab7e21", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 362586, "upload_time": "2018-02-12T13:20:26", "upload_time_iso_8601": "2018-02-12T13:20:26.575830Z", "url": "https://files.pythonhosted.org/packages/56/1c/d7b82fcab9b1b58286c9bee9b5c975bc1b5dd6a81fc42a52f99747af1068/aiohttp-3.0.1-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5329e8106591c91611564a3eb381ad75", "sha256": "9e6d6f0bca955923b515f8b5631c4c4f43aa152763852284cbefc89bd544069e" }, "downloads": -1, "filename": "aiohttp-3.0.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5329e8106591c91611564a3eb381ad75", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 611315, "upload_time": "2018-02-12T13:14:04", "upload_time_iso_8601": "2018-02-12T13:14:04.113900Z", "url": "https://files.pythonhosted.org/packages/d6/61/d23d986f4db605762edeb8dc72c935a1a032e782c790db70339a58162dfa/aiohttp-3.0.1-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eee2e25cdbf9040bfedf6fa1bad50615", "sha256": "6eef1d7eff9e6fa1029f7a62504f88b2b0afce89ced5c95d3a4cf1c2faef1231" }, "downloads": -1, "filename": "aiohttp-3.0.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "eee2e25cdbf9040bfedf6fa1bad50615", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 640310, "upload_time": "2018-02-12T13:14:06", "upload_time_iso_8601": "2018-02-12T13:14:06.083465Z", "url": "https://files.pythonhosted.org/packages/e1/bd/32da36553cfc3a9025a44a8bccd18622aba6339166da4f00bc3e1387d23a/aiohttp-3.0.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "97693031f026703d77e8316fd0757787", "sha256": "040eecbc37aa5bd007108388fab6c42b2a01b964c4feac26bdffc8fe8af6c110" }, "downloads": -1, "filename": "aiohttp-3.0.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "97693031f026703d77e8316fd0757787", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 346826, "upload_time": "2018-02-12T12:35:47", "upload_time_iso_8601": "2018-02-12T12:35:47.386432Z", "url": "https://files.pythonhosted.org/packages/00/da/0de79fa40230d97daf9a68ca316d02e778168fcd343b43d14e423d60f9a2/aiohttp-3.0.1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "24a778785b331e02673b691d5e8d6eaa", "sha256": "53988a8cf76c3fb74a759e77b1c2f55ab36880d57c6e7d0d59ad28743a2535fe" }, "downloads": -1, "filename": "aiohttp-3.0.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "24a778785b331e02673b691d5e8d6eaa", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 357869, "upload_time": "2018-02-12T12:38:26", "upload_time_iso_8601": "2018-02-12T12:38:26.014077Z", "url": "https://files.pythonhosted.org/packages/79/19/4751d4cd0d9b5c3f79095f2d0a74b2c23bb550619dfdf86cc5ca55e27a49/aiohttp-3.0.1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a76a01e12a173e3f53023258e7a578e1", "sha256": "d51673140330c660e68c182e14164ddba47810dca873bbd28662f31d7d8c0185" }, "downloads": -1, "filename": "aiohttp-3.0.1-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "a76a01e12a173e3f53023258e7a578e1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 373073, "upload_time": "2018-02-12T13:04:45", "upload_time_iso_8601": "2018-02-12T13:04:45.823437Z", "url": "https://files.pythonhosted.org/packages/27/63/df38ea1e7be500a430b3d25d580ae86444c2e6cfd4b76b07b05cc0a6080d/aiohttp-3.0.1-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c066e03e328e99c530b453b57d6954e5", "sha256": "2fe26e836a1803c7414613c376fe29fc4ae0e5145e3813e1db1854cb05c91a3c" }, "downloads": -1, "filename": "aiohttp-3.0.1-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "c066e03e328e99c530b453b57d6954e5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 371946, "upload_time": "2018-02-12T13:13:47", "upload_time_iso_8601": "2018-02-12T13:13:47.437985Z", "url": "https://files.pythonhosted.org/packages/8e/43/7e139e6b354b2e00df9bc31f7d9c074d5d6ea0b2b52342b6525ad8974e16/aiohttp-3.0.1-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "081d381ac9ecef3edf7bd568313a7583", "sha256": "15ad4d76bddfd98bf9e48263c70f6603e96d823c5a5c0c842646e9871be72c64" }, "downloads": -1, "filename": "aiohttp-3.0.1-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "081d381ac9ecef3edf7bd568313a7583", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 363915, "upload_time": "2018-02-12T13:20:39", "upload_time_iso_8601": "2018-02-12T13:20:39.778929Z", "url": "https://files.pythonhosted.org/packages/0c/4c/fb7bd50a9b1e15cb513ea7f85d3045e88c8443893542fbd4c74ff1a13902/aiohttp-3.0.1-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0cd311cb23d429a0de5173e3d1e078a", "sha256": "7910089093296b5c8f683965044f553b0c5c9c2dbf310a219db76c6e793fea55" }, "downloads": -1, "filename": "aiohttp-3.0.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e0cd311cb23d429a0de5173e3d1e078a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 627436, "upload_time": "2018-02-12T13:14:09", "upload_time_iso_8601": "2018-02-12T13:14:09.313640Z", "url": "https://files.pythonhosted.org/packages/c9/11/720317cb9bdc05b68a0a1bb5c3b7418b7db1f42b45a79e0d963577eb48ee/aiohttp-3.0.1-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dac1df7a1dd27b3847e7572887411b89", "sha256": "a19b96f77763ddf0249420438ebfc4d9a470daeb26f6614366d913ff520fa29b" }, "downloads": -1, "filename": "aiohttp-3.0.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dac1df7a1dd27b3847e7572887411b89", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 655858, "upload_time": "2018-02-12T13:14:11", "upload_time_iso_8601": "2018-02-12T13:14:11.295790Z", "url": "https://files.pythonhosted.org/packages/26/40/e15cfd699c7294589b5e4da146ce3c1e787cdb203c734f7f813363334e1e/aiohttp-3.0.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "49be8b4822627a6ccee04947b5454036", "sha256": "b53bc7b44b1115af50bd18d9671972603e5a4934e98dd3f4d671104c070e331d" }, "downloads": -1, "filename": "aiohttp-3.0.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "49be8b4822627a6ccee04947b5454036", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 348512, "upload_time": "2018-02-12T12:40:50", "upload_time_iso_8601": "2018-02-12T12:40:50.497404Z", "url": "https://files.pythonhosted.org/packages/a1/fd/bf8299ecd990deabe21a9df46a3d139f70061d6ba56d2b8d8fc66cf06ff8/aiohttp-3.0.1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "feaf035daf0f81aa688752eb3a64ca19", "sha256": "4b6fa00885ec778154244b010acecb862d277e6652b87fcd85c0f4735d26451c" }, "downloads": -1, "filename": "aiohttp-3.0.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "feaf035daf0f81aa688752eb3a64ca19", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 359742, "upload_time": "2018-02-12T12:43:22", "upload_time_iso_8601": "2018-02-12T12:43:22.900652Z", "url": "https://files.pythonhosted.org/packages/7a/27/c9116f07a335afe9fab1b3732e0a4882bdf5085124701314984215b1a806/aiohttp-3.0.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "390f559b7745477699edbde1f7e89ad9", "sha256": "7aee5c0750584946fde40da70f0b28fe769f85182f1171acef18a35fd8ecd221" }, "downloads": -1, "filename": "aiohttp-3.0.1.tar.gz", "has_sig": false, "md5_digest": "390f559b7745477699edbde1f7e89ad9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 737087, "upload_time": "2018-02-12T12:35:49", "upload_time_iso_8601": "2018-02-12T12:35:49.064342Z", "url": "https://files.pythonhosted.org/packages/3f/12/58d4b6ff8bae007e9c3a4e43cec92e3a905aff536fd28fac6b0a6895260b/aiohttp-3.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.2": [ { "comment_text": "", "digests": { "md5": "668c7ff29941784f59fadcf1f37fb378", "sha256": "0d489ec8c08f7687955579099f344cc97d270bfc9715934fea77a1ceef055b83" }, "downloads": -1, "filename": "aiohttp-3.0.2-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "668c7ff29941784f59fadcf1f37fb378", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 370944, "upload_time": "2018-02-23T10:10:07", "upload_time_iso_8601": "2018-02-23T10:10:07.871282Z", "url": "https://files.pythonhosted.org/packages/bd/ce/25e87affe1f7a159bb0cf911cbddae881b4301597b724d16f4b3823c9179/aiohttp-3.0.2-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "37a6b182b2002839a4f9d436f2da0175", "sha256": "45e567826a631dde83660e42906ee4b85059f87d273919d1d75854f9f643227f" }, "downloads": -1, "filename": "aiohttp-3.0.2-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "37a6b182b2002839a4f9d436f2da0175", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 369932, "upload_time": "2018-02-23T10:19:02", "upload_time_iso_8601": "2018-02-23T10:19:02.833355Z", "url": "https://files.pythonhosted.org/packages/e0/d2/241835e8c68e686aa029fc2f6f5aabda9b581f8ae8c02faee838f82755c5/aiohttp-3.0.2-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "96c0cb83a70e5e17bee714c9bfc52b71", "sha256": "06fd26a4c18bafd88505d27dd523036494a33e4908bc13ce9234c95a0d713d36" }, "downloads": -1, "filename": "aiohttp-3.0.2-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "96c0cb83a70e5e17bee714c9bfc52b71", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 362923, "upload_time": "2018-02-23T10:26:22", "upload_time_iso_8601": "2018-02-23T10:26:22.199238Z", "url": "https://files.pythonhosted.org/packages/35/7a/70343704e05c4b26506c9c8cd210135874345d18fbd8924d4935972a286d/aiohttp-3.0.2-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e7a707d24553f804e69b1d896e1f09ea", "sha256": "98ccab25085e41a7b835e0b7ae4209d33af2ff20c968d6c78a4617e910636f91" }, "downloads": -1, "filename": "aiohttp-3.0.2-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e7a707d24553f804e69b1d896e1f09ea", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 611645, "upload_time": "2018-02-23T10:17:54", "upload_time_iso_8601": "2018-02-23T10:17:54.435437Z", "url": "https://files.pythonhosted.org/packages/95/f0/5201e579139ebfe85c2b93d68c4e0906d730712312145b842a6217566f0c/aiohttp-3.0.2-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9be80188b9264d5a65c3f5f34cb92489", "sha256": "bf8716128dd5a87e25428a6a6d0f83352570f6f10643d85f50dd1d2a891d7beb" }, "downloads": -1, "filename": "aiohttp-3.0.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9be80188b9264d5a65c3f5f34cb92489", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 640665, "upload_time": "2018-02-23T10:17:56", "upload_time_iso_8601": "2018-02-23T10:17:56.254746Z", "url": "https://files.pythonhosted.org/packages/f3/23/ddc3156c8806bfa5efaa40c6807cc5b9f011f24f9e52a6d9b0f51af14458/aiohttp-3.0.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4b7e562eefb29d886dfc956649a35265", "sha256": "2d069103fb9ba6a448207a4bf815fdb4c46d2e43443ffc0f10fdaae543c80f7c" }, "downloads": -1, "filename": "aiohttp-3.0.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "4b7e562eefb29d886dfc956649a35265", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 347174, "upload_time": "2018-02-23T09:32:41", "upload_time_iso_8601": "2018-02-23T09:32:41.049160Z", "url": "https://files.pythonhosted.org/packages/6d/6c/4308a1d2ec1ba43587178de0cfb5c5a91550ab52fb621a183f6c8858f94f/aiohttp-3.0.2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a54a5a23fbe320647eef108e8af53ca", "sha256": "adb731e5f885038cb9ddb4f9fbaaf62f644785e8fc0abcf71ba879f1cdbf2f7e" }, "downloads": -1, "filename": "aiohttp-3.0.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "7a54a5a23fbe320647eef108e8af53ca", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 358211, "upload_time": "2018-02-23T09:35:20", "upload_time_iso_8601": "2018-02-23T09:35:20.108853Z", "url": "https://files.pythonhosted.org/packages/33/88/f8ec0a7a6d26d91c4b042428b0bb32e002d28fdee523c04afde9f98afb3c/aiohttp-3.0.2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb774b35b0fffaff9042e356d4b209bc", "sha256": "9ff930c2a4121b3fc21d406c8e2c3167dff6f8f57abf8b63e92dc36263b693e7" }, "downloads": -1, "filename": "aiohttp-3.0.2-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "bb774b35b0fffaff9042e356d4b209bc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 373414, "upload_time": "2018-02-23T10:10:05", "upload_time_iso_8601": "2018-02-23T10:10:05.692184Z", "url": "https://files.pythonhosted.org/packages/b5/9a/fb12273144be97f1cc714152c17618b7c57a1c9a2281a1a0edd060f36a06/aiohttp-3.0.2-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b1bc783589d85489ac57235ccc6ba55b", "sha256": "2458a733a26fbcbbefb1f7df9b20f988f570a790269f7cb5f8aa370d8cb0db18" }, "downloads": -1, "filename": "aiohttp-3.0.2-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "b1bc783589d85489ac57235ccc6ba55b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 372286, "upload_time": "2018-02-23T10:19:07", "upload_time_iso_8601": "2018-02-23T10:19:07.909786Z", "url": "https://files.pythonhosted.org/packages/18/a9/5c5a5d0b385a522dc6a75347432b953be63aa0536eb7a0659ff97bcf988e/aiohttp-3.0.2-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "700aa0503b9709b10d7d79ba8b58ae6d", "sha256": "37feba955656be58c8fd8ae815329d436aac1d079bb65c1edaa2b0fcb80f9a3d" }, "downloads": -1, "filename": "aiohttp-3.0.2-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "700aa0503b9709b10d7d79ba8b58ae6d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 364256, "upload_time": "2018-02-23T10:26:08", "upload_time_iso_8601": "2018-02-23T10:26:08.567603Z", "url": "https://files.pythonhosted.org/packages/98/b1/d54d4f16e209e1d236c62510722c2798dbcfca266e8a42d59dbcb13a0110/aiohttp-3.0.2-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "36398d99a1df8c13186ea9908ad8d9f1", "sha256": "da70fbe58a38ee713464b24225a2caf0f601b565795d0cb3de0e159c6e2a66b4" }, "downloads": -1, "filename": "aiohttp-3.0.2-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "36398d99a1df8c13186ea9908ad8d9f1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 627780, "upload_time": "2018-02-23T10:17:59", "upload_time_iso_8601": "2018-02-23T10:17:59.146593Z", "url": "https://files.pythonhosted.org/packages/0a/4e/64cb729a705287ea05965e98a575b944b55d5cecc9edeeb4fffcfdec30ee/aiohttp-3.0.2-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "23224be818a0efbb58268883db72e7c6", "sha256": "9e1eec6dabb1b0e8a14a1a9907b4ca6d65d98bef10e33d6e8ca125f3dfe86d7a" }, "downloads": -1, "filename": "aiohttp-3.0.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "23224be818a0efbb58268883db72e7c6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 656202, "upload_time": "2018-02-23T10:18:00", "upload_time_iso_8601": "2018-02-23T10:18:00.735309Z", "url": "https://files.pythonhosted.org/packages/d4/e7/79b87be5f6fd7e4c355d8510649782dee313055fe8840f776dcebe5b8e71/aiohttp-3.0.2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "617703b20a662766f38fd3806b66ad8c", "sha256": "8b98ba729dd2f2f1ba58b5d8fac02c2af8dbecb2a819ada6c422a68e1c7c7d41" }, "downloads": -1, "filename": "aiohttp-3.0.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "617703b20a662766f38fd3806b66ad8c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 348860, "upload_time": "2018-02-23T09:37:38", "upload_time_iso_8601": "2018-02-23T09:37:38.521976Z", "url": "https://files.pythonhosted.org/packages/c4/c2/e1fbc528ab8982756703caaf30fc35ec1c80faa029f6b2e99a227f467775/aiohttp-3.0.2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "36c06d8248308a5f7c6cdb5f3b630ce6", "sha256": "e125efcb4de9500b0f82620d8e194aff711b8c8591ded9ed641c7631fe52c92d" }, "downloads": -1, "filename": "aiohttp-3.0.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "36c06d8248308a5f7c6cdb5f3b630ce6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 360084, "upload_time": "2018-02-23T09:39:47", "upload_time_iso_8601": "2018-02-23T09:39:47.509033Z", "url": "https://files.pythonhosted.org/packages/8c/c5/8fa829fa5fccc2037bbfae07afc9a60dad35e1702b85364ff8661aded768/aiohttp-3.0.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "44814676f69dac63b3dc0f19ed178a23", "sha256": "65c885062805fc2bf223806cf19ebb2e6884abdbdc882eb85746e538cc778bdb" }, "downloads": -1, "filename": "aiohttp-3.0.2.tar.gz", "has_sig": false, "md5_digest": "44814676f69dac63b3dc0f19ed178a23", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 737501, "upload_time": "2018-02-23T09:32:43", "upload_time_iso_8601": "2018-02-23T09:32:43.037382Z", "url": "https://files.pythonhosted.org/packages/52/40/c1b1d51963db440ab730aaf1095d9a05fc07f943c8050b33ce28637a90a2/aiohttp-3.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.3": [ { "comment_text": "", "digests": { "md5": "75687ce91a5580de38d74f04a7b94593", "sha256": "b5d239a4fb6c0dac9a64936269ef3f65d990d8f17df512e31d1fa43436c39f0a" }, "downloads": -1, "filename": "aiohttp-3.0.3-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "75687ce91a5580de38d74f04a7b94593", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 371119, "upload_time": "2018-02-25T16:17:46", "upload_time_iso_8601": "2018-02-25T16:17:46.242440Z", "url": "https://files.pythonhosted.org/packages/cd/e1/c3ab2877447ead850fdbe3ced20a7b67302e3c89d080c61b42bbf90e1a26/aiohttp-3.0.3-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1471c522c7582930400a8915ffa81866", "sha256": "c060a061f9d09a97bfdd326c822380e830b05eb6d25e6d07b59c0278339a7b74" }, "downloads": -1, "filename": "aiohttp-3.0.3-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "1471c522c7582930400a8915ffa81866", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 370099, "upload_time": "2018-02-25T16:26:11", "upload_time_iso_8601": "2018-02-25T16:26:11.471107Z", "url": "https://files.pythonhosted.org/packages/61/8c/c469a0bbd50e582a076f327e81a9a5acbf12568891e16cce46f9c287bdcc/aiohttp-3.0.3-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed25d19499e8e355741907d8c0a9bea0", "sha256": "3c1305d8b282cef804db30a1bb53cbdab176793eb7da7b148cc16256a1a417a8" }, "downloads": -1, "filename": "aiohttp-3.0.3-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "ed25d19499e8e355741907d8c0a9bea0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 363091, "upload_time": "2018-02-25T16:32:47", "upload_time_iso_8601": "2018-02-25T16:32:47.725745Z", "url": "https://files.pythonhosted.org/packages/20/a4/186cd3a264ac5f3eb4fb7637c7ae0597bcae289c2ff19d1371f6bdd85719/aiohttp-3.0.3-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5193ee676f3a405169f8b3abd7c133fc", "sha256": "97f7130bd67ca829f301868bd19cb6aaef965ab40057e13496627d4cce11f27a" }, "downloads": -1, "filename": "aiohttp-3.0.3-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5193ee676f3a405169f8b3abd7c133fc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 611800, "upload_time": "2018-02-25T16:26:41", "upload_time_iso_8601": "2018-02-25T16:26:41.431438Z", "url": "https://files.pythonhosted.org/packages/ae/46/21202173519caf4d48fc040c21e20c82da44260d9fa756d35fb1b55bdf25/aiohttp-3.0.3-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7c7f2cf1c3bc1a1a3fdef46ed0228b64", "sha256": "21c92f905b2a0cd4cf8ad68e72f1e9de771ce94d7c054f7816b1c9251fdd3279" }, "downloads": -1, "filename": "aiohttp-3.0.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7c7f2cf1c3bc1a1a3fdef46ed0228b64", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 640805, "upload_time": "2018-02-25T16:26:44", "upload_time_iso_8601": "2018-02-25T16:26:44.192409Z", "url": "https://files.pythonhosted.org/packages/a6/92/9d7cd2dbeb589e41b899053296a3a4f90c731636849a0965a8a2cd5d7e6f/aiohttp-3.0.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6c96a52e99d014ea276f779a93f07263", "sha256": "a77eca1f6d66cdc791efdaa9709163c34e870302d56f5957a3f9bbf67ee58fd7" }, "downloads": -1, "filename": "aiohttp-3.0.3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "6c96a52e99d014ea276f779a93f07263", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 347344, "upload_time": "2018-02-25T15:46:31", "upload_time_iso_8601": "2018-02-25T15:46:31.707793Z", "url": "https://files.pythonhosted.org/packages/01/89/201c0a25d30165994aa5f855a892d5674081db7c39f797c53b5560c81be3/aiohttp-3.0.3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "29a0ffe3840c97586a9c879fa123235f", "sha256": "98ef1f496dca7fe2956905bf2f65a152d16480de3a572fdba079571fb482849d" }, "downloads": -1, "filename": "aiohttp-3.0.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "29a0ffe3840c97586a9c879fa123235f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 358379, "upload_time": "2018-02-25T15:49:07", "upload_time_iso_8601": "2018-02-25T15:49:07.386296Z", "url": "https://files.pythonhosted.org/packages/d7/f7/0fe0dff5b70d43038f6b36a7068f03af6cc4381d8d65aed355759bd8dd7a/aiohttp-3.0.3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "420ab3d50acee86af77434e4a4fdf62e", "sha256": "02b5f096e36d386215c102c32328e6879f5a310166aaed73faeb35e5ac61be43" }, "downloads": -1, "filename": "aiohttp-3.0.3-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "420ab3d50acee86af77434e4a4fdf62e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 373579, "upload_time": "2018-02-25T16:17:36", "upload_time_iso_8601": "2018-02-25T16:17:36.288228Z", "url": "https://files.pythonhosted.org/packages/c3/3a/dc3415eab46f1cd85f4f0ca0885321bca5b569221f8d859f493796ce1f6b/aiohttp-3.0.3-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a7953d03407c3a1a7f8a6fe80f617e49", "sha256": "0b718487f46bcd106e954fb4d96d39feb1350539891185f40dffa1c1d5886589" }, "downloads": -1, "filename": "aiohttp-3.0.3-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "a7953d03407c3a1a7f8a6fe80f617e49", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 372458, "upload_time": "2018-02-25T16:26:00", "upload_time_iso_8601": "2018-02-25T16:26:00.976700Z", "url": "https://files.pythonhosted.org/packages/a2/ba/547f6a74dbf15a913d6171ce64db11e563121057e1e415d35c645626313e/aiohttp-3.0.3-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "93b8d5e448cf01b91ede9b05c312b26e", "sha256": "823cb717882eaaa07208ec8a03a5aedfcd1411b3d8bdb57a024c09f216a086c6" }, "downloads": -1, "filename": "aiohttp-3.0.3-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "93b8d5e448cf01b91ede9b05c312b26e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 364421, "upload_time": "2018-02-25T16:32:40", "upload_time_iso_8601": "2018-02-25T16:32:40.914477Z", "url": "https://files.pythonhosted.org/packages/e5/70/aa6b92787a560f4e44366664c0357b9fc027d3a6b56eb1f84400b594fb65/aiohttp-3.0.3-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b2834d9ffc1f4390b3106ba3682cfc5", "sha256": "ab90d06955c2d21a24d8fb3c96cdf6ecd1d06041380597bc03a17c453311f52c" }, "downloads": -1, "filename": "aiohttp-3.0.3-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3b2834d9ffc1f4390b3106ba3682cfc5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 627945, "upload_time": "2018-02-25T16:26:46", "upload_time_iso_8601": "2018-02-25T16:26:46.106644Z", "url": "https://files.pythonhosted.org/packages/59/56/4684922826f03d52b6dabe1702651b3cbd49bf4081649fdcc5eaa0107ab6/aiohttp-3.0.3-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "36744157b5a73fa6550950539faa7db2", "sha256": "f33efb12238e6a4a583f4aff470df7bca07e4df1b412eb469d85de248909eaa6" }, "downloads": -1, "filename": "aiohttp-3.0.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "36744157b5a73fa6550950539faa7db2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 656380, "upload_time": "2018-02-25T16:26:48", "upload_time_iso_8601": "2018-02-25T16:26:48.450219Z", "url": "https://files.pythonhosted.org/packages/46/e5/a12df28956be57f642cf1ee0abed49fffe1deb55b222081c576c97835be3/aiohttp-3.0.3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a32617129afd867302904632fe4fdc5a", "sha256": "981a1b84068516a2758ca6d5bb29eacef644bfb5fd29ddbdc25ba72fa26f946b" }, "downloads": -1, "filename": "aiohttp-3.0.3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "a32617129afd867302904632fe4fdc5a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 349023, "upload_time": "2018-02-25T15:51:18", "upload_time_iso_8601": "2018-02-25T15:51:18.581643Z", "url": "https://files.pythonhosted.org/packages/2f/b4/2df08750ec523b296e0d00375e3a971ee6ac2ff89d0ddd7920eb04845b11/aiohttp-3.0.3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "098d141942b2821fa2213702fbb58aed", "sha256": "8befe40664160afa721f4faa710ef0c84316c9478e86bbb3d6ec9f9c0a046bb3" }, "downloads": -1, "filename": "aiohttp-3.0.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "098d141942b2821fa2213702fbb58aed", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 360251, "upload_time": "2018-02-25T15:53:32", "upload_time_iso_8601": "2018-02-25T15:53:32.310814Z", "url": "https://files.pythonhosted.org/packages/fa/72/8141ff8edc3909cf86a49ffce2298704cea6378436b1894c3bf28b3c4d30/aiohttp-3.0.3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "812ac014ec012ac39e2696f45f3d9f7b", "sha256": "a96be9189b2d51e366106e4207c9afaf3d69462562548a613e399c311ff70b88" }, "downloads": -1, "filename": "aiohttp-3.0.3.tar.gz", "has_sig": false, "md5_digest": "812ac014ec012ac39e2696f45f3d9f7b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 737666, "upload_time": "2018-02-25T15:46:34", "upload_time_iso_8601": "2018-02-25T15:46:34.649808Z", "url": "https://files.pythonhosted.org/packages/f5/0d/e19609868a234695b31a8ee3f5dbfbadde1d9efde6b9150b5e31e1687ae6/aiohttp-3.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.4": [ { "comment_text": "", "digests": { "md5": "dd78789467c3a104aa54cb43eb1bac11", "sha256": "3d45689bab5782993c4b0ef736a7fa717e2ab8dbe1af762e1d4707ea23138026" }, "downloads": -1, "filename": "aiohttp-3.0.4-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "dd78789467c3a104aa54cb43eb1bac11", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 371251, "upload_time": "2018-02-26T15:11:20", "upload_time_iso_8601": "2018-02-26T15:11:20.808749Z", "url": "https://files.pythonhosted.org/packages/81/9e/a33dc22d92298d4bcb543b6129121af15f3d18db73d14af61af0315c1b5d/aiohttp-3.0.4-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6138eae40813b812e7303c498cbb2448", "sha256": "89abd841563e30a9c69a1e0844a397592390b86789691ca4c9c017eff36e3769" }, "downloads": -1, "filename": "aiohttp-3.0.4-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "6138eae40813b812e7303c498cbb2448", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 370236, "upload_time": "2018-02-26T15:20:36", "upload_time_iso_8601": "2018-02-26T15:20:36.102953Z", "url": "https://files.pythonhosted.org/packages/d5/22/91515f0cbbd1d3d78371b558fd079f6129aac645c48905d64201827d6da6/aiohttp-3.0.4-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3303df6a8d4435c2158b6e690c754a20", "sha256": "ceaa3057c6ee1a0ff7eca51315266e9cbae723b439d63d195479198db2d19b6c" }, "downloads": -1, "filename": "aiohttp-3.0.4-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "3303df6a8d4435c2158b6e690c754a20", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 363226, "upload_time": "2018-02-26T15:28:44", "upload_time_iso_8601": "2018-02-26T15:28:44.507285Z", "url": "https://files.pythonhosted.org/packages/17/41/e3e7e36f1b747fd7b08887d8007fedd5931a7f56d3feb90a9fab83de8bfb/aiohttp-3.0.4-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6d2ad4d2e7b7ec541f5271b6d7a224dc", "sha256": "461e48ef04939e6f197f7bf18c88ec1e54032d70f8cc55cf8c981be9c079d833" }, "downloads": -1, "filename": "aiohttp-3.0.4-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6d2ad4d2e7b7ec541f5271b6d7a224dc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 611959, "upload_time": "2018-02-26T15:17:55", "upload_time_iso_8601": "2018-02-26T15:17:55.494691Z", "url": "https://files.pythonhosted.org/packages/4c/43/1b27249db3ed7523f15c46ca6c0414dc0a254ad57cd21b30d4469fecd134/aiohttp-3.0.4-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d224fca0cdd0840a0db4153a290d988a", "sha256": "f60d7000b6f4ea75c0df463d0e4d9d1557272c63f4a73963925a2d88917ec0ec" }, "downloads": -1, "filename": "aiohttp-3.0.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d224fca0cdd0840a0db4153a290d988a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 640947, "upload_time": "2018-02-26T15:17:57", "upload_time_iso_8601": "2018-02-26T15:17:57.625749Z", "url": "https://files.pythonhosted.org/packages/29/a2/265dc2ee147208a9367783d97bb5c9edd68f3d2fccc2527fc32dcf7636fa/aiohttp-3.0.4-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b02fa556f5995614cd25cc44e004a932", "sha256": "200ac902b46b36e27e674e1c4eb2444feaa14c8b4b86b1c2a7bda8309dafd32a" }, "downloads": -1, "filename": "aiohttp-3.0.4-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "b02fa556f5995614cd25cc44e004a932", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 347474, "upload_time": "2018-02-26T13:40:02", "upload_time_iso_8601": "2018-02-26T13:40:02.988944Z", "url": "https://files.pythonhosted.org/packages/f7/5c/fdb8ecf3047a9b1066a67d02febdfed6917e3a2d9bc861dc3c91e338883c/aiohttp-3.0.4-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c911df376cda771080ece95f19cb86a", "sha256": "514b64521f54420c9fb7e81167fa437192cb233ff81a6a4d5d9e10f00262544c" }, "downloads": -1, "filename": "aiohttp-3.0.4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "8c911df376cda771080ece95f19cb86a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 358514, "upload_time": "2018-02-26T13:42:42", "upload_time_iso_8601": "2018-02-26T13:42:42.165474Z", "url": "https://files.pythonhosted.org/packages/75/b9/1762b524e3957d716367179277680eb7e5ef168b2548b58813048f690834/aiohttp-3.0.4-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eaa818745fa873cf979120edeea1b2a8", "sha256": "8284f3652055b929b4ea24528a9a4fe716b9c3bb5bf2fac7169cef6b563755e5" }, "downloads": -1, "filename": "aiohttp-3.0.4-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "eaa818745fa873cf979120edeea1b2a8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 373718, "upload_time": "2018-02-26T15:11:56", "upload_time_iso_8601": "2018-02-26T15:11:56.035228Z", "url": "https://files.pythonhosted.org/packages/73/51/1eb8f9e78939e4bb028782fa934573de5eebb72d833341da38f49da04bdc/aiohttp-3.0.4-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d1538cb642e02c438d3bac6239f51c6", "sha256": "b8a9b6e0830ddfd5fa76e13cda7586cc40505ea039d9dce9615e4615fb50122d" }, "downloads": -1, "filename": "aiohttp-3.0.4-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "0d1538cb642e02c438d3bac6239f51c6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 372587, "upload_time": "2018-02-26T15:21:06", "upload_time_iso_8601": "2018-02-26T15:21:06.932864Z", "url": "https://files.pythonhosted.org/packages/12/94/22a3ec1d4bcd2a752c0bd3ce34a012771188e37d8e0ae2fcf58ec3ab3c1d/aiohttp-3.0.4-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "53fdccf5b4b3d921e4c7346e6a7ebb7b", "sha256": "44671200fd8e2a7cf9f7c08ec959a1123fd4183d930927e73a032855ac611d96" }, "downloads": -1, "filename": "aiohttp-3.0.4-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "53fdccf5b4b3d921e4c7346e6a7ebb7b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 364555, "upload_time": "2018-02-26T15:29:09", "upload_time_iso_8601": "2018-02-26T15:29:09.200288Z", "url": "https://files.pythonhosted.org/packages/e4/e1/b98df3c7bdd1079c7963a9a9e6bf0679abf6d6effaada21c6d7786da3ee2/aiohttp-3.0.4-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2537b1e1769c6454f02a4338843038b6", "sha256": "a5ddd28a9f77283a10b8f1c2da01026111497b5c51bb04a8de3a997f3d438d33" }, "downloads": -1, "filename": "aiohttp-3.0.4-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2537b1e1769c6454f02a4338843038b6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 628075, "upload_time": "2018-02-26T15:17:59", "upload_time_iso_8601": "2018-02-26T15:17:59.644054Z", "url": "https://files.pythonhosted.org/packages/9d/e2/e6dd1046b11b21eee942b9d2e025d2a097e2615e4cff11f7df0e4802baa6/aiohttp-3.0.4-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "59263f49ecdb9b806ff3a1d966d471b1", "sha256": "2b9c7379ed147dd4d9e24784765f2acf1249d4ddbd69dfe6cc5a35639865e98d" }, "downloads": -1, "filename": "aiohttp-3.0.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "59263f49ecdb9b806ff3a1d966d471b1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 656500, "upload_time": "2018-02-26T15:18:02", "upload_time_iso_8601": "2018-02-26T15:18:02.577549Z", "url": "https://files.pythonhosted.org/packages/d3/84/181addffd241823bac97d58619fc2f936dd0265d1624d5346b7e6071722a/aiohttp-3.0.4-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1539615146daff12c6dbd6c84f50f187", "sha256": "32277f9378672e45e09ba0dc222cd17326ba1a62e3086103fba772d4c5d3e4b9" }, "downloads": -1, "filename": "aiohttp-3.0.4-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "1539615146daff12c6dbd6c84f50f187", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 349159, "upload_time": "2018-02-26T13:45:09", "upload_time_iso_8601": "2018-02-26T13:45:09.055971Z", "url": "https://files.pythonhosted.org/packages/d5/21/d73493899e8e7eba9b6acdc73245be3226e0633fa1b3e0e43947901259f7/aiohttp-3.0.4-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "322f45dd2a4f9dc2cd70c874400df5e4", "sha256": "813c8181118a121233839f8f9e84f9e6640e70b8ff3fe0a778b53931b1b39895" }, "downloads": -1, "filename": "aiohttp-3.0.4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "322f45dd2a4f9dc2cd70c874400df5e4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 360385, "upload_time": "2018-02-26T13:47:54", "upload_time_iso_8601": "2018-02-26T13:47:54.750441Z", "url": "https://files.pythonhosted.org/packages/b9/e3/c02932b4e7ab262564b19fc3f19eb9eda5f0b992c2caa33c3546bacfa52e/aiohttp-3.0.4-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f7b2333b277b93cefad94314ccf56d6f", "sha256": "6569b8850103595be10fcfa1fa911b01f876651921f52d769017b21d822e5dc3" }, "downloads": -1, "filename": "aiohttp-3.0.4.tar.gz", "has_sig": false, "md5_digest": "f7b2333b277b93cefad94314ccf56d6f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 737739, "upload_time": "2018-02-26T13:40:06", "upload_time_iso_8601": "2018-02-26T13:40:06.400126Z", "url": "https://files.pythonhosted.org/packages/56/f8/76b02134bd3f8812526c4fe86360c7671a3da29d41a2915764c551761825/aiohttp-3.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.5": [ { "comment_text": "", "digests": { "md5": "1a95b41b8d1d25ead06edb0daea26856", "sha256": "3e8a93e4cb25b929354d9c88c98ca87bef6c49cd03d375f2fb4f595172fc4d62" }, "downloads": -1, "filename": "aiohttp-3.0.5-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "1a95b41b8d1d25ead06edb0daea26856", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 371390, "upload_time": "2018-02-27T17:33:26", "upload_time_iso_8601": "2018-02-27T17:33:26.388798Z", "url": "https://files.pythonhosted.org/packages/36/c8/9402f434d556981cde37f93da0d3ca61612da4e1304976b292d71a940040/aiohttp-3.0.5-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b5a02c06dcedc2b4fe86b47d679e60da", "sha256": "1dd839c079d25c9b458101c3b79a16ed319c27d1fbb7a98ce8a90c60f05afc2e" }, "downloads": -1, "filename": "aiohttp-3.0.5-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "b5a02c06dcedc2b4fe86b47d679e60da", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 370377, "upload_time": "2018-02-27T17:48:35", "upload_time_iso_8601": "2018-02-27T17:48:35.967941Z", "url": "https://files.pythonhosted.org/packages/23/23/94a97fc531c0f0594f010e8b0537fc6ff06689aaefaa440fcefec403695c/aiohttp-3.0.5-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "799af67ec5be56b23383cfacc49cac76", "sha256": "9d874b9fa19858130c5538a12db0eadf4ea18724412bc03d78e21723202072a9" }, "downloads": -1, "filename": "aiohttp-3.0.5-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "799af67ec5be56b23383cfacc49cac76", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 363371, "upload_time": "2018-02-27T17:55:56", "upload_time_iso_8601": "2018-02-27T17:55:56.952289Z", "url": "https://files.pythonhosted.org/packages/b5/26/d2f4ab06a880d968ee1b209824e5ae6bb344394298cdd9df14c66d9ea988/aiohttp-3.0.5-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3337dfbecc5a5b219398eb6c281dfeff", "sha256": "0bcf2dced281db97ad6d16aefe6d846c4bc6cabf8f1bc7dd7868feb20fb039ea" }, "downloads": -1, "filename": "aiohttp-3.0.5-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3337dfbecc5a5b219398eb6c281dfeff", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 612087, "upload_time": "2018-02-27T17:35:56", "upload_time_iso_8601": "2018-02-27T17:35:56.960592Z", "url": "https://files.pythonhosted.org/packages/30/d3/4f6eab29b2a85d0d823a49a3e11b68f3ab6ec401d43c81d0440792fbb277/aiohttp-3.0.5-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "780331d971d4361dc20c36cb89edf745", "sha256": "e909d4bc3655c8857ae5120f7ab5172c0bf11c8afda7c0ea05e91ddebd213dc4" }, "downloads": -1, "filename": "aiohttp-3.0.5-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "780331d971d4361dc20c36cb89edf745", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 641120, "upload_time": "2018-02-27T17:35:58", "upload_time_iso_8601": "2018-02-27T17:35:58.830803Z", "url": "https://files.pythonhosted.org/packages/8b/6f/527283bf898328b1edadf1931658d2791195c2ee8439de6d25d5dc95ff6c/aiohttp-3.0.5-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e79fda23e117c0bd2e1172d83386745", "sha256": "cac147cab6ea173f234ce91e941241812bc7cb1d544e4893cebff314a012844a" }, "downloads": -1, "filename": "aiohttp-3.0.5-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "3e79fda23e117c0bd2e1172d83386745", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 347616, "upload_time": "2018-02-27T16:29:12", "upload_time_iso_8601": "2018-02-27T16:29:12.647828Z", "url": "https://files.pythonhosted.org/packages/71/71/f5f9d7a9f00912e20edced048f4706a8dc63ad198eec1b75cf1365f3613e/aiohttp-3.0.5-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "120ec9065b1e7e43c4888d6658fad967", "sha256": "16761ca659ce0609b76114a23f8f24c1f1e83e5cbfcd118fd29d6d3bd981fce0" }, "downloads": -1, "filename": "aiohttp-3.0.5-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "120ec9065b1e7e43c4888d6658fad967", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 358654, "upload_time": "2018-02-27T16:32:11", "upload_time_iso_8601": "2018-02-27T16:32:11.721772Z", "url": "https://files.pythonhosted.org/packages/08/b8/ffdba5edcfd21b1b027d7b743bd9bf0cc10d9704f823fe2ab5cc9793e822/aiohttp-3.0.5-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "32700b2ec90d05f36a32174fec1bf5dc", "sha256": "c44987443235468fce44be4059655311a59c1c0e8e5a2aeea38dc196d41c9c1d" }, "downloads": -1, "filename": "aiohttp-3.0.5-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "32700b2ec90d05f36a32174fec1bf5dc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 373861, "upload_time": "2018-02-27T17:32:52", "upload_time_iso_8601": "2018-02-27T17:32:52.955079Z", "url": "https://files.pythonhosted.org/packages/3b/c5/cc73529502016201348f2b79ad5f769600a4a5301ebcadbc6db15b954145/aiohttp-3.0.5-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a078df0ec637f950f74ae10cff5e52eb", "sha256": "286aa16fca37a81a6f48c1b60178592efead43acdc0fd0ff9588b216ea848f30" }, "downloads": -1, "filename": "aiohttp-3.0.5-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "a078df0ec637f950f74ae10cff5e52eb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 372734, "upload_time": "2018-02-27T17:49:41", "upload_time_iso_8601": "2018-02-27T17:49:41.916358Z", "url": "https://files.pythonhosted.org/packages/7b/e0/c020e28668c08e370e65e6a6bd6b46f5678aada226a940d1de7ee7a2dd91/aiohttp-3.0.5-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bebc9411a5b548f62ec9182c719be719", "sha256": "21f8499675437bf3a31724c360af7484bae840f0294c16d979f148343df01493" }, "downloads": -1, "filename": "aiohttp-3.0.5-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "bebc9411a5b548f62ec9182c719be719", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 364699, "upload_time": "2018-02-27T17:57:14", "upload_time_iso_8601": "2018-02-27T17:57:14.517449Z", "url": "https://files.pythonhosted.org/packages/5c/f2/ade3782b5a9c1d997b48d1eebae366ed98c8e72d4507b1964b24da0a1556/aiohttp-3.0.5-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e6f47f55af7572f94b4aab84ce009e6e", "sha256": "fcd0e1d1d765ba24b25c3524aad9baf9e812e0983922d2528f464b0ca98fd932" }, "downloads": -1, "filename": "aiohttp-3.0.5-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e6f47f55af7572f94b4aab84ce009e6e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 628225, "upload_time": "2018-02-27T17:36:00", "upload_time_iso_8601": "2018-02-27T17:36:00.535355Z", "url": "https://files.pythonhosted.org/packages/88/5e/57640755dde02bb50bc474cd25fbff7b158c85ac0efd58ccc256477f0d89/aiohttp-3.0.5-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43233992566dfa4523e8ffc12732f4a2", "sha256": "7cb40af76a01349e6ab84f577ffccbe4e22c738d9c5f400b3117dffcde422387" }, "downloads": -1, "filename": "aiohttp-3.0.5-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "43233992566dfa4523e8ffc12732f4a2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 656644, "upload_time": "2018-02-27T17:36:03", "upload_time_iso_8601": "2018-02-27T17:36:03.114307Z", "url": "https://files.pythonhosted.org/packages/c9/70/58c4d510c2efa78cfb7cdbdf9214ba708f352fed77b32c2fe3705e12fbba/aiohttp-3.0.5-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "51b2e8023b387d8e96471da06ac40d0b", "sha256": "1ec1a759831eca5aa20efb5023afebb915c43212635d50fad03e669a1b093ea6" }, "downloads": -1, "filename": "aiohttp-3.0.5-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "51b2e8023b387d8e96471da06ac40d0b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 349301, "upload_time": "2018-02-27T16:34:42", "upload_time_iso_8601": "2018-02-27T16:34:42.825897Z", "url": "https://files.pythonhosted.org/packages/ca/6a/0e792315e67575960479e50b7b3058d2fd6a0e4708dac0b80392a516d46c/aiohttp-3.0.5-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8257030db2c554975ec08baf8d97ec18", "sha256": "f0831139ee003f850eee06e345dd905f99d1b655e634f8af6f03fcdb7222d0bf" }, "downloads": -1, "filename": "aiohttp-3.0.5-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "8257030db2c554975ec08baf8d97ec18", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 360526, "upload_time": "2018-02-27T16:37:33", "upload_time_iso_8601": "2018-02-27T16:37:33.295868Z", "url": "https://files.pythonhosted.org/packages/9a/00/4501247999434ac070abd8b92f109ca717f5681d37f933defca12d15aa5a/aiohttp-3.0.5-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34e2ac3cd75dadb4b8663a14e7d7920c", "sha256": "bb873da531401416acb7045a8f0bdf6555e9c6866989cd977166fae3cbbb954b" }, "downloads": -1, "filename": "aiohttp-3.0.5.tar.gz", "has_sig": false, "md5_digest": "34e2ac3cd75dadb4b8663a14e7d7920c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 738000, "upload_time": "2018-02-27T16:29:14", "upload_time_iso_8601": "2018-02-27T16:29:14.620408Z", "url": "https://files.pythonhosted.org/packages/cc/59/f7cee429b1566f2071888893bb16e880f619fa629068a799aae050544b57/aiohttp-3.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.6": [ { "comment_text": "", "digests": { "md5": "b4d6bd4b9ecf23291bcd8656f98390a6", "sha256": "30205486843b8aa6933dea828f00c9fa41133788a0537d2a4c08fe2845761be7" }, "downloads": -1, "filename": "aiohttp-3.0.6-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "b4d6bd4b9ecf23291bcd8656f98390a6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 371502, "upload_time": "2018-03-05T00:31:15", "upload_time_iso_8601": "2018-03-05T00:31:15.523714Z", "url": "https://files.pythonhosted.org/packages/bf/b2/71c9be79d6fc33b1c8e81a9ce07a2f64ea094e6d44f86621d002a1569228/aiohttp-3.0.6-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d387e9dc4098a2d79845cefdbd50b48e", "sha256": "acb7299ac0b4c3b62fd6b5af680a20c698a2bfe757e3a58d8231575c99f6a10e" }, "downloads": -1, "filename": "aiohttp-3.0.6-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "d387e9dc4098a2d79845cefdbd50b48e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 370490, "upload_time": "2018-03-05T00:39:36", "upload_time_iso_8601": "2018-03-05T00:39:36.038375Z", "url": "https://files.pythonhosted.org/packages/80/83/450c8076c81d3cc3d7b80d58eacf64c733d4ec1980db007d43992a91469e/aiohttp-3.0.6-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e24aaa80cb2d4512a21577efa9c22d44", "sha256": "eb4abcea6ac950fbcd40ad59f85ef90e0a06c4b423038e0a1ea4daacf55e3b55" }, "downloads": -1, "filename": "aiohttp-3.0.6-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "e24aaa80cb2d4512a21577efa9c22d44", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 363483, "upload_time": "2018-03-05T00:46:43", "upload_time_iso_8601": "2018-03-05T00:46:43.448659Z", "url": "https://files.pythonhosted.org/packages/ce/09/a45bb58e70a5fa77de1562a1cc0ed49f7915e0f65329d9ab5427f1905024/aiohttp-3.0.6-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7462c84c1cf4525586c6444bb8356a48", "sha256": "46a75284e6b470cb0ac9cd1e5dca745426e344e504cab216fe34418ef7d2728e" }, "downloads": -1, "filename": "aiohttp-3.0.6-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7462c84c1cf4525586c6444bb8356a48", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 612186, "upload_time": "2018-03-05T00:40:19", "upload_time_iso_8601": "2018-03-05T00:40:19.383627Z", "url": "https://files.pythonhosted.org/packages/31/9e/1207b9304b116b791b5f8324a7b3ff57d6bc002fb21b2a1bb27fbf588b41/aiohttp-3.0.6-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c2661a2aa74ddea6c2fbc5e35a5a70b", "sha256": "19f07bfc0751f7cffe1e6e1edadc24bccca2832794baafdc485119a699ca8bdc" }, "downloads": -1, "filename": "aiohttp-3.0.6-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8c2661a2aa74ddea6c2fbc5e35a5a70b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 641196, "upload_time": "2018-03-05T00:40:21", "upload_time_iso_8601": "2018-03-05T00:40:21.313875Z", "url": "https://files.pythonhosted.org/packages/40/8c/7aa25b1f067b45a87bba2eee2db2c57ee5c23b94abccd924f948755e3af8/aiohttp-3.0.6-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0ff469d0bd8df5ada25e87c76698844", "sha256": "a6aaeddc2717fb458e53dafd639d77019ba4f295984f005958ad26b3ff0be76f" }, "downloads": -1, "filename": "aiohttp-3.0.6-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "e0ff469d0bd8df5ada25e87c76698844", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 347728, "upload_time": "2018-03-04T23:28:49", "upload_time_iso_8601": "2018-03-04T23:28:49.555888Z", "url": "https://files.pythonhosted.org/packages/52/7d/4a13e2a5fd917d364e1b79cefa8003ad008a0347aeaf5f743f656aa0c7e1/aiohttp-3.0.6-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "acf5ed11aada1de3df67f73394f16cec", "sha256": "aaa0c224afc606dff510f6ad0afc5e48a8e93ecd8c677ac73b83cba8190106e6" }, "downloads": -1, "filename": "aiohttp-3.0.6-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "acf5ed11aada1de3df67f73394f16cec", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 358768, "upload_time": "2018-03-04T23:31:25", "upload_time_iso_8601": "2018-03-04T23:31:25.834623Z", "url": "https://files.pythonhosted.org/packages/27/d9/105912861896a42cac73c9c9d65d9feff60bfca342d7cf21839456092600/aiohttp-3.0.6-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58c6ce816271a48ea242f8ac5bc03aab", "sha256": "49658926978391687b6deb3d3ce634d3387ebc1e2a0b826fe16cf8e67fec6970" }, "downloads": -1, "filename": "aiohttp-3.0.6-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "58c6ce816271a48ea242f8ac5bc03aab", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 373969, "upload_time": "2018-03-05T00:31:16", "upload_time_iso_8601": "2018-03-05T00:31:16.135639Z", "url": "https://files.pythonhosted.org/packages/3c/0c/8d1f0e5a29376802d0f5cf634ea3b3b05c841ed1e6c6ed565891c9b3c1ec/aiohttp-3.0.6-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9937aba19f601bafc8f500ec0fa3af64", "sha256": "d0b318b48b7f35ddda92ecc7da4103cd5f35641dc97a8edc52252cfc1762b025" }, "downloads": -1, "filename": "aiohttp-3.0.6-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "9937aba19f601bafc8f500ec0fa3af64", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 372842, "upload_time": "2018-03-05T00:40:51", "upload_time_iso_8601": "2018-03-05T00:40:51.654323Z", "url": "https://files.pythonhosted.org/packages/c5/c8/bfa77f7efb9f96a16d57f549555a66d9229d2675fcb47fb91c750697b679/aiohttp-3.0.6-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9583c56453872f79244a0d7c4704055c", "sha256": "c78701bb30a09428f10079082e2889b867e75ac38d4691f1be75247186284852" }, "downloads": -1, "filename": "aiohttp-3.0.6-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "9583c56453872f79244a0d7c4704055c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 364811, "upload_time": "2018-03-05T00:47:30", "upload_time_iso_8601": "2018-03-05T00:47:30.438618Z", "url": "https://files.pythonhosted.org/packages/3c/07/bd10ef9f75016f51315d059a5616ff7c80eea5752219b82146b48ee5fb62/aiohttp-3.0.6-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ecb7a000784747dab9699e47c42eed5", "sha256": "1807906fdb97d315347470787f9a8e712507b8d905c6414fc782659a49b88872" }, "downloads": -1, "filename": "aiohttp-3.0.6-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0ecb7a000784747dab9699e47c42eed5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 628329, "upload_time": "2018-03-05T00:40:23", "upload_time_iso_8601": "2018-03-05T00:40:23.387706Z", "url": "https://files.pythonhosted.org/packages/7c/1b/c555e62874ffb9db45df25249a81e1f478c6370bea8edeadcc3fefe19958/aiohttp-3.0.6-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1ba33e32e250d4bd3da0e6fb9da9e07c", "sha256": "22f2c138746ffcdff4e23f0b78f84ce70292a8fde57cf5628755de5ff83b48b9" }, "downloads": -1, "filename": "aiohttp-3.0.6-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1ba33e32e250d4bd3da0e6fb9da9e07c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 656767, "upload_time": "2018-03-05T00:40:25", "upload_time_iso_8601": "2018-03-05T00:40:25.481483Z", "url": "https://files.pythonhosted.org/packages/04/d5/a63b0aec6a7f31b792f43ce1111220fe8ce7ef9d67b886802c36e1a2b15d/aiohttp-3.0.6-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee5a251186ff2866b865ac3ce95b131e", "sha256": "ab8713c94b7ab560893f9a716e4acb3d701f77ec4a72d901cb2ab8155fc94ec1" }, "downloads": -1, "filename": "aiohttp-3.0.6-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "ee5a251186ff2866b865ac3ce95b131e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 349412, "upload_time": "2018-03-04T23:33:26", "upload_time_iso_8601": "2018-03-04T23:33:26.606044Z", "url": "https://files.pythonhosted.org/packages/ed/4b/4cc675ec37f0f371e41ce8a155b968a6c458068f8fccf85580f66ae257b5/aiohttp-3.0.6-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "53e128cd17f09b9abfc367c853cc5dca", "sha256": "0458f25f29348437117f03e04e2109a5bc7ed3125b51e9d094df2c0e42204d96" }, "downloads": -1, "filename": "aiohttp-3.0.6-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "53e128cd17f09b9abfc367c853cc5dca", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 360640, "upload_time": "2018-03-04T23:35:28", "upload_time_iso_8601": "2018-03-04T23:35:28.985203Z", "url": "https://files.pythonhosted.org/packages/5d/07/03ff033a45eb611fe2d2e5165620786ff8106e74d62e1207dbff85ca5e32/aiohttp-3.0.6-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cd85befc78bb54594974fb932dc3949c", "sha256": "5b588d21b454aaeaf2debf3c4a37f0752fb91a5c15b621deca7e8c49316154fe" }, "downloads": -1, "filename": "aiohttp-3.0.6.tar.gz", "has_sig": false, "md5_digest": "cd85befc78bb54594974fb932dc3949c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 738111, "upload_time": "2018-03-04T23:28:51", "upload_time_iso_8601": "2018-03-04T23:28:51.043702Z", "url": "https://files.pythonhosted.org/packages/32/39/3a2bb54a1061b32cb4b0ba585c873227e39c58754052c46c9493a0bf655e/aiohttp-3.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.7": [ { "comment_text": "", "digests": { "md5": "78e0660a5f2a333eb4c1a0e2947f2842", "sha256": "96adfed345c13499eb6af47d274bfe9ed164f3a6ad269c8635b5316c15a97b43" }, "downloads": -1, "filename": "aiohttp-3.0.7-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "78e0660a5f2a333eb4c1a0e2947f2842", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 371809, "upload_time": "2018-03-08T16:54:14", "upload_time_iso_8601": "2018-03-08T16:54:14.416474Z", "url": "https://files.pythonhosted.org/packages/1c/c1/2a940a807a071261c6cf27a58c7beb22ae24a66328fb7411de50b8c902ac/aiohttp-3.0.7-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "22022ce30026c560e109ea4bbeff6aad", "sha256": "a126abc5f8f3bcc3e95e12872a77054f501884035d8eecc64621ae61655daa87" }, "downloads": -1, "filename": "aiohttp-3.0.7-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "22022ce30026c560e109ea4bbeff6aad", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 370796, "upload_time": "2018-03-08T17:04:05", "upload_time_iso_8601": "2018-03-08T17:04:05.136803Z", "url": "https://files.pythonhosted.org/packages/83/ae/a155a0ebab8fa71eece082765a6c3b3ac7d079c85b67131c20b154aa105f/aiohttp-3.0.7-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7cb24385e14806e68b3df1d760505030", "sha256": "2eab0797219f8fa3f20bcc6c958e926c7e5d0ab21dd4f995fd3d7c758eca4f52" }, "downloads": -1, "filename": "aiohttp-3.0.7-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "7cb24385e14806e68b3df1d760505030", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 363785, "upload_time": "2018-03-08T17:13:02", "upload_time_iso_8601": "2018-03-08T17:13:02.382466Z", "url": "https://files.pythonhosted.org/packages/7c/7e/e6ae29a2d92fdd5d4c455216f40a69d331f03bb25b3fbd2dc9319580412b/aiohttp-3.0.7-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "48384d42281d6f65218fa3da53b84e09", "sha256": "f1d3d9d959aeb4b1938786e5f911bb1be6559353e8eaa117e2ad64270b9d2c9c" }, "downloads": -1, "filename": "aiohttp-3.0.7-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "48384d42281d6f65218fa3da53b84e09", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 612499, "upload_time": "2018-03-08T16:59:19", "upload_time_iso_8601": "2018-03-08T16:59:19.784878Z", "url": "https://files.pythonhosted.org/packages/87/75/5285b26f379ec10ec5bb86de40f9ad6edc6798f3b588d48d633fcbf9a75e/aiohttp-3.0.7-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "56fd4c3796a0d06e5f4518b8c863480b", "sha256": "97b891eb7d4db37f90cd8052fc97fabdb21432233463df69df389903ca5dd18f" }, "downloads": -1, "filename": "aiohttp-3.0.7-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "56fd4c3796a0d06e5f4518b8c863480b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 641524, "upload_time": "2018-03-08T16:59:21", "upload_time_iso_8601": "2018-03-08T16:59:21.801822Z", "url": "https://files.pythonhosted.org/packages/61/1e/8311436b09a75b8c45583d147e7e73075baf2ba3c36dfe47ea23dd384b57/aiohttp-3.0.7-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "74e5c6d411bd214aa307d6a78cb14ead", "sha256": "7207c758787acbd6a248f119e1b3002473b1cc6f9a15f3669dd393620dead46d" }, "downloads": -1, "filename": "aiohttp-3.0.7-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "74e5c6d411bd214aa307d6a78cb14ead", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 374279, "upload_time": "2018-03-08T16:54:15", "upload_time_iso_8601": "2018-03-08T16:54:15.093547Z", "url": "https://files.pythonhosted.org/packages/e6/2c/e589645db1c734f11611394c4d04372fbba84619943bb56bd9ddde9c8277/aiohttp-3.0.7-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d0732fc57d31c56c100540e7171ffedc", "sha256": "41149c06057fed6498d4b5892c3492be87c66b66eda609b26ae0fb941e361858" }, "downloads": -1, "filename": "aiohttp-3.0.7-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "d0732fc57d31c56c100540e7171ffedc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 373146, "upload_time": "2018-03-08T17:03:53", "upload_time_iso_8601": "2018-03-08T17:03:53.845497Z", "url": "https://files.pythonhosted.org/packages/a3/e2/f6e473a1d71505e4206f1c668bac6e5136d7781574fb4038cb4cea6c3952/aiohttp-3.0.7-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7be6e1fa8e13b934efedb1a34efc08f4", "sha256": "226d14ed9e9417a7bf0f5ce943ac907d441786e2dadb28b9501fb6913e7e7e57" }, "downloads": -1, "filename": "aiohttp-3.0.7-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "7be6e1fa8e13b934efedb1a34efc08f4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 365116, "upload_time": "2018-03-08T17:12:22", "upload_time_iso_8601": "2018-03-08T17:12:22.584017Z", "url": "https://files.pythonhosted.org/packages/8b/bb/1164f94f90d3d91de5b938250e8a462b2be9cd2dc0d987eefe410318fb03/aiohttp-3.0.7-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "443044aa4e0d2bc6b32bfef5444d93c2", "sha256": "c34d51fbc3210f781a82dd4314ca385aa07387ccb72fe294a4989d5ea629efba" }, "downloads": -1, "filename": "aiohttp-3.0.7-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "443044aa4e0d2bc6b32bfef5444d93c2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 628639, "upload_time": "2018-03-08T16:59:23", "upload_time_iso_8601": "2018-03-08T16:59:23.888235Z", "url": "https://files.pythonhosted.org/packages/f6/da/0a79428cb7d7fcaf264782027bbfb36cf86ae73a1df1897376e32b133be1/aiohttp-3.0.7-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9bbd6cdc9a402c247aa0aeccf6da4a72", "sha256": "9a636c99157248d4befb35bf6b4b2c423897269229c45f03578edc34a7c36c3f" }, "downloads": -1, "filename": "aiohttp-3.0.7-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9bbd6cdc9a402c247aa0aeccf6da4a72", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 657074, "upload_time": "2018-03-08T16:59:25", "upload_time_iso_8601": "2018-03-08T16:59:25.894142Z", "url": "https://files.pythonhosted.org/packages/d1/cb/b649cb41c4d213c9d8b2b7afcfd0bd34ec6fdeb298592f0c6d9664c96a53/aiohttp-3.0.7-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "453db8e2af661b1fb49807b46bca5099", "sha256": "e36958b86e62a5e144e01b3aa99bb5b8b42f249e388c43cc8756a5b86780c526" }, "downloads": -1, "filename": "aiohttp-3.0.7.tar.gz", "has_sig": false, "md5_digest": "453db8e2af661b1fb49807b46bca5099", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 747691, "upload_time": "2018-03-08T16:59:28", "upload_time_iso_8601": "2018-03-08T16:59:28.140705Z", "url": "https://files.pythonhosted.org/packages/78/3c/11446e88b2e3b3daab56504c831e6b77d109650628d6bc23980647aa6188/aiohttp-3.0.7.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.8": [ { "comment_text": "", "digests": { "md5": "7b47fee1345c3f8ea4050b5ecde45eaf", "sha256": "74de1b425f2a873136405100af5226274fa00845b91573a4131b863fa77e22d3" }, "downloads": -1, "filename": "aiohttp-3.0.8-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "7b47fee1345c3f8ea4050b5ecde45eaf", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 371927, "upload_time": "2018-03-13T09:30:47", "upload_time_iso_8601": "2018-03-13T09:30:47.597421Z", "url": "https://files.pythonhosted.org/packages/88/21/2b7ab3cc5c87c6710d65ffde66ba9fbd9759282fb55d7afc4ccd117cd931/aiohttp-3.0.8-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34d1f40c3a1747b9768cf5a86b54486c", "sha256": "2a99c2b4bace2b8052be8f949ad28654de65c76ac012d79a4ccfda32468bf7eb" }, "downloads": -1, "filename": "aiohttp-3.0.8-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "34d1f40c3a1747b9768cf5a86b54486c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 370916, "upload_time": "2018-03-13T09:34:35", "upload_time_iso_8601": "2018-03-13T09:34:35.311181Z", "url": "https://files.pythonhosted.org/packages/2f/55/5b42b5ad3a7a7d7d37f9c1b3ce73857c87a33060f7f5b8c4e113c51616b3/aiohttp-3.0.8-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9304e217eb6971d0483c40b98296c80b", "sha256": "af069a139ee4f0771c6398b7f4ad12de034712c074fc78f60c3f3f5336dc38a2" }, "downloads": -1, "filename": "aiohttp-3.0.8-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "9304e217eb6971d0483c40b98296c80b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 363905, "upload_time": "2018-03-13T09:42:05", "upload_time_iso_8601": "2018-03-13T09:42:05.668751Z", "url": "https://files.pythonhosted.org/packages/cb/22/fc3524524ae1e2495de44fc69b1b110a96d7dcaee7a516c16d605f6d99fe/aiohttp-3.0.8-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b37636c52e37818dfb0de51637ae6cb", "sha256": "1eca0e21df70a3f63d2e3e9b7639c0bd8d6382a7b088db14c0533c22d08999cd" }, "downloads": -1, "filename": "aiohttp-3.0.8-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6b37636c52e37818dfb0de51637ae6cb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 612626, "upload_time": "2018-03-13T09:31:03", "upload_time_iso_8601": "2018-03-13T09:31:03.043848Z", "url": "https://files.pythonhosted.org/packages/fb/dd/8679bd581f5809886f061fa7701712f88b41f55dcfc11d6c11e666bed3c0/aiohttp-3.0.8-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "33877aab15b087e1ffb85c9e4ab8d948", "sha256": "ae84be09faff5908db2cd19649afca7f61b287b6909586f27cdc1261ff3080fe" }, "downloads": -1, "filename": "aiohttp-3.0.8-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "33877aab15b087e1ffb85c9e4ab8d948", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 641622, "upload_time": "2018-03-13T09:31:05", "upload_time_iso_8601": "2018-03-13T09:31:05.622939Z", "url": "https://files.pythonhosted.org/packages/df/2e/418441c0c14aa8f30b3d2d6d88fb1fbb1704ad66c71af2d15143b5db3b50/aiohttp-3.0.8-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d95aac602a3b63d67255050838fdfa5", "sha256": "c91ff2bb4800bee4fd83108561f3ed9d127fc0a854252b02b9df22c87d95bcef" }, "downloads": -1, "filename": "aiohttp-3.0.8-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "1d95aac602a3b63d67255050838fdfa5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 348155, "upload_time": "2018-03-13T09:00:42", "upload_time_iso_8601": "2018-03-13T09:00:42.268107Z", "url": "https://files.pythonhosted.org/packages/cf/44/118d86f6d46266cfe691a16790165eb117e3390ecd98e892bd16d753e54e/aiohttp-3.0.8-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e3556391c39c67df74699fb8555415f2", "sha256": "f908c3888082625ce315151439f5f98fbd3bbd07446b8e14d36c8f48679b2166" }, "downloads": -1, "filename": "aiohttp-3.0.8-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "e3556391c39c67df74699fb8555415f2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 359195, "upload_time": "2018-03-13T09:03:17", "upload_time_iso_8601": "2018-03-13T09:03:17.891251Z", "url": "https://files.pythonhosted.org/packages/2c/9d/12e5aa2055b9b6135df470571ad7119613ae7f67eff3c510acf7c649ff80/aiohttp-3.0.8-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "16449cba2e2bfa92effcb84a4507ea21", "sha256": "235aa785d1615f83b607d9aff042644b6acc8661df87f4a78c45c7a16781678f" }, "downloads": -1, "filename": "aiohttp-3.0.8-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "16449cba2e2bfa92effcb84a4507ea21", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 373266, "upload_time": "2018-03-13T09:39:28", "upload_time_iso_8601": "2018-03-13T09:39:28.879822Z", "url": "https://files.pythonhosted.org/packages/66/b9/6821bbb626f6002ded6cdf864da6cca850d6ff9bc5c4972a1499cb7badaa/aiohttp-3.0.8-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e7dd7f435bf561160b2c68f93445432e", "sha256": "26b4ddf450a5781169b779c27804614dc217e5ef1a27cd8efbafb8557754da51" }, "downloads": -1, "filename": "aiohttp-3.0.8-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "e7dd7f435bf561160b2c68f93445432e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 365234, "upload_time": "2018-03-13T09:46:54", "upload_time_iso_8601": "2018-03-13T09:46:54.100637Z", "url": "https://files.pythonhosted.org/packages/ec/a5/eb8d88b8e53271d3c526de2f46fd7613564e7b35e16528cefbb8989a5509/aiohttp-3.0.8-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a2f1e9dd2b32059baef585fd48ab84ae", "sha256": "b411005eef5bf575c439883f42c0f3a562bc98123d4892f082b07e54f4305025" }, "downloads": -1, "filename": "aiohttp-3.0.8-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a2f1e9dd2b32059baef585fd48ab84ae", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 628772, "upload_time": "2018-03-13T09:31:08", "upload_time_iso_8601": "2018-03-13T09:31:08.395063Z", "url": "https://files.pythonhosted.org/packages/b3/85/d5ee14b7186b66e4ec4eb8b5588c9f346286ebaf72fe21b8e75137aa7ea1/aiohttp-3.0.8-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58d0e6c930d5c5bee14565e76b01e97b", "sha256": "8fef5141e525b71016b299eda7c93c8719e9d014ef495fd08260dee621c1387e" }, "downloads": -1, "filename": "aiohttp-3.0.8-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "58d0e6c930d5c5bee14565e76b01e97b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 657207, "upload_time": "2018-03-13T09:31:10", "upload_time_iso_8601": "2018-03-13T09:31:10.082540Z", "url": "https://files.pythonhosted.org/packages/3b/4e/d2a08858243bbf290b0d51c9063ad757cf2524a1896109e2f5cf43d53535/aiohttp-3.0.8-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c93a79fbce042404f31c2bd549c438c3", "sha256": "49c409ce1320483a11775368b642519347b9c36e59818f1cd82a23daa6fc3085" }, "downloads": -1, "filename": "aiohttp-3.0.8-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "c93a79fbce042404f31c2bd549c438c3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 349841, "upload_time": "2018-03-13T09:05:39", "upload_time_iso_8601": "2018-03-13T09:05:39.511864Z", "url": "https://files.pythonhosted.org/packages/31/b8/675c7332c1d8d6aa4c3d8dd13e4b4ee1866005ce1e346f796300e0c6c476/aiohttp-3.0.8-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ddc71b967fdc5e9cf61cea7f8fcb376b", "sha256": "754a10a14c54d029009ac9a1d158a73ac733bc65e2da81a87438b6c8e500bb7e" }, "downloads": -1, "filename": "aiohttp-3.0.8-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "ddc71b967fdc5e9cf61cea7f8fcb376b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 361067, "upload_time": "2018-03-13T09:08:09", "upload_time_iso_8601": "2018-03-13T09:08:09.497432Z", "url": "https://files.pythonhosted.org/packages/5e/6c/cf27e7970923ec3f579d5482ef3525c280d97b5bd0642dfe4191e4a4114d/aiohttp-3.0.8-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5429024365e70f85faa2c6c01ad8a7b0", "sha256": "09636b2788925ffab2e78fbfe44a1be8dd4dbc5de593d9b046b3842665554d32" }, "downloads": -1, "filename": "aiohttp-3.0.8.tar.gz", "has_sig": false, "md5_digest": "5429024365e70f85faa2c6c01ad8a7b0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 738489, "upload_time": "2018-03-13T09:00:44", "upload_time_iso_8601": "2018-03-13T09:00:44.843525Z", "url": "https://files.pythonhosted.org/packages/c9/5b/11cd4157b95a64b912fedf8ebe2cbda9b8b21c6a4b65f6656e63de2360c2/aiohttp-3.0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.9": [ { "comment_text": "", "digests": { "md5": "6c0c858c9257a456c3acca79b19ca073", "sha256": "35ecd993db827d59a67e6910ad29ee45e917b6d91e829936525e84e55a6ca9bf" }, "downloads": -1, "filename": "aiohttp-3.0.9-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "6c0c858c9257a456c3acca79b19ca073", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 372036, "upload_time": "2018-03-14T13:20:46", "upload_time_iso_8601": "2018-03-14T13:20:46.228214Z", "url": "https://files.pythonhosted.org/packages/5b/43/ee163b01121d6f57e61596a6c6b815a97b8cd45f923a6c0888b542693cef/aiohttp-3.0.9-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f7e8694291b077b0dca83036cf694388", "sha256": "5dcbbc6984f50e0df08e7ac179dc4d7dd8e5d7dc7900023da020fbfc60269844" }, "downloads": -1, "filename": "aiohttp-3.0.9-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "f7e8694291b077b0dca83036cf694388", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 371023, "upload_time": "2018-03-14T13:29:47", "upload_time_iso_8601": "2018-03-14T13:29:47.257676Z", "url": "https://files.pythonhosted.org/packages/9a/d1/2fcf8b7f99d0d978d4d126b72f9d22b4bca0316da41a8004350d328f08a2/aiohttp-3.0.9-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d8a360176afa9af6053f16d3045a926a", "sha256": "71edcf411a0498bfd9ff6d556c00de74b7e6d6d73bafc021fb3f6c086ee7c6c7" }, "downloads": -1, "filename": "aiohttp-3.0.9-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "d8a360176afa9af6053f16d3045a926a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 364013, "upload_time": "2018-03-14T13:37:13", "upload_time_iso_8601": "2018-03-14T13:37:13.792451Z", "url": "https://files.pythonhosted.org/packages/1b/b5/457e67a41854783ad2d5f2592ad033c5e4d60d5b0c402917e99821900546/aiohttp-3.0.9-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8a75f73af98f0f1c807c10985ef21822", "sha256": "0f117efd1f4cb7c65a879e1763e444e67a6b46a9a6c643a9a39448c5848d8b45" }, "downloads": -1, "filename": "aiohttp-3.0.9-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8a75f73af98f0f1c807c10985ef21822", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 612745, "upload_time": "2018-03-14T13:30:27", "upload_time_iso_8601": "2018-03-14T13:30:27.179842Z", "url": "https://files.pythonhosted.org/packages/0f/bc/e47110e9938c748f6a837823b74ab729c53ca2d54b93fa0f31295fff6f13/aiohttp-3.0.9-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0dff97a59da3c30ba0ca48ee7946f655", "sha256": "b7c8ef9fca5d3d017908c699da4f658a163706528bc4e7b03accb15f9021ff59" }, "downloads": -1, "filename": "aiohttp-3.0.9-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0dff97a59da3c30ba0ca48ee7946f655", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 641751, "upload_time": "2018-03-14T13:30:29", "upload_time_iso_8601": "2018-03-14T13:30:29.276498Z", "url": "https://files.pythonhosted.org/packages/f5/6e/384e5ed5711d5b5b67a1a9c6568aa19168cd9d414b071eb18eceb5f849cc/aiohttp-3.0.9-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb7e73250f351b3452673e070b48921c", "sha256": "1f6529ebaa5929d5bfe0855861d7eb1e29c7f826cb3a433d6e83d4cea9658f0d" }, "downloads": -1, "filename": "aiohttp-3.0.9-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "cb7e73250f351b3452673e070b48921c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 348265, "upload_time": "2018-03-14T12:48:23", "upload_time_iso_8601": "2018-03-14T12:48:23.600052Z", "url": "https://files.pythonhosted.org/packages/d8/6b/9e8abfe859eba1cbfa10818675a3fcd5444299832d6a274509bca1e00649/aiohttp-3.0.9-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b3fd5d15247b0a0ec6c4872eaeca702", "sha256": "eb83473ac6f30413bd2ec5990f91b163fe08a8a65e767ed752da894676dd8fb7" }, "downloads": -1, "filename": "aiohttp-3.0.9-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "9b3fd5d15247b0a0ec6c4872eaeca702", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 359303, "upload_time": "2018-03-14T12:51:16", "upload_time_iso_8601": "2018-03-14T12:51:16.889524Z", "url": "https://files.pythonhosted.org/packages/dc/31/50536ee2cf0acacac76ca2aae4946faad85d1fcecda9a2a7d2b9e8b9e9af/aiohttp-3.0.9-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dc5d7524001e55a34448feb1f5dd1153", "sha256": "998fd59943b9f8a84e3097fef71fd1059c3a7c0584c4fd0f3f8f44dabdea2ed4" }, "downloads": -1, "filename": "aiohttp-3.0.9-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "dc5d7524001e55a34448feb1f5dd1153", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 374505, "upload_time": "2018-03-14T13:21:06", "upload_time_iso_8601": "2018-03-14T13:21:06.855935Z", "url": "https://files.pythonhosted.org/packages/a7/ce/e19b3435f898c5702c5570ede22dbb5630b743c6c7b80f22636e70eb2bbc/aiohttp-3.0.9-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f4ef655c891eb87851aa76dab50026e", "sha256": "26405ca327865dbc6e5b9be19c5286732c0cecb48bf48219b9805c297fe37358" }, "downloads": -1, "filename": "aiohttp-3.0.9-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "5f4ef655c891eb87851aa76dab50026e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 373379, "upload_time": "2018-03-14T13:30:09", "upload_time_iso_8601": "2018-03-14T13:30:09.714919Z", "url": "https://files.pythonhosted.org/packages/4e/05/9c84f5e5d6ad67769e35561239d2e4d87782d70bd75d79b48aabed2e905e/aiohttp-3.0.9-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "be991d5c83ade69ff842e61e76e0bb77", "sha256": "8b780fc6230c5c412fcb77a1574af370e55f85765fa8fc7fa5450cba4353b29d" }, "downloads": -1, "filename": "aiohttp-3.0.9-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "be991d5c83ade69ff842e61e76e0bb77", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 365344, "upload_time": "2018-03-14T13:37:23", "upload_time_iso_8601": "2018-03-14T13:37:23.635001Z", "url": "https://files.pythonhosted.org/packages/e7/c4/44a482934176f65273e85a59ca0139c6e869e4a08a4a20184fd56060fd47/aiohttp-3.0.9-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f74c17bd9bf80132c162e8b0c684e60b", "sha256": "0c4bd9553116254c53077ff79fb80bf4abbadcbec049c7a3d3c145402dca55b4" }, "downloads": -1, "filename": "aiohttp-3.0.9-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f74c17bd9bf80132c162e8b0c684e60b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 628877, "upload_time": "2018-03-14T13:30:32", "upload_time_iso_8601": "2018-03-14T13:30:32.055941Z", "url": "https://files.pythonhosted.org/packages/b1/6f/ca2accc5bb744691279a664076102c005af94d6b9f1b58aeb45ac546c567/aiohttp-3.0.9-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e319779ecdc856e2283b931f6873b0d0", "sha256": "a390b660e1a8b11dcf806468b1d4867808123c57d2c367985b9a1625b7ce2834" }, "downloads": -1, "filename": "aiohttp-3.0.9-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e319779ecdc856e2283b931f6873b0d0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 657304, "upload_time": "2018-03-14T13:30:34", "upload_time_iso_8601": "2018-03-14T13:30:34.611602Z", "url": "https://files.pythonhosted.org/packages/48/f0/2270fa8267174a3f38d306425ae20f94b99f70ed3ea39791248b7c53f238/aiohttp-3.0.9-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "565fe45fb2af2b6a298ddc299a9dac4e", "sha256": "c81dfb439db6273041923d447e809a1260aa5e03ec0f47fdbae6a873fda6af3b" }, "downloads": -1, "filename": "aiohttp-3.0.9-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "565fe45fb2af2b6a298ddc299a9dac4e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 349948, "upload_time": "2018-03-14T12:53:33", "upload_time_iso_8601": "2018-03-14T12:53:33.703589Z", "url": "https://files.pythonhosted.org/packages/38/92/58119bad5b4f903962bee577e490f92ea7540b8399278fd0152ecb148556/aiohttp-3.0.9-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "51df29abeb60b075abbd4cb217e81569", "sha256": "1e2fd151d53e203d5269bfd5adae477de3737d970abeae848b3fc9a5da1a8ff0" }, "downloads": -1, "filename": "aiohttp-3.0.9-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "51df29abeb60b075abbd4cb217e81569", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 361177, "upload_time": "2018-03-14T12:56:04", "upload_time_iso_8601": "2018-03-14T12:56:04.398766Z", "url": "https://files.pythonhosted.org/packages/73/5b/94fb4bae44ae31c717c93bfdbbbe3244469069760921b02c34d8389ae53d/aiohttp-3.0.9-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d2bd26125a58a82f1b4ce4afd705f2a", "sha256": "281a9fa56b5ce587a2147ec285d18a224942f7e020581afa6cc44d7caecf937b" }, "downloads": -1, "filename": "aiohttp-3.0.9.tar.gz", "has_sig": false, "md5_digest": "8d2bd26125a58a82f1b4ce4afd705f2a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 738910, "upload_time": "2018-03-14T12:48:26", "upload_time_iso_8601": "2018-03-14T12:48:26.266315Z", "url": "https://files.pythonhosted.org/packages/aa/07/1e6a237d0847ae355eb5a5511aad5adcf8dac8e5fb42656bb14d063580d6/aiohttp-3.0.9.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "731a44eda0bf13e1c5007259afb9c82c", "sha256": "7e74f2f0c5c8c9da14ffd224dbdcef0b315201e3986f5b9961ea30f6d1754b1f" }, "downloads": -1, "filename": "aiohttp-3.1.0-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "731a44eda0bf13e1c5007259afb9c82c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 377456, "upload_time": "2018-03-21T14:57:51", "upload_time_iso_8601": "2018-03-21T14:57:51.928228Z", "url": "https://files.pythonhosted.org/packages/bc/a7/024776d9f7e756eced07b64cab49a1f7ce7ae1e9c0cbaea7ad8c4d59b543/aiohttp-3.1.0-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e08d5fa5dbaf3e463b89a72bb2ce1338", "sha256": "a66c36fd969336278ccb8398c891e268e9fb2ee9e5866433fa4e0b7436d747e7" }, "downloads": -1, "filename": "aiohttp-3.1.0-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "e08d5fa5dbaf3e463b89a72bb2ce1338", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 375571, "upload_time": "2018-03-21T15:11:59", "upload_time_iso_8601": "2018-03-21T15:11:59.607022Z", "url": "https://files.pythonhosted.org/packages/22/8f/c93d35493fb58cf058d774ae41611ef3fb242136bb244afe8c5c411a0136/aiohttp-3.1.0-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b99eff00107a79e5416face325d8867", "sha256": "04ec521058055b2501b5c31419c8bd6212e10785653834838981fcd234402364" }, "downloads": -1, "filename": "aiohttp-3.1.0-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "6b99eff00107a79e5416face325d8867", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 369566, "upload_time": "2018-03-21T15:19:16", "upload_time_iso_8601": "2018-03-21T15:19:16.722270Z", "url": "https://files.pythonhosted.org/packages/4b/06/6722b1a0a9bcac743012cf92379268111930e0f89834d2db52bdb9d32330/aiohttp-3.1.0-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c4d5cb71ee964e28432d194c4f956d06", "sha256": "9c68046dd6f986619942149b87e13e6be5272fbcb268d791dc8f2015eb9e30cc" }, "downloads": -1, "filename": "aiohttp-3.1.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c4d5cb71ee964e28432d194c4f956d06", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 621172, "upload_time": "2018-03-21T15:02:12", "upload_time_iso_8601": "2018-03-21T15:02:12.028659Z", "url": "https://files.pythonhosted.org/packages/97/1f/e537cf73ff41835404d53624f9b749cab766f1ee54a0d2d8f5d75b19d8c4/aiohttp-3.1.0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6371394e7c613216a360a357a4dd015", "sha256": "8fe4cb34b734377d1e64070a7eea50a3776dd9478f91722f4dbb1a57ff9e6d99" }, "downloads": -1, "filename": "aiohttp-3.1.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f6371394e7c613216a360a357a4dd015", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 644059, "upload_time": "2018-03-21T15:02:13", "upload_time_iso_8601": "2018-03-21T15:02:13.989028Z", "url": "https://files.pythonhosted.org/packages/ca/72/5b9516d2d94b0a28c465c84b098d7febcac1b446f5ded68d71a9845aad3a/aiohttp-3.1.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2a4ed6d0c9d8c10829897abd075c40ea", "sha256": "d69ead4d1a9ad02c4164cb3ff75b6e95793540517f9085430d25d521f50bcd1c" }, "downloads": -1, "filename": "aiohttp-3.1.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "2a4ed6d0c9d8c10829897abd075c40ea", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 353763, "upload_time": "2018-03-21T14:09:33", "upload_time_iso_8601": "2018-03-21T14:09:33.822476Z", "url": "https://files.pythonhosted.org/packages/cf/e8/a6ccd2b844e214dec1a269d8167ccc84b8dc8bc3a3aeb849ed6b8f05cbf0/aiohttp-3.1.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d82af1655326d3ba830aa96b4abc7459", "sha256": "3f197bcdc0a801ecfa48d2ed0a0a49842668da1cbec25745cf65da68f7e62069" }, "downloads": -1, "filename": "aiohttp-3.1.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "d82af1655326d3ba830aa96b4abc7459", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 365262, "upload_time": "2018-03-21T14:13:52", "upload_time_iso_8601": "2018-03-21T14:13:52.168594Z", "url": "https://files.pythonhosted.org/packages/ed/58/4f6b2beada2b9b6536ad9bb3b35f18b5f6083c5dea9714e01b841d2ebbc3/aiohttp-3.1.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "35f433a23f9acb8bab7870cc507fa351", "sha256": "b99c8286770bbec5f226786d453a4e5602a052843f0865735b22ac6be5c20972" }, "downloads": -1, "filename": "aiohttp-3.1.0-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "35f433a23f9acb8bab7870cc507fa351", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 380049, "upload_time": "2018-03-21T14:58:41", "upload_time_iso_8601": "2018-03-21T14:58:41.652688Z", "url": "https://files.pythonhosted.org/packages/d2/60/2f637741b112b03560e98c236e00f3afba943b19871272652bd1c5f7d06e/aiohttp-3.1.0-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "959672c4e7c4e7e7e614aed381361d96", "sha256": "b27f5f1d93dc05e25b3dc315ab76c7bd106fd0d58d4bb7ed0256e3a538300e65" }, "downloads": -1, "filename": "aiohttp-3.1.0-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "959672c4e7c4e7e7e614aed381361d96", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 378019, "upload_time": "2018-03-21T15:12:16", "upload_time_iso_8601": "2018-03-21T15:12:16.404911Z", "url": "https://files.pythonhosted.org/packages/30/ce/2c0810038fe33040dc666196989cac65f9d7fa56120169ce2707e1167f37/aiohttp-3.1.0-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d58ea85d964a2982a890a0c3b5e46127", "sha256": "73beb2efcce172af584ba233c4448f6860947aa81a4db8867bb8211124859777" }, "downloads": -1, "filename": "aiohttp-3.1.0-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "d58ea85d964a2982a890a0c3b5e46127", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 370534, "upload_time": "2018-03-21T15:23:16", "upload_time_iso_8601": "2018-03-21T15:23:16.323812Z", "url": "https://files.pythonhosted.org/packages/5e/18/e0db803fc886e31a2c5e94bdb3072235cb626f5f14da8d20dba279b7fc33/aiohttp-3.1.0-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e20ba7bbe07385193880189c0108f6cf", "sha256": "8d87c610dc8c762e2f9e5fbe127fd0e0e850cf36141db939788558a225596506" }, "downloads": -1, "filename": "aiohttp-3.1.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e20ba7bbe07385193880189c0108f6cf", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 635655, "upload_time": "2018-03-21T15:02:16", "upload_time_iso_8601": "2018-03-21T15:02:16.042068Z", "url": "https://files.pythonhosted.org/packages/8e/58/cd0748b9a8e645d9af905254dc1729289b869a82137ddab592b0192ebc55/aiohttp-3.1.0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e8a9e2bcb107d55edf36d5c922eee1e6", "sha256": "4f94b2b9e70a2e91e7ba2caf05c21251741af9db9c837e5ec874042bef34879a" }, "downloads": -1, "filename": "aiohttp-3.1.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e8a9e2bcb107d55edf36d5c922eee1e6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 657982, "upload_time": "2018-03-21T15:02:18", "upload_time_iso_8601": "2018-03-21T15:02:18.067175Z", "url": "https://files.pythonhosted.org/packages/ef/f4/cbca4466fcabd8c8e41c00a0d135288ce59ebfa35707614e4e7f1eefbcc0/aiohttp-3.1.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fd1c50edd12437b358d0af75ce56a212", "sha256": "c0c12ca08d97e5a19a4e65573eaee70d3d371f2f1a8059e5229684d3eef1d10c" }, "downloads": -1, "filename": "aiohttp-3.1.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "fd1c50edd12437b358d0af75ce56a212", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 355203, "upload_time": "2018-03-21T14:16:42", "upload_time_iso_8601": "2018-03-21T14:16:42.688903Z", "url": "https://files.pythonhosted.org/packages/f2/f9/ae4d4239d64ecfeadc453ad62f3d5a79d72b41f3e8bb1d60cc176bae7381/aiohttp-3.1.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dbc2cf6e2444fd60ec9b2fc5234347d8", "sha256": "feb57395cacf87cc4b621d4b4cf8eb2dfb0dc97b47e7443d2b3349dff4c3769e" }, "downloads": -1, "filename": "aiohttp-3.1.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "dbc2cf6e2444fd60ec9b2fc5234347d8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 367155, "upload_time": "2018-03-21T14:20:02", "upload_time_iso_8601": "2018-03-21T14:20:02.409452Z", "url": "https://files.pythonhosted.org/packages/27/a5/c40c5f65f737dc643d329047445217ecde65ee755dfe12d89b298adb3f50/aiohttp-3.1.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f3826ab5bd788dc8f5b37bb2a90e58a7", "sha256": "44373fee917bafe243aed7e4831eface7fa10dd54f7205f091d22c3bc6ae95e9" }, "downloads": -1, "filename": "aiohttp-3.1.0.tar.gz", "has_sig": false, "md5_digest": "f3826ab5bd788dc8f5b37bb2a90e58a7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 750257, "upload_time": "2018-03-21T14:09:35", "upload_time_iso_8601": "2018-03-21T14:09:35.681835Z", "url": "https://files.pythonhosted.org/packages/00/d8/5eec05dda8c20d49dadb893f1e9fa5ad78d1feec6d575c53af9f8688130b/aiohttp-3.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.1": [ { "comment_text": "", "digests": { "md5": "c66b477175bdf9506cbbdc9bfc03dee0", "sha256": "3da537d4cf64c23b69dafdae0fcfca173eedadac19271ea417e189a629c63258" }, "downloads": -1, "filename": "aiohttp-3.1.1-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "c66b477175bdf9506cbbdc9bfc03dee0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 378146, "upload_time": "2018-03-27T14:57:21", "upload_time_iso_8601": "2018-03-27T14:57:21.693374Z", "url": "https://files.pythonhosted.org/packages/a2/51/17aad7f3ee870c907dd43e515ea5a6e2bdfc384025363b9d5b80e5cd9004/aiohttp-3.1.1-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d5d1ed424105ed2ca69a6ab75a822db6", "sha256": "8d65a8033cafc0d0268de5a858465c819475f3467d456aab3fbe3912e298e717" }, "downloads": -1, "filename": "aiohttp-3.1.1-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "d5d1ed424105ed2ca69a6ab75a822db6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 376269, "upload_time": "2018-03-27T15:18:04", "upload_time_iso_8601": "2018-03-27T15:18:04.586176Z", "url": "https://files.pythonhosted.org/packages/c7/0f/7d8aa954e5bce26226231947eb3daf8b37980b674a7c2fe778f7f4ce1a29/aiohttp-3.1.1-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9fbdf9a291ecefa6afc1e61d95391212", "sha256": "42f0237a8314033e7dbb3ac83707bc5e5db28fc300a815d7088f8c52e599f0de" }, "downloads": -1, "filename": "aiohttp-3.1.1-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "9fbdf9a291ecefa6afc1e61d95391212", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 370254, "upload_time": "2018-03-27T15:40:03", "upload_time_iso_8601": "2018-03-27T15:40:03.135974Z", "url": "https://files.pythonhosted.org/packages/98/6e/8f09fb2c237798e87af1ac777613f7f658f6974effd219694e565df0d878/aiohttp-3.1.1-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "44b65c9d1cef5155eebdcf54b74dce15", "sha256": "1c052bce3eade41f6edf9ff3381051b809a88e65b66dcf2e05d34e9751652ee1" }, "downloads": -1, "filename": "aiohttp-3.1.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "44b65c9d1cef5155eebdcf54b74dce15", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 621870, "upload_time": "2018-03-27T14:52:16", "upload_time_iso_8601": "2018-03-27T14:52:16.888004Z", "url": "https://files.pythonhosted.org/packages/b0/b6/3014ff33e0b8cf8b39cc302341f630eafad40c173ca77c5751320ba7c14f/aiohttp-3.1.1-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6772ba9666dba0a64fe5c76ad647bf7c", "sha256": "c7ce03728c2fe5a47c72b45164f449b027903143ea720ebf379bc7c76b536d2e" }, "downloads": -1, "filename": "aiohttp-3.1.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6772ba9666dba0a64fe5c76ad647bf7c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 644764, "upload_time": "2018-03-27T14:52:18", "upload_time_iso_8601": "2018-03-27T14:52:18.579324Z", "url": "https://files.pythonhosted.org/packages/a4/15/3d71590909708cb111f910c6329649b1f57f9f7bc3a35d03c499467f385e/aiohttp-3.1.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb43f0f95ea92d88cdb18e7a65ffd348", "sha256": "67c5bf258adba7f57a30949e0a17c4708f98d91263a0c82da27ad37a8f60e3a9" }, "downloads": -1, "filename": "aiohttp-3.1.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "cb43f0f95ea92d88cdb18e7a65ffd348", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 354454, "upload_time": "2018-03-27T13:22:26", "upload_time_iso_8601": "2018-03-27T13:22:26.813588Z", "url": "https://files.pythonhosted.org/packages/5b/ec/cd3cca40c55cf9b50fc3ed146a7eb262fad16a8d55f46917ced87b93e603/aiohttp-3.1.1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b9a16f2e9a680e3b8f70dde3effd1c6", "sha256": "d4e6ec8b45ef7aa0bfe0f7f9703b36e62f72f752c286818cf543d44201df559b" }, "downloads": -1, "filename": "aiohttp-3.1.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "6b9a16f2e9a680e3b8f70dde3effd1c6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 365951, "upload_time": "2018-03-27T13:26:22", "upload_time_iso_8601": "2018-03-27T13:26:22.894509Z", "url": "https://files.pythonhosted.org/packages/e2/51/82ecf0fbff2859478c4ff59b2ecce7ffe531b02b772b9ca1afbd30307ce4/aiohttp-3.1.1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18fb97ef6db20901ad94298ea50ecb73", "sha256": "56c57f1e6e78b30509b8bc451bd24c4a96014fd874f853f9dbe5896287787bec" }, "downloads": -1, "filename": "aiohttp-3.1.1-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "18fb97ef6db20901ad94298ea50ecb73", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 380748, "upload_time": "2018-03-27T14:57:01", "upload_time_iso_8601": "2018-03-27T14:57:01.875068Z", "url": "https://files.pythonhosted.org/packages/09/19/4cf220072452cf7d3b3f6c9564c406c5852bb4ca9e79db14f3bda1427d53/aiohttp-3.1.1-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "469c50b2b1448fccb5dd269d7288bf77", "sha256": "ce6c816ff4ba694f15be0986c12c6200b63f56c3da4c75545cba7c86365e8413" }, "downloads": -1, "filename": "aiohttp-3.1.1-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "469c50b2b1448fccb5dd269d7288bf77", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 378706, "upload_time": "2018-03-27T15:18:14", "upload_time_iso_8601": "2018-03-27T15:18:14.435203Z", "url": "https://files.pythonhosted.org/packages/16/64/1e9011e1765b7aa0c86e4335f87f427ee4e66fa2aa5dd59efb62068e17a3/aiohttp-3.1.1-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "263bb6c86ddbf84b6fc0e5cb417e5035", "sha256": "389a05544589c0643f0c1ba485c8d5157eb182de4ad35d041f858832a0acb26d" }, "downloads": -1, "filename": "aiohttp-3.1.1-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "263bb6c86ddbf84b6fc0e5cb417e5035", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 371226, "upload_time": "2018-03-27T16:10:50", "upload_time_iso_8601": "2018-03-27T16:10:50.113591Z", "url": "https://files.pythonhosted.org/packages/49/37/a11e81314442e1c6045d0851deb2c8684795ac02f03845a993ef624d9a53/aiohttp-3.1.1-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ffaa4ea9c7470bfffd9751af050374f1", "sha256": "9559f4a69132b7aeb116c3ac8029f8bbae48e27292c4ef9c50e94cb872e6d0ce" }, "downloads": -1, "filename": "aiohttp-3.1.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ffaa4ea9c7470bfffd9751af050374f1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 636390, "upload_time": "2018-03-27T14:52:20", "upload_time_iso_8601": "2018-03-27T14:52:20.304488Z", "url": "https://files.pythonhosted.org/packages/a7/d2/2dc567aa193ad2f5beb3caa60538ec4912efa828062a4eaedd684c20c7cd/aiohttp-3.1.1-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ef7f2b6c0718a0fb59f0484476e08dd", "sha256": "a95add5d4305bf30ed624b171cc91bba61b57b22976b8b30930d511a34d05557" }, "downloads": -1, "filename": "aiohttp-3.1.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4ef7f2b6c0718a0fb59f0484476e08dd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 658697, "upload_time": "2018-03-27T14:52:22", "upload_time_iso_8601": "2018-03-27T14:52:22.085499Z", "url": "https://files.pythonhosted.org/packages/17/87/b8ac32d5bdda906236bbf7a543d3910a240cbc1cb9dd7ce75c979ada5735/aiohttp-3.1.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "96923a06892ba58bca00617bfed6ad83", "sha256": "a6943101e13106f91d6175dd96bd9097ebbc076799f553e2f8ffc1b811dd190f" }, "downloads": -1, "filename": "aiohttp-3.1.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "96923a06892ba58bca00617bfed6ad83", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 355891, "upload_time": "2018-03-27T13:28:49", "upload_time_iso_8601": "2018-03-27T13:28:49.037742Z", "url": "https://files.pythonhosted.org/packages/e9/e6/336dda9264fe5fed2c1dfefced4c83b4efd241e5cf146da87488685b2669/aiohttp-3.1.1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f9327db49db7867175f9947ad3238d3", "sha256": "228ff9359f9dab15f93d9df6623fab495222d96724dca7c5e4852d42b1bac439" }, "downloads": -1, "filename": "aiohttp-3.1.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "5f9327db49db7867175f9947ad3238d3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 367848, "upload_time": "2018-03-27T13:31:56", "upload_time_iso_8601": "2018-03-27T13:31:56.697596Z", "url": "https://files.pythonhosted.org/packages/62/39/19c93c453494d9f28e5a5540068106d4e009d0e0b2ca3d411dedefe99581/aiohttp-3.1.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f88b92670286874c77b4648906ac8d4", "sha256": "dc5cab081d4b334d0440b019edf24fe1cb138b8114e0e22d2b0661284bc1775f" }, "downloads": -1, "filename": "aiohttp-3.1.1.tar.gz", "has_sig": false, "md5_digest": "3f88b92670286874c77b4648906ac8d4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 751487, "upload_time": "2018-03-27T13:22:28", "upload_time_iso_8601": "2018-03-27T13:22:28.279417Z", "url": "https://files.pythonhosted.org/packages/53/8a/c93662973020eaad14c9695b80fcbf9d0e23f9a557474089f2dc526650f5/aiohttp-3.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.2": [ { "comment_text": "", "digests": { "md5": "c4fb022784a17510fe68f3b04560f502", "sha256": "4f1d7344ec730333df454c71f0ec6e0f095d89afb5a744e230d7834cadc429dd" }, "downloads": -1, "filename": "aiohttp-3.1.2-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "c4fb022784a17510fe68f3b04560f502", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 374442, "upload_time": "2018-04-05T21:28:21", "upload_time_iso_8601": "2018-04-05T21:28:21.908106Z", "url": "https://files.pythonhosted.org/packages/f3/8d/5f8e5a58a4487e119b2ccc8be4ca2ed4b81a8ee381c77303a7f908eed95e/aiohttp-3.1.2-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "600cbdcec073af7106cafc8f3e4a73e6", "sha256": "efd24e6a55f6069994a5696232bc80a194d5a39da4518fdb63a4e91bc5c19d8d" }, "downloads": -1, "filename": "aiohttp-3.1.2-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "600cbdcec073af7106cafc8f3e4a73e6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 372629, "upload_time": "2018-04-05T21:37:23", "upload_time_iso_8601": "2018-04-05T21:37:23.786248Z", "url": "https://files.pythonhosted.org/packages/d8/8b/2d7e5a2b825b76d5d22550d98ac23ac64ec36f08b407994f2ad908dc1186/aiohttp-3.1.2-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8b6ecaf31bf9baa922d1313101a8afc0", "sha256": "e82d04847504a6ad78442c950482756365115a34ecc4652a9d271f57ba76dbfb" }, "downloads": -1, "filename": "aiohttp-3.1.2-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "8b6ecaf31bf9baa922d1313101a8afc0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 366596, "upload_time": "2018-04-05T21:44:53", "upload_time_iso_8601": "2018-04-05T21:44:53.775372Z", "url": "https://files.pythonhosted.org/packages/c9/4d/b7cd21286ed3f38f77233a91a8ae347c916324922c031a14d9eefd044e38/aiohttp-3.1.2-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9837ed9fc7376eeaf07393a1ef236361", "sha256": "bfd396faa20a464c9b7d5973def3b912bf39d40bbc7a177402cf3fb086ac0c34" }, "downloads": -1, "filename": "aiohttp-3.1.2-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "9837ed9fc7376eeaf07393a1ef236361", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 623820, "upload_time": "2018-04-05T21:36:29", "upload_time_iso_8601": "2018-04-05T21:36:29.402000Z", "url": "https://files.pythonhosted.org/packages/09/70/834a39aee571e726d68ea2c01d880bb958a5ff4aa2899cf45bc80993a6b0/aiohttp-3.1.2-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fb2d8f75be073ed226bcdb68a99db231", "sha256": "13dcc9f7d365a1224c3b4ba1f7d8ec5dfa78d263d3d317e0c40a79bdb01eda8f" }, "downloads": -1, "filename": "aiohttp-3.1.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fb2d8f75be073ed226bcdb68a99db231", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 646915, "upload_time": "2018-04-05T21:36:31", "upload_time_iso_8601": "2018-04-05T21:36:31.088955Z", "url": "https://files.pythonhosted.org/packages/44/9a/e3d05a901ac14f317c63ac8a719038617ca6c723ea3a5855a38b278fd7a2/aiohttp-3.1.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "abb03c39c9c131458350bbe909afd299", "sha256": "efa3f148891ec17630cd951ce76835d2158925dd22af0a1e5c20b929550a49f3" }, "downloads": -1, "filename": "aiohttp-3.1.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "abb03c39c9c131458350bbe909afd299", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 350593, "upload_time": "2018-04-05T20:38:50", "upload_time_iso_8601": "2018-04-05T20:38:50.783004Z", "url": "https://files.pythonhosted.org/packages/6d/10/5b1633e5cd849ee87e1fd79e64e1af031c0e6a96d9eddd922072d0ebf93e/aiohttp-3.1.2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cc248212b1d6b9aae8fa75d7606dcaea", "sha256": "d8a28fa338637837c764f956728280d0df16145b118b51cbca10327209f800e0" }, "downloads": -1, "filename": "aiohttp-3.1.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "cc248212b1d6b9aae8fa75d7606dcaea", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 362183, "upload_time": "2018-04-05T20:42:34", "upload_time_iso_8601": "2018-04-05T20:42:34.181419Z", "url": "https://files.pythonhosted.org/packages/0d/55/21c55d7aa95559bc3f790cf31b761761c4cc2763ec22acb01a5940a638ba/aiohttp-3.1.2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "953f826aea16e33a9703abb3c30def56", "sha256": "f1c5f4429d1af999ffb9680158269e84ef1ea928cb538f406f411b064b9372d1" }, "downloads": -1, "filename": "aiohttp-3.1.2-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "953f826aea16e33a9703abb3c30def56", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 377003, "upload_time": "2018-04-05T21:28:20", "upload_time_iso_8601": "2018-04-05T21:28:20.088483Z", "url": "https://files.pythonhosted.org/packages/8b/f5/96800ecd82d08f1150ff05f5f4881106106eb551008ea1442d4ba6c5755f/aiohttp-3.1.2-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe609ce07c03ffdc4361dd506eecd848", "sha256": "caac911c1adfa8998f31860460a210cdc14f63c834a75514d8ccfb7b42356169" }, "downloads": -1, "filename": "aiohttp-3.1.2-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "fe609ce07c03ffdc4361dd506eecd848", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 374956, "upload_time": "2018-04-05T21:37:15", "upload_time_iso_8601": "2018-04-05T21:37:15.272319Z", "url": "https://files.pythonhosted.org/packages/28/e3/dfc74f37ffb7f1adf7f747f14421b783a2730b71a5b4467ef5ea6ef931a5/aiohttp-3.1.2-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d6033cdbc9e2ecd2bcf152b2e37eaf8f", "sha256": "e3b9f55baa2f4fec2c28128f83fce65afeccca3ea34fda5b047f22b7c3d852ce" }, "downloads": -1, "filename": "aiohttp-3.1.2-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "d6033cdbc9e2ecd2bcf152b2e37eaf8f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 367349, "upload_time": "2018-04-05T21:44:47", "upload_time_iso_8601": "2018-04-05T21:44:47.026988Z", "url": "https://files.pythonhosted.org/packages/bb/b9/6d67b7137ee2959de62b91c70b8124b6bc7e15b4e07508a3063d5b9851d8/aiohttp-3.1.2-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b33a737683a5804242f8fd26cfb44c5", "sha256": "aa88fa069569d252fe2eb09618868a5f2540065c1e2380a95b77a74e3f334af2" }, "downloads": -1, "filename": "aiohttp-3.1.2-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5b33a737683a5804242f8fd26cfb44c5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 638468, "upload_time": "2018-04-05T21:36:32", "upload_time_iso_8601": "2018-04-05T21:36:32.560099Z", "url": "https://files.pythonhosted.org/packages/60/26/5404e25dab239eb7c76c8dcaad4cc73ce7b9fb0a46f86efe24119fec68fc/aiohttp-3.1.2-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9f91079570b44af0fe5a1916f3e20743", "sha256": "1d931839a6ae45ea02aa92f05dc68d67fa441a1c53fc1c1b8d01976f1b7276e4" }, "downloads": -1, "filename": "aiohttp-3.1.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9f91079570b44af0fe5a1916f3e20743", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 660902, "upload_time": "2018-04-05T21:36:34", "upload_time_iso_8601": "2018-04-05T21:36:34.086521Z", "url": "https://files.pythonhosted.org/packages/a1/42/5fb97cb28ed4e1d38a4c4f78a39c3bc8bcdfa6e274949c9cf7bd9a65de32/aiohttp-3.1.2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ac22c22e8fbf1f0e966332369192e02", "sha256": "3208fbf10f7d6b65d80dbd5592f2ec5483651cc61781a20a23c8fdeef8de6d3a" }, "downloads": -1, "filename": "aiohttp-3.1.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "9ac22c22e8fbf1f0e966332369192e02", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 352050, "upload_time": "2018-04-05T20:45:28", "upload_time_iso_8601": "2018-04-05T20:45:28.134812Z", "url": "https://files.pythonhosted.org/packages/3a/bf/2a8947b53c0a90a401a53abd97a8553bc2d72de74bc9b8c9325687869c46/aiohttp-3.1.2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ef74efd5e70ed5a4e738eb5e6b8f31e", "sha256": "78b8d80546e0ad09c0b88c38db9c418f63b0912dccc85667e367e853932bad16" }, "downloads": -1, "filename": "aiohttp-3.1.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "0ef74efd5e70ed5a4e738eb5e6b8f31e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 363918, "upload_time": "2018-04-05T20:48:45", "upload_time_iso_8601": "2018-04-05T20:48:45.136514Z", "url": "https://files.pythonhosted.org/packages/d3/fd/722f191a44de94711dec538f08c063f0e3b7565cbc3235d7c4da19cdcda5/aiohttp-3.1.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c8034d6f1714d0ad92b5b5361292dae8", "sha256": "df49fe4452a942e0031174c78917f9926d122d4603bf56bae4591639f2a3dc6a" }, "downloads": -1, "filename": "aiohttp-3.1.2.tar.gz", "has_sig": false, "md5_digest": "c8034d6f1714d0ad92b5b5361292dae8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 752744, "upload_time": "2018-04-05T20:38:52", "upload_time_iso_8601": "2018-04-05T20:38:52.286475Z", "url": "https://files.pythonhosted.org/packages/fa/24/8f03b4d839730bf621b57f51d70c5602b9ea6598c01d6aafe786f41fecff/aiohttp-3.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.3": [ { "comment_text": "", "digests": { "md5": "867b282e8ce3e323a6dde66bd2d211f3", "sha256": "98f0172f7760597b636431b7651f020b8dba6a816b2d7e263afa54a4f2f4d0a6" }, "downloads": -1, "filename": "aiohttp-3.1.3-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "867b282e8ce3e323a6dde66bd2d211f3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 374639, "upload_time": "2018-04-13T10:48:43", "upload_time_iso_8601": "2018-04-13T10:48:43.178034Z", "url": "https://files.pythonhosted.org/packages/9b/09/76e671f271a886e16c6361f1bb41ec5a8033fd8fa7c87110d90a51e0af80/aiohttp-3.1.3-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ec00b344d254f1fd08c287b4f91af96", "sha256": "f883507d537a838d496755a14a41f2c34c7af5f39d7627e15d6b2a27578705b7" }, "downloads": -1, "filename": "aiohttp-3.1.3-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "2ec00b344d254f1fd08c287b4f91af96", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 372834, "upload_time": "2018-04-13T10:56:44", "upload_time_iso_8601": "2018-04-13T10:56:44.313349Z", "url": "https://files.pythonhosted.org/packages/19/e2/8cba3438caaab3060557550b54e77f42abbabf80b00623ac897dad506842/aiohttp-3.1.3-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e185001a9a7490f3fe227c08b9f8c97a", "sha256": "390c1a2c7799519b3755a6e3f660842c3b1544e92a10ecd309ea97ce5c8c713d" }, "downloads": -1, "filename": "aiohttp-3.1.3-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "e185001a9a7490f3fe227c08b9f8c97a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 366802, "upload_time": "2018-04-13T11:03:21", "upload_time_iso_8601": "2018-04-13T11:03:21.516917Z", "url": "https://files.pythonhosted.org/packages/f4/cf/7a068026c7dfd7f963fce6cbcd923b54acb7e4d1adf0a15bf4178002b19d/aiohttp-3.1.3-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b1eeafd830b1200c4a784c02d4e1333", "sha256": "25983293a073ae530bd4027fb82a9f16fcfe48335873582946d2dc3ed64337f0" }, "downloads": -1, "filename": "aiohttp-3.1.3-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6b1eeafd830b1200c4a784c02d4e1333", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 624171, "upload_time": "2018-04-13T10:59:18", "upload_time_iso_8601": "2018-04-13T10:59:18.783583Z", "url": "https://files.pythonhosted.org/packages/75/6e/fa14df8e2ba3135143ad2e7e4a7138d7b331e50009bd2600ddb2af30a5bb/aiohttp-3.1.3-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "764d48fa8c35dd10d88ea3e1644e4a0a", "sha256": "c7a55a2bf7433ddf753ed46cf5a733c787524a41b933799541075dd8db9ead1b" }, "downloads": -1, "filename": "aiohttp-3.1.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "764d48fa8c35dd10d88ea3e1644e4a0a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 647249, "upload_time": "2018-04-13T10:59:20", "upload_time_iso_8601": "2018-04-13T10:59:20.326624Z", "url": "https://files.pythonhosted.org/packages/12/85/863f2697ab633bd83587c99a306a14a2e87ce48e60d31c66d836672fe644/aiohttp-3.1.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d76efe3800e2c72abf0458d058b0e37", "sha256": "33630a2dc90fee1e05bd1b57cde51d65b571c61494a1a91772c8bc0896acb5c8" }, "downloads": -1, "filename": "aiohttp-3.1.3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "1d76efe3800e2c72abf0458d058b0e37", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 350794, "upload_time": "2018-04-13T10:03:33", "upload_time_iso_8601": "2018-04-13T10:03:33.739885Z", "url": "https://files.pythonhosted.org/packages/0f/33/cf831fd0b731ee859b2b49ad6b78072b90c89f97601f96e7f6d79d17590d/aiohttp-3.1.3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fb20055d73201de8d6b0d36e1162ee05", "sha256": "bc50ec0dd5887844653ce5d2dd5dab93fd2e2af44d4be65d6d5306fb4039f2bf" }, "downloads": -1, "filename": "aiohttp-3.1.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "fb20055d73201de8d6b0d36e1162ee05", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 362387, "upload_time": "2018-04-13T10:06:40", "upload_time_iso_8601": "2018-04-13T10:06:40.988766Z", "url": "https://files.pythonhosted.org/packages/5c/d4/457807f84af32135bd6c351ba14258a7b6fb7cbbaba9550965db16672fc4/aiohttp-3.1.3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b67689fcbc4a24b183c67fecf6ad2a28", "sha256": "feb271ced50b689b2e4d969a5bfb0a1cfd0cc05dd11cdde4e42d93e009e0b900" }, "downloads": -1, "filename": "aiohttp-3.1.3-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "b67689fcbc4a24b183c67fecf6ad2a28", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 377203, "upload_time": "2018-04-13T10:48:41", "upload_time_iso_8601": "2018-04-13T10:48:41.248243Z", "url": "https://files.pythonhosted.org/packages/29/7c/d34d416947409d07a890cced069964d06042964d578b65fc3321d5fe388b/aiohttp-3.1.3-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e99fd55dbb2b91c037894824b8916433", "sha256": "aeb5f0ef22896122fa5a84bf37202d3f6ee2404f12176608259bc408509f4883" }, "downloads": -1, "filename": "aiohttp-3.1.3-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "e99fd55dbb2b91c037894824b8916433", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 375158, "upload_time": "2018-04-13T10:56:51", "upload_time_iso_8601": "2018-04-13T10:56:51.756577Z", "url": "https://files.pythonhosted.org/packages/08/23/650cc311586ea40082d7e8e55d338abdebb4e927563ef1ed66dbbf87794d/aiohttp-3.1.3-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "40230d8b5fa6a3d7db32a5d39d721de5", "sha256": "b03578ad3f5ba6fa8b8614bd3628c4c33de92bd23af95ebd8f4de66bac35d3d8" }, "downloads": -1, "filename": "aiohttp-3.1.3-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "40230d8b5fa6a3d7db32a5d39d721de5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 367557, "upload_time": "2018-04-13T11:03:32", "upload_time_iso_8601": "2018-04-13T11:03:32.844713Z", "url": "https://files.pythonhosted.org/packages/a4/d7/e7bce7efe8500f7ea3692fb1b73aa0a6f640b3729f950887aea0f2a4e723/aiohttp-3.1.3-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6614a7ebd8379e41c69a821309c47f59", "sha256": "5c5de2bc5004c2c60e5f256978ad711c1fb4dca00890ac7884ed92c6aa520608" }, "downloads": -1, "filename": "aiohttp-3.1.3-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6614a7ebd8379e41c69a821309c47f59", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 638802, "upload_time": "2018-04-13T10:59:22", "upload_time_iso_8601": "2018-04-13T10:59:22.069247Z", "url": "https://files.pythonhosted.org/packages/90/dd/8fd2feaa123dccc547affa54d73f15eb464ef8bdebbe3ad21bdfbce7daaa/aiohttp-3.1.3-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e1aee3099239b6efc4129fe8a55844b4", "sha256": "52fcb205ab8a43ddaf182c928f84e998a02213139b2b2636a26249569d9518bd" }, "downloads": -1, "filename": "aiohttp-3.1.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e1aee3099239b6efc4129fe8a55844b4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 661226, "upload_time": "2018-04-13T10:59:23", "upload_time_iso_8601": "2018-04-13T10:59:23.730333Z", "url": "https://files.pythonhosted.org/packages/09/7f/95e1f38eb778c76b1d5f008efc9f3d648dadd22275497a038ee0844dcd62/aiohttp-3.1.3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cfb1fc1ac99ac5f6c3d4e1780a43477f", "sha256": "65b61cec34628c5a2e047f93555d93c29f4e29169839b421f62206b9f317f7ae" }, "downloads": -1, "filename": "aiohttp-3.1.3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "cfb1fc1ac99ac5f6c3d4e1780a43477f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 352248, "upload_time": "2018-04-13T10:09:16", "upload_time_iso_8601": "2018-04-13T10:09:16.055640Z", "url": "https://files.pythonhosted.org/packages/96/cb/3d83e3dea4b937729645f8390d78d7b71c57a4d7afaf4939641453949435/aiohttp-3.1.3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4aa7f951aa06419922e3698ca91643c", "sha256": "1a3cee4cd10de0ce6c37d7a35f437baa70ca87272a0ccd3d3e1a0383de2f189a" }, "downloads": -1, "filename": "aiohttp-3.1.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "d4aa7f951aa06419922e3698ca91643c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 364120, "upload_time": "2018-04-13T10:12:01", "upload_time_iso_8601": "2018-04-13T10:12:01.986190Z", "url": "https://files.pythonhosted.org/packages/94/04/3d80ada0a48cd7985a4a00ea273e6a0af6f221c764edeac442f11b1bf8f1/aiohttp-3.1.3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "973b1b845a5f91e90403e1978c898068", "sha256": "9fcef0489e3335b200d31a9c1fb6ba80fdafe14cd82b971168c2f9fa1e4508ad" }, "downloads": -1, "filename": "aiohttp-3.1.3.tar.gz", "has_sig": false, "md5_digest": "973b1b845a5f91e90403e1978c898068", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 756886, "upload_time": "2018-04-13T10:03:40", "upload_time_iso_8601": "2018-04-13T10:03:40.469133Z", "url": "https://files.pythonhosted.org/packages/d1/01/70773afaf252a17a4fceb6a3ac815d2a490d67226832b05eaf0f49d6ac50/aiohttp-3.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.0": [ { "comment_text": "", "digests": { "md5": "6af3692e2c395ae0936eb4c61edeae7a", "sha256": "b034ab3a8e328705625467fe7b3a59e23da6952ba19b5a14b044aef206b653fa" }, "downloads": -1, "filename": "aiohttp-3.2.0-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "6af3692e2c395ae0936eb4c61edeae7a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 429135, "upload_time": "2018-05-06T21:40:20", "upload_time_iso_8601": "2018-05-06T21:40:20.880531Z", "url": "https://files.pythonhosted.org/packages/4a/bd/f57b6d6bb99df7d82b68f48a1713cf3dd6d5fc3e711e1e5c205ad1a81da0/aiohttp-3.2.0-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa848d3225b12cf1cb0cafb29c695ad2", "sha256": "46c004a3bd91c42caa1bb9c4d44ef156ccf0d7f56272590da8d066710e7c63be" }, "downloads": -1, "filename": "aiohttp-3.2.0-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "fa848d3225b12cf1cb0cafb29c695ad2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 427370, "upload_time": "2018-05-06T21:51:22", "upload_time_iso_8601": "2018-05-06T21:51:22.315376Z", "url": "https://files.pythonhosted.org/packages/7f/3d/357cc50078db44388b1f451fda586a45bb852aaf4cd876808c481cfaa6d6/aiohttp-3.2.0-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "abcebb2b6d30639ae56a4b3fc526a649", "sha256": "7dc80c5984613a30a6608718a401143598f69907770a46e5b6df87c7b9d06ce8" }, "downloads": -1, "filename": "aiohttp-3.2.0-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "abcebb2b6d30639ae56a4b3fc526a649", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 420516, "upload_time": "2018-05-06T21:59:59", "upload_time_iso_8601": "2018-05-06T21:59:59.467180Z", "url": "https://files.pythonhosted.org/packages/60/e0/019b121318c065e26cdae8ecc9e6f40a32a9dcbee9669d3d5f80b98b13a3/aiohttp-3.2.0-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c4d1b5e4e494b5f02916f940ad723dd9", "sha256": "4af32e7641f8029fd2cb6b3d3e51e92074ae0d42347d56e93b25fbb3f49a43bb" }, "downloads": -1, "filename": "aiohttp-3.2.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c4d1b5e4e494b5f02916f940ad723dd9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 719965, "upload_time": "2018-05-06T21:40:15", "upload_time_iso_8601": "2018-05-06T21:40:15.231052Z", "url": "https://files.pythonhosted.org/packages/92/9c/2bf432249bb57bf87e07842b458fac130d44dd7d8fb536154ac3edf46bc7/aiohttp-3.2.0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1a9b1bb48dcbb41f8ac3149e873fcf13", "sha256": "ef885a19bcff2a20ae0362ab6b8f8ac62b8bd8490dd3e031f15933abbe41d2b2" }, "downloads": -1, "filename": "aiohttp-3.2.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1a9b1bb48dcbb41f8ac3149e873fcf13", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 745508, "upload_time": "2018-05-06T21:40:17", "upload_time_iso_8601": "2018-05-06T21:40:17.260123Z", "url": "https://files.pythonhosted.org/packages/05/9a/eded1423b19063c8a06457a0bfd69a070b320f1fba67797449e65dc7ffa2/aiohttp-3.2.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "025ba9d0e23da766519869f357966a87", "sha256": "b6abeb48f66ac26690fb681cc3c1f9eed1d2f9f29b7cd4f3e182d3276001f663" }, "downloads": -1, "filename": "aiohttp-3.2.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "025ba9d0e23da766519869f357966a87", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 403905, "upload_time": "2018-05-06T21:03:53", "upload_time_iso_8601": "2018-05-06T21:03:53.186318Z", "url": "https://files.pythonhosted.org/packages/d2/47/d063068486ae7e096d0160452c0101ce50c4fb2e3b43d4b612eb9994954d/aiohttp-3.2.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58c0ad4f4599194e1504581ddb782284", "sha256": "51652ba1310e5a71a20133976ae6cbe301edce3387c6d3df4a8451841af8c9c7" }, "downloads": -1, "filename": "aiohttp-3.2.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "58c0ad4f4599194e1504581ddb782284", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 417594, "upload_time": "2018-05-06T21:06:42", "upload_time_iso_8601": "2018-05-06T21:06:42.700074Z", "url": "https://files.pythonhosted.org/packages/3c/d3/aff2e50a3233271581963531b6406f2291129b7321faef3d47062d71b048/aiohttp-3.2.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c89ffba459358a63f534a907b956eb28", "sha256": "424ad41a5434c25920fc8d0ce24c2f8d749965bce8996b86c9be0cd50f0051b2" }, "downloads": -1, "filename": "aiohttp-3.2.0-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "c89ffba459358a63f534a907b956eb28", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 431779, "upload_time": "2018-05-06T21:42:44", "upload_time_iso_8601": "2018-05-06T21:42:44.848509Z", "url": "https://files.pythonhosted.org/packages/5d/c0/51a3ac413149913a7dab019e5b5bb464c4e7fc04868515158e59dcc7ba6b/aiohttp-3.2.0-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b42934ab5dd9965b419d7e24787c3f0d", "sha256": "233b9a7816d29700e4ae6e024e0cc5d9d6fbd2a9b0878d0c89b75fa708a8b204" }, "downloads": -1, "filename": "aiohttp-3.2.0-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "b42934ab5dd9965b419d7e24787c3f0d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 429826, "upload_time": "2018-05-06T21:52:39", "upload_time_iso_8601": "2018-05-06T21:52:39.085426Z", "url": "https://files.pythonhosted.org/packages/5e/47/02b2e08e41b25c209051ae1069743395d15bddd7a98ca5a736a7fe1a184c/aiohttp-3.2.0-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b076f1827481801397335998a0d585a4", "sha256": "ee39b92c1dc2425784b424bd442bd255f31e272546be92a28035dabe9da3495e" }, "downloads": -1, "filename": "aiohttp-3.2.0-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "b076f1827481801397335998a0d585a4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 421258, "upload_time": "2018-05-06T22:00:04", "upload_time_iso_8601": "2018-05-06T22:00:04.095331Z", "url": "https://files.pythonhosted.org/packages/81/db/93769be1bc3d1dc58b859f11a1e2eb2d1db0a8927d00ffa626ce0df70f4b/aiohttp-3.2.0-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "96593b3e9593e5c449c36854e32825d4", "sha256": "af183773b170da552bfb1f78bc84647e3f7316ff5c77ae379e34362ffbafed0b" }, "downloads": -1, "filename": "aiohttp-3.2.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "96593b3e9593e5c449c36854e32825d4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 735457, "upload_time": "2018-05-06T21:40:19", "upload_time_iso_8601": "2018-05-06T21:40:19.008479Z", "url": "https://files.pythonhosted.org/packages/81/7e/af3ecef7ad5e216efc55111043bfa600127207ea477b0604999e2d6a6b1d/aiohttp-3.2.0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8ef2f6efb0cd6200df3066b6cde75cd5", "sha256": "695dc053980c9ad73030d426de40d7d0c66f4226c698b1c68ae94b9b761f28bd" }, "downloads": -1, "filename": "aiohttp-3.2.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8ef2f6efb0cd6200df3066b6cde75cd5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 760983, "upload_time": "2018-05-06T21:40:20", "upload_time_iso_8601": "2018-05-06T21:40:20.813917Z", "url": "https://files.pythonhosted.org/packages/ff/fb/33dd1b634c1aa837afce8aa259a83d6b294581442d727f13a3baf39f608c/aiohttp-3.2.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e8ab4068a423a5b4dfe9f26aaa3b3663", "sha256": "57854a9e1f0ed26acfd5765caa5522679b6e78a4dfcd137855cd058fdae5abe2" }, "downloads": -1, "filename": "aiohttp-3.2.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "e8ab4068a423a5b4dfe9f26aaa3b3663", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 405496, "upload_time": "2018-05-06T21:09:20", "upload_time_iso_8601": "2018-05-06T21:09:20.584094Z", "url": "https://files.pythonhosted.org/packages/9e/c5/56af4b0fcb6473dc0620e513c6b5ece58fc6ce34078573fc021c00b513de/aiohttp-3.2.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "52bd74912e0f329cd497e17a271eb1e4", "sha256": "8aa12ad9cccbdf0f896dd3f1bbe78093b09eb1a456cbd7208080c2c0e9c338e1" }, "downloads": -1, "filename": "aiohttp-3.2.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "52bd74912e0f329cd497e17a271eb1e4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 419464, "upload_time": "2018-05-06T21:12:10", "upload_time_iso_8601": "2018-05-06T21:12:10.512892Z", "url": "https://files.pythonhosted.org/packages/2a/17/f234a648ee32e5fe8cdd15db893c21b5c7dab302e6d903c8aa13ff310cc6/aiohttp-3.2.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e4c6e2e429e4abd07f1d156879b19825", "sha256": "1be3903fe6a36d20492e74efb326522dd4702bf32b45ffc7acbc0fb34ab240a6" }, "downloads": -1, "filename": "aiohttp-3.2.0.tar.gz", "has_sig": false, "md5_digest": "e4c6e2e429e4abd07f1d156879b19825", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 719685, "upload_time": "2018-05-06T21:03:54", "upload_time_iso_8601": "2018-05-06T21:03:54.792611Z", "url": "https://files.pythonhosted.org/packages/0e/1b/fd86244ef0c1c6c18581a7cbd37535f8a59054e73fbd52227c37b1c5a0d4/aiohttp-3.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.1": [ { "comment_text": "", "digests": { "md5": "96aec35cb28bdeb63b07655b941aa6d0", "sha256": "43930d119cae96b1a743c2e542fe93bd8db48d8b0d041933bd0b008a29f286f2" }, "downloads": -1, "filename": "aiohttp-3.2.1-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "96aec35cb28bdeb63b07655b941aa6d0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 429497, "upload_time": "2018-05-10T09:23:40", "upload_time_iso_8601": "2018-05-10T09:23:40.867253Z", "url": "https://files.pythonhosted.org/packages/2a/6e/60c003bae2fef15124611a3b82f67e954844154147d7c5d3b2a7ec46da16/aiohttp-3.2.1-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "be086b19dcef8169460fff441f156f9d", "sha256": "a00d4115ae2f5dcf678f482e2235d89eea495e883297e5fd19db429aa1e64d43" }, "downloads": -1, "filename": "aiohttp-3.2.1-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "be086b19dcef8169460fff441f156f9d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 427736, "upload_time": "2018-05-10T09:34:49", "upload_time_iso_8601": "2018-05-10T09:34:49.162280Z", "url": "https://files.pythonhosted.org/packages/5f/86/f876c9050bc3c4785700735627d7a5e83ecb9e1667bdaf106516f90830dd/aiohttp-3.2.1-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da01c25f53d49ea4a0ff7a05fe74d4fe", "sha256": "29cbcdf61b094140a10923ededcda6c961032d44518d64fc832cb602a5ff21e8" }, "downloads": -1, "filename": "aiohttp-3.2.1-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "da01c25f53d49ea4a0ff7a05fe74d4fe", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 420886, "upload_time": "2018-05-10T09:44:35", "upload_time_iso_8601": "2018-05-10T09:44:35.311665Z", "url": "https://files.pythonhosted.org/packages/57/ae/e63d90736b478130715fca4a84b39f5615c103d5146699413558d225dac9/aiohttp-3.2.1-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b5ac1548d9eb7b157c8ce31d3ef94fb3", "sha256": "1d62305fca4479b7f0a1254a78fa1e57e0440f5e9547a1d47e5f8dece264d414" }, "downloads": -1, "filename": "aiohttp-3.2.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b5ac1548d9eb7b157c8ce31d3ef94fb3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 720325, "upload_time": "2018-05-10T09:24:52", "upload_time_iso_8601": "2018-05-10T09:24:52.462080Z", "url": "https://files.pythonhosted.org/packages/60/1e/2d8bee63a4b5dab578ddb351e86ad8467baff9a1f6f874a7c63ac8e94bd3/aiohttp-3.2.1-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e798f1d4173d9477560cf1da05e58f11", "sha256": "a169c6d5173c7f60e70055a2ab71b93c90f2d693164e93502744b82ff7c0e282" }, "downloads": -1, "filename": "aiohttp-3.2.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e798f1d4173d9477560cf1da05e58f11", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 745866, "upload_time": "2018-05-10T09:24:54", "upload_time_iso_8601": "2018-05-10T09:24:54.009869Z", "url": "https://files.pythonhosted.org/packages/15/e3/4a6c7eb7b2be7ff906c45cabf19e3b08dd64e89f2940669f4b4af25434fd/aiohttp-3.2.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f72f9b8bcc93df57f6d46200ef1c6dea", "sha256": "294cf24187b8bcf3e9b368f2d67e1a6584b0a27667886612eff02d0cd3be460f" }, "downloads": -1, "filename": "aiohttp-3.2.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "f72f9b8bcc93df57f6d46200ef1c6dea", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 404267, "upload_time": "2018-05-10T08:52:28", "upload_time_iso_8601": "2018-05-10T08:52:28.680870Z", "url": "https://files.pythonhosted.org/packages/bd/0e/0682174da40326578f804b848a017f8337f54e9d98fa49a42039ca26b4d6/aiohttp-3.2.1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "59fb1c7d0d920380c788a99244321d3e", "sha256": "bd2092d2c2cfdd3363e3815d473464b45c79e0794d60e7c4c89c2adc12ef64b4" }, "downloads": -1, "filename": "aiohttp-3.2.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "59fb1c7d0d920380c788a99244321d3e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 417958, "upload_time": "2018-05-10T09:04:35", "upload_time_iso_8601": "2018-05-10T09:04:35.558870Z", "url": "https://files.pythonhosted.org/packages/09/aa/65f033caa231d96d8a4e2f849a9f4217d4885f689863ad4f3a7139e2c457/aiohttp-3.2.1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d016df83f02000829478d3e4160e8b3f", "sha256": "0be9782f27f150acc18c20ddb035655625d054ead119eb6e906647eb9a94f6c4" }, "downloads": -1, "filename": "aiohttp-3.2.1-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "d016df83f02000829478d3e4160e8b3f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 432143, "upload_time": "2018-05-10T09:27:53", "upload_time_iso_8601": "2018-05-10T09:27:53.610484Z", "url": "https://files.pythonhosted.org/packages/92/62/dc422233c50b42c05b0ae68756c5015f3e8ce6b4df6f7e3bced5e94858dc/aiohttp-3.2.1-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4eb11d44efdee910aa42bef0a097c148", "sha256": "defc2afb61b9fd08b2d07e536a1497a50925f1078e598ebc7eba080d33cdd5f6" }, "downloads": -1, "filename": "aiohttp-3.2.1-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "4eb11d44efdee910aa42bef0a097c148", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 430192, "upload_time": "2018-05-10T09:38:23", "upload_time_iso_8601": "2018-05-10T09:38:23.704739Z", "url": "https://files.pythonhosted.org/packages/18/26/d1fbcd1cc40094485f8066c7013590e20d0863e8f39b1af53d48fccaddc9/aiohttp-3.2.1-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8270113d9307c6665c9e2064e666e229", "sha256": "359d3e7dfe9f0f6d8c6105152d6fbc45027992f40bdf971484dbc5e7dc7c456f" }, "downloads": -1, "filename": "aiohttp-3.2.1-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "8270113d9307c6665c9e2064e666e229", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 421621, "upload_time": "2018-05-10T09:46:03", "upload_time_iso_8601": "2018-05-10T09:46:03.188894Z", "url": "https://files.pythonhosted.org/packages/35/d8/e90985ce9a2e157dffe060fe7090494d3e388b2e4493f6278c096ad0c9cc/aiohttp-3.2.1-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ad2e3ff74f23f2779bdbe606dbd95cd", "sha256": "862c5694a192a18cbcf3553fdff121aa9abe1b4edd65af7953b258211808437d" }, "downloads": -1, "filename": "aiohttp-3.2.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6ad2e3ff74f23f2779bdbe606dbd95cd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 735800, "upload_time": "2018-05-10T09:24:55", "upload_time_iso_8601": "2018-05-10T09:24:55.968940Z", "url": "https://files.pythonhosted.org/packages/a3/10/60c12d16a5c6a87cd11d3df3a1a02f0f8ea8a9592b9dea4b8ba7f13f77df/aiohttp-3.2.1-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da3e17abc3f395c816dcc0afc935117b", "sha256": "9ba1394d3eea2a3e2641e9a93a95b6d8b09478ef1d2ce2845e0ee1511a2937d2" }, "downloads": -1, "filename": "aiohttp-3.2.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "da3e17abc3f395c816dcc0afc935117b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 761342, "upload_time": "2018-05-10T09:24:58", "upload_time_iso_8601": "2018-05-10T09:24:58.098086Z", "url": "https://files.pythonhosted.org/packages/75/27/d76236fb1620eba35d6f5c60eaa08de36256a6c8e6516b3e132868b51509/aiohttp-3.2.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "04ddfab89b0009be98dc7a5d1e2c6976", "sha256": "d51800bdc01d9c1c70fa3ed394a1755f93464354b04039b41d48ce1308517e81" }, "downloads": -1, "filename": "aiohttp-3.2.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "04ddfab89b0009be98dc7a5d1e2c6976", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 405858, "upload_time": "2018-05-10T09:07:26", "upload_time_iso_8601": "2018-05-10T09:07:26.111521Z", "url": "https://files.pythonhosted.org/packages/e8/95/17b21b03f408fef260f93816cb427882a289984929612edb8f1801c5f36b/aiohttp-3.2.1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb71d7e63611a35146f2f04aebaf52b2", "sha256": "92b3aaa2896109be9a477f8a57314a144c9d56c6b7e16183e43e5fcad5e89da8" }, "downloads": -1, "filename": "aiohttp-3.2.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "eb71d7e63611a35146f2f04aebaf52b2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 419833, "upload_time": "2018-05-10T09:10:08", "upload_time_iso_8601": "2018-05-10T09:10:08.098971Z", "url": "https://files.pythonhosted.org/packages/55/2e/3f1d940482e9d4a201b7d457dd2e1cc77a19ea9ff40fc2088410893f0e4b/aiohttp-3.2.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "323488a14b46ba289415eb290088f8fe", "sha256": "1b95d53f8dac13898f0a3e4af76f6f36d540fbfaefc4f4c9f43e436fa0e53d22" }, "downloads": -1, "filename": "aiohttp-3.2.1.tar.gz", "has_sig": false, "md5_digest": "323488a14b46ba289415eb290088f8fe", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 720223, "upload_time": "2018-05-10T08:52:30", "upload_time_iso_8601": "2018-05-10T08:52:30.398098Z", "url": "https://files.pythonhosted.org/packages/81/fa/8915137ac0603112bbb63489de90a75c69da8a138594eb6a24cb8afb14df/aiohttp-3.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3.0": [ { "comment_text": "", "digests": { "md5": "244ad44f9ee88964ef435fdb5d49e4be", "sha256": "4417ab2f296fa57b65a946c28326ef7de345d8e94b429037ce1623c5bc96850e" }, "downloads": -1, "filename": "aiohttp-3.3.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "244ad44f9ee88964ef435fdb5d49e4be", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 827697, "upload_time": "2018-06-01T10:30:25", "upload_time_iso_8601": "2018-06-01T10:30:25.842064Z", "url": "https://files.pythonhosted.org/packages/b7/49/20acca87bad83201e47b8da21392238de52c933dd44e4bdfb98283fc4c2b/aiohttp-3.3.0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ec583873fb26bcda33a704318fe7b21", "sha256": "2293bc184be9eda99ede8afbfc8fe3a8e65fc82f2d5ab94cb5b7714d766bbb2d" }, "downloads": -1, "filename": "aiohttp-3.3.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9ec583873fb26bcda33a704318fe7b21", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 857591, "upload_time": "2018-06-01T10:30:29", "upload_time_iso_8601": "2018-06-01T10:30:29.214007Z", "url": "https://files.pythonhosted.org/packages/4a/ae/af1e0b4a1d64dc1eb7ec283b311a57a64ffefc7752e31496691c5bd71348/aiohttp-3.3.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "20ee14992de85d854d9c13ab95b6ba19", "sha256": "85860218fab4e8991f3ed629e0319331e82f7697557bd9eed278fb9f5dba7f29" }, "downloads": -1, "filename": "aiohttp-3.3.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "20ee14992de85d854d9c13ab95b6ba19", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 458582, "upload_time": "2018-06-01T07:16:32", "upload_time_iso_8601": "2018-06-01T07:16:32.986818Z", "url": "https://files.pythonhosted.org/packages/3f/45/ede420c6733d43dcf290131ae7d641359bd3fb374e3adb0ace6bf3dcfb17/aiohttp-3.3.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "89b5803a1a4a4b6dac9a5f4dca16fd45", "sha256": "5eba807790f45cfc5df935a425aca30c43f35159b94a34b2d2d360fca9406cbb" }, "downloads": -1, "filename": "aiohttp-3.3.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "89b5803a1a4a4b6dac9a5f4dca16fd45", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 475615, "upload_time": "2018-06-01T07:20:06", "upload_time_iso_8601": "2018-06-01T07:20:06.536234Z", "url": "https://files.pythonhosted.org/packages/36/30/2a02f97e7171d3dbed560e5b3b704d80c42fe7b1b2b9e5dff7fafdcd1e2e/aiohttp-3.3.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e31dadae7e124862e4457826da239c12", "sha256": "b4e354f8e29d99c60628ddc5d5d959ac2bd8dcb388808e6ccbca3860b7b59269" }, "downloads": -1, "filename": "aiohttp-3.3.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e31dadae7e124862e4457826da239c12", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 846250, "upload_time": "2018-06-01T10:30:32", "upload_time_iso_8601": "2018-06-01T10:30:32.103682Z", "url": "https://files.pythonhosted.org/packages/53/9e/7c5b9808adf36ea7d2f0ff3f1dc751838353d2423b5c78d947cb5abdfb6c/aiohttp-3.3.0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "27476c3b08f6d6b7ea2afa4af454c9d1", "sha256": "899d5253d23e56ea1bff42e6d742f3118d80ceaa993f0cedc9b436feaacd128b" }, "downloads": -1, "filename": "aiohttp-3.3.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "27476c3b08f6d6b7ea2afa4af454c9d1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 875571, "upload_time": "2018-06-01T10:30:34", "upload_time_iso_8601": "2018-06-01T10:30:34.723253Z", "url": "https://files.pythonhosted.org/packages/07/06/a2ee8e3c6c7fb3ad8057e7049a8e59a3c9e47efe64dca0ffa1916eb26709/aiohttp-3.3.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d8abb2c35914f608cc895955165effc", "sha256": "a05ff430d849095ea4662a833bb790d6ca876ab88305e49fdba445ab1a236b7b" }, "downloads": -1, "filename": "aiohttp-3.3.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "3d8abb2c35914f608cc895955165effc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 460690, "upload_time": "2018-06-01T07:23:00", "upload_time_iso_8601": "2018-06-01T07:23:00.380778Z", "url": "https://files.pythonhosted.org/packages/1a/53/a54689acf9c5cd6c6be9beadcff908cecb692b9a96eb72a2e00eaccf5299/aiohttp-3.3.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ff2109a22139f810c1e5ed330e5f2728", "sha256": "e2960362e0c2f9d48bfdc8e0d084a5bb416817be86c94914bc79e45421471f48" }, "downloads": -1, "filename": "aiohttp-3.3.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "ff2109a22139f810c1e5ed330e5f2728", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 477868, "upload_time": "2018-06-01T07:25:47", "upload_time_iso_8601": "2018-06-01T07:25:47.342980Z", "url": "https://files.pythonhosted.org/packages/24/7e/6f2cbf89cfaa599ba256ffd3352e3959de2404b5223bfbcf2a9780cc6752/aiohttp-3.3.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "20ecf6ec314b035d6306c6155413cf07", "sha256": "3128d3ef7b575dbb272cdacd4d4c9a7cf67b18899e96260d55ae3a5782d886e7" }, "downloads": -1, "filename": "aiohttp-3.3.0.tar.gz", "has_sig": false, "md5_digest": "20ecf6ec314b035d6306c6155413cf07", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 722307, "upload_time": "2018-06-01T07:16:34", "upload_time_iso_8601": "2018-06-01T07:16:34.596525Z", "url": "https://files.pythonhosted.org/packages/bf/af/a6f68012ff76916902fda95ca6ec1150386aa6c998eaefca7d5fbc2e8a92/aiohttp-3.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3.0a0": [ { "comment_text": "", "digests": { "md5": "df551ab3932aae8957fd1019e08ded6d", "sha256": "7030dcfd60711c6b240d5cc785d83ed362afe024d3bd8b502869b81af667e64a" }, "downloads": -1, "filename": "aiohttp-3.3.0a0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "df551ab3932aae8957fd1019e08ded6d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 827859, "upload_time": "2018-06-02T10:50:57", "upload_time_iso_8601": "2018-06-02T10:50:57.637751Z", "url": "https://files.pythonhosted.org/packages/35/e8/f4383e2e4db6b2854e059d938dc0d45844ada8a8f2f0b149dee127c40ff4/aiohttp-3.3.0a0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d08ccca4833f7f76ece07fb57714d287", "sha256": "c7918e3dbb09e79b5a3111710d9a3fdd9edbc4fdad97e2454ca2c8a461409027" }, "downloads": -1, "filename": "aiohttp-3.3.0a0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d08ccca4833f7f76ece07fb57714d287", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 857705, "upload_time": "2018-06-02T10:50:59", "upload_time_iso_8601": "2018-06-02T10:50:59.559844Z", "url": "https://files.pythonhosted.org/packages/18/f9/4bd664c743dcd29c996dfc70bee9eb31df8c9f7fbbad8be2790748374efc/aiohttp-3.3.0a0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "92848b4769e826817bc3227d74b4734d", "sha256": "805bb36918446a5bda653783c4b5c50404572d9cbb12c27bb1ca0b726e8916b0" }, "downloads": -1, "filename": "aiohttp-3.3.0a0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "92848b4769e826817bc3227d74b4734d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 458613, "upload_time": "2018-06-02T10:14:03", "upload_time_iso_8601": "2018-06-02T10:14:03.929512Z", "url": "https://files.pythonhosted.org/packages/ef/c8/5c5601aea0d63b3889680d8133769656ef78f226e5b4c5d1d6195a13a162/aiohttp-3.3.0a0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3a4d7dad5d7eb41f47cfb78d51201e9a", "sha256": "7ab7416ca103c116f3d860bdb038c2776bb75027a57e17b97cd7279d6915930f" }, "downloads": -1, "filename": "aiohttp-3.3.0a0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "3a4d7dad5d7eb41f47cfb78d51201e9a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 475636, "upload_time": "2018-06-02T10:17:04", "upload_time_iso_8601": "2018-06-02T10:17:04.729437Z", "url": "https://files.pythonhosted.org/packages/0b/a1/e68134be65e6b2a55d20d3214309dc9e12fabbef1e1d0833a62e04f07fc0/aiohttp-3.3.0a0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ce155943acb55ee4c4b395043ff0ee5a", "sha256": "5793f153e4082da8e12af4e2dbc598ceade0bc6d1164cd1591c83e45cd50c541" }, "downloads": -1, "filename": "aiohttp-3.3.0a0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ce155943acb55ee4c4b395043ff0ee5a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 846405, "upload_time": "2018-06-02T10:51:01", "upload_time_iso_8601": "2018-06-02T10:51:01.335192Z", "url": "https://files.pythonhosted.org/packages/d2/61/8821d09eb2ba97cb331f2b395139a932bca0455b5091038e91a5038c985d/aiohttp-3.3.0a0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a2978da64690905d35c2d8f7477a2228", "sha256": "63034e15986b438cabb69da33aa4d17f1df34ed8fdb8e5ed7a0e23eccc7a8818" }, "downloads": -1, "filename": "aiohttp-3.3.0a0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a2978da64690905d35c2d8f7477a2228", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 875764, "upload_time": "2018-06-02T10:51:02", "upload_time_iso_8601": "2018-06-02T10:51:02.873063Z", "url": "https://files.pythonhosted.org/packages/a7/ff/10e4cd9d1c7cbdea4155d31881ec47392c699eb49b49293eab01575c9831/aiohttp-3.3.0a0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "44f61565324f514243669cf584afc522", "sha256": "fc647a08ae3b2b7a0da1064a2f535490f8d628095001969a5d2fc4fec3737764" }, "downloads": -1, "filename": "aiohttp-3.3.0a0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "44f61565324f514243669cf584afc522", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 460712, "upload_time": "2018-06-02T10:19:57", "upload_time_iso_8601": "2018-06-02T10:19:57.530138Z", "url": "https://files.pythonhosted.org/packages/b6/2d/8a4a3d91bae8ec8f4344533d4d378f035006571f19feec8d8ccaeb64b65a/aiohttp-3.3.0a0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4e4bcd09a1e8c6ded6b5d9d0258ecdb", "sha256": "caabace30fed76756de657886a700b04919575799eb7fac5848385baf59de6fb" }, "downloads": -1, "filename": "aiohttp-3.3.0a0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "d4e4bcd09a1e8c6ded6b5d9d0258ecdb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 477894, "upload_time": "2018-06-02T10:23:07", "upload_time_iso_8601": "2018-06-02T10:23:07.729632Z", "url": "https://files.pythonhosted.org/packages/db/17/abedaa9923010381e825853b18f4e077247f068e6977c6e82544d03813be/aiohttp-3.3.0a0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "44a31cf126a932a741a6dc4fc35e0712", "sha256": "4351d6b9df5a6e389208f665e8c4c5db7ade7b06f564b3e7bee6cf713628c1b5" }, "downloads": -1, "filename": "aiohttp-3.3.0a0.tar.gz", "has_sig": false, "md5_digest": "44a31cf126a932a741a6dc4fc35e0712", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 722805, "upload_time": "2018-06-02T10:14:05", "upload_time_iso_8601": "2018-06-02T10:14:05.605277Z", "url": "https://files.pythonhosted.org/packages/e0/ca/1804e24313a80445efad9c7ead32774934b5fd6c2d5c16723d2701c47f35/aiohttp-3.3.0a0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3.1": [ { "comment_text": "", "digests": { "md5": "cec9f69249903a5536aece41c4fd48dc", "sha256": "9aa0bbd1967fef07abda7c9117cbac63226146020abe2a3ac8a9b0ce33f50ee5" }, "downloads": -1, "filename": "aiohttp-3.3.1-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "cec9f69249903a5536aece41c4fd48dc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 486267, "upload_time": "2018-06-05T20:23:42", "upload_time_iso_8601": "2018-06-05T20:23:42.479716Z", "url": "https://files.pythonhosted.org/packages/61/19/b5a345c82eb44b4fa44c51dcd9dc019b1eefe8bd24442311ebf8d40719fb/aiohttp-3.3.1-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b312d06bc8b65235079e15f098ee0210", "sha256": "ace77e76c94aac79104229b3a589cd26d55f52769cb458befab3342b93a3c9eb" }, "downloads": -1, "filename": "aiohttp-3.3.1-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "b312d06bc8b65235079e15f098ee0210", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 484168, "upload_time": "2018-06-05T20:16:40", "upload_time_iso_8601": "2018-06-05T20:16:40.867547Z", "url": "https://files.pythonhosted.org/packages/dd/24/94f8871b3a90aecd408b74e95be8b5f7196ee24744628a07a5767ad0fbd4/aiohttp-3.3.1-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c5d2d83c122fa161b75ff8dba8d24a13", "sha256": "fecc50a3c5ec6baf8dd41d5e739d1dec5d0741ac479fa4e209d770008aeb58a1" }, "downloads": -1, "filename": "aiohttp-3.3.1-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "c5d2d83c122fa161b75ff8dba8d24a13", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 475960, "upload_time": "2018-06-05T20:31:18", "upload_time_iso_8601": "2018-06-05T20:31:18.137573Z", "url": "https://files.pythonhosted.org/packages/2f/99/cca163e157310055fc722f668e1d1e09c20e1d5e63113eaf4625dffdb2be/aiohttp-3.3.1-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9175a169c9ac9c7d80cec42794a41676", "sha256": "86224c3200a90fdf4bf6eda66c8e6db09d49c85c8c1065224354fb5f6f1ccffe" }, "downloads": -1, "filename": "aiohttp-3.3.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "9175a169c9ac9c7d80cec42794a41676", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 828002, "upload_time": "2018-06-05T20:52:54", "upload_time_iso_8601": "2018-06-05T20:52:54.289228Z", "url": "https://files.pythonhosted.org/packages/71/2f/66a46a6fc3494ef57754729c7e6f2780758920e6efc4684459e1e875a7eb/aiohttp-3.3.1-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "668ca99c0cfc258956b2c60db20e79ba", "sha256": "fca7f31bddbca4114c4bb36380f4c85608c09c39902cd5f33764053ad70c2fc5" }, "downloads": -1, "filename": "aiohttp-3.3.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "668ca99c0cfc258956b2c60db20e79ba", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 857849, "upload_time": "2018-06-05T20:52:56", "upload_time_iso_8601": "2018-06-05T20:52:56.374325Z", "url": "https://files.pythonhosted.org/packages/8e/df/6c2fccc2d0077836f3170b01dc7d8857bf3a2b260f70d1a7e41d31275071/aiohttp-3.3.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "496e29768dc5251215cb3a72067a768e", "sha256": "90236edee174b2ae1a9ccee08940f89466076db33edd212d6aeef9ff7f1af48c" }, "downloads": -1, "filename": "aiohttp-3.3.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "496e29768dc5251215cb3a72067a768e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 458747, "upload_time": "2018-06-05T19:49:29", "upload_time_iso_8601": "2018-06-05T19:49:29.064435Z", "url": "https://files.pythonhosted.org/packages/f7/04/b730d08648b2bdb5c6300d9c9fa3fe879ec2caf3d104da37978939c709b1/aiohttp-3.3.1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3792cffdcaa4ddfa34cdb4203ae2781d", "sha256": "4969022967b7c7b141711842151d937ca3ccbea485d18b4f154c3f5582df866c" }, "downloads": -1, "filename": "aiohttp-3.3.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "3792cffdcaa4ddfa34cdb4203ae2781d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 475774, "upload_time": "2018-06-05T19:53:37", "upload_time_iso_8601": "2018-06-05T19:53:37.865052Z", "url": "https://files.pythonhosted.org/packages/3f/f9/a4fc8a186ebcca7f15bbf0cac973a69bac8dd1e92ee2885339fba339a7d1/aiohttp-3.3.1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ebededa20262caf89e6dd6845ccbf882", "sha256": "c07054f3971af9035aa7295d4faa05bafc1ddd4af5cc92c0901600a5e97d1962" }, "downloads": -1, "filename": "aiohttp-3.3.1-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "ebededa20262caf89e6dd6845ccbf882", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 489327, "upload_time": "2018-06-05T20:26:41", "upload_time_iso_8601": "2018-06-05T20:26:41.864940Z", "url": "https://files.pythonhosted.org/packages/4d/5e/02cc05795d8f5af3eadb7662121f705f14c6a43385eacebaa98bdb54ed42/aiohttp-3.3.1-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "885b2e35883e5859685ffed628f827f6", "sha256": "a45330dacdf3a3cebd0b74c0b5e0bc4982f0dbb757d5df021b52049a94a2bce0" }, "downloads": -1, "filename": "aiohttp-3.3.1-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "885b2e35883e5859685ffed628f827f6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 486946, "upload_time": "2018-06-05T20:25:49", "upload_time_iso_8601": "2018-06-05T20:25:49.157180Z", "url": "https://files.pythonhosted.org/packages/93/b3/e2fe348633ada4a611108a3699b08dee22554107f7cb7cbaeec7a6f4e2c8/aiohttp-3.3.1-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1834c08ed752f91fbdfd11d2efb45d8", "sha256": "467c2208192943ea497b287d06444dc8483296857600157affc463f53c629f62" }, "downloads": -1, "filename": "aiohttp-3.3.1-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "f1834c08ed752f91fbdfd11d2efb45d8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 477273, "upload_time": "2018-06-05T20:32:54", "upload_time_iso_8601": "2018-06-05T20:32:54.169705Z", "url": "https://files.pythonhosted.org/packages/f2/e9/015300c260c5e2c063bcc0dc8c4ed50df1af898f984318112aac01a8d76e/aiohttp-3.3.1-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed6a0a58c4b1d6d066a1764bf31f4315", "sha256": "e8d97bd24a556ae513d8bccd080421d27b5ae68adf9530fec8c9954f4aa90bb8" }, "downloads": -1, "filename": "aiohttp-3.3.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ed6a0a58c4b1d6d066a1764bf31f4315", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 846523, "upload_time": "2018-06-05T20:52:58", "upload_time_iso_8601": "2018-06-05T20:52:58.202854Z", "url": "https://files.pythonhosted.org/packages/9a/80/c2164a46b6d3acd9f0b53ef12db1bc3576973d7cebc37ef96047fdef3c4c/aiohttp-3.3.1-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "63b88f5474bd47ccde20b2450c115c88", "sha256": "9aa0f69463d33d028b1f75872886f56a7411925a2aa563ac15f29a0af919a07d" }, "downloads": -1, "filename": "aiohttp-3.3.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "63b88f5474bd47ccde20b2450c115c88", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 875899, "upload_time": "2018-06-05T20:53:00", "upload_time_iso_8601": "2018-06-05T20:53:00.281474Z", "url": "https://files.pythonhosted.org/packages/93/3f/8856fa8eec985e64ae3d8b1353acb7edec0d870abd9a5fce3cf39d3c323d/aiohttp-3.3.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c78efe3e80ce89b6c0f598f769c57220", "sha256": "2c56cf25b61f5be1f30e718b3865deadf687b2d2e8266441bc64e9ec401f5703" }, "downloads": -1, "filename": "aiohttp-3.3.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "c78efe3e80ce89b6c0f598f769c57220", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 460850, "upload_time": "2018-06-05T19:56:51", "upload_time_iso_8601": "2018-06-05T19:56:51.472329Z", "url": "https://files.pythonhosted.org/packages/9e/47/f8cb1d67be373172c574737ce85f536d30f6ae6424760bbf7f441c22eec0/aiohttp-3.3.1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e5efd20a8090d376322907514f50d2e1", "sha256": "421ba132f3fe091a9482b2f28e4e510408bf4591eefb2e5881b2d2cba79f563d" }, "downloads": -1, "filename": "aiohttp-3.3.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "e5efd20a8090d376322907514f50d2e1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 478027, "upload_time": "2018-06-05T20:00:11", "upload_time_iso_8601": "2018-06-05T20:00:11.880257Z", "url": "https://files.pythonhosted.org/packages/a8/54/b0e61c8a3790dfa5d09e538bdafc2ef0ed7c5bb31308063ac451efd9726a/aiohttp-3.3.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a58ffe9ae0b37428dd99dd55bb69820", "sha256": "16ac24a3278375d277dacf992ac07084865c3aad3e625fc5be693c4b7e7f550d" }, "downloads": -1, "filename": "aiohttp-3.3.1.tar.gz", "has_sig": false, "md5_digest": "9a58ffe9ae0b37428dd99dd55bb69820", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 723180, "upload_time": "2018-06-05T19:49:30", "upload_time_iso_8601": "2018-06-05T19:49:30.690448Z", "url": "https://files.pythonhosted.org/packages/15/61/e527f5094e5717d31ab2a92135e67e131659068626d426b95244e9c3aa8d/aiohttp-3.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3.2": [ { "comment_text": "", "digests": { "md5": "5b26010d63745c5a1e1ce1b291239923", "sha256": "dd81d85a342edf3d2a388e2f24d9facebc9c04550043888f970ee2f228c93059" }, "downloads": -1, "filename": "aiohttp-3.3.2-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "5b26010d63745c5a1e1ce1b291239923", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 486446, "upload_time": "2018-06-12T13:51:23", "upload_time_iso_8601": "2018-06-12T13:51:23.328554Z", "url": "https://files.pythonhosted.org/packages/8e/d7/6c4716413cbaacb1ca371ee142f0edac87e7d8df8bba8f63165a32aa81cd/aiohttp-3.3.2-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18ae22066b7b07bc44e113cc0eb31ce4", "sha256": "1a112a1fdf3802b7f2b182e22e51d71e4a8fa7387d0d38e79a268921b869e384" }, "downloads": -1, "filename": "aiohttp-3.3.2-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "18ae22066b7b07bc44e113cc0eb31ce4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 484347, "upload_time": "2018-06-12T13:58:27", "upload_time_iso_8601": "2018-06-12T13:58:27.070543Z", "url": "https://files.pythonhosted.org/packages/6f/c9/340265675d4b553b46e94560eb1d0d1df7c9484a246b873ddc0516a74a74/aiohttp-3.3.2-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99a90146b745a7f6e341e5195cd37165", "sha256": "601e8e83123b4d423a9dfddf7d6943f4f520651a78ffcd50c99d065136c7ff7b" }, "downloads": -1, "filename": "aiohttp-3.3.2-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "99a90146b745a7f6e341e5195cd37165", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 476140, "upload_time": "2018-06-12T14:00:57", "upload_time_iso_8601": "2018-06-12T14:00:57.522956Z", "url": "https://files.pythonhosted.org/packages/74/01/e1653fb30a8d112c0dc4837a93775faca2461b62791494855ee046b7cef3/aiohttp-3.3.2-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1dc9898a0f6daaf8e29f3c5a937b8589", "sha256": "f52e7287eb9286a1e91e4c67c207c2573147fbaddc68f70efb5aeee5d1992f2e" }, "downloads": -1, "filename": "aiohttp-3.3.2-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1dc9898a0f6daaf8e29f3c5a937b8589", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 828190, "upload_time": "2018-06-12T13:56:41", "upload_time_iso_8601": "2018-06-12T13:56:41.621858Z", "url": "https://files.pythonhosted.org/packages/da/7a/4c31e0e2884b1e982cae4bd8b066010e76f5e5653037ccd403e9f04f71ec/aiohttp-3.3.2-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4f6fa8f8590ec9c2ecc1a289d734a434", "sha256": "7de2c9e445a5d257935011268202338538abef1aaff341a4733eca56419ca6f6" }, "downloads": -1, "filename": "aiohttp-3.3.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4f6fa8f8590ec9c2ecc1a289d734a434", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 858029, "upload_time": "2018-06-12T13:56:43", "upload_time_iso_8601": "2018-06-12T13:56:43.519781Z", "url": "https://files.pythonhosted.org/packages/30/e7/73221dc4f32a5c34fa131d64d18003a8940d4f489607ae7f231e32d9d42c/aiohttp-3.3.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c01baebc8cf00dabd19af08aeb959dd0", "sha256": "ff1447c84a02b9cd5dd3a9332d1fb181a4386c3625765bb5caf1cfbc210ab3f9" }, "downloads": -1, "filename": "aiohttp-3.3.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "c01baebc8cf00dabd19af08aeb959dd0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 458931, "upload_time": "2018-06-13T09:07:36", "upload_time_iso_8601": "2018-06-13T09:07:36.960334Z", "url": "https://files.pythonhosted.org/packages/ea/b2/4936aa1db329d27efdec02b4a4fb4e743a1ed19f6daa205b0b9badabbed1/aiohttp-3.3.2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5772cc9e13e1decc96cf187ab40dde26", "sha256": "620f19ba7628b70b177f5c2e6a55a6fd6e7c8591cde38c3f8f52551733d31b66" }, "downloads": -1, "filename": "aiohttp-3.3.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "5772cc9e13e1decc96cf187ab40dde26", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 475962, "upload_time": "2018-06-13T09:11:30", "upload_time_iso_8601": "2018-06-13T09:11:30.737139Z", "url": "https://files.pythonhosted.org/packages/dc/c2/0b6b6cfde08b068e9592cbe309401023a841b99a50b0bed1189ffcfe3725/aiohttp-3.3.2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7171ca6e5ec70bddb7d76962dbfea018", "sha256": "fe7b2972ff7e779e812f974aa5695edc328ecf559ceeea887ac46f06f090ad4c" }, "downloads": -1, "filename": "aiohttp-3.3.2-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "7171ca6e5ec70bddb7d76962dbfea018", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 489509, "upload_time": "2018-06-12T13:53:43", "upload_time_iso_8601": "2018-06-12T13:53:43.000669Z", "url": "https://files.pythonhosted.org/packages/62/39/08e33c975b4d8149b3806f06344077ec17b78fb0eadafb03563e871e5963/aiohttp-3.3.2-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5081453cc5769bd5b344c4ea4c2f781", "sha256": "c833aa6f4c9ac3e3eb843e3d999bae51339ad33a937303f43ce78064e61cb4b6" }, "downloads": -1, "filename": "aiohttp-3.3.2-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "f5081453cc5769bd5b344c4ea4c2f781", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 487122, "upload_time": "2018-06-12T14:00:52", "upload_time_iso_8601": "2018-06-12T14:00:52.228085Z", "url": "https://files.pythonhosted.org/packages/d0/69/d84453c151bf9a06bd7f0f13915cc2d0b4337c7d4124da2f221f68e67575/aiohttp-3.3.2-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a101b417691638ece08f929b2d635097", "sha256": "550b4a0788500f6d00f41b7fdd9fcce6d78f99706a7b2f6f81d4d331c7ca468e" }, "downloads": -1, "filename": "aiohttp-3.3.2-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "a101b417691638ece08f929b2d635097", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 477454, "upload_time": "2018-06-12T14:03:46", "upload_time_iso_8601": "2018-06-12T14:03:46.658492Z", "url": "https://files.pythonhosted.org/packages/7b/58/1d258b6853a3ba9b6627933f53f307958932701ffb2318f89d0d077a1de1/aiohttp-3.3.2-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1c45d91905b6dbe9d5a409165ac5f1d6", "sha256": "ae7501cc6a6c37b8d4774bf2218c37be47fe42019a2570e8510fc2044e59d573" }, "downloads": -1, "filename": "aiohttp-3.3.2-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1c45d91905b6dbe9d5a409165ac5f1d6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 846707, "upload_time": "2018-06-12T13:56:45", "upload_time_iso_8601": "2018-06-12T13:56:45.531896Z", "url": "https://files.pythonhosted.org/packages/e2/66/756ad4b3d0456dcbcc3ab59e297dcdc58a3e8a6fee3f14aa474a97964abf/aiohttp-3.3.2-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "458b31471fff2b9187a22f51895abe55", "sha256": "70d56c784da1239c89d39fefa166fd429306dada641178389be4184a9c04e501" }, "downloads": -1, "filename": "aiohttp-3.3.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "458b31471fff2b9187a22f51895abe55", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 876112, "upload_time": "2018-06-12T13:56:47", "upload_time_iso_8601": "2018-06-12T13:56:47.368532Z", "url": "https://files.pythonhosted.org/packages/54/f9/8b47199ceae89a867edc45c43dc908384fd2e1ac22406b60d101d988752b/aiohttp-3.3.2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7d1a4590c0bc41d634b5bd07f3468976", "sha256": "33aa7c937ebaf063a860cbb0c263a771b33333a84965c6148eeafe64fb4e29ca" }, "downloads": -1, "filename": "aiohttp-3.3.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "7d1a4590c0bc41d634b5bd07f3468976", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 461034, "upload_time": "2018-06-13T09:14:37", "upload_time_iso_8601": "2018-06-13T09:14:37.926266Z", "url": "https://files.pythonhosted.org/packages/ee/e9/6c1744c7e8bb44a1fb9388fc340bede1aeb3d531462fc975aa14138dacfe/aiohttp-3.3.2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ca4deb3c2d5a103957b3001ebd9f96f", "sha256": "96bb80b659cc2bafa160f3f0c346ce7fc10de1ffec4908d7f9690797f155f658" }, "downloads": -1, "filename": "aiohttp-3.3.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "9ca4deb3c2d5a103957b3001ebd9f96f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 478211, "upload_time": "2018-06-13T09:17:59", "upload_time_iso_8601": "2018-06-13T09:17:59.306055Z", "url": "https://files.pythonhosted.org/packages/23/3a/f9aaa8e67463ad0cef7e3e957d8e17492366328686b2575a1424af177905/aiohttp-3.3.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dfaadf259d1f677a286d203e9470d2a0", "sha256": "f20deec7a3fbaec7b5eb7ad99878427ad2ee4cc16a46732b705e8121cbb3cc12" }, "downloads": -1, "filename": "aiohttp-3.3.2.tar.gz", "has_sig": false, "md5_digest": "dfaadf259d1f677a286d203e9470d2a0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 771414, "upload_time": "2018-06-12T13:56:50", "upload_time_iso_8601": "2018-06-12T13:56:50.007839Z", "url": "https://files.pythonhosted.org/packages/72/6a/5bbf3544fe8de525f4521506b372dc9c3b13070fe34e911c976aa95631d7/aiohttp-3.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3.2a0": [ { "comment_text": "", "digests": { "md5": "ebd1480844d93918d6e11b064eacbf7c", "sha256": "5d463f568e0cda4e4ec740c562cdbe59b139c4dccf76bab31f0cc1ab99f1e9bb" }, "downloads": -1, "filename": "aiohttp-3.3.2a0-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "ebd1480844d93918d6e11b064eacbf7c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 486471, "upload_time": "2018-06-12T12:27:26", "upload_time_iso_8601": "2018-06-12T12:27:26.528339Z", "url": "https://files.pythonhosted.org/packages/da/25/9c09c518f49d52adc69165c10d863e23f02a7178af22d0f8c2a3e1066948/aiohttp-3.3.2a0-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2782f2ed9903cb313e4ac0db7d79bfd1", "sha256": "0f5329e879eb31d27a3110b042065906d69e9f2c238e9e11b942a1a625d4e62b" }, "downloads": -1, "filename": "aiohttp-3.3.2a0-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "2782f2ed9903cb313e4ac0db7d79bfd1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 484379, "upload_time": "2018-06-12T12:19:00", "upload_time_iso_8601": "2018-06-12T12:19:00.647845Z", "url": "https://files.pythonhosted.org/packages/69/0f/57468d875a883d481a05ea2b74445ada88c0a7d13a463feab6585cb597ab/aiohttp-3.3.2a0-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b9a3b3ed562f3fecbd2447905224bc2", "sha256": "04a4e4170d202f32c2a1e4893061437e67220f7ae3c560d9ffb92632912bf698" }, "downloads": -1, "filename": "aiohttp-3.3.2a0-cp35-cp35m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "6b9a3b3ed562f3fecbd2447905224bc2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 476163, "upload_time": "2018-06-12T12:34:41", "upload_time_iso_8601": "2018-06-12T12:34:41.199114Z", "url": "https://files.pythonhosted.org/packages/b4/05/30d5c962b062f24a12bd827ec6445b02db964a95abfcf50b1dd234762f26/aiohttp-3.3.2a0-cp35-cp35m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a59adcc46e624b7c63721bcf89dea27d", "sha256": "dde06e518cfdceecc9528738a2179830a714e814091c79ac870b416152810616" }, "downloads": -1, "filename": "aiohttp-3.3.2a0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a59adcc46e624b7c63721bcf89dea27d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 828195, "upload_time": "2018-06-12T12:31:31", "upload_time_iso_8601": "2018-06-12T12:31:31.231255Z", "url": "https://files.pythonhosted.org/packages/40/cf/a3bbffd15e2337843b9782bbad2d98ea5db1c336f64ccc7887684da9070c/aiohttp-3.3.2a0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1cc91de59f9550f24318c1b17bde2891", "sha256": "c0a3242526317404aefb5628c70c02b6af805ee3474b15b51cfead95d41ba600" }, "downloads": -1, "filename": "aiohttp-3.3.2a0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1cc91de59f9550f24318c1b17bde2891", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 858067, "upload_time": "2018-06-12T12:31:33", "upload_time_iso_8601": "2018-06-12T12:31:33.211921Z", "url": "https://files.pythonhosted.org/packages/9e/5a/cfd0f168cc8979955db27b445ba287c7c2d8509ec199bb3f43f94c941e19/aiohttp-3.3.2a0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7159dac235abf67663b6ffae052661a6", "sha256": "a5590567adf30f5262090adedd1d6608e101386bf068d24836714f7d3ae53fef" }, "downloads": -1, "filename": "aiohttp-3.3.2a0-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "7159dac235abf67663b6ffae052661a6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 489542, "upload_time": "2018-06-12T12:27:21", "upload_time_iso_8601": "2018-06-12T12:27:21.959080Z", "url": "https://files.pythonhosted.org/packages/a9/9e/fbe40a3fb68b49035ec184837ba3f702ab1e2a450c4730a25da4f7286fcc/aiohttp-3.3.2a0-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6c70338291ba5182e0810e539576b20a", "sha256": "84b2f673c3ea2d3edaf955b10ae48f8a93a1dd83c2d6a85f469a8e28392d19ae" }, "downloads": -1, "filename": "aiohttp-3.3.2a0-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "6c70338291ba5182e0810e539576b20a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 487153, "upload_time": "2018-06-12T12:28:19", "upload_time_iso_8601": "2018-06-12T12:28:19.721389Z", "url": "https://files.pythonhosted.org/packages/70/ac/e04b3e86eee99570814a3c58bc139b77e8d7194b389e109a4a2c27fcb003/aiohttp-3.3.2a0-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f028bbc07a3ffe7661e0af2b0f025225", "sha256": "2cdef3082095c80e3d4c561faa2eb3395c33c2f2f774182d005b3fd658707c51" }, "downloads": -1, "filename": "aiohttp-3.3.2a0-cp36-cp36m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "f028bbc07a3ffe7661e0af2b0f025225", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 477475, "upload_time": "2018-06-12T12:34:49", "upload_time_iso_8601": "2018-06-12T12:34:49.405495Z", "url": "https://files.pythonhosted.org/packages/25/6e/059735274a8155768aade7489395f7c6eea170822da37291817e94fc1a3f/aiohttp-3.3.2a0-cp36-cp36m-macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b3d1eaed97ae5c99035e9c7d63f37ad", "sha256": "c2eef6d44ee86dc2e271bb8fc97edc0575ae674c5dc3526f8a2bb41912cc635c" }, "downloads": -1, "filename": "aiohttp-3.3.2a0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3b3d1eaed97ae5c99035e9c7d63f37ad", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 846738, "upload_time": "2018-06-12T12:31:35", "upload_time_iso_8601": "2018-06-12T12:31:35.160405Z", "url": "https://files.pythonhosted.org/packages/be/32/edb60877e240b403b6a58f24ab8fd91f00ab73fdf4ae94274c9eded7b8e6/aiohttp-3.3.2a0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "642c67e2c0be8fa204f62abbfe97e8d2", "sha256": "34375efd708d1cc5b68f850d09fc40659af019d22735abd66d64b2bd5df783e6" }, "downloads": -1, "filename": "aiohttp-3.3.2a0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "642c67e2c0be8fa204f62abbfe97e8d2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 876091, "upload_time": "2018-06-12T12:31:36", "upload_time_iso_8601": "2018-06-12T12:31:36.712174Z", "url": "https://files.pythonhosted.org/packages/65/a5/586f669c61701d0166b5f19ae5a1c1130ac3c5d3ed374fe37c8e3b0053b6/aiohttp-3.3.2a0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "70e331ccfa4e208eb37c7f9f17592a4f", "sha256": "d14043ba802ec3614f401348eae6cce31f790c68cbf21f8b8d15eb8ac9c2a63a" }, "downloads": -1, "filename": "aiohttp-3.3.2a0.tar.gz", "has_sig": false, "md5_digest": "70e331ccfa4e208eb37c7f9f17592a4f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 771435, "upload_time": "2018-06-12T12:31:38", "upload_time_iso_8601": "2018-06-12T12:31:38.716833Z", "url": "https://files.pythonhosted.org/packages/31/4c/ddc159ef34701882d0dad1b2c48df8b83d728fc73f378b5a7de8681b6662/aiohttp-3.3.2a0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.4.0": [ { "comment_text": "", "digests": { "md5": "fe6f60b4239314f2c9ab675b22d59f8e", "sha256": "e4c37c7ec1e1157ae4af73fd1d7f201accebf6ed2222120bc660fd002c45cbac" }, "downloads": -1, "filename": "aiohttp-3.4.0-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "fe6f60b4239314f2c9ab675b22d59f8e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 599495, "upload_time": "2018-08-25T12:10:17", "upload_time_iso_8601": "2018-08-25T12:10:17.141001Z", "url": "https://files.pythonhosted.org/packages/38/52/68188f35c3a52c019d81d284965f5d733444077b52c57e2d56a7d2e07ce9/aiohttp-3.4.0-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d89ed99be20b76ae0de91f8941513e52", "sha256": "6a8e447742fc45791ffea0b3ce308f1476a9f4707fb6525a2f23b43d4b26cfb3" }, "downloads": -1, "filename": "aiohttp-3.4.0-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "d89ed99be20b76ae0de91f8941513e52", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 596044, "upload_time": "2018-08-25T12:19:05", "upload_time_iso_8601": "2018-08-25T12:19:05.686828Z", "url": "https://files.pythonhosted.org/packages/78/f9/f3ba20b2a868c565f6a1dd3bb2e16de7f12f1533de0c2b8092eb4dbf4d1e/aiohttp-3.4.0-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6c3c5ad8d347f5fb9c2286a9dea22397", "sha256": "5cd8662ddd7c95e99010e30cc52e20a092939844e8e8a4f37abf1866231f1880" }, "downloads": -1, "filename": "aiohttp-3.4.0-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "6c3c5ad8d347f5fb9c2286a9dea22397", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 587699, "upload_time": "2018-08-25T12:35:44", "upload_time_iso_8601": "2018-08-25T12:35:44.285481Z", "url": "https://files.pythonhosted.org/packages/46/22/c51a8896c8c3c562531b0f6781876d915feab7744513d532e13f3dec07df/aiohttp-3.4.0-cp35-cp35m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "41c6ec46d7933c0674cbb0be18ffcd3b", "sha256": "e08cacfede41291c05b4668c3178d303d078417c013bc3d5287b2b0d0e6a3aa7" }, "downloads": -1, "filename": "aiohttp-3.4.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "41c6ec46d7933c0674cbb0be18ffcd3b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1069568, "upload_time": "2018-08-25T12:23:45", "upload_time_iso_8601": "2018-08-25T12:23:45.996101Z", "url": "https://files.pythonhosted.org/packages/5d/60/77a3e66630295b53df84ee61f8e2579a391bd07d485943fdb7412ebbe4de/aiohttp-3.4.0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "efb132475e5b47b1fea6338c0c7a2156", "sha256": "6880406a0c776fbff63c0d9eb8a2d96d8134b17fafeeea01180b58ab8ff0f6f5" }, "downloads": -1, "filename": "aiohttp-3.4.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "efb132475e5b47b1fea6338c0c7a2156", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1081274, "upload_time": "2018-08-25T12:23:48", "upload_time_iso_8601": "2018-08-25T12:23:48.041723Z", "url": "https://files.pythonhosted.org/packages/24/f1/90c210be1db8c988be5620b5f02e1158bc453e205d0bbadeb9d41acc0478/aiohttp-3.4.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3337b377d6db5abdbf1e370da14b303a", "sha256": "01bcaf83911c5a88f74629f116540a1b80391e6e496e6fb8708bb2987b60da63" }, "downloads": -1, "filename": "aiohttp-3.4.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "3337b377d6db5abdbf1e370da14b303a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 548973, "upload_time": "2018-08-25T11:23:43", "upload_time_iso_8601": "2018-08-25T11:23:43.325909Z", "url": "https://files.pythonhosted.org/packages/05/44/5de76481fe1c8c3cf04b971ffc0a631fa8485836e7618c68f53e0cfa1cfd/aiohttp-3.4.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f26c9c5f0684d522fc22af042ec0e734", "sha256": "229975cb8ff6056c8ef581383a653e7110480d52c9f46eaf560113f8d5005510" }, "downloads": -1, "filename": "aiohttp-3.4.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "f26c9c5f0684d522fc22af042ec0e734", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 574648, "upload_time": "2018-08-25T11:27:29", "upload_time_iso_8601": "2018-08-25T11:27:29.283084Z", "url": "https://files.pythonhosted.org/packages/c9/93/1d13174331d845ee2c9ff153c04a602d02d6fa822f15e43630e392d5dd7a/aiohttp-3.4.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "198178ded4be107b77dd4d862abeda27", "sha256": "de703f333381864dce788dbfa1a49ef4551e8f082b607a943b94b239d97965cc" }, "downloads": -1, "filename": "aiohttp-3.4.0-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "198178ded4be107b77dd4d862abeda27", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 602140, "upload_time": "2018-08-25T12:10:00", "upload_time_iso_8601": "2018-08-25T12:10:00.828477Z", "url": "https://files.pythonhosted.org/packages/74/a5/808e1fcfaee8662bc62882c33cec3cf20aa76b445e31e19619c680cb161e/aiohttp-3.4.0-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6515a9ecb26a5ad9870f2e36a68982e3", "sha256": "199ea4a9c424904f04a86563a8e9e2759d49e3a0bf789496714253237f16015f" }, "downloads": -1, "filename": "aiohttp-3.4.0-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "6515a9ecb26a5ad9870f2e36a68982e3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 598903, "upload_time": "2018-08-25T12:27:41", "upload_time_iso_8601": "2018-08-25T12:27:41.893137Z", "url": "https://files.pythonhosted.org/packages/a2/a1/a59dd805353eb7dcec432ade67308bc3c4c68168a3933c68092d930546b4/aiohttp-3.4.0-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "405fc8d17c04ad00956cf85ed3df9e38", "sha256": "48e8d1973ba62a952f19a7916e54a7155f4b14505507432fc0559d8b5b0e5cad" }, "downloads": -1, "filename": "aiohttp-3.4.0-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "405fc8d17c04ad00956cf85ed3df9e38", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 593636, "upload_time": "2018-08-25T12:36:31", "upload_time_iso_8601": "2018-08-25T12:36:31.327779Z", "url": "https://files.pythonhosted.org/packages/f4/c5/d9a999a085ae623c3ae6826829887af103b3a165cef72a5ccbe4d70e8afc/aiohttp-3.4.0-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fde8555d81b8e644c8c5f8148575d663", "sha256": "ddee38858a9ef52ca33cb5dd1607d07d0fb99e2efe523ecb437b1758c49622a5" }, "downloads": -1, "filename": "aiohttp-3.4.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "fde8555d81b8e644c8c5f8148575d663", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1087728, "upload_time": "2018-08-25T12:23:50", "upload_time_iso_8601": "2018-08-25T12:23:50.047663Z", "url": "https://files.pythonhosted.org/packages/b6/78/04b118eddb26f8caa53aa466f8817d5d9eb34c21b6b285c406026fd89806/aiohttp-3.4.0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1c742621af4a8bcfc3d5cd773541cac1", "sha256": "4785935328facee0878c29d46f02b12f1e8e8db1cd3d9ec9af666eb163418a64" }, "downloads": -1, "filename": "aiohttp-3.4.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1c742621af4a8bcfc3d5cd773541cac1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1100572, "upload_time": "2018-08-25T12:23:52", "upload_time_iso_8601": "2018-08-25T12:23:52.035048Z", "url": "https://files.pythonhosted.org/packages/c6/ee/7ea531447cdf5ca7687a28928fd8b97124f0791992614b804742375e33ac/aiohttp-3.4.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d0870db0d68a4abc63dee1cbc43a89df", "sha256": "2ddf47c31048efad5a566d82822194bbb680fc1be852915c2949eb69891b5d5a" }, "downloads": -1, "filename": "aiohttp-3.4.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "d0870db0d68a4abc63dee1cbc43a89df", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 550794, "upload_time": "2018-08-25T11:30:22", "upload_time_iso_8601": "2018-08-25T11:30:22.922946Z", "url": "https://files.pythonhosted.org/packages/06/83/0464c2c4313e259dfb5726b82afb5595d2cf1448341ce93ca9404082194a/aiohttp-3.4.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e92ffe333f473d6cef59d396ab8246b8", "sha256": "e4f9fc91d617d2e54bda97bc1db9814918691fe799e037ccf973fda434fd2c18" }, "downloads": -1, "filename": "aiohttp-3.4.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "e92ffe333f473d6cef59d396ab8246b8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 576554, "upload_time": "2018-08-25T11:33:39", "upload_time_iso_8601": "2018-08-25T11:33:39.084342Z", "url": "https://files.pythonhosted.org/packages/1e/29/4c1d96c9bf5187310975559f6c5de383e67bd0ba8d8c94278fa44c32ed7b/aiohttp-3.4.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "15a805f71408f9e8ddef43db119925e0", "sha256": "2bb4224e3a3d7dd2ee18f6c42c1925c3200cd46fe18ec9f293b9bc88644c4878" }, "downloads": -1, "filename": "aiohttp-3.4.0-cp37-cp37m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "15a805f71408f9e8ddef43db119925e0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 602214, "upload_time": "2018-08-25T12:26:47", "upload_time_iso_8601": "2018-08-25T12:26:47.226691Z", "url": "https://files.pythonhosted.org/packages/30/30/eb8ef6bf7eb5c9104e44e83e1443a59215583cad5ddeec5fd2abb65e1083/aiohttp-3.4.0-cp37-cp37m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "54b5cafeec70cbc8f7c971dbd2794999", "sha256": "81456c04c54288928da4e7e1893314c8e74d5e9f33163e39aa47c26c5e5c7911" }, "downloads": -1, "filename": "aiohttp-3.4.0-cp37-cp37m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "54b5cafeec70cbc8f7c971dbd2794999", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 598799, "upload_time": "2018-08-25T12:33:09", "upload_time_iso_8601": "2018-08-25T12:33:09.125360Z", "url": "https://files.pythonhosted.org/packages/ac/b8/0110cfcbaaaf4d578b866f547e3d4f8d164ea489abadf9631b8b493bf9de/aiohttp-3.4.0-cp37-cp37m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34d2725c69d13ae14bcccd7e6e698e21", "sha256": "3f88a3428f40c788321cf5b8191f9dd9e002145545fa0cefc023b4b11e17aaa7" }, "downloads": -1, "filename": "aiohttp-3.4.0-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "34d2725c69d13ae14bcccd7e6e698e21", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 590217, "upload_time": "2018-08-25T12:43:03", "upload_time_iso_8601": "2018-08-25T12:43:03.329431Z", "url": "https://files.pythonhosted.org/packages/3d/4d/944a89cdbf4d2a98196affbf6ee04935558472ab8c80ef1916b2c2ac40c9/aiohttp-3.4.0-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a27743b618ea9e5b45e40b01d967afb3", "sha256": "3bc9c87845962f583d6929f837b02b80d2544920be65daf0d0a1306ad1a2089b" }, "downloads": -1, "filename": "aiohttp-3.4.0-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a27743b618ea9e5b45e40b01d967afb3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1089071, "upload_time": "2018-08-25T12:23:54", "upload_time_iso_8601": "2018-08-25T12:23:54.039430Z", "url": "https://files.pythonhosted.org/packages/f9/fa/ce62ea4710ccb4b4804e6788637514cf033c75a06c09596d826e8e2b8b36/aiohttp-3.4.0-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ceef6cf9032cc180091238c94fe12ee1", "sha256": "f6f73c812c1830a06de76ccbea10a4ebb1fd46230a80f280362e84578e4932a2" }, "downloads": -1, "filename": "aiohttp-3.4.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ceef6cf9032cc180091238c94fe12ee1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1099625, "upload_time": "2018-08-25T12:23:55", "upload_time_iso_8601": "2018-08-25T12:23:55.907715Z", "url": "https://files.pythonhosted.org/packages/de/43/f097895f05c1a2c122f32519fb55cb60919f769222871ddf6e8282db7beb/aiohttp-3.4.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "32a20f558dee528a5b49627b78005726", "sha256": "a6132db365def76145084041cede574a0c8ed53aa1a680a3027e41ee8f291bd4" }, "downloads": -1, "filename": "aiohttp-3.4.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "32a20f558dee528a5b49627b78005726", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 550379, "upload_time": "2018-08-25T11:37:09", "upload_time_iso_8601": "2018-08-25T11:37:09.084726Z", "url": "https://files.pythonhosted.org/packages/be/99/e5ae79499beacc79f24e1a3d44388ef9fe7b1fdd6af6e5e8ceb4f814c0ee/aiohttp-3.4.0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "20d8cc2bb6a87bec535ece5289c33632", "sha256": "01a2059a0505460828854d218cf090d80db277033b8e6906144ab9bd4677fc82" }, "downloads": -1, "filename": "aiohttp-3.4.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "20d8cc2bb6a87bec535ece5289c33632", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 576519, "upload_time": "2018-08-25T11:40:31", "upload_time_iso_8601": "2018-08-25T11:40:31.626783Z", "url": "https://files.pythonhosted.org/packages/5d/b5/d6349b718eb10f8622939c1ca776fc5354cc62cd17d06842d0b9ef1a5cbb/aiohttp-3.4.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "002d070df125dc4f0f676b7adccb6cbb", "sha256": "9b15efa7411dcf3b59c1f4766eb16ba1aba4531a33e54d469ee22106eabce460" }, "downloads": -1, "filename": "aiohttp-3.4.0.tar.gz", "has_sig": false, "md5_digest": "002d070df125dc4f0f676b7adccb6cbb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 821067, "upload_time": "2018-08-25T11:23:45", "upload_time_iso_8601": "2018-08-25T11:23:45.133298Z", "url": "https://files.pythonhosted.org/packages/09/01/22c9b713b195d071b73fdc2f977f8717497b0d30c41c0b4a9cd908b925ec/aiohttp-3.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.4.0a0": [ { "comment_text": "", "digests": { "md5": "1c583bbb50304180eda82b6c7a52f9a7", "sha256": "fe68f893d7ade7e8d3600f32678f0c306ae9de744e9515b8baa5d3192b28e0a0" }, "downloads": -1, "filename": "aiohttp-3.4.0a0-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "1c583bbb50304180eda82b6c7a52f9a7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 598039, "upload_time": "2018-08-11T12:34:10", "upload_time_iso_8601": "2018-08-11T12:34:10.006842Z", "url": "https://files.pythonhosted.org/packages/2b/6a/bb23547b02237dd965ed900d1561bded05bd2c1a2cf1259d6945ab2f24d2/aiohttp-3.4.0a0-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6e92bc469209805e32a4280d139e8b1c", "sha256": "085fa92d2995a1208a60018e15d8690228f3e2f028c93a25246be73e4ccf4db1" }, "downloads": -1, "filename": "aiohttp-3.4.0a0-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "6e92bc469209805e32a4280d139e8b1c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 594577, "upload_time": "2018-08-11T12:43:15", "upload_time_iso_8601": "2018-08-11T12:43:15.505828Z", "url": "https://files.pythonhosted.org/packages/c8/91/dcc588d2e2e60b292ff086b049d63019124207bec191e00ed9c474aaa9dd/aiohttp-3.4.0a0-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "425c401940dae92e4325f516af31a46c", "sha256": "0c1b1152525b93555c5ac4cdc488b78a3eb1b1121c43f7982920129dc3909379" }, "downloads": -1, "filename": "aiohttp-3.4.0a0-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "425c401940dae92e4325f516af31a46c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 586537, "upload_time": "2018-08-11T12:51:10", "upload_time_iso_8601": "2018-08-11T12:51:10.763789Z", "url": "https://files.pythonhosted.org/packages/15/ee/59d5209a951a46ea54472a2d7fe93fa4d5cb267ca49238f9ee2e5a4ca461/aiohttp-3.4.0a0-cp35-cp35m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f1a4ad561b0062de2659598b419ad74", "sha256": "4fa79cbf74099d835a666b8918a25693f23e630a88ce4c4c60b82688029639d7" }, "downloads": -1, "filename": "aiohttp-3.4.0a0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8f1a4ad561b0062de2659598b419ad74", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1066321, "upload_time": "2018-08-11T12:48:42", "upload_time_iso_8601": "2018-08-11T12:48:42.341927Z", "url": "https://files.pythonhosted.org/packages/e6/c9/24e5b31bdf67b00fce7eb1d0c34d8e063b8f205cb4e1fb1fad9ad4ce5e1d/aiohttp-3.4.0a0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f9d4ec8eea72a73e0f6dd53ced11eb7", "sha256": "d5853be2893ab4080c462a393c561112d5101de4d765d5fed7d02341618f9afa" }, "downloads": -1, "filename": "aiohttp-3.4.0a0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3f9d4ec8eea72a73e0f6dd53ced11eb7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1078643, "upload_time": "2018-08-11T12:48:44", "upload_time_iso_8601": "2018-08-11T12:48:44.875959Z", "url": "https://files.pythonhosted.org/packages/ea/17/b83bbd725d74db54c2b69ba416390394a0d969395c43b8e00f510915e930/aiohttp-3.4.0a0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b0562cdefd69059d366c73f9f380499", "sha256": "10435eceb05bc01999c9710764e8cb3c2321fe6f62e1c3bbc9223069ceda84af" }, "downloads": -1, "filename": "aiohttp-3.4.0a0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "0b0562cdefd69059d366c73f9f380499", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 548230, "upload_time": "2018-08-11T11:48:15", "upload_time_iso_8601": "2018-08-11T11:48:15.569263Z", "url": "https://files.pythonhosted.org/packages/f3/11/646091ec5f036cb7b925766cf3b048559aa29f569a97d3990ff8df806fc0/aiohttp-3.4.0a0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b747f9b4cefe7bc7a77d037abc103c4e", "sha256": "fe99213170012571b5cf920c00eba029e2da960dc94a297acdfbd4f1030613d3" }, "downloads": -1, "filename": "aiohttp-3.4.0a0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "b747f9b4cefe7bc7a77d037abc103c4e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 573544, "upload_time": "2018-08-11T11:51:44", "upload_time_iso_8601": "2018-08-11T11:51:44.918345Z", "url": "https://files.pythonhosted.org/packages/6a/16/4c9db5718951843bc2df5f336dc5186860d79c3198a56a913960c042f4e4/aiohttp-3.4.0a0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "59e9e07e55e7bad6a4ca3efe5f116194", "sha256": "197104c018048082cce2c617a742cb673a2046ae58b305f84435c467cce71423" }, "downloads": -1, "filename": "aiohttp-3.4.0a0-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "59e9e07e55e7bad6a4ca3efe5f116194", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 600722, "upload_time": "2018-08-11T12:34:23", "upload_time_iso_8601": "2018-08-11T12:34:23.458290Z", "url": "https://files.pythonhosted.org/packages/66/b6/fd6860e20063d8644ffab2a58326372a3cc116c79e7e86dbfdf127ac4341/aiohttp-3.4.0a0-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "871ab4a4a8002b6b557c20ab62557a89", "sha256": "308dbf8c562526ee6654acd190561fcce5d7724abd25219e6c0bdca75c875fc4" }, "downloads": -1, "filename": "aiohttp-3.4.0a0-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "871ab4a4a8002b6b557c20ab62557a89", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 597437, "upload_time": "2018-08-11T12:43:47", "upload_time_iso_8601": "2018-08-11T12:43:47.835737Z", "url": "https://files.pythonhosted.org/packages/43/a1/0c80fde6ec65904959ceae085675b05f758b19cc42abf45c04f31b04bea3/aiohttp-3.4.0a0-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8bf6c768179c5d7af77d9a042a481b30", "sha256": "f20df358f4994482a2c47cb8a523a130bdf5598e5759167032029b94c45bcf27" }, "downloads": -1, "filename": "aiohttp-3.4.0a0-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "8bf6c768179c5d7af77d9a042a481b30", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 592491, "upload_time": "2018-08-11T12:51:42", "upload_time_iso_8601": "2018-08-11T12:51:42.065756Z", "url": "https://files.pythonhosted.org/packages/af/7b/0c5a9fe718f52215b2b49aaf1dee4e5f62a4b6f89c4671e9692c036826b1/aiohttp-3.4.0a0-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b15934c7c703cf1e1c10a451e6f4bca", "sha256": "39af9e3f9f805b187473a8b936a5616576d753358f2a223ff0990fe974cf72b1" }, "downloads": -1, "filename": "aiohttp-3.4.0a0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0b15934c7c703cf1e1c10a451e6f4bca", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1084207, "upload_time": "2018-08-11T12:48:46", "upload_time_iso_8601": "2018-08-11T12:48:46.920559Z", "url": "https://files.pythonhosted.org/packages/2a/35/ea327a47d96bced48797f19787aeb671ff9758112be5eae2282d9b204254/aiohttp-3.4.0a0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8ba1fc4a44134147ed26e1f106811df1", "sha256": "c599c7df78b776e1796beb106c4f2370e5e29f67cdc507256424ee015df29216" }, "downloads": -1, "filename": "aiohttp-3.4.0a0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8ba1fc4a44134147ed26e1f106811df1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1096243, "upload_time": "2018-08-11T12:48:49", "upload_time_iso_8601": "2018-08-11T12:48:49.075531Z", "url": "https://files.pythonhosted.org/packages/1d/f7/9f71eb91d97ddb048ff436ccd4687e10d8a61e7b3ca247b034ee2f7407a0/aiohttp-3.4.0a0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cce218cea1e70543d0a8b1ee7e246643", "sha256": "ff69734e2b8e2b81a3a8cf2bee38b3eef0c370399e209812f8e1e590b4ba234a" }, "downloads": -1, "filename": "aiohttp-3.4.0a0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "cce218cea1e70543d0a8b1ee7e246643", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 550070, "upload_time": "2018-08-11T11:55:03", "upload_time_iso_8601": "2018-08-11T11:55:03.139081Z", "url": "https://files.pythonhosted.org/packages/57/bc/0ef5c15d6950405480469d470a8c5508d67f7e50e7aaa1f0a052dbdcda45/aiohttp-3.4.0a0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aae04b534b99684b8a24c8c3148dec88", "sha256": "9b182c0f1e30cd57a2d3e554c923fae6024535bd982a6d71fc2512efe4b9d1b2" }, "downloads": -1, "filename": "aiohttp-3.4.0a0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "aae04b534b99684b8a24c8c3148dec88", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 575520, "upload_time": "2018-08-11T11:58:12", "upload_time_iso_8601": "2018-08-11T11:58:12.112305Z", "url": "https://files.pythonhosted.org/packages/f3/c0/de3f6422464c0f037cae57d0bd2d55329363c26612d636acf3bb3743b8c3/aiohttp-3.4.0a0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "988b1babea7fb7b02d4b6e6bb430fe1c", "sha256": "db77132460ef34e96cdd20129424d4f953dc06568fd2ebb474c9000e5443e8d2" }, "downloads": -1, "filename": "aiohttp-3.4.0a0-cp37-cp37m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "988b1babea7fb7b02d4b6e6bb430fe1c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 600792, "upload_time": "2018-08-11T12:33:28", "upload_time_iso_8601": "2018-08-11T12:33:28.767507Z", "url": "https://files.pythonhosted.org/packages/53/9d/bac89b34ddc040b02d579f7e141d55478f166a04d233f1731a73f5c5cbf0/aiohttp-3.4.0a0-cp37-cp37m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2eea4f0e289b529ab479cef2523d0216", "sha256": "92c19a5e609bd24a6451d614676e37c2e38968ec9df69d10b482e70d61ea486f" }, "downloads": -1, "filename": "aiohttp-3.4.0a0-cp37-cp37m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "2eea4f0e289b529ab479cef2523d0216", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 597344, "upload_time": "2018-08-11T12:44:34", "upload_time_iso_8601": "2018-08-11T12:44:34.766366Z", "url": "https://files.pythonhosted.org/packages/46/38/459d8f73b70e83548258b763d2f902a84485fb22f0292eb88f75f7d51cd1/aiohttp-3.4.0a0-cp37-cp37m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aef4943e514446c772d8ccfae6fae9b6", "sha256": "636f89e534cd68a9e223927506dd3e839410ae20f357dd3680b384f5a537f7e3" }, "downloads": -1, "filename": "aiohttp-3.4.0a0-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "aef4943e514446c772d8ccfae6fae9b6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 589103, "upload_time": "2018-08-11T12:53:01", "upload_time_iso_8601": "2018-08-11T12:53:01.917817Z", "url": "https://files.pythonhosted.org/packages/71/d4/c84568feb90025a2df0abb70f3aad02bebb7457f517c7f298e7ebc2c19b0/aiohttp-3.4.0a0-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c5864591a3d082b090f9d12da0f6d20", "sha256": "14c07f3de64df4307f8247397a24e8c4f1dc22f50452857409d58f9757faf4c1" }, "downloads": -1, "filename": "aiohttp-3.4.0a0-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0c5864591a3d082b090f9d12da0f6d20", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1085651, "upload_time": "2018-08-11T12:48:51", "upload_time_iso_8601": "2018-08-11T12:48:51.146136Z", "url": "https://files.pythonhosted.org/packages/b1/bf/53189147c3abaac6b6418d94df0dfde4fe2f2050e9a6484dda2f2f4ff26c/aiohttp-3.4.0a0-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f00c80656f17982ee0d179181883ba82", "sha256": "ab2859e0f41ab1e2c63a6c9ff564b588dae2ff297f1dfcce045ea7b7287707cb" }, "downloads": -1, "filename": "aiohttp-3.4.0a0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f00c80656f17982ee0d179181883ba82", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1095168, "upload_time": "2018-08-11T12:48:53", "upload_time_iso_8601": "2018-08-11T12:48:53.195677Z", "url": "https://files.pythonhosted.org/packages/eb/a8/aa3f1b2496c157951dceeab4a2e0ecec8d9f3b8b73305dba5e5e612f2d94/aiohttp-3.4.0a0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5d4aae2fcd11228b3fff8ecb678e27c7", "sha256": "866afe4be97cf196c702d52cbcc4226ff503d78e922c5a04a8d64d447978dec1" }, "downloads": -1, "filename": "aiohttp-3.4.0a0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "5d4aae2fcd11228b3fff8ecb678e27c7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 549634, "upload_time": "2018-08-11T12:01:33", "upload_time_iso_8601": "2018-08-11T12:01:33.530621Z", "url": "https://files.pythonhosted.org/packages/5b/d2/6f96933e9f983ff7794e5220d9d658268ada7e958d0046beac72b36dfd19/aiohttp-3.4.0a0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1b94a8fc629b5e3152ac98c8194e9d50", "sha256": "4c650bc43e371bb9df8a61a64b84c0c17b6af81addb54c246f01eba3826178b2" }, "downloads": -1, "filename": "aiohttp-3.4.0a0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "1b94a8fc629b5e3152ac98c8194e9d50", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 575399, "upload_time": "2018-08-11T12:05:25", "upload_time_iso_8601": "2018-08-11T12:05:25.521225Z", "url": "https://files.pythonhosted.org/packages/67/a2/81ce6bd3519517d95f20e2962b0d01e908d4892ea25df8ee03b9299857cb/aiohttp-3.4.0a0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d737e0066298796a2167fef82740016", "sha256": "b55ff305c50c224c31d9286d56546ed39c518c777eda26227e671fbefe600471" }, "downloads": -1, "filename": "aiohttp-3.4.0a0.tar.gz", "has_sig": false, "md5_digest": "9d737e0066298796a2167fef82740016", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 822032, "upload_time": "2018-08-11T11:48:17", "upload_time_iso_8601": "2018-08-11T11:48:17.476924Z", "url": "https://files.pythonhosted.org/packages/d6/e9/1715e4c1f75e4ba599d587dc707755fdb7bd67a9a2bd193f545323e70981/aiohttp-3.4.0a0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.4.0a3": [ { "comment_text": "", "digests": { "md5": "f46562eec492a69877e9bfb840cccde1", "sha256": "3ecdc77c5d622d2d33cbc05ceed37004bbfe0d9504e018762841587225ceddf3" }, "downloads": -1, "filename": "aiohttp-3.4.0a3-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "f46562eec492a69877e9bfb840cccde1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 598044, "upload_time": "2018-08-21T01:07:49", "upload_time_iso_8601": "2018-08-21T01:07:49.966339Z", "url": "https://files.pythonhosted.org/packages/cd/0f/6475167b34d34a79237d991db4340c6f79106d373ff3b0f6e8f893c2e9a6/aiohttp-3.4.0a3-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d229e4e5bc2828234fc291301677c986", "sha256": "8f8341c1cbe4b6753161224891d39ffc9058af8e51f298f389ac2b06f06bf84f" }, "downloads": -1, "filename": "aiohttp-3.4.0a3-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "d229e4e5bc2828234fc291301677c986", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 594565, "upload_time": "2018-08-21T01:18:43", "upload_time_iso_8601": "2018-08-21T01:18:43.899319Z", "url": "https://files.pythonhosted.org/packages/94/af/9629a98b8d591394739e82abe507fceb9dc08d5e80e3eff3805198b499a6/aiohttp-3.4.0a3-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a7730420cda8f63b363ada1b60792226", "sha256": "daaa8a6c4755bb227412ad1a1b3ab477f13e8b4813a0de9a5562726b048e350a" }, "downloads": -1, "filename": "aiohttp-3.4.0a3-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "a7730420cda8f63b363ada1b60792226", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 586536, "upload_time": "2018-08-21T01:27:04", "upload_time_iso_8601": "2018-08-21T01:27:04.869772Z", "url": "https://files.pythonhosted.org/packages/06/09/def4a5b8f55a8129bb0928bf7cd7673d8d924e8332f359c71de500e4f50e/aiohttp-3.4.0a3-cp35-cp35m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e4e8ad12e3736b53d488fc012567488d", "sha256": "c00215fb860880c72f731adba3fb10b2603f7c879cf9f602208a6910bd37505d" }, "downloads": -1, "filename": "aiohttp-3.4.0a3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "e4e8ad12e3736b53d488fc012567488d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 548238, "upload_time": "2018-08-20T21:17:31", "upload_time_iso_8601": "2018-08-20T21:17:31.427140Z", "url": "https://files.pythonhosted.org/packages/ed/bd/ca3ab080868007c0777856ae5139339e97d3b272954707eb0ac4db4c0513/aiohttp-3.4.0a3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "06266eaf7e2e9054f77097ae70c5c1b4", "sha256": "582f29242532f0c07f6d59d20e2b0f29d18b909dc136c26b646838f8d8192797" }, "downloads": -1, "filename": "aiohttp-3.4.0a3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "06266eaf7e2e9054f77097ae70c5c1b4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 573552, "upload_time": "2018-08-20T21:22:02", "upload_time_iso_8601": "2018-08-20T21:22:02.213805Z", "url": "https://files.pythonhosted.org/packages/9b/44/ed24948fe9491623bf593a58826f69d633789cc6ac2b70304fb17bf81bff/aiohttp-3.4.0a3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e53692b3ccc0ec648d8be78d5c5b2a02", "sha256": "3f5f40446bb627b4b17fd634a48114ae761b93b8c094aa658f281e4634ddf492" }, "downloads": -1, "filename": "aiohttp-3.4.0a3-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "e53692b3ccc0ec648d8be78d5c5b2a02", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 600718, "upload_time": "2018-08-21T01:08:56", "upload_time_iso_8601": "2018-08-21T01:08:56.525268Z", "url": "https://files.pythonhosted.org/packages/5c/d8/0110de6d6e42cd6fef5d4b40411f0030894d4c118ac168ac16f9ae5d89a7/aiohttp-3.4.0a3-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a4171a4349d3b740a5fbcf66e578ce8f", "sha256": "4c9c6d4e8c8939fa613c32759126218b6e8605dcea86053ff388b36b11597f01" }, "downloads": -1, "filename": "aiohttp-3.4.0a3-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "a4171a4349d3b740a5fbcf66e578ce8f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 597435, "upload_time": "2018-08-21T01:18:47", "upload_time_iso_8601": "2018-08-21T01:18:47.848651Z", "url": "https://files.pythonhosted.org/packages/55/df/49a04d4ea5d35425e91b5c113f188e07710e7e99abecd9196d43f37ad859/aiohttp-3.4.0a3-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a9dcff5753d556945edf53e9a980b199", "sha256": "33f6d47f973dfc10bbf9524864f85b85255591ec782a60646945baff762934ba" }, "downloads": -1, "filename": "aiohttp-3.4.0a3-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "a9dcff5753d556945edf53e9a980b199", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 592487, "upload_time": "2018-08-21T01:27:15", "upload_time_iso_8601": "2018-08-21T01:27:15.706260Z", "url": "https://files.pythonhosted.org/packages/18/1f/f12ad9d656781e164a06757ea32b9c3d58f0911c239c0c47841326cb06cc/aiohttp-3.4.0a3-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7faced57d40543a2c5c46aa406268706", "sha256": "96f328f8d0d6a38c5ef630f8b3e49e36463c9d9438fb0f89101323b5e1166b8c" }, "downloads": -1, "filename": "aiohttp-3.4.0a3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "7faced57d40543a2c5c46aa406268706", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 550072, "upload_time": "2018-08-20T21:25:22", "upload_time_iso_8601": "2018-08-20T21:25:22.666688Z", "url": "https://files.pythonhosted.org/packages/2f/1f/9bfa36f45a7611abf71a3ecade91271ed6bf48a1abeba5fefbf615c0cba6/aiohttp-3.4.0a3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4e7d8bd5c24c608de2d379775f5bf86", "sha256": "3c17317d75464e32dbbbc48de593ab74047bca8bc9523645a9f6040884f6b87b" }, "downloads": -1, "filename": "aiohttp-3.4.0a3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "d4e7d8bd5c24c608de2d379775f5bf86", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 575522, "upload_time": "2018-08-20T21:29:53", "upload_time_iso_8601": "2018-08-20T21:29:53.431837Z", "url": "https://files.pythonhosted.org/packages/14/b7/716ac53ecd2103bdeacb89f4622f5badf6aa86c4155233ba0da314546088/aiohttp-3.4.0a3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1121fd8f71a9778a74089bb0f1fb8a4a", "sha256": "a9c119b18b3da7c4ecdcb2486f60677bfc1126591042679c5afd0c4d3088aebe" }, "downloads": -1, "filename": "aiohttp-3.4.0a3-cp37-cp37m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "1121fd8f71a9778a74089bb0f1fb8a4a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 600787, "upload_time": "2018-08-21T01:23:01", "upload_time_iso_8601": "2018-08-21T01:23:01.201512Z", "url": "https://files.pythonhosted.org/packages/e6/49/aa5af030cc816afc737c4fc7b3553a19658b664ef25b530efc2d05832976/aiohttp-3.4.0a3-cp37-cp37m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a54c0394afda50900deab764cbd8583", "sha256": "cc845189759ab8d16f6b79457f9e49712567dd3533d63eac51cafd24ab36541b" }, "downloads": -1, "filename": "aiohttp-3.4.0a3-cp37-cp37m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "5a54c0394afda50900deab764cbd8583", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 597340, "upload_time": "2018-08-21T01:22:14", "upload_time_iso_8601": "2018-08-21T01:22:14.301899Z", "url": "https://files.pythonhosted.org/packages/d7/61/baf7c0b704a11820daba11ebadc9f35ceb91382d9ce244ec1b3b1b17bb2b/aiohttp-3.4.0a3-cp37-cp37m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1e8565cce40a0c7824337a9806c4c7ea", "sha256": "679c70e02b3eada98402bc2eee29e137f2ef3280812d89c839fe79f516ea581f" }, "downloads": -1, "filename": "aiohttp-3.4.0a3-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "1e8565cce40a0c7824337a9806c4c7ea", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 589101, "upload_time": "2018-08-21T01:31:17", "upload_time_iso_8601": "2018-08-21T01:31:17.199745Z", "url": "https://files.pythonhosted.org/packages/41/6c/1ba23a35d092c190077af3318a89d49083118cb22a669630a17a873d90b7/aiohttp-3.4.0a3-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b6fe8c299a2c1f7dca9da730f365b7e8", "sha256": "0806af1a897209d19283136cd78933a6bfa23f325a310e0007ffd8fe6a769b7f" }, "downloads": -1, "filename": "aiohttp-3.4.0a3-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "b6fe8c299a2c1f7dca9da730f365b7e8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 549632, "upload_time": "2018-08-20T21:34:10", "upload_time_iso_8601": "2018-08-20T21:34:10.548916Z", "url": "https://files.pythonhosted.org/packages/25/a0/4fb7ab4e6c36d87291a82e6951e1c123c3a0cf6e5caa24d1e0d67e691091/aiohttp-3.4.0a3-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8dc68e423737779dc74d60f2335ac807", "sha256": "c9c210a27767e4f7dc85141a3f7eef105fecc1de099411a3285d0270ca37f2db" }, "downloads": -1, "filename": "aiohttp-3.4.0a3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "8dc68e423737779dc74d60f2335ac807", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 575407, "upload_time": "2018-08-20T21:38:10", "upload_time_iso_8601": "2018-08-20T21:38:10.063947Z", "url": "https://files.pythonhosted.org/packages/3d/d7/c921dcf51e81c0927924075b7dc1162e1917acf27a62e2d477f2461af588/aiohttp-3.4.0a3-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cd4d4c12831d60dabf3ab15c2501a68f", "sha256": "009e8ee9c435a663ffe8e3409de22d5ee39444dde633043c58747f7412399d9d" }, "downloads": -1, "filename": "aiohttp-3.4.0a3.tar.gz", "has_sig": false, "md5_digest": "cd4d4c12831d60dabf3ab15c2501a68f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 822431, "upload_time": "2018-08-20T21:17:33", "upload_time_iso_8601": "2018-08-20T21:17:33.045692Z", "url": "https://files.pythonhosted.org/packages/4c/b7/a7eb476876cdab0b469fe619fc1e35f9296d7e7f1137f29f772ab26f078a/aiohttp-3.4.0a3.tar.gz", "yanked": false, "yanked_reason": null } ], "3.4.0b1": [ { "comment_text": "", "digests": { "md5": "29561097ef1411c361f1880e386f2937", "sha256": "67250f5d5221a518607e6f19327d6dd86108dafd95503143a4af0bafcc84c708" }, "downloads": -1, "filename": "aiohttp-3.4.0b1-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "29561097ef1411c361f1880e386f2937", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 599244, "upload_time": "2018-08-24T16:05:34", "upload_time_iso_8601": "2018-08-24T16:05:34.087072Z", "url": "https://files.pythonhosted.org/packages/60/27/f03783e6a6ab135a17f8f7ef95c51e0f70c975a0058271c51e31d211564f/aiohttp-3.4.0b1-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0cccc2d11f01bc65efacf20b3a30baf5", "sha256": "79a71afddd9fce3c70fcaf3e6bce27b865821a59506bc1ef9c08f70ddcf62b1b" }, "downloads": -1, "filename": "aiohttp-3.4.0b1-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "0cccc2d11f01bc65efacf20b3a30baf5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 595791, "upload_time": "2018-08-24T16:15:22", "upload_time_iso_8601": "2018-08-24T16:15:22.724175Z", "url": "https://files.pythonhosted.org/packages/fd/ed/0db12b5b2edb1e155322816558fa08ae6655bcf8c5758a24e5af8939169b/aiohttp-3.4.0b1-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8beaccd988450cfd2c926d0d63eed3b1", "sha256": "d34111c32069ec2ee7f97826f7d4865c80a52821594961701f45004392e03b61" }, "downloads": -1, "filename": "aiohttp-3.4.0b1-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "8beaccd988450cfd2c926d0d63eed3b1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 587446, "upload_time": "2018-08-24T16:26:48", "upload_time_iso_8601": "2018-08-24T16:26:48.666687Z", "url": "https://files.pythonhosted.org/packages/ae/0d/7e2eaed304557d595c02c1ee4533d22bb3bcbfe280d732cbad6b5e61dd2a/aiohttp-3.4.0b1-cp35-cp35m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9ce278d50aad1a8d54c058d1e2aae00", "sha256": "9d1334c35af34a8bb9319acf387f5fa4ae5913106f7e732548ceb1f0f085b590" }, "downloads": -1, "filename": "aiohttp-3.4.0b1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "d9ce278d50aad1a8d54c058d1e2aae00", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 548730, "upload_time": "2018-08-24T14:52:25", "upload_time_iso_8601": "2018-08-24T14:52:25.856011Z", "url": "https://files.pythonhosted.org/packages/a7/dc/a6084c881bc58ee04f05cafedc740c45536fbaa1eb4a032b2be20a69e6b8/aiohttp-3.4.0b1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "039457049b7b078cde38e65df4cd15b6", "sha256": "0f697b952490d5bb57eea230e9c4f526232b5c90dac65f17b5586674ffca33de" }, "downloads": -1, "filename": "aiohttp-3.4.0b1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "039457049b7b078cde38e65df4cd15b6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 574403, "upload_time": "2018-08-24T14:57:46", "upload_time_iso_8601": "2018-08-24T14:57:46.587046Z", "url": "https://files.pythonhosted.org/packages/e4/2b/e4408b7161f41c324056653374a51731a8de794ec933b8bcba6005c9d7a3/aiohttp-3.4.0b1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6e5624ee9d7f7f1f4a6c7ab7c3cb12ab", "sha256": "bb80821965e99e437ae001cd68d4b962a8043edc6c3c27dd330f489b1087813b" }, "downloads": -1, "filename": "aiohttp-3.4.0b1-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "6e5624ee9d7f7f1f4a6c7ab7c3cb12ab", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 601888, "upload_time": "2018-08-24T16:07:51", "upload_time_iso_8601": "2018-08-24T16:07:51.569718Z", "url": "https://files.pythonhosted.org/packages/ec/e6/c5d97865378f6318f2b6bf4f9d0c238ea5a9015d8da2cbf16d9039e20ae5/aiohttp-3.4.0b1-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2327abda7744dedeee78d47667e16772", "sha256": "96119c9fc5ed7fbccfb28496c00357f14d052b73e75a621f31e93a85350c89a8" }, "downloads": -1, "filename": "aiohttp-3.4.0b1-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "2327abda7744dedeee78d47667e16772", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 598649, "upload_time": "2018-08-24T16:17:18", "upload_time_iso_8601": "2018-08-24T16:17:18.040795Z", "url": "https://files.pythonhosted.org/packages/54/78/4a369d147f5013246f35b0385a4f2c49bfcbe3a1c3dc2148b9067646baf5/aiohttp-3.4.0b1-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "07cbdbf1d7b9635b886fc9f96ced096c", "sha256": "82f0dd3affe053bb89fcdb24120f72bf284d1d9f1bf2d169e0cf98321855d676" }, "downloads": -1, "filename": "aiohttp-3.4.0b1-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "07cbdbf1d7b9635b886fc9f96ced096c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 593383, "upload_time": "2018-08-24T16:29:51", "upload_time_iso_8601": "2018-08-24T16:29:51.039743Z", "url": "https://files.pythonhosted.org/packages/2c/95/a60ed6b65decd2ca0a057dc73e7aa34c2592f3306bcd3fb608342fd862a6/aiohttp-3.4.0b1-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f18d0cc6e04e6457fb8c8bfb83bc5092", "sha256": "c03d5b111ad3d18254680015f5cf885efb43bd5984678d8b6ece3f9dbb38c248" }, "downloads": -1, "filename": "aiohttp-3.4.0b1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "f18d0cc6e04e6457fb8c8bfb83bc5092", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 550546, "upload_time": "2018-08-24T15:01:29", "upload_time_iso_8601": "2018-08-24T15:01:29.934162Z", "url": "https://files.pythonhosted.org/packages/83/2f/f23026727433e06ba1f88e5f8cb60d125b45100e7db25f75c3fa80c89f79/aiohttp-3.4.0b1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "70575bd9261ffe7b8d2e582b4e67bae1", "sha256": "bf2b475a16494abc21d44a7a7dba428d25ea8a6e69d0772466870280729a0c4a" }, "downloads": -1, "filename": "aiohttp-3.4.0b1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "70575bd9261ffe7b8d2e582b4e67bae1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 576304, "upload_time": "2018-08-24T15:05:57", "upload_time_iso_8601": "2018-08-24T15:05:57.636891Z", "url": "https://files.pythonhosted.org/packages/02/67/cc7b07a70cd67da14d7aeb91606da4e0cbf9a87c484549542a3a1c30270a/aiohttp-3.4.0b1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34bd9f40cbdc9c9d04c05053008c6dfb", "sha256": "aaa521a80d09f9aa3031bb11b70818e46ecb0bf994fd9ac4634f6300b91903d4" }, "downloads": -1, "filename": "aiohttp-3.4.0b1-cp37-cp37m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "34bd9f40cbdc9c9d04c05053008c6dfb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 601956, "upload_time": "2018-08-24T16:20:19", "upload_time_iso_8601": "2018-08-24T16:20:19.966239Z", "url": "https://files.pythonhosted.org/packages/b5/ed/9a877cee416854851ffec2a02fc6eae352a1ba7b1fd425228606e3c524f6/aiohttp-3.4.0b1-cp37-cp37m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "00551d49ccdaf2d005cf28cddaeb4157", "sha256": "e5d4d313ebd2d4b4e916d5ced35c0dc4de9155d6a2f36faf5098379a7a7a37be" }, "downloads": -1, "filename": "aiohttp-3.4.0b1-cp37-cp37m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "00551d49ccdaf2d005cf28cddaeb4157", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 598547, "upload_time": "2018-08-24T16:25:47", "upload_time_iso_8601": "2018-08-24T16:25:47.155551Z", "url": "https://files.pythonhosted.org/packages/88/19/0b34894a30784a38336040da2b63524dd2f8d1d31b999d6d2cdb66edb236/aiohttp-3.4.0b1-cp37-cp37m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f28b5c6bfd8325284a21d4f861910d34", "sha256": "5077e3c15e41f928e3dd850b8f3ec67e6e0a13e2dd5dd8bc2a30ac7571036e24" }, "downloads": -1, "filename": "aiohttp-3.4.0b1-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "f28b5c6bfd8325284a21d4f861910d34", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 589964, "upload_time": "2018-08-24T16:35:46", "upload_time_iso_8601": "2018-08-24T16:35:46.967468Z", "url": "https://files.pythonhosted.org/packages/80/8d/202a77583d9bf61bec1e24d73581ce07d095d0b6ead1824a6dc6ea247b82/aiohttp-3.4.0b1-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e6f158df626a1be7c97d64c9e6d0e0eb", "sha256": "3a3c805cf4bb55299053207272471ff0d963df9c51a69a3d2299ac16c47fae5a" }, "downloads": -1, "filename": "aiohttp-3.4.0b1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "e6f158df626a1be7c97d64c9e6d0e0eb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 550125, "upload_time": "2018-08-24T15:09:47", "upload_time_iso_8601": "2018-08-24T15:09:47.070297Z", "url": "https://files.pythonhosted.org/packages/c3/6f/b2a6914be81d9fff714138768317e86a0fba1e69fc9b1b7fca84c8ea5286/aiohttp-3.4.0b1-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ccb48d04c4320e1697b6ccbeee371afe", "sha256": "4899330690961f690d90c5ebbcc3ed9a8569615a23f6dc593e3a32deb5dec7b5" }, "downloads": -1, "filename": "aiohttp-3.4.0b1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "ccb48d04c4320e1697b6ccbeee371afe", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 576269, "upload_time": "2018-08-24T15:14:54", "upload_time_iso_8601": "2018-08-24T15:14:54.274137Z", "url": "https://files.pythonhosted.org/packages/5b/ce/ebc5c973b88663cefc7898092ebdb241f023628200ad3eccedc62db48a6c/aiohttp-3.4.0b1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3fe4c6fc51f9b2368221fb42b00d18a0", "sha256": "faab0f953ae1b029bf29fbff34ea6f61d5077a23bc3ae7f05fd8d8582e363437" }, "downloads": -1, "filename": "aiohttp-3.4.0b1.tar.gz", "has_sig": false, "md5_digest": "3fe4c6fc51f9b2368221fb42b00d18a0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 822639, "upload_time": "2018-08-24T14:52:27", "upload_time_iso_8601": "2018-08-24T14:52:27.488711Z", "url": "https://files.pythonhosted.org/packages/61/34/8ee431470878b78011f6771101039bce6b99ee887cea24792327b3fcc65b/aiohttp-3.4.0b1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.4.0b2": [ { "comment_text": "", "digests": { "md5": "99cfdb7d7594a505467811bae017456b", "sha256": "f61222b4d60d5a5204622a02b92166c8af3eec48377b3b72a3df147acb2f5ebd" }, "downloads": -1, "filename": "aiohttp-3.4.0b2-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "99cfdb7d7594a505467811bae017456b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 599239, "upload_time": "2018-08-24T20:27:43", "upload_time_iso_8601": "2018-08-24T20:27:43.030786Z", "url": "https://files.pythonhosted.org/packages/0e/fe/c50122cfe977a63a378a4e1ae0fcfb8cd2df64fdcf2e1f169e4c557babd8/aiohttp-3.4.0b2-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e8504e0ccc22953e3df9056637297b1c", "sha256": "2293ac43188e757d9bf03f2161733d193b126bad837adac8399b0330fd4e53e5" }, "downloads": -1, "filename": "aiohttp-3.4.0b2-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "e8504e0ccc22953e3df9056637297b1c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 595803, "upload_time": "2018-08-24T20:36:57", "upload_time_iso_8601": "2018-08-24T20:36:57.387945Z", "url": "https://files.pythonhosted.org/packages/8c/e0/228b602ff11cc17467c3ce3e16a858ea301230b4f983684be78455713beb/aiohttp-3.4.0b2-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a2b2d3c8734784a1c91e11b39aa97bd4", "sha256": "1a09f4c2284feaed5564cf43cc118db21b3911067dfc98f667585c89cbf4f56c" }, "downloads": -1, "filename": "aiohttp-3.4.0b2-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "a2b2d3c8734784a1c91e11b39aa97bd4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 587448, "upload_time": "2018-08-24T20:54:47", "upload_time_iso_8601": "2018-08-24T20:54:47.170851Z", "url": "https://files.pythonhosted.org/packages/8d/a9/fc61494d07442dc30349875b0c4e4b027f83a1b111ccc660d919a8e8084a/aiohttp-3.4.0b2-cp35-cp35m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e55a848802e03198600ebe52c60608c8", "sha256": "3f7b871343b9a46b4d9f1d45a81f9bbd9e0349fee5d35ee8b9900134cd48a887" }, "downloads": -1, "filename": "aiohttp-3.4.0b2-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e55a848802e03198600ebe52c60608c8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1069333, "upload_time": "2018-08-24T20:40:50", "upload_time_iso_8601": "2018-08-24T20:40:50.008124Z", "url": "https://files.pythonhosted.org/packages/a6/cd/898421c82f2bc5f0d95bd6d248fa57f18c91f8ffc248f4c3ca50514bd343/aiohttp-3.4.0b2-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b83e18721d06606c91eb63503fc88efb", "sha256": "1e90684008292c32df27d2de390f02ce3687654207d636bf0d5b51d2a1bfc255" }, "downloads": -1, "filename": "aiohttp-3.4.0b2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b83e18721d06606c91eb63503fc88efb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1081013, "upload_time": "2018-08-24T20:40:52", "upload_time_iso_8601": "2018-08-24T20:40:52.208398Z", "url": "https://files.pythonhosted.org/packages/5f/94/0e6469967b1ccb71090303f43db209937afc0ebc2ac895dee584946b2249/aiohttp-3.4.0b2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0badc931f2fdc5af74028cde5ea3de2f", "sha256": "2b6dc33411fea19a919131140383312cc7689e223407c20534b27c3e10641eed" }, "downloads": -1, "filename": "aiohttp-3.4.0b2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "0badc931f2fdc5af74028cde5ea3de2f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 548730, "upload_time": "2018-08-24T19:22:06", "upload_time_iso_8601": "2018-08-24T19:22:06.167836Z", "url": "https://files.pythonhosted.org/packages/ee/82/0f1f5e57c01de5b9653f5e6d92dfcd1b701c9abda2a16eedc2c1c52cc859/aiohttp-3.4.0b2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42844404cf1bc54d73ae77d4f0c663d2", "sha256": "7cce4282a1b564e00716cd55450fc5023c427671c0e0733bbd0fa5abdaf72439" }, "downloads": -1, "filename": "aiohttp-3.4.0b2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "42844404cf1bc54d73ae77d4f0c663d2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 574402, "upload_time": "2018-08-24T19:26:20", "upload_time_iso_8601": "2018-08-24T19:26:20.503092Z", "url": "https://files.pythonhosted.org/packages/ec/3f/32b561509cb0cd160beb1cce87d0405de94122ec3f7d13adcffe9d54e341/aiohttp-3.4.0b2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a2c5c9e778dc1db8e30283edca47bcfd", "sha256": "64cfde76c15561207aec55adeb7118ead3cb98ae26fe5d86f339b45e0e34dba7" }, "downloads": -1, "filename": "aiohttp-3.4.0b2-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "a2c5c9e778dc1db8e30283edca47bcfd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 601888, "upload_time": "2018-08-24T20:27:42", "upload_time_iso_8601": "2018-08-24T20:27:42.475865Z", "url": "https://files.pythonhosted.org/packages/de/b9/d37ae912dd59f9727180896b450c3a94a3d3a391d382c51d4d893e5f451a/aiohttp-3.4.0b2-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fd8e889ae9ff1d0b4f4cd7c6276fe8bb", "sha256": "b18a33ff0479a717e4e1948b522b362dd6b541b9cae6bec5d27681e643e12ee6" }, "downloads": -1, "filename": "aiohttp-3.4.0b2-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "fd8e889ae9ff1d0b4f4cd7c6276fe8bb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 598648, "upload_time": "2018-08-24T20:46:14", "upload_time_iso_8601": "2018-08-24T20:46:14.706724Z", "url": "https://files.pythonhosted.org/packages/77/b2/3934412c36ba1901dd35d2c844864fd5f6317b545c4158531d966fb8e52d/aiohttp-3.4.0b2-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ccd006a03ca55c2ea747ff3b31f6076b", "sha256": "50a5427d9ee91e1eb3d86518e78158ce08a5a33a1a3e213886b77750dd14545c" }, "downloads": -1, "filename": "aiohttp-3.4.0b2-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "ccd006a03ca55c2ea747ff3b31f6076b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 593383, "upload_time": "2018-08-24T20:55:30", "upload_time_iso_8601": "2018-08-24T20:55:30.767316Z", "url": "https://files.pythonhosted.org/packages/68/3a/f2e8b5c00a0f4c86743912ffabfffd065b498dd35850be0c6ceb0b8a7c90/aiohttp-3.4.0b2-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c27f5c8b23dd572cc2debf38f6095b43", "sha256": "ccd5150af498f0ca1278707574ce400ce316a61711891fe9a6d37c77d972911b" }, "downloads": -1, "filename": "aiohttp-3.4.0b2-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c27f5c8b23dd572cc2debf38f6095b43", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1087458, "upload_time": "2018-08-24T20:40:53", "upload_time_iso_8601": "2018-08-24T20:40:53.808677Z", "url": "https://files.pythonhosted.org/packages/d1/f0/bd2644738b7328c5fba56e4efa9a3c6fdf0198adcdc406fdf619af89b846/aiohttp-3.4.0b2-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dfa27148346d109fef970130809dddf6", "sha256": "bc16bf0a2958533046997c0a6468b837322b383f2ab20269cfd5885d764f83a0" }, "downloads": -1, "filename": "aiohttp-3.4.0b2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dfa27148346d109fef970130809dddf6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1100369, "upload_time": "2018-08-24T20:40:55", "upload_time_iso_8601": "2018-08-24T20:40:55.735106Z", "url": "https://files.pythonhosted.org/packages/ee/0f/bb80f570b2ac93da4eaa070d6f989df2e09c45fc838abbd32b3ae06c3187/aiohttp-3.4.0b2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2f864fadb88e03d9a566e47289c92bcd", "sha256": "a86a4058da5962031fa56e7dff52884c19029e00434cfb1ed170faace96d2337" }, "downloads": -1, "filename": "aiohttp-3.4.0b2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "2f864fadb88e03d9a566e47289c92bcd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 550545, "upload_time": "2018-08-24T19:31:54", "upload_time_iso_8601": "2018-08-24T19:31:54.469040Z", "url": "https://files.pythonhosted.org/packages/03/5c/dc33833512f013e594bc4f5465287de9e48abe35175cc61d7b7b97c76c6a/aiohttp-3.4.0b2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ffe792b1bf30522162748b228646749", "sha256": "0f51d13962866007d7b8fe84d69439f82250f4f3cc22888e45a803b43e81512a" }, "downloads": -1, "filename": "aiohttp-3.4.0b2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "4ffe792b1bf30522162748b228646749", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 576304, "upload_time": "2018-08-24T19:35:37", "upload_time_iso_8601": "2018-08-24T19:35:37.974944Z", "url": "https://files.pythonhosted.org/packages/12/e9/ca4c0e1e4172c6f88e49d156605db98e314ef7e354b97381840e55a3548a/aiohttp-3.4.0b2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f5fa343e77c437d10e3a7f1f554952c", "sha256": "9e3993cd6fd05cf0dcba2d913a4d1e02cd7db8d893e7ac34669ca4583b5a01ba" }, "downloads": -1, "filename": "aiohttp-3.4.0b2-cp37-cp37m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "5f5fa343e77c437d10e3a7f1f554952c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 601959, "upload_time": "2018-08-24T20:45:04", "upload_time_iso_8601": "2018-08-24T20:45:04.867097Z", "url": "https://files.pythonhosted.org/packages/13/8b/9142960026728e9a11824bcd74c429251f032314b835606f9f07372db68b/aiohttp-3.4.0b2-cp37-cp37m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d0efde8dc2b0ef68955b7a35aaeafc6b", "sha256": "f4f8a4c69314f74ac7e6ec1f0a98d1f793acc8d9e48d14c8b2ca6cf9b70ff4d1" }, "downloads": -1, "filename": "aiohttp-3.4.0b2-cp37-cp37m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "d0efde8dc2b0ef68955b7a35aaeafc6b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 598545, "upload_time": "2018-08-24T20:50:59", "upload_time_iso_8601": "2018-08-24T20:50:59.450736Z", "url": "https://files.pythonhosted.org/packages/42/b3/9a1bab945c6cd3c2f604fe1ad81f183e33cdadc8600771969b1f0811129e/aiohttp-3.4.0b2-cp37-cp37m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6eb6bfdc1cc9b3435eba774e16272b8d", "sha256": "90c2b1dda84da51f678909b5d8412f937d652e46f6b3515fdcae43ae8afdacb0" }, "downloads": -1, "filename": "aiohttp-3.4.0b2-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "6eb6bfdc1cc9b3435eba774e16272b8d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 589958, "upload_time": "2018-08-24T21:01:16", "upload_time_iso_8601": "2018-08-24T21:01:16.110979Z", "url": "https://files.pythonhosted.org/packages/c2/36/46d2dde5c6d6ec28b2c987f88279f2ebd1104e4f39a854a849cbeda3b8ae/aiohttp-3.4.0b2-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "25307cc8f094522fc8bd7a2625e0df21", "sha256": "24b47285d13e49fa8b16d59cac0bcf852918dbdd257cf3ebe4b06f244a8b56e6" }, "downloads": -1, "filename": "aiohttp-3.4.0b2-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "25307cc8f094522fc8bd7a2625e0df21", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1088823, "upload_time": "2018-08-24T20:40:57", "upload_time_iso_8601": "2018-08-24T20:40:57.684308Z", "url": "https://files.pythonhosted.org/packages/b5/29/f215e861b661efabf8a70cd9bf1cea01656857cdcfbb49bc52a03a925393/aiohttp-3.4.0b2-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d4143f442d3309c2aca20c7fcf6708b", "sha256": "7b87d3ad5936beeab7af5c1899a2c90bbe5fbe2e780adc9d056adcd19bf656ab" }, "downloads": -1, "filename": "aiohttp-3.4.0b2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0d4143f442d3309c2aca20c7fcf6708b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1099396, "upload_time": "2018-08-24T20:40:59", "upload_time_iso_8601": "2018-08-24T20:40:59.745226Z", "url": "https://files.pythonhosted.org/packages/ba/22/a5d095c6b1114e0a64da0bf85634ff80f823f4fc5a3690cc517152fe9151/aiohttp-3.4.0b2-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b2d21ad8718320564ab4488458521375", "sha256": "b9ac0d48414586175110aa7778d602680e0d97d0e53fd78b7db23c0ceeafa00a" }, "downloads": -1, "filename": "aiohttp-3.4.0b2-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "b2d21ad8718320564ab4488458521375", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 550125, "upload_time": "2018-08-24T19:41:36", "upload_time_iso_8601": "2018-08-24T19:41:36.031018Z", "url": "https://files.pythonhosted.org/packages/38/fe/8f27d44e84afe289802629c7c86061ba8dca4d9a69a3e7870c89f916f582/aiohttp-3.4.0b2-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8480111581c00c43090dec998b3e59c4", "sha256": "697889c0e14e69f6e4428f180bb3f42f84aa6e026e9f65b8471f3d9ccb3800d7" }, "downloads": -1, "filename": "aiohttp-3.4.0b2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "8480111581c00c43090dec998b3e59c4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 576269, "upload_time": "2018-08-24T19:46:09", "upload_time_iso_8601": "2018-08-24T19:46:09.620218Z", "url": "https://files.pythonhosted.org/packages/28/d2/c55acab30c941a9fc94fe56f50d2886ed0ed381ab7be70e999a97495eeb1/aiohttp-3.4.0b2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "81e0003f56aeb56601fb7d7852a5aba5", "sha256": "fa8b9ee03376bf5de5cbc83abbac1376e3e75914e6f98e795c06bc957850b294" }, "downloads": -1, "filename": "aiohttp-3.4.0b2.tar.gz", "has_sig": false, "md5_digest": "81e0003f56aeb56601fb7d7852a5aba5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 822627, "upload_time": "2018-08-24T19:22:08", "upload_time_iso_8601": "2018-08-24T19:22:08.483129Z", "url": "https://files.pythonhosted.org/packages/a1/e5/30de37a42caf088b2d74bcf61819b87af949b9299f237a164b87a886ba8f/aiohttp-3.4.0b2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.4.1": [ { "comment_text": "", "digests": { "md5": "ea806fbd2f1f32a913db3e8a374b8e35", "sha256": "e076731b712298d2e1050465f549737dde924ea7cd1b7a86ccc2fe4726436c92" }, "downloads": -1, "filename": "aiohttp-3.4.1-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "ea806fbd2f1f32a913db3e8a374b8e35", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 599708, "upload_time": "2018-08-28T21:33:38", "upload_time_iso_8601": "2018-08-28T21:33:38.732105Z", "url": "https://files.pythonhosted.org/packages/0c/23/db91dcad4beaec3805d1c451091ce7888b0e12f429873bd80241dd19f799/aiohttp-3.4.1-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e3c3f41ece0940d79afded240717d3b2", "sha256": "3d42e8a343879ac9993b0e51a64a4e02fc6d3fb1c298aa9a8515f81c98658ae5" }, "downloads": -1, "filename": "aiohttp-3.4.1-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "e3c3f41ece0940d79afded240717d3b2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 596280, "upload_time": "2018-08-28T21:43:43", "upload_time_iso_8601": "2018-08-28T21:43:43.825420Z", "url": "https://files.pythonhosted.org/packages/47/39/4d8db83d438d4861f0fe4542b115a59af43ab8da25bc08cc47909a09f89c/aiohttp-3.4.1-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e8b8c5c6cff4883594acc863ebee1a3a", "sha256": "f16f517e18753bf3167deca7ac5fbedb5484a72cb4b4f071ea2f79029c0da867" }, "downloads": -1, "filename": "aiohttp-3.4.1-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "e8b8c5c6cff4883594acc863ebee1a3a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 587929, "upload_time": "2018-08-28T22:01:25", "upload_time_iso_8601": "2018-08-28T22:01:25.663771Z", "url": "https://files.pythonhosted.org/packages/eb/a9/32cfa5d293ac816c32f1c4cdab06ca069909b8081051b781570173b510f8/aiohttp-3.4.1-cp35-cp35m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "932bffb3886c62fd8fc27dcb62818da6", "sha256": "870b73824ea62fea14e135ca68f5d291eafe800bce552cf770f0152a5b37bd98" }, "downloads": -1, "filename": "aiohttp-3.4.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "932bffb3886c62fd8fc27dcb62818da6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1069108, "upload_time": "2018-08-28T21:45:35", "upload_time_iso_8601": "2018-08-28T21:45:35.484900Z", "url": "https://files.pythonhosted.org/packages/3c/3a/9179c624af544f19b545ce5d79f9663b53b0471fab36d9413e810bcfcf98/aiohttp-3.4.1-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c15190c84dcf2abc7c2602b4eba09a04", "sha256": "3d8573dd18032b2e99654e431ad2e863d1ea3cc9caa674958571f48820bd800c" }, "downloads": -1, "filename": "aiohttp-3.4.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c15190c84dcf2abc7c2602b4eba09a04", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1082126, "upload_time": "2018-08-28T21:45:37", "upload_time_iso_8601": "2018-08-28T21:45:37.936103Z", "url": "https://files.pythonhosted.org/packages/fc/0d/786a5b32e551ac72e91256dab3c7747514d0a5a87554d5857f2e681b68da/aiohttp-3.4.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dbddb847f69cf80143dfa01b835889f4", "sha256": "f8204969ce2de0786247d525223effaa5fe2cb6bdd5baa965809e119d7cbb6c8" }, "downloads": -1, "filename": "aiohttp-3.4.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "dbddb847f69cf80143dfa01b835889f4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 549183, "upload_time": "2018-08-28T20:34:32", "upload_time_iso_8601": "2018-08-28T20:34:32.926499Z", "url": "https://files.pythonhosted.org/packages/a0/5d/2663d5dbbad6bf9fa8dacfb4b61051725bb4a2d44c40149a0cc4dd3444ac/aiohttp-3.4.1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68cf60a61c27cfd37d784d541a886ccf", "sha256": "aa611b9ba83b6434b3bad0da69f493d4db08dda5d260a3458459c3a1b4b6e8c2" }, "downloads": -1, "filename": "aiohttp-3.4.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "68cf60a61c27cfd37d784d541a886ccf", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 574936, "upload_time": "2018-08-28T20:39:54", "upload_time_iso_8601": "2018-08-28T20:39:54.326071Z", "url": "https://files.pythonhosted.org/packages/2d/a6/6fb2d83de0771ee7fc67d800bbf24703d9b83f3e56a5ca2de1ebca1dc62b/aiohttp-3.4.1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9931f753758597460b81fc8b190228bc", "sha256": "4b88f03a87b4bdce7a5d8dceddf0e4b49909adb9e02c7cf5a124ff28fb0cf722" }, "downloads": -1, "filename": "aiohttp-3.4.1-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "9931f753758597460b81fc8b190228bc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 602361, "upload_time": "2018-08-28T21:33:54", "upload_time_iso_8601": "2018-08-28T21:33:54.721456Z", "url": "https://files.pythonhosted.org/packages/af/f5/4992cb4bac8bbf73dd40d1682e6a7e1bbc12fc68a6bdaa7b029d0b3fd13c/aiohttp-3.4.1-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e64463285e8ee47777829f89cac2cf08", "sha256": "3ca150aed4e6ad9b35ac51b01b89d0ad2f4d3704226dad809f0d87e7b9cf76a5" }, "downloads": -1, "filename": "aiohttp-3.4.1-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "e64463285e8ee47777829f89cac2cf08", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 599144, "upload_time": "2018-08-28T21:53:03", "upload_time_iso_8601": "2018-08-28T21:53:03.165663Z", "url": "https://files.pythonhosted.org/packages/c6/8b/f0651ddd9d93c1ca799e87f65580072cd06380c557562e8d933e450c06d4/aiohttp-3.4.1-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "537955feccc1a78e05912019bbbcf875", "sha256": "483261bb4c8c04b6d7054178e61852ee23dac65dd9109ded50b8c01642cb28e7" }, "downloads": -1, "filename": "aiohttp-3.4.1-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "537955feccc1a78e05912019bbbcf875", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 593889, "upload_time": "2018-08-28T22:02:58", "upload_time_iso_8601": "2018-08-28T22:02:58.074912Z", "url": "https://files.pythonhosted.org/packages/07/fc/a38911401e5617c16e3ab50be80b85d8cc0cc67a138f386eb45d62cab4d7/aiohttp-3.4.1-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "115e52a25a3e78909a949876f17f293a", "sha256": "4e6739c7b1c9ad41bed93c76ccdbf4f0c2e01efc1d5c01584f5716803a1072f5" }, "downloads": -1, "filename": "aiohttp-3.4.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "115e52a25a3e78909a949876f17f293a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1089388, "upload_time": "2018-08-28T21:45:39", "upload_time_iso_8601": "2018-08-28T21:45:39.726425Z", "url": "https://files.pythonhosted.org/packages/8c/ca/9aa62307650416f38fd39114f439485e6a9d7f5eaf081a83a75128750ed6/aiohttp-3.4.1-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0a21380042dd3dfc75ebf8886a5f058d", "sha256": "1514c83e7c7f482ce3876b13ccce2c8a7d2400ff992bebd6c6c049660ababb43" }, "downloads": -1, "filename": "aiohttp-3.4.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0a21380042dd3dfc75ebf8886a5f058d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1100875, "upload_time": "2018-08-28T21:45:41", "upload_time_iso_8601": "2018-08-28T21:45:41.338910Z", "url": "https://files.pythonhosted.org/packages/23/0c/c0d4348c6fab8e5161cbb91c2901d9ea6136b456fdeff70c117ec613d92a/aiohttp-3.4.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b7f0130ca9755013eafb5dca4264520", "sha256": "e9610a30b14fdc3379dff42c61098e0234c44261e98a1467c0cc1d9c7c802242" }, "downloads": -1, "filename": "aiohttp-3.4.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "9b7f0130ca9755013eafb5dca4264520", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 551006, "upload_time": "2018-08-28T20:44:23", "upload_time_iso_8601": "2018-08-28T20:44:23.523990Z", "url": "https://files.pythonhosted.org/packages/4a/34/a13fcde2af6f6bd93475963c784fd9f832ce5af88bfc94a794cdb09568b3/aiohttp-3.4.1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc850384504d589768578fe416f4404e", "sha256": "bf33b25a8eafc71dcc04a255c0fd14fcf90dac28d939edefc8047579de8917ef" }, "downloads": -1, "filename": "aiohttp-3.4.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "fc850384504d589768578fe416f4404e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 576817, "upload_time": "2018-08-28T20:48:20", "upload_time_iso_8601": "2018-08-28T20:48:20.179541Z", "url": "https://files.pythonhosted.org/packages/6b/5b/23e55a7681dc8801b3b6ded1d43da470d293cc2047f2f19d350c65fe8600/aiohttp-3.4.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f9b46f9b58b92871ff850120a9b69d41", "sha256": "d4a44deaa7196fec6f9ed3ab0e46fd0e4bb94690be972fd4252c307fa7411a35" }, "downloads": -1, "filename": "aiohttp-3.4.1-cp37-cp37m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "f9b46f9b58b92871ff850120a9b69d41", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 602478, "upload_time": "2018-08-28T21:51:30", "upload_time_iso_8601": "2018-08-28T21:51:30.913077Z", "url": "https://files.pythonhosted.org/packages/31/d6/64e612fae323514dac6ddab6092e12d0a4ee674c1b771426a33c31df9926/aiohttp-3.4.1-cp37-cp37m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3cf418130beb286c485bd91ee2249bd", "sha256": "0fdd42cd0f39e2eda28745c329bdc4a7b2e3d17be67cba4097da8d7dd128f7ed" }, "downloads": -1, "filename": "aiohttp-3.4.1-cp37-cp37m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "c3cf418130beb286c485bd91ee2249bd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 599048, "upload_time": "2018-08-28T21:55:44", "upload_time_iso_8601": "2018-08-28T21:55:44.813195Z", "url": "https://files.pythonhosted.org/packages/3a/32/cc4ec831b79350a4fae961a17f4d739d02e87a47e079caaac15a583369a0/aiohttp-3.4.1-cp37-cp37m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "119075dde0c91dcf33f7901f328bd73f", "sha256": "03f490c5e823f0843433e259bad8e15849df7d9cf6598a0d8659aa95d9bd3db4" }, "downloads": -1, "filename": "aiohttp-3.4.1-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "119075dde0c91dcf33f7901f328bd73f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 590437, "upload_time": "2018-08-28T22:06:33", "upload_time_iso_8601": "2018-08-28T22:06:33.923036Z", "url": "https://files.pythonhosted.org/packages/af/36/26b96058197a8b73984d5816416754874da93009df699cbd5048f0685683/aiohttp-3.4.1-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "880d1adaea277c6dff95cc19fdab1109", "sha256": "543eba8b65873f77fc22b91c6356e684bf0ed52a4407181d54ed97405d720589" }, "downloads": -1, "filename": "aiohttp-3.4.1-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "880d1adaea277c6dff95cc19fdab1109", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1088616, "upload_time": "2018-08-28T21:45:43", "upload_time_iso_8601": "2018-08-28T21:45:43.176615Z", "url": "https://files.pythonhosted.org/packages/81/29/54c3d135dd8fb894fb8533fee9fe85b75295f76015330b2e6efeb2321489/aiohttp-3.4.1-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "28c4f5c60c3dd048c8a734db4776852a", "sha256": "138f5e5036773001241f3ed206fe4fe326e91d6422ff1e727d2ad7b2f7b46b91" }, "downloads": -1, "filename": "aiohttp-3.4.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "28c4f5c60c3dd048c8a734db4776852a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1100006, "upload_time": "2018-08-28T21:45:45", "upload_time_iso_8601": "2018-08-28T21:45:45.226320Z", "url": "https://files.pythonhosted.org/packages/09/c8/bcb0a8b2b0174e0fc036c687e0d1a6a52a886bc73a159d5e47755e2d8dc6/aiohttp-3.4.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "772f5dbbde2425e0899000a56eb80b3b", "sha256": "014e749e5acef211462c7932e29c34c6f5d03640d4a59404ac3cd6c18e7c8e8d" }, "downloads": -1, "filename": "aiohttp-3.4.1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "772f5dbbde2425e0899000a56eb80b3b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 550591, "upload_time": "2018-08-28T20:52:52", "upload_time_iso_8601": "2018-08-28T20:52:52.678677Z", "url": "https://files.pythonhosted.org/packages/54/0c/2a32410fa61b8e66b0f394b44c671d4911bd633a476c993cef4298bb8d62/aiohttp-3.4.1-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18a66aca776b92ecd73a6f81c2341354", "sha256": "61c3426e7818a56d0594b45091c910e318ba6ba96602ce69cd1cbdf8a779f1ae" }, "downloads": -1, "filename": "aiohttp-3.4.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "18a66aca776b92ecd73a6f81c2341354", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 576781, "upload_time": "2018-08-28T20:58:18", "upload_time_iso_8601": "2018-08-28T20:58:18.519236Z", "url": "https://files.pythonhosted.org/packages/ec/b6/01c260bec3ce4506470c84dbcd55017cd32a18962ef3b071fe69038a4296/aiohttp-3.4.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3cd6fcd768fec241b6ac6403b72d7855", "sha256": "8619901d26f4aa317e7711aa794f50a41c79f3f564f87487738f9a3092573bf0" }, "downloads": -1, "filename": "aiohttp-3.4.1.tar.gz", "has_sig": false, "md5_digest": "3cd6fcd768fec241b6ac6403b72d7855", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 821475, "upload_time": "2018-08-28T20:34:34", "upload_time_iso_8601": "2018-08-28T20:34:34.629287Z", "url": "https://files.pythonhosted.org/packages/18/24/25c209d9e1ddff80579e2aeeb09c7838725b07c96b0f8b55805cfcb64434/aiohttp-3.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.4.2": [ { "comment_text": "", "digests": { "md5": "2fbf06557e91772007a2563c65a05b33", "sha256": "bb2af48882b6d351ffe17423d19a1a51f0850ead5b7e7237b663a4e880e8d5b7" }, "downloads": -1, "filename": "aiohttp-3.4.2-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "2fbf06557e91772007a2563c65a05b33", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 599773, "upload_time": "2018-09-01T20:48:46", "upload_time_iso_8601": "2018-09-01T20:48:46.900770Z", "url": "https://files.pythonhosted.org/packages/05/b1/8ab7d367801cd51229eaaed5c4ec3c1ba7fbaa87e3b939575c2711f6b1fd/aiohttp-3.4.2-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b7d02aeb8153dd57731ee40fb43f478e", "sha256": "04087c38e45da5aa1a8b2345441b821bf270436f7954eba1a7e36cc55fed81f8" }, "downloads": -1, "filename": "aiohttp-3.4.2-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "b7d02aeb8153dd57731ee40fb43f478e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 596354, "upload_time": "2018-09-01T20:59:15", "upload_time_iso_8601": "2018-09-01T20:59:15.331658Z", "url": "https://files.pythonhosted.org/packages/f2/8d/da1b12ad7ab29927ef1a2c3cc174e47327d8d966401900da698c19b24682/aiohttp-3.4.2-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c15acfc62ed8e8a098c64ca7b4a97dbd", "sha256": "d65a3942bce7717a1dc730927f583308e100a94375ed81fa06bcb02127e4c3ae" }, "downloads": -1, "filename": "aiohttp-3.4.2-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "c15acfc62ed8e8a098c64ca7b4a97dbd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 587990, "upload_time": "2018-09-01T21:08:41", "upload_time_iso_8601": "2018-09-01T21:08:41.835987Z", "url": "https://files.pythonhosted.org/packages/3a/2e/5ec8c0f677731996526f496ab460f0214cecc19e16c9d866a1b1bc2a7d57/aiohttp-3.4.2-cp35-cp35m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "03b505ae5444918c5285017a707a128e", "sha256": "f1958340035221643c0c27326fecf24e49265ba21c709e42163bc8b16cb2e0c7" }, "downloads": -1, "filename": "aiohttp-3.4.2-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "03b505ae5444918c5285017a707a128e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1069173, "upload_time": "2018-09-01T20:50:10", "upload_time_iso_8601": "2018-09-01T20:50:10.809684Z", "url": "https://files.pythonhosted.org/packages/9c/62/3e379e43fc5d23f880d7fde089cec578af41f45f25d4c7fb561ed6153ad6/aiohttp-3.4.2-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e42566db6811e787f50062f0b6119f35", "sha256": "6f35399afb09427523f97d6a6a000fb6562e9ed2d3560c2fdfb9d874beb46ecf" }, "downloads": -1, "filename": "aiohttp-3.4.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e42566db6811e787f50062f0b6119f35", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1082201, "upload_time": "2018-09-01T20:50:12", "upload_time_iso_8601": "2018-09-01T20:50:12.711134Z", "url": "https://files.pythonhosted.org/packages/96/bb/c6cf03e64578002a8b5224f3ffe230bea0c17be3969479fe7d214ccefef5/aiohttp-3.4.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c693e5edb28d12cac907d192083cb09", "sha256": "72f9ba7f4767a5e75aeb68f0441ddd3856f7129cbd0d188420e770d17e3b100a" }, "downloads": -1, "filename": "aiohttp-3.4.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "0c693e5edb28d12cac907d192083cb09", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 549248, "upload_time": "2018-09-01T19:49:08", "upload_time_iso_8601": "2018-09-01T19:49:08.203256Z", "url": "https://files.pythonhosted.org/packages/62/b0/fdca2aab68e55b89ce43709cfcb7941543cea3701ef3760e0714f39b3adc/aiohttp-3.4.2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9322a29e3b40e9108cbf0368df87cf16", "sha256": "e59bcc461b6523b8c9105032f7664bd918f9c3be5f96462b814e6bf1c915c32e" }, "downloads": -1, "filename": "aiohttp-3.4.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "9322a29e3b40e9108cbf0368df87cf16", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 575004, "upload_time": "2018-09-01T19:53:03", "upload_time_iso_8601": "2018-09-01T19:53:03.740535Z", "url": "https://files.pythonhosted.org/packages/b5/20/cb1396877221b1eddccdbb381180e979692ad5d6a89999dcd9c5b4c541e5/aiohttp-3.4.2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "991c79bb0bcdfe2c49638346a1f6dbd9", "sha256": "d50047664a199eab5e596e4a18f09781fcdc1ad43b3203c5585dc65cf4c57592" }, "downloads": -1, "filename": "aiohttp-3.4.2-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "991c79bb0bcdfe2c49638346a1f6dbd9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 602422, "upload_time": "2018-09-01T20:50:02", "upload_time_iso_8601": "2018-09-01T20:50:02.315725Z", "url": "https://files.pythonhosted.org/packages/34/2f/dff5fbae7aecaebcf987242a3ff0293d114aec515a72aac9562f587f7359/aiohttp-3.4.2-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e887a308701854b93443116cf4d6d292", "sha256": "0fae84267df30e27b072da1a09835616e6872f7cc82cfc3eb260a52e9b6de340" }, "downloads": -1, "filename": "aiohttp-3.4.2-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "e887a308701854b93443116cf4d6d292", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 599210, "upload_time": "2018-09-01T20:59:08", "upload_time_iso_8601": "2018-09-01T20:59:08.999585Z", "url": "https://files.pythonhosted.org/packages/d4/27/0ae48843ad10ebc53c461433063d30c98f29dac6b4a668f8d65e16568234/aiohttp-3.4.2-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "098403299331d62648e196106b50aa5f", "sha256": "f4cba665391bd31b3807277de3c73fd80cc17a0d280f11485fe9e58e228b6c5c" }, "downloads": -1, "filename": "aiohttp-3.4.2-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "098403299331d62648e196106b50aa5f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 593951, "upload_time": "2018-09-01T21:14:50", "upload_time_iso_8601": "2018-09-01T21:14:50.633751Z", "url": "https://files.pythonhosted.org/packages/08/79/a8da4ac7a9f5f7ffa605c18107c2dd4184e15c9a722030263fc902f8d9b2/aiohttp-3.4.2-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "04e54db4332f6369cda5edc1970c31dd", "sha256": "21ec794275615fcf9b0715266ce6709eb40045560c75431a1439fb1ed0fb0241" }, "downloads": -1, "filename": "aiohttp-3.4.2-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "04e54db4332f6369cda5edc1970c31dd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1089483, "upload_time": "2018-09-01T20:50:14", "upload_time_iso_8601": "2018-09-01T20:50:14.613029Z", "url": "https://files.pythonhosted.org/packages/c1/b8/6086b26c4df8227e5585b581f6b02a1b74df4527a6952bfb1978bcdcb3bd/aiohttp-3.4.2-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d50953e5f2cce177e8110bc585b2b67c", "sha256": "07f025ea9fbc904f46cde7ba1e16c4085687cf8b6cabb6b815a8b5962605a743" }, "downloads": -1, "filename": "aiohttp-3.4.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d50953e5f2cce177e8110bc585b2b67c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1100924, "upload_time": "2018-09-01T20:50:16", "upload_time_iso_8601": "2018-09-01T20:50:16.519044Z", "url": "https://files.pythonhosted.org/packages/6e/e4/3c3a2a8dd28b8eb1c7313b234f7e5c4618cff5b42bb6db4cf6e5e5931268/aiohttp-3.4.2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c500c6064408ae28295917289ce70a2b", "sha256": "5e452185e23f4a30208b057932b4ca5d528f4c4fdcc58028809e9f763fa52f36" }, "downloads": -1, "filename": "aiohttp-3.4.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "c500c6064408ae28295917289ce70a2b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 551068, "upload_time": "2018-09-01T19:57:18", "upload_time_iso_8601": "2018-09-01T19:57:18.429532Z", "url": "https://files.pythonhosted.org/packages/02/10/88b615e7e2a2b699ed964b5cbb4369482489bbcefb4bec6f69de1e71ecfd/aiohttp-3.4.2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5ec34b640bb57b70e21d19cd5de54931", "sha256": "17b105bfeefe7c1d122d5948f7fe20adb5eae83cbbf6c7b5a787176c883fc0ea" }, "downloads": -1, "filename": "aiohttp-3.4.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "5ec34b640bb57b70e21d19cd5de54931", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 576882, "upload_time": "2018-09-01T20:00:47", "upload_time_iso_8601": "2018-09-01T20:00:47.506252Z", "url": "https://files.pythonhosted.org/packages/57/00/620160b975b7a06c34a62d78223be70a6cb743cafe4fef15573c8e1e3d22/aiohttp-3.4.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ceccdcc880d7d056f7cb289b22d2396", "sha256": "26e996559c8f723c19a638f5c315716c258d9e2e2e5fa31ef76cc62a4d676c99" }, "downloads": -1, "filename": "aiohttp-3.4.2-cp37-cp37m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "9ceccdcc880d7d056f7cb289b22d2396", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 602546, "upload_time": "2018-09-01T21:05:30", "upload_time_iso_8601": "2018-09-01T21:05:30.726926Z", "url": "https://files.pythonhosted.org/packages/37/3b/a01a07c2586cf722b4ee710cb59aeacf0f52caf8aed12bd552571363d486/aiohttp-3.4.2-cp37-cp37m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9e47f3d56fed8bb109c266ac7c2253e", "sha256": "f54001b0504f808a88aa786749af6c52e6ca00b5b7350fbe84d6274e537e7485" }, "downloads": -1, "filename": "aiohttp-3.4.2-cp37-cp37m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "d9e47f3d56fed8bb109c266ac7c2253e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 599114, "upload_time": "2018-09-01T21:08:44", "upload_time_iso_8601": "2018-09-01T21:08:44.903413Z", "url": "https://files.pythonhosted.org/packages/12/ed/e64e2ead5da080d188b8f7e45ec731d12a8dca3cb97fc470a9fb7a19fd41/aiohttp-3.4.2-cp37-cp37m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a83e3ed78e0870073cf875d2e27156b2", "sha256": "2421ca89978a037f0ed1cc77fc5678561cc416c2047aad2e1dd8259bce1192b3" }, "downloads": -1, "filename": "aiohttp-3.4.2-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "a83e3ed78e0870073cf875d2e27156b2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 590506, "upload_time": "2018-09-01T21:18:46", "upload_time_iso_8601": "2018-09-01T21:18:46.436193Z", "url": "https://files.pythonhosted.org/packages/e0/d5/edf92b3c88e0db738816a770f44ba21b90f972cd76481b2d3dbf4dfc186d/aiohttp-3.4.2-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e24482451da8c158fbde9815b0d32993", "sha256": "613bc9d4513df36f76faf19f1010430c0cea45cc9db4af0df96d237e5fd42800" }, "downloads": -1, "filename": "aiohttp-3.4.2-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e24482451da8c158fbde9815b0d32993", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1088673, "upload_time": "2018-09-01T20:50:18", "upload_time_iso_8601": "2018-09-01T20:50:18.547021Z", "url": "https://files.pythonhosted.org/packages/a5/8e/9ff528320cda850721efe14f1cf8155983d264f106d2d7e0af40d1dabd46/aiohttp-3.4.2-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "efd3c8d8ddc2cf52dc9122a4368ef516", "sha256": "540c02599fb3f913121fe5767506f2ce36d0ff9bda6f0cf3f4fe978d68f9a8f8" }, "downloads": -1, "filename": "aiohttp-3.4.2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "efd3c8d8ddc2cf52dc9122a4368ef516", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1100047, "upload_time": "2018-09-01T20:50:20", "upload_time_iso_8601": "2018-09-01T20:50:20.420675Z", "url": "https://files.pythonhosted.org/packages/4d/f5/070e7fe9151077c0cc21951360734cfbb12cb41693988d234fbea4e32d06/aiohttp-3.4.2-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fcfecd343467714244dff4ad185aa31e", "sha256": "8de492b8c8d5acb60c30cf2275f36d0fb21d71e0a462bbed61f099a98264c635" }, "downloads": -1, "filename": "aiohttp-3.4.2-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "fcfecd343467714244dff4ad185aa31e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 550657, "upload_time": "2018-09-01T20:05:12", "upload_time_iso_8601": "2018-09-01T20:05:12.943880Z", "url": "https://files.pythonhosted.org/packages/93/95/8dc7a15a958a770ad4aa951c0b59e08e901937904dbc7a38e2982c076b1e/aiohttp-3.4.2-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ebb01f405203eb079e8a98b1df2d6f97", "sha256": "97e3f198da96d5833200d814812ee03dbf1b2ba5a85ea4751e5da1360fe9a7cd" }, "downloads": -1, "filename": "aiohttp-3.4.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "ebb01f405203eb079e8a98b1df2d6f97", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 576849, "upload_time": "2018-09-01T20:09:26", "upload_time_iso_8601": "2018-09-01T20:09:26.705020Z", "url": "https://files.pythonhosted.org/packages/a0/0c/5a7f32696f8e37e9909c234e9491f7c9e98547220c2f951d00cda6027575/aiohttp-3.4.2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "80137eb4f883dfbcb275a5d64cd548e4", "sha256": "74dc560e074a8a56ef3722bd87fc06acc38eaccba6b35afc39345782eeb41a42" }, "downloads": -1, "filename": "aiohttp-3.4.2.tar.gz", "has_sig": false, "md5_digest": "80137eb4f883dfbcb275a5d64cd548e4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 821655, "upload_time": "2018-09-01T19:49:09", "upload_time_iso_8601": "2018-09-01T19:49:09.948258Z", "url": "https://files.pythonhosted.org/packages/5c/3a/52f98b1c481362d5487f8c97792a1ec27ee8658d003e54e764dc0bff97a3/aiohttp-3.4.2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.4.3": [ { "comment_text": "", "digests": { "md5": "e041b5b4b79cef050453151596e8a50e", "sha256": "ce84aadbd9c0e738b1190b6c07149b3005b7666ec21c9f912b18e894c08b467e" }, "downloads": -1, "filename": "aiohttp-3.4.3-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "e041b5b4b79cef050453151596e8a50e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 596450, "upload_time": "2018-09-04T16:47:31", "upload_time_iso_8601": "2018-09-04T16:47:31.435899Z", "url": "https://files.pythonhosted.org/packages/c2/27/2199968361f6e206be64750cdf98ee255341df0e5dcc4aed5d3744de86c0/aiohttp-3.4.3-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c28d38b7861548951df5cfcac0ff91a", "sha256": "b0ecd9da4a6e6920381896ddbbb7ebebaf542e53a9b347334842a370a9598bec" }, "downloads": -1, "filename": "aiohttp-3.4.3-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "4c28d38b7861548951df5cfcac0ff91a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 588093, "upload_time": "2018-09-04T16:57:55", "upload_time_iso_8601": "2018-09-04T16:57:55.281046Z", "url": "https://files.pythonhosted.org/packages/f2/5c/93824b403bcd8da1332fc197ba8a73677ca06cc62d98cd272b68753770f6/aiohttp-3.4.3-cp35-cp35m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a9015e264ee0c9c4e94dd508766b1e8e", "sha256": "eef7561e7e45a0789554f84a6d6568cdc6c197ccc25b1a9b2b57ae609e237a37" }, "downloads": -1, "filename": "aiohttp-3.4.3-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a9015e264ee0c9c4e94dd508766b1e8e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1069262, "upload_time": "2018-09-04T16:30:09", "upload_time_iso_8601": "2018-09-04T16:30:09.208050Z", "url": "https://files.pythonhosted.org/packages/d6/62/ff650c86d1e2b8868d3d38f0d2530199a11afe5692c3637e9dd0cdc2d9b0/aiohttp-3.4.3-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0ba17a8db7eb3df7e6a08e62db7b7e2", "sha256": "6f660a672ed11dbd0181b9cf4b40ef4d6c45d3703acf20d69d375a702ca7a631" }, "downloads": -1, "filename": "aiohttp-3.4.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e0ba17a8db7eb3df7e6a08e62db7b7e2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1082304, "upload_time": "2018-09-04T16:30:11", "upload_time_iso_8601": "2018-09-04T16:30:11.042382Z", "url": "https://files.pythonhosted.org/packages/7e/80/a68ebbaad3aa864010cb37f6390f1f2f64c2291e932c806c22ce5b118f00/aiohttp-3.4.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e1208a65d9955d32ba330ae2622f746", "sha256": "68f57c5af7a48c6b19acab06ebc07305f2f14b3e70a73d8ef6e8169d4f5d1e5f" }, "downloads": -1, "filename": "aiohttp-3.4.3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "8e1208a65d9955d32ba330ae2622f746", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 549344, "upload_time": "2018-09-04T14:43:07", "upload_time_iso_8601": "2018-09-04T14:43:07.495524Z", "url": "https://files.pythonhosted.org/packages/5b/7d/b6cfde4995445076e4c189488c94c9ba96e204da2cc18b047386f068f4c8/aiohttp-3.4.3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6a310484597607a46b5a90baa886acea", "sha256": "9fc5afe9eb50eeba32d1a44437d6da050be41756b4a12b72a11d794a86d82944" }, "downloads": -1, "filename": "aiohttp-3.4.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "6a310484597607a46b5a90baa886acea", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 575093, "upload_time": "2018-09-04T14:47:28", "upload_time_iso_8601": "2018-09-04T14:47:28.609937Z", "url": "https://files.pythonhosted.org/packages/c9/c4/c679eb6354b50953cf198f469e1f195ebd598cd3321bc3a921eaa2900b0e/aiohttp-3.4.3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68f50a410639b14b75e4f1873e7c51a1", "sha256": "d058dd2d77a8d10d076f92781e6431d93bf0a14bc27ec04416bf7c723f74ba7d" }, "downloads": -1, "filename": "aiohttp-3.4.3-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "68f50a410639b14b75e4f1873e7c51a1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 599308, "upload_time": "2018-09-04T16:47:16", "upload_time_iso_8601": "2018-09-04T16:47:16.000591Z", "url": "https://files.pythonhosted.org/packages/44/99/228eb5555256f01b7536d87315c8d40e52887567541446cad437892526f9/aiohttp-3.4.3-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1c5ddbcf220da783670f03a882857290", "sha256": "6dfe2771b35ff3c935f84657cc6a060d1d9b63c47a21031cabdc8579d89eaa61" }, "downloads": -1, "filename": "aiohttp-3.4.3-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "1c5ddbcf220da783670f03a882857290", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 594049, "upload_time": "2018-09-04T17:01:26", "upload_time_iso_8601": "2018-09-04T17:01:26.985611Z", "url": "https://files.pythonhosted.org/packages/af/1e/fa17e61ab1abd612355ab26f461ab53730076ba6408b594feb84bdadc394/aiohttp-3.4.3-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "25b1b39f5d5ba9b6a9770606bb411f07", "sha256": "95bd80e9850d8adbe25f60423bcd1b5e3df7f3bf04eb1265b11118d6bf8c6b80" }, "downloads": -1, "filename": "aiohttp-3.4.3-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "25b1b39f5d5ba9b6a9770606bb411f07", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1089556, "upload_time": "2018-09-04T16:30:12", "upload_time_iso_8601": "2018-09-04T16:30:12.823008Z", "url": "https://files.pythonhosted.org/packages/ab/76/9ac03a1c5de2cd13fd3c18bcce8ab028214b4bb97d4144a6b163ac48cca6/aiohttp-3.4.3-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "62134df780bd86af0320db4b63209903", "sha256": "973c0c07a2b1d76152ac8603ba7cdd358d4e6485149ad09d264425a10ad24d76" }, "downloads": -1, "filename": "aiohttp-3.4.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "62134df780bd86af0320db4b63209903", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1101021, "upload_time": "2018-09-04T16:30:14", "upload_time_iso_8601": "2018-09-04T16:30:14.815425Z", "url": "https://files.pythonhosted.org/packages/f9/5b/4ff6593f812f1c3348dbc8a7fa5c5f2f1443a5c0b84a98c0f83b6a53fa20/aiohttp-3.4.3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eeb0cd9e22a0a62498190436ddb93362", "sha256": "5b5316c922ed43e96574aed94ccf45c41325e06892e12ac5ac11bec4d6341ebf" }, "downloads": -1, "filename": "aiohttp-3.4.3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "eeb0cd9e22a0a62498190436ddb93362", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 551176, "upload_time": "2018-09-04T14:51:21", "upload_time_iso_8601": "2018-09-04T14:51:21.080327Z", "url": "https://files.pythonhosted.org/packages/ae/88/c849b3c149775ffbcf42e2cf9de8e46d00a4b92fb7edf4894ccd23187419/aiohttp-3.4.3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5907d74ae67d49e68f144db6f36c1538", "sha256": "20518b0c885b114041b6a59baf7c9da2e28d7131b1930e41cc2da14ce4756223" }, "downloads": -1, "filename": "aiohttp-3.4.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "5907d74ae67d49e68f144db6f36c1538", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 576979, "upload_time": "2018-09-04T14:55:14", "upload_time_iso_8601": "2018-09-04T14:55:14.793693Z", "url": "https://files.pythonhosted.org/packages/89/93/5b2a2e7ae29d38ae0a2a6d689275f182e78389be4174b43fdb80e13a6cef/aiohttp-3.4.3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aeb50631d2fa3a2594d10263e3688a1f", "sha256": "974b0ede55cb936e1616a5c9271265f9973f23fb1db56ac1a41b2d3f4eec6ecb" }, "downloads": -1, "filename": "aiohttp-3.4.3-cp37-cp37m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "aeb50631d2fa3a2594d10263e3688a1f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 602641, "upload_time": "2018-09-04T16:51:21", "upload_time_iso_8601": "2018-09-04T16:51:21.481802Z", "url": "https://files.pythonhosted.org/packages/8d/3e/429da7dfae29ae5f9b71be59e2f8c6762353bf6b97b4fef1eb4121ed3c77/aiohttp-3.4.3-cp37-cp37m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42b069a1313f8737dae3a2ca0df4e4ea", "sha256": "cf78fb3b1eef64f857bc22662dcd326712618f89fb67bb96455be1e8f4a3c5e8" }, "downloads": -1, "filename": "aiohttp-3.4.3-cp37-cp37m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "42b069a1313f8737dae3a2ca0df4e4ea", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 599214, "upload_time": "2018-09-04T16:58:16", "upload_time_iso_8601": "2018-09-04T16:58:16.883451Z", "url": "https://files.pythonhosted.org/packages/7c/fa/88a36ebef9daf927aa045f1a6fbea68c8c967d614e2eeb8a520a74ecf071/aiohttp-3.4.3-cp37-cp37m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "885670c638f5cda40ed0bd8e6d8de6e9", "sha256": "a9dbe2fabfcd5f64723ff1529dd6d6ce284e9e41f6ce001db271d0620c2ca592" }, "downloads": -1, "filename": "aiohttp-3.4.3-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "885670c638f5cda40ed0bd8e6d8de6e9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 590600, "upload_time": "2018-09-04T17:08:49", "upload_time_iso_8601": "2018-09-04T17:08:49.797896Z", "url": "https://files.pythonhosted.org/packages/36/d6/82fb264acc491309a3765d2da1837fa2084b02dcebc16af527d9643188ff/aiohttp-3.4.3-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c211ab4422ec0bef9e873947f5cfccd3", "sha256": "632f9805994e51a056b9f73c8418d97cd3fbfdc01a13e0037d97f681b962fe58" }, "downloads": -1, "filename": "aiohttp-3.4.3-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c211ab4422ec0bef9e873947f5cfccd3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1088780, "upload_time": "2018-09-04T16:30:16", "upload_time_iso_8601": "2018-09-04T16:30:16.596251Z", "url": "https://files.pythonhosted.org/packages/7c/53/3e517b591b0d5850f24685bdbdb3757d3606a414cc37613d6024197422c5/aiohttp-3.4.3-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "40bd14fb9be27b526fb532ad9c8eddfe", "sha256": "0f7183b87f99ae72f9a901f0c128c88115565d18bbd1ec02db9238cda4f7a5e8" }, "downloads": -1, "filename": "aiohttp-3.4.3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "40bd14fb9be27b526fb532ad9c8eddfe", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1100151, "upload_time": "2018-09-04T16:30:18", "upload_time_iso_8601": "2018-09-04T16:30:18.495073Z", "url": "https://files.pythonhosted.org/packages/7b/a0/0b8d796decff2d6475de8994ffe07d50cda3085d9d24bd3d25669c967471/aiohttp-3.4.3-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "958b97452b4ffd2a60700a32aa049acd", "sha256": "38ad514e1908aec6b5489f276fbbd989c1210a4598c2ccf967e1bdb0785752da" }, "downloads": -1, "filename": "aiohttp-3.4.3-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "958b97452b4ffd2a60700a32aa049acd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 550754, "upload_time": "2018-09-04T14:58:44", "upload_time_iso_8601": "2018-09-04T14:58:44.730718Z", "url": "https://files.pythonhosted.org/packages/70/6b/4e12343f493e8ce8ecb736a2b56b7493ddc763cd94c49d60d1ff6762cacd/aiohttp-3.4.3-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3161ced2438789a91831cc5fb41ec90e", "sha256": "378e95c84083c1eda52e07f0f041715eae9290629f6f57092982fcf4b1e6ab86" }, "downloads": -1, "filename": "aiohttp-3.4.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "3161ced2438789a91831cc5fb41ec90e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 576943, "upload_time": "2018-09-04T15:04:00", "upload_time_iso_8601": "2018-09-04T15:04:00.943816Z", "url": "https://files.pythonhosted.org/packages/3b/df/fa3cc2bc2c57d696dd6df5684b5ca740de3ae221059246281ff69b17d346/aiohttp-3.4.3-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cce4893e1b774034d85507e9618e9761", "sha256": "ab53f89c3b027a9c95f02bb57e96292ed87c8bcf7e5441720ead621c8a53096c" }, "downloads": -1, "filename": "aiohttp-3.4.3.tar.gz", "has_sig": false, "md5_digest": "cce4893e1b774034d85507e9618e9761", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 822045, "upload_time": "2018-09-04T14:43:09", "upload_time_iso_8601": "2018-09-04T14:43:09.146580Z", "url": "https://files.pythonhosted.org/packages/fe/0a/46eec879f11a922d99dde03d2563b7afc57d4b826957d591853078ad494c/aiohttp-3.4.3.tar.gz", "yanked": false, "yanked_reason": null } ], "3.4.4": [ { "comment_text": "", "digests": { "md5": "c59a8dc06c41533720197a19b7b722ab", "sha256": "f1839db4c2b08a9c8f9788112644f8a8557e8e0ecc77b07091afabb941dc55d0" }, "downloads": -1, "filename": "aiohttp-3.4.4-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "c59a8dc06c41533720197a19b7b722ab", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 599927, "upload_time": "2018-09-05T09:14:12", "upload_time_iso_8601": "2018-09-05T09:14:12.733718Z", "url": "https://files.pythonhosted.org/packages/8f/18/3e7f4a5e2e0e8d4cd412dc12994706255450de006302a173476284803d10/aiohttp-3.4.4-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75399a89379889c0e7a027d13a9155e8", "sha256": "0419705a36b43c0ac6f15469f9c2a08cad5c939d78bd12a5c23ea167c8253b2b" }, "downloads": -1, "filename": "aiohttp-3.4.4-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "75399a89379889c0e7a027d13a9155e8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 596500, "upload_time": "2018-09-05T09:23:32", "upload_time_iso_8601": "2018-09-05T09:23:32.983855Z", "url": "https://files.pythonhosted.org/packages/0b/cf/73eb631f498b9196816a211da1ea0ecd9bf9469a02c17a0fee7ebf8a243b/aiohttp-3.4.4-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dcaaadc1c7f66dc41b0d2133b2e97b65", "sha256": "2214b5c0153f45256d5d52d1e0cafe53f9905ed035a142191727a5fb620c03dd" }, "downloads": -1, "filename": "aiohttp-3.4.4-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "dcaaadc1c7f66dc41b0d2133b2e97b65", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 588139, "upload_time": "2018-09-05T09:35:57", "upload_time_iso_8601": "2018-09-05T09:35:57.635827Z", "url": "https://files.pythonhosted.org/packages/21/f8/2b6c96f13554550bcde0eba167d3f29854aced97a7557351b24de6920b8a/aiohttp-3.4.4-cp35-cp35m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c561ecc8c35394e2537564da90fdf20c", "sha256": "cf2cc6c2c10d242790412bea7ccf73726a9a44b4c4b073d2699ef3b48971fd95" }, "downloads": -1, "filename": "aiohttp-3.4.4-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c561ecc8c35394e2537564da90fdf20c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1069322, "upload_time": "2018-09-05T09:06:40", "upload_time_iso_8601": "2018-09-05T09:06:40.444065Z", "url": "https://files.pythonhosted.org/packages/c6/44/46e2263e0c5880988366209d1fd8601c4f4e4b5143c7cf0d4c14461a7e8a/aiohttp-3.4.4-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a86ea4664727339eab48aa1c75ec9a08", "sha256": "c59a953c3f8524a7c86eaeaef5bf702555be12f5668f6384149fe4bb75c52698" }, "downloads": -1, "filename": "aiohttp-3.4.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a86ea4664727339eab48aa1c75ec9a08", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1082357, "upload_time": "2018-09-05T09:06:42", "upload_time_iso_8601": "2018-09-05T09:06:42.111908Z", "url": "https://files.pythonhosted.org/packages/70/c0/380f2bd0a6505998e984efd23b692afe662c4e27603f066c632eed7bf3ee/aiohttp-3.4.4-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "32a5808a968e0465bb2e4bedec68c7bc", "sha256": "789820ddc65e1f5e71516adaca2e9022498fa5a837c79ba9c692a9f8f916c330" }, "downloads": -1, "filename": "aiohttp-3.4.4-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "32a5808a968e0465bb2e4bedec68c7bc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 549386, "upload_time": "2018-09-05T07:45:07", "upload_time_iso_8601": "2018-09-05T07:45:07.401791Z", "url": "https://files.pythonhosted.org/packages/09/d7/ac50b58fde46b1c2b1c8a88937029a2b85e98da1b9b1a14ca8bfcab6bef1/aiohttp-3.4.4-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "238b9bd186b4be03c612f6e793e412af", "sha256": "87bc95d3d333bb689c8d755b4a9d7095a2356108002149523dfc8e607d5d32a4" }, "downloads": -1, "filename": "aiohttp-3.4.4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "238b9bd186b4be03c612f6e793e412af", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 575153, "upload_time": "2018-09-05T07:50:02", "upload_time_iso_8601": "2018-09-05T07:50:02.036707Z", "url": "https://files.pythonhosted.org/packages/55/55/a26fac3482228a0692eb5134cfee16ce89e78e3467a91bd4621cba649506/aiohttp-3.4.4-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd6941e6f3069f12e5cc966372c78067", "sha256": "9d80e40db208e29168d3723d1440ecbb06054d349c5ece6a2c5a611490830dd7" }, "downloads": -1, "filename": "aiohttp-3.4.4-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "bd6941e6f3069f12e5cc966372c78067", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 602567, "upload_time": "2018-09-05T09:15:02", "upload_time_iso_8601": "2018-09-05T09:15:02.692806Z", "url": "https://files.pythonhosted.org/packages/51/14/8f24e8003ba44ac96b0aa646b603f74f9d75ee06546db8fcc8ab7e04cb26/aiohttp-3.4.4-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "13444c728023aeb328f465bf310b669a", "sha256": "7aeefbed253f59ea39e70c5848de42ed85cb941165357fc7e87ab5d8f1f9592b" }, "downloads": -1, "filename": "aiohttp-3.4.4-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "13444c728023aeb328f465bf310b669a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 599353, "upload_time": "2018-09-05T09:24:32", "upload_time_iso_8601": "2018-09-05T09:24:32.181823Z", "url": "https://files.pythonhosted.org/packages/d5/bd/70c2d0db6d01d0fc4a2ef2fc5bd24d9e6efde92ee00bccaf36a0e3071179/aiohttp-3.4.4-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0a117fe30f79ed48bb89e36755bfd392", "sha256": "1812fc4bc6ac1bde007daa05d2d0f61199324e0cc893b11523e646595047ca08" }, "downloads": -1, "filename": "aiohttp-3.4.4-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "0a117fe30f79ed48bb89e36755bfd392", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 594093, "upload_time": "2018-09-05T09:34:02", "upload_time_iso_8601": "2018-09-05T09:34:02.504011Z", "url": "https://files.pythonhosted.org/packages/32/00/1c43f609e5ec2007624de25e323bb0ea302787513e56d13b7089f407a6ad/aiohttp-3.4.4-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "12a814b369e0a95a615e24c4c258daa6", "sha256": "3983611922b561868428ea1e7269e757803713f55b53502423decc509fef1650" }, "downloads": -1, "filename": "aiohttp-3.4.4-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "12a814b369e0a95a615e24c4c258daa6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1089625, "upload_time": "2018-09-05T09:06:43", "upload_time_iso_8601": "2018-09-05T09:06:43.905259Z", "url": "https://files.pythonhosted.org/packages/71/e5/1175274087b6ee5efd5b31ad4f561c4ca2dea1cdfd243cc8d7bea7ab2320/aiohttp-3.4.4-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82d055604f7afc2446ea0682ac31890d", "sha256": "7b2eb55c66512405103485bd7d285a839d53e7fdc261ab20e5bcc51d7aaff5de" }, "downloads": -1, "filename": "aiohttp-3.4.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "82d055604f7afc2446ea0682ac31890d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1101084, "upload_time": "2018-09-05T09:06:45", "upload_time_iso_8601": "2018-09-05T09:06:45.502936Z", "url": "https://files.pythonhosted.org/packages/52/f9/c22977fc95346911d8fe507f90c3c4e4f445fdf339b750be6f03f090498d/aiohttp-3.4.4-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aa123674c132613603429cd7753bf20a", "sha256": "f3df52362be39908f9c028a65490fae0475e4898b43a03d8aa29d1e765b45e07" }, "downloads": -1, "filename": "aiohttp-3.4.4-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "aa123674c132613603429cd7753bf20a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 551212, "upload_time": "2018-09-05T07:53:44", "upload_time_iso_8601": "2018-09-05T07:53:44.308596Z", "url": "https://files.pythonhosted.org/packages/a4/fd/e87f63ea0075dcf1f8189eb9c8768dd8e398d37520cec9dcaaf8a3fe0271/aiohttp-3.4.4-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58cf2364f908af5928d2cd30096f2f86", "sha256": "7a968a0bdaaf9abacc260911775611c9a602214a23aeb846f2eb2eeaa350c4dc" }, "downloads": -1, "filename": "aiohttp-3.4.4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "58cf2364f908af5928d2cd30096f2f86", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 577025, "upload_time": "2018-09-05T07:58:08", "upload_time_iso_8601": "2018-09-05T07:58:08.838197Z", "url": "https://files.pythonhosted.org/packages/38/53/73cf2f1311b8efac732292aafa7f76df27150c6d3ae879e81ad645f46bac/aiohttp-3.4.4-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d82d4dc1c16f685b5ac6c5381dc6c57d", "sha256": "e0c9c8d4150ae904f308ff27b35446990d2b1dfc944702a21925937e937394c6" }, "downloads": -1, "filename": "aiohttp-3.4.4-cp37-cp37m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "d82d4dc1c16f685b5ac6c5381dc6c57d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 602689, "upload_time": "2018-09-05T09:24:28", "upload_time_iso_8601": "2018-09-05T09:24:28.184917Z", "url": "https://files.pythonhosted.org/packages/e6/50/e0b8dbb0e061291a2d4eafc6f762aab1399cb883649ac2b55c828a8397cf/aiohttp-3.4.4-cp37-cp37m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b4db30fd3214bc20f1994b709e9eea6", "sha256": "275909137f0c92c61ba6bb1af856a522d5546f1de8ea01e4e726321c697754ac" }, "downloads": -1, "filename": "aiohttp-3.4.4-cp37-cp37m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "9b4db30fd3214bc20f1994b709e9eea6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 599259, "upload_time": "2018-09-05T09:33:31", "upload_time_iso_8601": "2018-09-05T09:33:31.899822Z", "url": "https://files.pythonhosted.org/packages/75/d4/c1761d7325979c1d2b124e4bb917f3f515d5537aa5eed4fbd3837dc5a34a/aiohttp-3.4.4-cp37-cp37m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c95e729527ef6313eaacac6dc8f34789", "sha256": "a1b442195c2a77d33e4dbee67c9877ccbdd3a1f686f91eb479a9577ed8cc326b" }, "downloads": -1, "filename": "aiohttp-3.4.4-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "c95e729527ef6313eaacac6dc8f34789", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 590650, "upload_time": "2018-09-05T09:44:07", "upload_time_iso_8601": "2018-09-05T09:44:07.437964Z", "url": "https://files.pythonhosted.org/packages/35/c5/9d0f27660ce0b2f921178d8c56493dfb2c5365a42530cccc3531d514b76c/aiohttp-3.4.4-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "984bd9adde629efe7318db59722bb4de", "sha256": "b066d3dec5d0f5aee6e34e5765095dc3d6d78ef9839640141a2b20816a0642bd" }, "downloads": -1, "filename": "aiohttp-3.4.4-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "984bd9adde629efe7318db59722bb4de", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1088851, "upload_time": "2018-09-05T09:06:47", "upload_time_iso_8601": "2018-09-05T09:06:47.517720Z", "url": "https://files.pythonhosted.org/packages/dc/a7/72b55cd45702805e47563a36348854ea15be70134f64a9f4bc7113ed7654/aiohttp-3.4.4-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "421620118e11f3be1769483a0c17510f", "sha256": "ab3d769413b322d6092f169f316f7b21cd261a7589f7e31db779d5731b0480d8" }, "downloads": -1, "filename": "aiohttp-3.4.4-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "421620118e11f3be1769483a0c17510f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1100216, "upload_time": "2018-09-05T09:06:49", "upload_time_iso_8601": "2018-09-05T09:06:49.444339Z", "url": "https://files.pythonhosted.org/packages/97/29/9d1912f2746d171fc2fc0042a9edd117d386d53382a3aa12f7853466d52e/aiohttp-3.4.4-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b1ca8207510024338c7b7d04199bee90", "sha256": "b24e7845ae8de3e388ef4bcfcf7f96b05f52c8e633b33cf8003a6b1d726fc7c2" }, "downloads": -1, "filename": "aiohttp-3.4.4-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "b1ca8207510024338c7b7d04199bee90", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 550793, "upload_time": "2018-09-05T08:01:26", "upload_time_iso_8601": "2018-09-05T08:01:26.297904Z", "url": "https://files.pythonhosted.org/packages/7a/58/4476d96f35cc18a5133330f06c9ff3bc44fa64a9b6d15d2716efa6043b80/aiohttp-3.4.4-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "91cff9becd351c837e0292102e71014a", "sha256": "589f2ec8a101a0f340453ee6945bdfea8e1cd84c8d88e5be08716c34c0799d95" }, "downloads": -1, "filename": "aiohttp-3.4.4-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "91cff9becd351c837e0292102e71014a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 576990, "upload_time": "2018-09-05T08:05:22", "upload_time_iso_8601": "2018-09-05T08:05:22.799665Z", "url": "https://files.pythonhosted.org/packages/8d/09/7127ad0b98322b375587bf93a8ef9764959ea4634d77598b50ff3089b014/aiohttp-3.4.4-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "80a6e0c6c452d511d1d37755d6f0995a", "sha256": "51afec6ffa50a9da4cdef188971a802beb1ca8e8edb40fa429e5e529db3475fa" }, "downloads": -1, "filename": "aiohttp-3.4.4.tar.gz", "has_sig": false, "md5_digest": "80a6e0c6c452d511d1d37755d6f0995a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 822110, "upload_time": "2018-09-05T07:45:09", "upload_time_iso_8601": "2018-09-05T07:45:09.210246Z", "url": "https://files.pythonhosted.org/packages/70/27/6098b4b60a3302a97f8ec97eb85d42f55a2fa904da4a369235a8e3b84352/aiohttp-3.4.4.tar.gz", "yanked": false, "yanked_reason": null } ], "3.5.0": [ { "comment_text": "", "digests": { "md5": "b97e8929845eeb71c172096dee6d84a9", "sha256": "03df17f456135e747e321821c8c350e590f75503e43fb93b38024e5afb4baa57" }, "downloads": -1, "filename": "aiohttp-3.5.0-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "b97e8929845eeb71c172096dee6d84a9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 621237, "upload_time": "2018-12-22T22:39:40", "upload_time_iso_8601": "2018-12-22T22:39:40.539398Z", "url": "https://files.pythonhosted.org/packages/f3/07/618b8bcd5ab2a230aed1231d478b2699adf0c9bcc8663339348fb15f389d/aiohttp-3.5.0-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd2f23af458c74d93fb1eaee77350a28", "sha256": "cba9014ab792b8219c0cfa573c9178232f315364a1c5aad4fc63a7f2fe575bb3" }, "downloads": -1, "filename": "aiohttp-3.5.0-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "bd2f23af458c74d93fb1eaee77350a28", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 616644, "upload_time": "2018-12-22T22:57:08", "upload_time_iso_8601": "2018-12-22T22:57:08.138426Z", "url": "https://files.pythonhosted.org/packages/04/8a/538ad91579c61e6ccd46a9ae80d25f2d415d9ff28c9f8091af8e5cbe0396/aiohttp-3.5.0-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f09c26e5d2349d2b0292fe53609086ae", "sha256": "869309240edd7ee245d23995064020fb3aff65aa754db2d4328fbd779ab72880" }, "downloads": -1, "filename": "aiohttp-3.5.0-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "f09c26e5d2349d2b0292fe53609086ae", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 612917, "upload_time": "2018-12-22T23:08:22", "upload_time_iso_8601": "2018-12-22T23:08:22.742008Z", "url": "https://files.pythonhosted.org/packages/00/b7/1911d99064c83426ed8db07414be8b3283bf09d8a0a33652e783b84bce44/aiohttp-3.5.0-cp35-cp35m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bae6e0211cb8b7a11b28d9a07ab475e0", "sha256": "51db33266922798de0a05d0856b4bc30a16225572568595fffeecbd59e5d664a" }, "downloads": -1, "filename": "aiohttp-3.5.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "bae6e0211cb8b7a11b28d9a07ab475e0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1095832, "upload_time": "2018-12-22T22:45:53", "upload_time_iso_8601": "2018-12-22T22:45:53.054140Z", "url": "https://files.pythonhosted.org/packages/c2/86/e4cc3e9d01dbc7f1aa9247a8184c9dd074244bbcafb9b569082409b821e5/aiohttp-3.5.0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a6a5246298f47c15c903d8efa5c04158", "sha256": "e65bd6a05468497bd297e0298afef743803514b04896d4396ab44646f248844f" }, "downloads": -1, "filename": "aiohttp-3.5.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a6a5246298f47c15c903d8efa5c04158", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1130515, "upload_time": "2018-12-22T22:45:55", "upload_time_iso_8601": "2018-12-22T22:45:55.511993Z", "url": "https://files.pythonhosted.org/packages/4b/09/cc5ec44a2da2976f5907ed9bad383de222519e3575f21fb87f14c8233236/aiohttp-3.5.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b060e671eb88b8ba46fc29ad9e791ff", "sha256": "0e86507463f3238f9df4d682091b809d2924635601c95f7a377925775f7064b3" }, "downloads": -1, "filename": "aiohttp-3.5.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "5b060e671eb88b8ba46fc29ad9e791ff", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 574133, "upload_time": "2018-12-22T22:16:50", "upload_time_iso_8601": "2018-12-22T22:16:50.635334Z", "url": "https://files.pythonhosted.org/packages/3c/33/fdbb4b910f21e8c32d0c0eca5175c5f0e1371629091dea4881fea36e763b/aiohttp-3.5.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c0ed3a0bfd9cf3a9ced715771c699f30", "sha256": "5a0b82de118a614fc51c65d2d6d996425ee492abe9d137ebf5bc88aeccb2b353" }, "downloads": -1, "filename": "aiohttp-3.5.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "c0ed3a0bfd9cf3a9ced715771c699f30", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 601898, "upload_time": "2018-12-22T22:20:54", "upload_time_iso_8601": "2018-12-22T22:20:54.538764Z", "url": "https://files.pythonhosted.org/packages/3a/79/52e7c852ceabcd99bbe0ac7cc0acaa81969196c7d15e5c4719b1f917cb30/aiohttp-3.5.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d4aaeaa72628469417134880d44be98", "sha256": "38793a9c183de8c032117496d3e595e757399ffad5963568ef88e7090836b6b9" }, "downloads": -1, "filename": "aiohttp-3.5.0-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "2d4aaeaa72628469417134880d44be98", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 638046, "upload_time": "2018-12-22T22:39:57", "upload_time_iso_8601": "2018-12-22T22:39:57.541815Z", "url": "https://files.pythonhosted.org/packages/88/9f/0d112e4c95d504728e711b71a7835ea4e12b670aa734e77be4453d840ce8/aiohttp-3.5.0-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a00092afa02e6e45b26949641a18dcfc", "sha256": "03c9c3e6041fd1be64f6f76d6415986e09d981bcec013c34bc1bc37d1f6b536b" }, "downloads": -1, "filename": "aiohttp-3.5.0-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "a00092afa02e6e45b26949641a18dcfc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 630301, "upload_time": "2018-12-22T23:02:57", "upload_time_iso_8601": "2018-12-22T23:02:57.033568Z", "url": "https://files.pythonhosted.org/packages/8e/a0/7f6abff6d49af1bc9af716995e8feae327e2ba3c74d0cbd4bf29d18c203e/aiohttp-3.5.0-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dd95113675430bf75c38cf73487a30a2", "sha256": "dcedfff6256eaa522ea9e0f861dd2825b6cd44a31010fc6cf823392fbf7ec762" }, "downloads": -1, "filename": "aiohttp-3.5.0-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "dd95113675430bf75c38cf73487a30a2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 630022, "upload_time": "2018-12-22T23:14:16", "upload_time_iso_8601": "2018-12-22T23:14:16.704367Z", "url": "https://files.pythonhosted.org/packages/a4/51/74adef7d2e258c4af2142468cd950bf1bae56947210d49bd29e998e9b464/aiohttp-3.5.0-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "47046aec2eeacf37769684d8b7938a9a", "sha256": "8e7f8b8091055af7f16020db4c760ff1f2803090f68b61e200eb8c36e8f50daa" }, "downloads": -1, "filename": "aiohttp-3.5.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "47046aec2eeacf37769684d8b7938a9a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1117311, "upload_time": "2018-12-22T22:45:57", "upload_time_iso_8601": "2018-12-22T22:45:57.917325Z", "url": "https://files.pythonhosted.org/packages/a8/80/372c4d7660904c9852f1ae849cab29fd0e2354ed97fc872e936ec6e99eb9/aiohttp-3.5.0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "85cc3f1c6347caafcadf9bf71f055584", "sha256": "5f99d2ead8a453d0852f2f4023429020cdb55f4d443f5ba882962b169f520d77" }, "downloads": -1, "filename": "aiohttp-3.5.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "85cc3f1c6347caafcadf9bf71f055584", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1150656, "upload_time": "2018-12-22T22:46:00", "upload_time_iso_8601": "2018-12-22T22:46:00.154796Z", "url": "https://files.pythonhosted.org/packages/6f/10/9bcfc7d56208529374bd5b8be55932a87d38af9fdd34dd710689cbdfadf1/aiohttp-3.5.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "80d692b8b13cd344c6b0b86217eadea2", "sha256": "172ec2125df4bb8b4742a7e40b5938b5d9fa0b6a53d278c179ef2005f5a93b7a" }, "downloads": -1, "filename": "aiohttp-3.5.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "80d692b8b13cd344c6b0b86217eadea2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 579817, "upload_time": "2018-12-22T22:24:27", "upload_time_iso_8601": "2018-12-22T22:24:27.103142Z", "url": "https://files.pythonhosted.org/packages/e6/9f/ba33c056ac730855595a305bf4306e571b2197b6ddb1fba66a905045b2c9/aiohttp-3.5.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "776e73a1b04d644bb463735be56339ca", "sha256": "9531dbfb8c6182bb2378436769954d800818af5afe4fe0ba1ad8991fba8cc5ab" }, "downloads": -1, "filename": "aiohttp-3.5.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "776e73a1b04d644bb463735be56339ca", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 607717, "upload_time": "2018-12-22T22:28:19", "upload_time_iso_8601": "2018-12-22T22:28:19.015658Z", "url": "https://files.pythonhosted.org/packages/84/0c/d6034b35b027dcf19ecc4922ffa6d4c37c8885939dd7cc3d38181184e46b/aiohttp-3.5.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ca9252ccae1934854b3df380af35c491", "sha256": "162a8397788d9cd117721b179145460d2754227f3db106b6a15c5a73877413d8" }, "downloads": -1, "filename": "aiohttp-3.5.0-cp37-cp37m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "ca9252ccae1934854b3df380af35c491", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 638011, "upload_time": "2018-12-22T22:56:38", "upload_time_iso_8601": "2018-12-22T22:56:38.637786Z", "url": "https://files.pythonhosted.org/packages/71/6a/75b063519cec3556f3e0ce1ad4ba11599dd16c2236a0ad3ba837af2d92cf/aiohttp-3.5.0-cp37-cp37m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6e3bc6a69807ae1ca30f67e3276be7f", "sha256": "decdf0d9169187f150bd43a686c4f132c3cc5ef88cc293f0ecfeebcb911d8e84" }, "downloads": -1, "filename": "aiohttp-3.5.0-cp37-cp37m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "f6e3bc6a69807ae1ca30f67e3276be7f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 631090, "upload_time": "2018-12-22T23:14:08", "upload_time_iso_8601": "2018-12-22T23:14:08.838128Z", "url": "https://files.pythonhosted.org/packages/3c/cd/2d99c7fcefaa4de0fea38e324e591b207bf1925adaf7e476fc3fba13fc8d/aiohttp-3.5.0-cp37-cp37m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c0f52424ae160247d742e2b6ffe15ead", "sha256": "c87ca2059a657898b3cd500475b00b6955182a2f1b6ac1940493386a4415c1c0" }, "downloads": -1, "filename": "aiohttp-3.5.0-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "c0f52424ae160247d742e2b6ffe15ead", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 627199, "upload_time": "2018-12-22T23:19:45", "upload_time_iso_8601": "2018-12-22T23:19:45.205264Z", "url": "https://files.pythonhosted.org/packages/95/65/a602d0ff04d8a3ce81ccbfc9beb507aa40aadb49c12a6dc4e00573ddccfa/aiohttp-3.5.0-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ba50843932cadba46712cf3c0e8e7e9", "sha256": "dd309f639deab08efb5f546afc67ef66edf480acfce4a6e191b9f360a651d624" }, "downloads": -1, "filename": "aiohttp-3.5.0-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2ba50843932cadba46712cf3c0e8e7e9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1116913, "upload_time": "2018-12-22T22:46:02", "upload_time_iso_8601": "2018-12-22T22:46:02.574815Z", "url": "https://files.pythonhosted.org/packages/32/bc/f4cc366bf00f50a1e0247d7288f07681d01dd61b80f74eadad12aabf34b6/aiohttp-3.5.0-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "71e27b21a71163e23088ee19ffda7bd2", "sha256": "c0aa8ccf0097501920508fa5c94f037a280c1fc87bc0f706b3cab5711974fb1e" }, "downloads": -1, "filename": "aiohttp-3.5.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "71e27b21a71163e23088ee19ffda7bd2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1148046, "upload_time": "2018-12-22T22:46:04", "upload_time_iso_8601": "2018-12-22T22:46:04.945785Z", "url": "https://files.pythonhosted.org/packages/38/a8/74ec4b28e1d13acd2a3d4196cc0753d0f50afe9eb571ccda1358c75cdb9a/aiohttp-3.5.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "12da393be59cc0f611417ddb610912d3", "sha256": "d45e686c41d5fca62860440dd162a9046246ab53589db52a2effab608c613399" }, "downloads": -1, "filename": "aiohttp-3.5.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "12da393be59cc0f611417ddb610912d3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 579912, "upload_time": "2018-12-22T22:31:24", "upload_time_iso_8601": "2018-12-22T22:31:24.036279Z", "url": "https://files.pythonhosted.org/packages/2c/fc/f619bd5456755e6b5c66e3a9b7c03ec22ba6cda3fd8b350a46352208110f/aiohttp-3.5.0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f638326f8a4bd721de4f72047d909c0c", "sha256": "b535790eb0699b0f460af2ab787fe7e11efdc283e345c87c18bc4731b244aa06" }, "downloads": -1, "filename": "aiohttp-3.5.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "f638326f8a4bd721de4f72047d909c0c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 607604, "upload_time": "2018-12-22T22:34:32", "upload_time_iso_8601": "2018-12-22T22:34:32.945991Z", "url": "https://files.pythonhosted.org/packages/46/df/771c545d1a39c91cd54d7733723b64197048269bd4bcb5ce8dbfcab2c6ae/aiohttp-3.5.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b692d5c602458957a0ef2df92ac48705", "sha256": "1d00d58cf2665ce61bd637790988accca609aa3a898bb45747b6369830c0de28" }, "downloads": -1, "filename": "aiohttp-3.5.0.tar.gz", "has_sig": false, "md5_digest": "b692d5c602458957a0ef2df92ac48705", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1094149, "upload_time": "2018-12-22T22:16:52", "upload_time_iso_8601": "2018-12-22T22:16:52.857210Z", "url": "https://files.pythonhosted.org/packages/e4/a4/48e455139e03dc1555f904cf3843c9228c2a922f61512eb4d2482e04135c/aiohttp-3.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.5.0a1": [ { "comment_text": "", "digests": { "md5": "56a5ab10119ab10254679d00c68b0af8", "sha256": "c45e271f37a85b97bc30fd3567dcb38bc7865911ee04730fe10e1372e8a4955e" }, "downloads": -1, "filename": "aiohttp-3.5.0a1-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "56a5ab10119ab10254679d00c68b0af8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 618677, "upload_time": "2018-11-20T10:54:26", "upload_time_iso_8601": "2018-11-20T10:54:26.874611Z", "url": "https://files.pythonhosted.org/packages/d4/1e/c45763dc02cd4e4d3775f11679821ceb6df43fd92f7b5cc8fb1084b3605c/aiohttp-3.5.0a1-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "227c375ea983fbc5906c0e05b94aada7", "sha256": "6692f1b6b1b55e6b7bf13ef7cfbe70930833fa80e864718841243a6da0082044" }, "downloads": -1, "filename": "aiohttp-3.5.0a1-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "227c375ea983fbc5906c0e05b94aada7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 615864, "upload_time": "2018-11-20T11:05:34", "upload_time_iso_8601": "2018-11-20T11:05:34.745217Z", "url": "https://files.pythonhosted.org/packages/7c/bf/0c005bfb8b765e593be1b154f3cff69093900e394fc93218c668da79f5c5/aiohttp-3.5.0a1-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6bec21c244c161313bb040a2f4a4f281", "sha256": "94c9d1e6fece7fa6f1ed093491953db4a040b87c3791db9d30a5607edc44e21f" }, "downloads": -1, "filename": "aiohttp-3.5.0a1-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "6bec21c244c161313bb040a2f4a4f281", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 609649, "upload_time": "2018-11-20T11:25:06", "upload_time_iso_8601": "2018-11-20T11:25:06.331241Z", "url": "https://files.pythonhosted.org/packages/00/a4/f32d4fe56563aa98aa815fa72ffaef26fbf880c42be16dd5196713d3217f/aiohttp-3.5.0a1-cp35-cp35m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "16fe3019e89efb6d8f447c43a36f6b0b", "sha256": "c57a9353f7a6a421f381d90002fc8dc5874983a4f1bc8bc9ee419b33dee34f2f" }, "downloads": -1, "filename": "aiohttp-3.5.0a1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "16fe3019e89efb6d8f447c43a36f6b0b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1092089, "upload_time": "2018-11-20T11:03:42", "upload_time_iso_8601": "2018-11-20T11:03:42.188562Z", "url": "https://files.pythonhosted.org/packages/d5/32/89ed11b831daed55e0313f2c95d875bbb4d1ce3930e1a61b382b1fe3d781/aiohttp-3.5.0a1-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7d10c6e4d478d372d8a3d25d77c5035c", "sha256": "9f7df58f13680bd715a54965da7dff99f1266ea9e0d5735ec86017cb8170065d" }, "downloads": -1, "filename": "aiohttp-3.5.0a1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7d10c6e4d478d372d8a3d25d77c5035c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1126605, "upload_time": "2018-11-20T11:03:44", "upload_time_iso_8601": "2018-11-20T11:03:44.113762Z", "url": "https://files.pythonhosted.org/packages/2d/7c/8631518d955724460c9dcfdccea978f0df84f079ef8e088ee4ff1330e935/aiohttp-3.5.0a1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e5b31f043b2c4fdad76219ee0b0b0f0", "sha256": "dc8c36c9ca6932742b2ea2f79d93953076e25ec0fdee4de644aa498e28786cce" }, "downloads": -1, "filename": "aiohttp-3.5.0a1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "5e5b31f043b2c4fdad76219ee0b0b0f0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 571357, "upload_time": "2018-11-20T09:55:51", "upload_time_iso_8601": "2018-11-20T09:55:51.588310Z", "url": "https://files.pythonhosted.org/packages/fe/bb/210e64c1750f490eec540151f813728c49e7349bb397f5c964e49329d7b3/aiohttp-3.5.0a1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8475c2778c66439253701baec8d187fb", "sha256": "a6941ccb0e1b8bdf6500aebaa13364cce25986483c519b045275151df7c715b7" }, "downloads": -1, "filename": "aiohttp-3.5.0a1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "8475c2778c66439253701baec8d187fb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 598345, "upload_time": "2018-11-20T09:59:12", "upload_time_iso_8601": "2018-11-20T09:59:12.591580Z", "url": "https://files.pythonhosted.org/packages/c2/94/4b17b41da9a3f0cf8031c607c3ad26dff25d6814714cbf60df74550cd759/aiohttp-3.5.0a1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "068830a55c6ef5e7459748399253168b", "sha256": "60a700b244e893e1c1d9b6a506b7bc85086ad4b2bb56275c5a0659dc0ab9f0b3" }, "downloads": -1, "filename": "aiohttp-3.5.0a1-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "068830a55c6ef5e7459748399253168b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 635366, "upload_time": "2018-11-20T10:54:42", "upload_time_iso_8601": "2018-11-20T10:54:42.498936Z", "url": "https://files.pythonhosted.org/packages/12/9e/1ab0decb8a8aa104b291a3ba709ce153fb2f4878e2980fa72a6b4e806dd7/aiohttp-3.5.0a1-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2653d7d79b3f1b058a233aea448725eb", "sha256": "76798572bd4b815d31887c3e0b7de467a913ef950850e684167b2381872e5143" }, "downloads": -1, "filename": "aiohttp-3.5.0a1-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "2653d7d79b3f1b058a233aea448725eb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 632039, "upload_time": "2018-11-20T11:14:37", "upload_time_iso_8601": "2018-11-20T11:14:37.595176Z", "url": "https://files.pythonhosted.org/packages/5b/4b/686a7d55a562d37391b48f8fe974f5d1a72a12e6f0bdc294468d790f2a6c/aiohttp-3.5.0a1-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bc6a99ae5b9f41239eb8cab2e3cf401c", "sha256": "9ba76ac10dcda10fee8d82cdd6a78ccbd4042a3a7286f4d435619e8317d95a16" }, "downloads": -1, "filename": "aiohttp-3.5.0a1-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "bc6a99ae5b9f41239eb8cab2e3cf401c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 627756, "upload_time": "2018-11-20T11:26:21", "upload_time_iso_8601": "2018-11-20T11:26:21.505367Z", "url": "https://files.pythonhosted.org/packages/d0/f3/6d769ee8f4225330f18d320d35e196a95e95efbe7e4ab7557db5ab1f4f78/aiohttp-3.5.0a1-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c1576d1eb8eb721055b504d2117eef7e", "sha256": "094d32fc32146b63dc766849dbe37a479cf8b38416f5d4599d9acb52f67390b2" }, "downloads": -1, "filename": "aiohttp-3.5.0a1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c1576d1eb8eb721055b504d2117eef7e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1113076, "upload_time": "2018-11-20T11:03:46", "upload_time_iso_8601": "2018-11-20T11:03:46.346792Z", "url": "https://files.pythonhosted.org/packages/d5/cf/6b1e0982a4fbd7c1311ee35b6eaf1827f0976470691f419f5e2315066f4a/aiohttp-3.5.0a1-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "096f99d7e82e5c225cd006383dbcac83", "sha256": "12e5dcc07b11ccc371b2300e37275434a4dd3d38f73690e498255431d9713c65" }, "downloads": -1, "filename": "aiohttp-3.5.0a1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "096f99d7e82e5c225cd006383dbcac83", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1145883, "upload_time": "2018-11-20T11:03:48", "upload_time_iso_8601": "2018-11-20T11:03:48.643100Z", "url": "https://files.pythonhosted.org/packages/4d/23/542b486a2b131963ba3d5cd6e3c055f1b770e74d0d29385d0a678a2f26a4/aiohttp-3.5.0a1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68f501a8940276649277d4c578dbb660", "sha256": "f32ae1dd73fa98fafbc5b7d19686dd69f549dc84a02be3f8dc6bd4a318838fc9" }, "downloads": -1, "filename": "aiohttp-3.5.0a1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "68f501a8940276649277d4c578dbb660", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 576908, "upload_time": "2018-11-20T10:02:28", "upload_time_iso_8601": "2018-11-20T10:02:28.056972Z", "url": "https://files.pythonhosted.org/packages/85/6a/94034c29ca1a7582594a01ca2059145c693deeb089c00243f45ef2e60488/aiohttp-3.5.0a1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60396f0a81b99798eb4f627d34bf76af", "sha256": "6c0b3e191b4a4b21656b29ad3c0fe125b844ff1c2a5b6e6e2295bac60330df3d" }, "downloads": -1, "filename": "aiohttp-3.5.0a1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "60396f0a81b99798eb4f627d34bf76af", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 603788, "upload_time": "2018-11-20T10:05:14", "upload_time_iso_8601": "2018-11-20T10:05:14.929096Z", "url": "https://files.pythonhosted.org/packages/63/ce/95dd616a89d693ed680712a88ca4a65ee198fd866d8b583717b4c1768319/aiohttp-3.5.0a1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "48ee16da17ccdf0e88f9bca1e9b48289", "sha256": "a3e92a0f11c1d39f68639c97d5dd39ed30089e7c3ff0bf27c0bfd32e54f2f537" }, "downloads": -1, "filename": "aiohttp-3.5.0a1-cp37-cp37m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "48ee16da17ccdf0e88f9bca1e9b48289", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 635358, "upload_time": "2018-11-20T11:13:14", "upload_time_iso_8601": "2018-11-20T11:13:14.819575Z", "url": "https://files.pythonhosted.org/packages/1b/1e/ff7ec1a4ec37261addc350f01dab9bb2189dd325c165be63d3aed3684194/aiohttp-3.5.0a1-cp37-cp37m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9aa63436c4d106ce767615e5d059010e", "sha256": "23c39e5a25409ec17be1205932520d82aa9e241d52058792e1f7ba2788543ff8" }, "downloads": -1, "filename": "aiohttp-3.5.0a1-cp37-cp37m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "9aa63436c4d106ce767615e5d059010e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 632861, "upload_time": "2018-11-20T11:17:04", "upload_time_iso_8601": "2018-11-20T11:17:04.811119Z", "url": "https://files.pythonhosted.org/packages/ff/e6/42751c2579c25e612dbc655511638dbc6113801f1096458eab93fffb457e/aiohttp-3.5.0a1-cp37-cp37m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "423e9a14701c6433f708d6bb391623df", "sha256": "3837d3af51ce207979d45bcde03de00a8ab488a4907af45b0f1faddda55f925f" }, "downloads": -1, "filename": "aiohttp-3.5.0a1-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "423e9a14701c6433f708d6bb391623df", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 624973, "upload_time": "2018-11-20T11:29:07", "upload_time_iso_8601": "2018-11-20T11:29:07.670826Z", "url": "https://files.pythonhosted.org/packages/ee/18/5ad85b9a955f62db654f1b51003c358a7f1f3a5a7dacc6c590c5033f9360/aiohttp-3.5.0a1-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bc6ce024850406b1ef7afc9c71a533cd", "sha256": "d6a4fff396221b0de3db349c871bba53183aabc431ab6530cd00fdba6ed08f6c" }, "downloads": -1, "filename": "aiohttp-3.5.0a1-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "bc6ce024850406b1ef7afc9c71a533cd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1112057, "upload_time": "2018-11-20T11:03:51", "upload_time_iso_8601": "2018-11-20T11:03:51.149539Z", "url": "https://files.pythonhosted.org/packages/7c/69/da4033f748fdf0a9fc405807fe5655f641ef1e4983f4647ac43f1b8e19cd/aiohttp-3.5.0a1-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4d672ea0a33d23ba0d2933b95f4a37c6", "sha256": "7db662b79154c1066ad15d2b97b9693beaa4166a4dcc10914db8873b9f436253" }, "downloads": -1, "filename": "aiohttp-3.5.0a1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4d672ea0a33d23ba0d2933b95f4a37c6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1144710, "upload_time": "2018-11-20T11:03:53", "upload_time_iso_8601": "2018-11-20T11:03:53.395390Z", "url": "https://files.pythonhosted.org/packages/9d/d6/c2962ec4b05487029d83f8d406a6583a15fcdfa2b92d2510a0c77f9d8b8e/aiohttp-3.5.0a1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1da909a6779b57c7d564ef930107fb41", "sha256": "296a3b65791367f754e13fe225f2de6b204e75944a1643a0a8ad9206e1d55cff" }, "downloads": -1, "filename": "aiohttp-3.5.0a1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "1da909a6779b57c7d564ef930107fb41", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 576981, "upload_time": "2018-11-20T10:08:19", "upload_time_iso_8601": "2018-11-20T10:08:19.735711Z", "url": "https://files.pythonhosted.org/packages/98/fc/ab4dcc1f41b11f9ea9c77af3b706470a4c8df050338e500f1a5974149b87/aiohttp-3.5.0a1-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5eb13648e5263ff047b44fe7197194a9", "sha256": "f6ea2f604af1717d5f0532a3117e97f30cf2dc35b97ca06097b12deb59cefe71" }, "downloads": -1, "filename": "aiohttp-3.5.0a1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "5eb13648e5263ff047b44fe7197194a9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 603911, "upload_time": "2018-11-20T10:11:09", "upload_time_iso_8601": "2018-11-20T10:11:09.791109Z", "url": "https://files.pythonhosted.org/packages/b1/09/9849d50cb9270d43ac9d8002ff5a3f2602a89c42d370846e158caedeab90/aiohttp-3.5.0a1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6dd479cd9f4f85a556fd3a56eb8d3cec", "sha256": "7b74e6afa8e9216180dfbbc5e87d67caee983831750be55a0dba752253556e2f" }, "downloads": -1, "filename": "aiohttp-3.5.0a1.tar.gz", "has_sig": false, "md5_digest": "6dd479cd9f4f85a556fd3a56eb8d3cec", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 837832, "upload_time": "2018-11-20T09:55:54", "upload_time_iso_8601": "2018-11-20T09:55:54.195196Z", "url": "https://files.pythonhosted.org/packages/bd/30/87833934dab41f02231f409493dcc79936693ac6d95991a0add1072f145d/aiohttp-3.5.0a1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.5.0b1": [ { "comment_text": "", "digests": { "md5": "1bc4b814f5305a5b5c57ad09b8cfb397", "sha256": "965ff1d5c32de96e39dffe0189ff23111eaa4dd91d9a918a9d7ff2bf7c415d36" }, "downloads": -1, "filename": "aiohttp-3.5.0b1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "1bc4b814f5305a5b5c57ad09b8cfb397", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 574152, "upload_time": "2018-12-20T22:04:01", "upload_time_iso_8601": "2018-12-20T22:04:01.938392Z", "url": "https://files.pythonhosted.org/packages/51/93/7da02210f8564c892d0089826e553e224e75bc150b77ced82759b4abaddf/aiohttp-3.5.0b1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5ab7addfb54f1a6e31f8a5e2569ac067", "sha256": "b7ae06b9c2694a73f91a9417d767dd3841ac8c40cdea0f91dccfc345cb581abb" }, "downloads": -1, "filename": "aiohttp-3.5.0b1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "5ab7addfb54f1a6e31f8a5e2569ac067", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 601929, "upload_time": "2018-12-20T22:08:14", "upload_time_iso_8601": "2018-12-20T22:08:14.440452Z", "url": "https://files.pythonhosted.org/packages/24/52/23efd450005c520d8efec461d90f6ff6c53204c31830e3e4fe72bbb5121f/aiohttp-3.5.0b1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a8362515bd084743b531949aeceb9831", "sha256": "1e67b0d21c86c5cacaed2896d963e3ab018e82c68de8e4ef36ab43fdd20e7f63" }, "downloads": -1, "filename": "aiohttp-3.5.0b1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "a8362515bd084743b531949aeceb9831", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 579848, "upload_time": "2018-12-20T22:11:35", "upload_time_iso_8601": "2018-12-20T22:11:35.865122Z", "url": "https://files.pythonhosted.org/packages/59/af/e7f9963a0d6e353efc54c950b2084b947a78fdf6f19989a1f1cef04ae35b/aiohttp-3.5.0b1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1907cf52a29b0d6223d42470e0e3c39a", "sha256": "3ee52eef864ef38c229004573d64104e345b0e1b9131253fa0de9b78f9ab53dd" }, "downloads": -1, "filename": "aiohttp-3.5.0b1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "1907cf52a29b0d6223d42470e0e3c39a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 607746, "upload_time": "2018-12-20T22:18:18", "upload_time_iso_8601": "2018-12-20T22:18:18.515504Z", "url": "https://files.pythonhosted.org/packages/8c/57/0c645a6c468d07aa1a24dccb3980c5858d9a0375c8aa329a42882afecf7d/aiohttp-3.5.0b1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9bbcc2f33e4231b3fa492e3cb616bcd6", "sha256": "4794a5661ba22c0b2a7579b7ef2ac4046bcb76a6ef38f25f09ecb3f56904aefb" }, "downloads": -1, "filename": "aiohttp-3.5.0b1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "9bbcc2f33e4231b3fa492e3cb616bcd6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 579942, "upload_time": "2018-12-20T22:23:34", "upload_time_iso_8601": "2018-12-20T22:23:34.599013Z", "url": "https://files.pythonhosted.org/packages/e1/f3/e16d26538a448fb2a467814ac282acd7b76314cd8ed0f66639408ebeb45e/aiohttp-3.5.0b1-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1688e251f726f9e9d62439cb08c638ba", "sha256": "b473cb5448ee0fe027a34a9aad50f68926b59037f798e06f33afcb09d7b5903c" }, "downloads": -1, "filename": "aiohttp-3.5.0b1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "1688e251f726f9e9d62439cb08c638ba", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 607634, "upload_time": "2018-12-20T22:28:53", "upload_time_iso_8601": "2018-12-20T22:28:53.736618Z", "url": "https://files.pythonhosted.org/packages/f4/e6/8619a5a803849431a4d77e70e7a131046d6c9e8d1b968a6655eb09b99391/aiohttp-3.5.0b1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "167384b20aad1586317543e68856c322", "sha256": "7ef8e243bd4cb278fea9ab8f2ce4c6da460115bfa8fc5934557180f12c9e3ae6" }, "downloads": -1, "filename": "aiohttp-3.5.0b1.tar.gz", "has_sig": false, "md5_digest": "167384b20aad1586317543e68856c322", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1094159, "upload_time": "2018-12-20T22:04:04", "upload_time_iso_8601": "2018-12-20T22:04:04.429820Z", "url": "https://files.pythonhosted.org/packages/d9/8e/e338faa288a5ba97eac5233372a9539547b5f9743b1d1d5d9592aba8abb1/aiohttp-3.5.0b1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.5.0b2": [ { "comment_text": "", "digests": { "md5": "2e1f7c5bc5f0b03a256c34a6196ddf9d", "sha256": "01dd045c65c1e9dc1dbe50513895217e7409ba2cc1c106cd937cbd4057458e00" }, "downloads": -1, "filename": "aiohttp-3.5.0b2-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "2e1f7c5bc5f0b03a256c34a6196ddf9d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 621269, "upload_time": "2018-12-21T12:50:50", "upload_time_iso_8601": "2018-12-21T12:50:50.911238Z", "url": "https://files.pythonhosted.org/packages/b8/87/d3bf86ce4eb0d032f5c8864672fc2149c6c7baf764bab4fd5e73fbfbc18b/aiohttp-3.5.0b2-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c454d6d43c268aa8b54fd37906945965", "sha256": "cb220b17bf8b1973c01a86df6af94a03eeb23966fe9cbc568846d4cd84ec7dfb" }, "downloads": -1, "filename": "aiohttp-3.5.0b2-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "c454d6d43c268aa8b54fd37906945965", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 616681, "upload_time": "2018-12-21T13:08:29", "upload_time_iso_8601": "2018-12-21T13:08:29.638496Z", "url": "https://files.pythonhosted.org/packages/ad/5e/ce9a8056b2d7ce3f4e3a1cb7b8075a0f5fe80bc6cacee2659495bcbdcf32/aiohttp-3.5.0b2-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d046c55dc8061a3db77c533149572d1f", "sha256": "5e5674beedd6983d1049316089bcc3c76a0f495d38d642161f73c90a16176bb1" }, "downloads": -1, "filename": "aiohttp-3.5.0b2-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "d046c55dc8061a3db77c533149572d1f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 612939, "upload_time": "2018-12-21T13:19:35", "upload_time_iso_8601": "2018-12-21T13:19:35.317088Z", "url": "https://files.pythonhosted.org/packages/82/0f/f5d80fcd83b11c591860f1c3a7257632016c4b35f7f544d809aa8f383c22/aiohttp-3.5.0b2-cp35-cp35m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "751d625a42dabb26efba86b8e199cc45", "sha256": "f85f4e963ceff78127987d24317ce01816717c79e9b8ce6ac5d036167fb400df" }, "downloads": -1, "filename": "aiohttp-3.5.0b2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "751d625a42dabb26efba86b8e199cc45", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 574161, "upload_time": "2018-12-21T12:48:37", "upload_time_iso_8601": "2018-12-21T12:48:37.134525Z", "url": "https://files.pythonhosted.org/packages/c8/11/395ce3767a2011103d5e0798b1877a9b8196f2136f74c8dceaecb872be7b/aiohttp-3.5.0b2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "097f6b3019f3bc89f11f9d676987e0d3", "sha256": "07e9df64813e2659250865c38714e4f374d832f05baab3fdf61961e9e9961247" }, "downloads": -1, "filename": "aiohttp-3.5.0b2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "097f6b3019f3bc89f11f9d676987e0d3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 601931, "upload_time": "2018-12-21T12:52:44", "upload_time_iso_8601": "2018-12-21T12:52:44.908861Z", "url": "https://files.pythonhosted.org/packages/22/b9/379d4af4d1ec666d0aa335d745a3a914b742aae758a9cd28b5e31c1c1bb2/aiohttp-3.5.0b2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d84a1ebbb33a4357baab32ca4f9f159", "sha256": "78996a313d9b6c45205d8f16bb6cad2bd699a41c11c639ca92614176075f88e3" }, "downloads": -1, "filename": "aiohttp-3.5.0b2-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "2d84a1ebbb33a4357baab32ca4f9f159", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 638083, "upload_time": "2018-12-21T12:50:52", "upload_time_iso_8601": "2018-12-21T12:50:52.439234Z", "url": "https://files.pythonhosted.org/packages/19/2e/cfc92709cb9cf1081147db781ba112bb7c76d384b315916906a117b8f592/aiohttp-3.5.0b2-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82a464efeccb4952bc3a2f3a17552dac", "sha256": "082b5f8440f677d75d23327f208aafdd1d1d0c2cc01f9478148cb06d190fde8c" }, "downloads": -1, "filename": "aiohttp-3.5.0b2-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "82a464efeccb4952bc3a2f3a17552dac", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 630331, "upload_time": "2018-12-21T13:09:01", "upload_time_iso_8601": "2018-12-21T13:09:01.048356Z", "url": "https://files.pythonhosted.org/packages/d8/f5/6542f0c4530ad21d7cf173c134dc65cbf3d4a16f69efdce004d9b5d95455/aiohttp-3.5.0b2-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d5a186dbf5da0c8fe9424b5842315972", "sha256": "f72eb56bb8e5a79220ddbff0026f9cb056d52193298f8bfedfbc403998ee915f" }, "downloads": -1, "filename": "aiohttp-3.5.0b2-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "d5a186dbf5da0c8fe9424b5842315972", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 630045, "upload_time": "2018-12-21T13:19:56", "upload_time_iso_8601": "2018-12-21T13:19:56.640275Z", "url": "https://files.pythonhosted.org/packages/19/08/a58b51f8ad47db7179b5880b1ee1e97aafd0c3b849a45953fe6d6b09b681/aiohttp-3.5.0b2-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42dde406032c0a2683e503289f400f43", "sha256": "7dd389253044d0c3c584a6261f09d16ba0b2e9fddb73bbf99c48751823545cb4" }, "downloads": -1, "filename": "aiohttp-3.5.0b2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "42dde406032c0a2683e503289f400f43", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 579849, "upload_time": "2018-12-21T12:58:05", "upload_time_iso_8601": "2018-12-21T12:58:05.547007Z", "url": "https://files.pythonhosted.org/packages/c3/1b/7fd948611b8656037e0d7cd84081024ccd4a1e0bc284836c4c53e48b0714/aiohttp-3.5.0b2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f3f3725aeb395a4e5e6bf7303b8c329a", "sha256": "9464ed2c903a665834d2fc15315de105f52ce2c178360ff5b4ceea46548cc243" }, "downloads": -1, "filename": "aiohttp-3.5.0b2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "f3f3725aeb395a4e5e6bf7303b8c329a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 607748, "upload_time": "2018-12-21T13:02:26", "upload_time_iso_8601": "2018-12-21T13:02:26.705855Z", "url": "https://files.pythonhosted.org/packages/61/de/ddbe99c1471ad0026c56d9a39bb549ea5e3bb81947d854dec3cfa5580584/aiohttp-3.5.0b2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d927699578dec9da5e54a9f319e18e8b", "sha256": "2c5ca6324d2e94705dd1bd0cb3825a43918850cb922eeaea611534c911c112b7" }, "downloads": -1, "filename": "aiohttp-3.5.0b2-cp37-cp37m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "d927699578dec9da5e54a9f319e18e8b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 638044, "upload_time": "2018-12-21T12:51:28", "upload_time_iso_8601": "2018-12-21T12:51:28.503368Z", "url": "https://files.pythonhosted.org/packages/06/cd/016845da0a8f45f9a71fff2b7d23f14cc20d7b41780c917f7bc418bc603e/aiohttp-3.5.0b2-cp37-cp37m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "35c28108df412c5178f5219e719799d2", "sha256": "d663b35a9d8ed09cc7650609696623cfbe20a3997098cf247447ab23b98ab45c" }, "downloads": -1, "filename": "aiohttp-3.5.0b2-cp37-cp37m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "35c28108df412c5178f5219e719799d2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 631120, "upload_time": "2018-12-21T13:09:53", "upload_time_iso_8601": "2018-12-21T13:09:53.269838Z", "url": "https://files.pythonhosted.org/packages/07/0c/c4dd2f3cc9109924889390f4db893e750dfe3beffc34190cd66b3666f478/aiohttp-3.5.0b2-cp37-cp37m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "afdb8008c401dbb0329fe3241af0d906", "sha256": "c8e2057e2c1683640fe111e8b60c5ea03738fd8ee06fc5f719560416fee6d60e" }, "downloads": -1, "filename": "aiohttp-3.5.0b2-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "afdb8008c401dbb0329fe3241af0d906", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 627231, "upload_time": "2018-12-21T13:22:26", "upload_time_iso_8601": "2018-12-21T13:22:26.606619Z", "url": "https://files.pythonhosted.org/packages/16/cc/c0d8741f1a0e56da8d08917217f80af385d77fd41d14c92313fec077596c/aiohttp-3.5.0b2-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f84c486929142f3c9028eeb8b34c10ed", "sha256": "4f82302c93f375497faaddd39ece633619435cb4ba4c6d562d0c9b4fd2c9a22c" }, "downloads": -1, "filename": "aiohttp-3.5.0b2-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "f84c486929142f3c9028eeb8b34c10ed", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 579943, "upload_time": "2018-12-21T13:05:54", "upload_time_iso_8601": "2018-12-21T13:05:54.505212Z", "url": "https://files.pythonhosted.org/packages/c3/20/54df9426d3d72553c9a9f4de4520407d8550dca52cf5073255417221a00b/aiohttp-3.5.0b2-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "78d76bd0aace8ae1c8679a9db4a15aee", "sha256": "cac62b510fc6f697b12ddeebec7bef7bfb98f40806a2b367556b3e3acf5c6cb6" }, "downloads": -1, "filename": "aiohttp-3.5.0b2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "78d76bd0aace8ae1c8679a9db4a15aee", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 607635, "upload_time": "2018-12-21T13:11:34", "upload_time_iso_8601": "2018-12-21T13:11:34.849244Z", "url": "https://files.pythonhosted.org/packages/af/c8/869285bc4efa8722725851b27a1597ca1a325c571f709fdfbde57d0145d9/aiohttp-3.5.0b2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cab48de9f7413d4dbb11433c09c63a63", "sha256": "3d47626096e3f2840810cad256a4f19fa61c12c8515e0706447d68ab37d005b0" }, "downloads": -1, "filename": "aiohttp-3.5.0b2.tar.gz", "has_sig": false, "md5_digest": "cab48de9f7413d4dbb11433c09c63a63", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1094203, "upload_time": "2018-12-21T12:48:38", "upload_time_iso_8601": "2018-12-21T12:48:38.949349Z", "url": "https://files.pythonhosted.org/packages/69/b3/8f0cb31b5636ec24ef91c6749cc9c36869eb818c4818ceee04bfd9eb1495/aiohttp-3.5.0b2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.5.0b3": [ { "comment_text": "", "digests": { "md5": "dad855f6c478dbacdf7c4cd657d88ae1", "sha256": "2c64f306715036a49eb1562c44fe15777a8c579df84f30541c063e17be52fce3" }, "downloads": -1, "filename": "aiohttp-3.5.0b3-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "dad855f6c478dbacdf7c4cd657d88ae1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 621274, "upload_time": "2018-12-22T09:25:59", "upload_time_iso_8601": "2018-12-22T09:25:59.605583Z", "url": "https://files.pythonhosted.org/packages/98/6d/6fc21078eae8167867e3df54aa9a347050f447f56637e0b0f30f3d415437/aiohttp-3.5.0b3-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "821d2c409bc19f3394acc4eff5e5d6ea", "sha256": "83c9cfb741fd79a389042dd63a0f11d89011a2264bb3c87a34cea4abcb5c8e1d" }, "downloads": -1, "filename": "aiohttp-3.5.0b3-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "821d2c409bc19f3394acc4eff5e5d6ea", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 616679, "upload_time": "2018-12-22T10:00:34", "upload_time_iso_8601": "2018-12-22T10:00:34.300381Z", "url": "https://files.pythonhosted.org/packages/33/e0/cd89f35165626e40116f4bddc50b31436f79941dc710b9bd5f0403521422/aiohttp-3.5.0b3-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "be242f2a8a2310fface9ebaca4c7aad7", "sha256": "fb2cd4b2d214be4854c641c7a4360ecc81c11c2f0ebc8b9eafd34c5e6aab28f2" }, "downloads": -1, "filename": "aiohttp-3.5.0b3-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "be242f2a8a2310fface9ebaca4c7aad7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 612946, "upload_time": "2018-12-22T10:11:36", "upload_time_iso_8601": "2018-12-22T10:11:36.604713Z", "url": "https://files.pythonhosted.org/packages/19/b6/b5df573b3c46f8cfbdf14d31633cdcbbedbdccb08ad830206efb942eb3b1/aiohttp-3.5.0b3-cp35-cp35m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9051388307331591f6c432e93b2ae249", "sha256": "c168df3e63df99ce3de7b2369fe25061c18afdbdd743e50cc74e26ece423bc65" }, "downloads": -1, "filename": "aiohttp-3.5.0b3-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "9051388307331591f6c432e93b2ae249", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1095817, "upload_time": "2018-12-22T09:30:44", "upload_time_iso_8601": "2018-12-22T09:30:44.943463Z", "url": "https://files.pythonhosted.org/packages/aa/0a/a5872be6b9ab90647ab2e6f6c755b7d4a2be42eb6a7fb049e62032cdc667/aiohttp-3.5.0b3-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c6d4ca65e10b18b2ef6e5ec6d99d7e2", "sha256": "7735951a4ca36afcf5f2c7c1630cd4be2736271bd48675136a9e965c321a8cfc" }, "downloads": -1, "filename": "aiohttp-3.5.0b3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8c6d4ca65e10b18b2ef6e5ec6d99d7e2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1130539, "upload_time": "2018-12-22T09:30:47", "upload_time_iso_8601": "2018-12-22T09:30:47.118941Z", "url": "https://files.pythonhosted.org/packages/02/e2/c17f1ec01cd67025c6264c147336361c84fedc6d9fd1e79dbc76f53434a0/aiohttp-3.5.0b3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "53ff5918765fa3aefb0dd46a886d285a", "sha256": "6a961d52715aa0d4ee57e28d5ed7f53030307db3439c80a5c276b65dbf5435f8" }, "downloads": -1, "filename": "aiohttp-3.5.0b3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "53ff5918765fa3aefb0dd46a886d285a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 574158, "upload_time": "2018-12-22T09:07:40", "upload_time_iso_8601": "2018-12-22T09:07:40.240128Z", "url": "https://files.pythonhosted.org/packages/3a/34/4d23b0af0a9e0de52e9a3d2553f3a6818131e867d93eef3516cdb5541abc/aiohttp-3.5.0b3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "12b779b061c13b69e3780c14695d4e70", "sha256": "d461faffa480c290ffaf0c13c1f48b25d1d67fc8d680062bda0d0d8da8d93d66" }, "downloads": -1, "filename": "aiohttp-3.5.0b3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "12b779b061c13b69e3780c14695d4e70", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 601923, "upload_time": "2018-12-22T09:11:45", "upload_time_iso_8601": "2018-12-22T09:11:45.234696Z", "url": "https://files.pythonhosted.org/packages/3a/77/74b0f2ac3b5e97902d3f04170839a4995ec1ca66c9baed555eaa97179c4d/aiohttp-3.5.0b3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b093333eba4c3422be7ddda27f3b29f", "sha256": "0b0aa0afc1cb3b1fd2157ccb5febab62229098bc06ac4df95c2ffb4fb60b7517" }, "downloads": -1, "filename": "aiohttp-3.5.0b3-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "0b093333eba4c3422be7ddda27f3b29f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 638075, "upload_time": "2018-12-22T09:26:33", "upload_time_iso_8601": "2018-12-22T09:26:33.141888Z", "url": "https://files.pythonhosted.org/packages/bd/94/30ec5031f6f5da2a352fe9276af342fda9e6d176b395274662f553235c77/aiohttp-3.5.0b3-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f9afb956023f648ffa2ce3e82ae5b8bd", "sha256": "9fce987470dcb9f64c44c8fc7ebd35915e2140e655aa8e6ce14d5aa24b581600" }, "downloads": -1, "filename": "aiohttp-3.5.0b3-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "f9afb956023f648ffa2ce3e82ae5b8bd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 630324, "upload_time": "2018-12-22T10:01:34", "upload_time_iso_8601": "2018-12-22T10:01:34.440451Z", "url": "https://files.pythonhosted.org/packages/9a/67/900ae36b50c1385e9bd214f26a1b18958b65d6aaf47e23b5e378aaf2aad4/aiohttp-3.5.0b3-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "78be0fa59fc45314f78358b0e536e7f3", "sha256": "fb2ba3ca698ce85d251d111c19af8c1fb1f8d7c74d4839bbbde4e078f1b8df2b" }, "downloads": -1, "filename": "aiohttp-3.5.0b3-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "78be0fa59fc45314f78358b0e536e7f3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 630049, "upload_time": "2018-12-22T10:12:43", "upload_time_iso_8601": "2018-12-22T10:12:43.640653Z", "url": "https://files.pythonhosted.org/packages/e4/09/892ebd7ef55f771fed52d0afd0876bd2e23e153293ada659a64a8741ee79/aiohttp-3.5.0b3-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2e757963aaab032e1b0df39fa6b36b83", "sha256": "e94691f28fe78f61d4802e2ab4c39a15fa1da573c3add307c323a8c7471d19e9" }, "downloads": -1, "filename": "aiohttp-3.5.0b3-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2e757963aaab032e1b0df39fa6b36b83", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1117360, "upload_time": "2018-12-22T09:30:49", "upload_time_iso_8601": "2018-12-22T09:30:49.305375Z", "url": "https://files.pythonhosted.org/packages/02/a4/5cad823710eb194d8c73f01df56d20afe86f19165588707d89bc04099a0f/aiohttp-3.5.0b3-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f8383551968dc869f5fee6496694aa61", "sha256": "4c9ba24519b13baef1e3bd3e07ae3dad1e13d701e28985100d41ae3a8a4ed4f3" }, "downloads": -1, "filename": "aiohttp-3.5.0b3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f8383551968dc869f5fee6496694aa61", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1150703, "upload_time": "2018-12-22T09:30:51", "upload_time_iso_8601": "2018-12-22T09:30:51.451362Z", "url": "https://files.pythonhosted.org/packages/58/8a/7cdd8482193ba40c77c0bcc9b7a06cc003a816c04a6c0039424832434bd8/aiohttp-3.5.0b3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb55368936a623d76e1a21e366c9933f", "sha256": "0459dcd38524e1b44d0b5996c6439c4cfb23edf5fda1c3b5dfcefb70a41285b4" }, "downloads": -1, "filename": "aiohttp-3.5.0b3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "eb55368936a623d76e1a21e366c9933f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 579843, "upload_time": "2018-12-22T09:15:18", "upload_time_iso_8601": "2018-12-22T09:15:18.407185Z", "url": "https://files.pythonhosted.org/packages/c9/3f/be99b859f6f87efec0e3491e89d2219416c18456f0ea91cc928db87c4366/aiohttp-3.5.0b3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "29c031a3393bae3115438b71794abc75", "sha256": "01161311f77707afce8ccb0a080cbd56a5732bccb4e973fdf544563f462c6428" }, "downloads": -1, "filename": "aiohttp-3.5.0b3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "29c031a3393bae3115438b71794abc75", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 607743, "upload_time": "2018-12-22T09:18:34", "upload_time_iso_8601": "2018-12-22T09:18:34.561931Z", "url": "https://files.pythonhosted.org/packages/e8/6a/dbd96ed41293cfad753c3512ad813d3b16421605724ce4e43fd241fa5e93/aiohttp-3.5.0b3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "967c089c509325edcee66fda9d349857", "sha256": "dcfc470f07b7ca161d091ddeeef6a3ffc72bf9120e23812c15fe0d502a32e3c2" }, "downloads": -1, "filename": "aiohttp-3.5.0b3-cp37-cp37m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "967c089c509325edcee66fda9d349857", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 638039, "upload_time": "2018-12-22T09:56:18", "upload_time_iso_8601": "2018-12-22T09:56:18.312252Z", "url": "https://files.pythonhosted.org/packages/b9/c0/88da9f082c11986cd3d1499a235ceaf0dff08a54800667ccefd7da47ea9e/aiohttp-3.5.0b3-cp37-cp37m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a608e7d9731e7b8fade11bd1832829d7", "sha256": "9cd8fcd3769cd82aecaddd2d293c393669c34a47d00800ad2eb14d68770492b9" }, "downloads": -1, "filename": "aiohttp-3.5.0b3-cp37-cp37m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "a608e7d9731e7b8fade11bd1832829d7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 631116, "upload_time": "2018-12-22T10:13:56", "upload_time_iso_8601": "2018-12-22T10:13:56.636728Z", "url": "https://files.pythonhosted.org/packages/04/d0/5c4f495779fab817e828d11c55037fc031feb326ff487bee16b6696331ff/aiohttp-3.5.0b3-cp37-cp37m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "889680d916a35ffec12e8318f6dc97e7", "sha256": "52795004b2fcc286410f781bf3511bb0b97612c2fbef0db6fa0d944ddd7dc704" }, "downloads": -1, "filename": "aiohttp-3.5.0b3-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "889680d916a35ffec12e8318f6dc97e7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 627228, "upload_time": "2018-12-22T10:23:21", "upload_time_iso_8601": "2018-12-22T10:23:21.742487Z", "url": "https://files.pythonhosted.org/packages/4e/84/6b32a239f96783f3cd1aef2fe843ae0bb1d322f434c94023fbebe3a037aa/aiohttp-3.5.0b3-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ae11d9dc15db1cdb2bcf37ea7238c46d", "sha256": "99f96c71c8748624841e4f12d049c308e7f7ff445538f17e9ba9c0e7643a737b" }, "downloads": -1, "filename": "aiohttp-3.5.0b3-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ae11d9dc15db1cdb2bcf37ea7238c46d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1116939, "upload_time": "2018-12-22T09:30:53", "upload_time_iso_8601": "2018-12-22T09:30:53.947943Z", "url": "https://files.pythonhosted.org/packages/11/1e/c22be7dd71bf3ae77b963c216bb4861bf5b7a7434356b6b4198eecbb504c/aiohttp-3.5.0b3-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d744b95ae9d5412e31f4b3f1d78d84d4", "sha256": "8c5d494085a4a5e5de2fd75c779e892ecb4f717650f1f911740af5883c589756" }, "downloads": -1, "filename": "aiohttp-3.5.0b3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d744b95ae9d5412e31f4b3f1d78d84d4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1148093, "upload_time": "2018-12-22T09:30:56", "upload_time_iso_8601": "2018-12-22T09:30:56.050783Z", "url": "https://files.pythonhosted.org/packages/ee/88/efbdc95e2d8210cf40ef58702a5f7c90bfa5a58d670e2310d4425bd46a90/aiohttp-3.5.0b3-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "44bef946b95ee340a4030f140cdcfccc", "sha256": "ebf5f947c5cbb4407ab8d614b456dc8d3d600cb5470b9dfd97ca1d0969448c83" }, "downloads": -1, "filename": "aiohttp-3.5.0b3-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "44bef946b95ee340a4030f140cdcfccc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 579941, "upload_time": "2018-12-22T09:22:17", "upload_time_iso_8601": "2018-12-22T09:22:17.312562Z", "url": "https://files.pythonhosted.org/packages/f2/92/75823dc02a1564acba8b205af2dc2856020ad77875ea2d31852b6ca945e9/aiohttp-3.5.0b3-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8bf990520fd343ef6cdce1a42a54092f", "sha256": "234f599c2b1ae93cdc04afa01921c7113c9127d2ead5480fccdea0895c6429ac" }, "downloads": -1, "filename": "aiohttp-3.5.0b3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "8bf990520fd343ef6cdce1a42a54092f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 607632, "upload_time": "2018-12-22T09:25:27", "upload_time_iso_8601": "2018-12-22T09:25:27.008794Z", "url": "https://files.pythonhosted.org/packages/99/73/3d90dda08378bf147f433d87ba9c73c08912af7617dcc4a51f2b91c5f5b8/aiohttp-3.5.0b3-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "03c3df082454ced810fe82a53f9ca86c", "sha256": "2dc9fa373e7c0a61abbeec1faadd627db47905f88a340519c656c174591ae9bb" }, "downloads": -1, "filename": "aiohttp-3.5.0b3.tar.gz", "has_sig": false, "md5_digest": "03c3df082454ced810fe82a53f9ca86c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1094196, "upload_time": "2018-12-22T09:07:42", "upload_time_iso_8601": "2018-12-22T09:07:42.305374Z", "url": "https://files.pythonhosted.org/packages/cd/ff/c04dda1f7f365643bda60b3dcb7369d33638965e3173e74fcfba84c500b3/aiohttp-3.5.0b3.tar.gz", "yanked": false, "yanked_reason": null } ], "3.5.1": [ { "comment_text": "", "digests": { "md5": "cd6f777984c72cbdbe2d3ee9f9cd21b2", "sha256": "359baeea2ca640e0dde31a03c3bf3d3008bcbd136c6b1768b58a3499a46a6cc2" }, "downloads": -1, "filename": "aiohttp-3.5.1-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "cd6f777984c72cbdbe2d3ee9f9cd21b2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 621280, "upload_time": "2018-12-24T21:33:06", "upload_time_iso_8601": "2018-12-24T21:33:06.503094Z", "url": "https://files.pythonhosted.org/packages/6a/2c/a30ca52d35afe353d9a7ff3a715492ea83898dc3dfaf179d0d019f10d6c5/aiohttp-3.5.1-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fce1f2f04449829bf8891461a20885f3", "sha256": "55355947c4fe4b37d2a51b8f1d3f36f7fca541cf012031225be836d1f743c011" }, "downloads": -1, "filename": "aiohttp-3.5.1-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "fce1f2f04449829bf8891461a20885f3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 616697, "upload_time": "2018-12-24T21:50:10", "upload_time_iso_8601": "2018-12-24T21:50:10.836893Z", "url": "https://files.pythonhosted.org/packages/43/03/65cae015c80500a4797f318122fc7034ad5c7db878622e9c4edf48f542f6/aiohttp-3.5.1-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5279596b356a04985f5fdfa7f080d5c2", "sha256": "6739494376c90806cbb88e7ea2c9e2c35949e6c7089507d19e8f489170a26156" }, "downloads": -1, "filename": "aiohttp-3.5.1-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "5279596b356a04985f5fdfa7f080d5c2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 612966, "upload_time": "2018-12-24T22:01:32", "upload_time_iso_8601": "2018-12-24T22:01:32.633677Z", "url": "https://files.pythonhosted.org/packages/a9/0a/f82c961676dd45640b88645047522f587ffa29c66cffe3004bb18c267fc4/aiohttp-3.5.1-cp35-cp35m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7fd0e23e0bb402ef80f6302bd6e73fd2", "sha256": "c642901f6c53b965785e57a597229dd87910991b3e2d8aecf552da7d48cfe170" }, "downloads": -1, "filename": "aiohttp-3.5.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7fd0e23e0bb402ef80f6302bd6e73fd2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1095856, "upload_time": "2018-12-24T21:38:18", "upload_time_iso_8601": "2018-12-24T21:38:18.119273Z", "url": "https://files.pythonhosted.org/packages/1b/0f/0d31c51c30f3f459c57a1e9db46de0bf54f0cca4886a1a9f88c2ce030452/aiohttp-3.5.1-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e38c456382100ac5da1352b73ddba88", "sha256": "3011371a48fdef061a8669b6636306b33cf2bf621e1960513c6ce70449f7cd3d" }, "downloads": -1, "filename": "aiohttp-3.5.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0e38c456382100ac5da1352b73ddba88", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1130542, "upload_time": "2018-12-24T21:38:20", "upload_time_iso_8601": "2018-12-24T21:38:20.254794Z", "url": "https://files.pythonhosted.org/packages/d0/b3/c2ddc48ded429a07959e3f224920b9c24342a1ccdf5c64bfa4a4e793c62b/aiohttp-3.5.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18c9706eddfd2acc7b307aa91e38e532", "sha256": "dd07976a2f2615d4f2ed3654b24e53fe837708602c00934ce1e963690c91c933" }, "downloads": -1, "filename": "aiohttp-3.5.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "18c9706eddfd2acc7b307aa91e38e532", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 574179, "upload_time": "2018-12-24T21:01:48", "upload_time_iso_8601": "2018-12-24T21:01:48.145500Z", "url": "https://files.pythonhosted.org/packages/4d/b7/2470471ea8b034a03f19b0c428c49ab4aa8fa1145c0b7d34d52969edae2c/aiohttp-3.5.1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6de6044b39e735d0a91c247988d881c5", "sha256": "b9def7acd7c84ca86d0c3247e83180782c423d0e8a68254718fcc69e521570da" }, "downloads": -1, "filename": "aiohttp-3.5.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "6de6044b39e735d0a91c247988d881c5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 601945, "upload_time": "2018-12-24T21:05:48", "upload_time_iso_8601": "2018-12-24T21:05:48.156547Z", "url": "https://files.pythonhosted.org/packages/95/95/d7ee3e153f798f780dd9d57299b44e0b22a884c8b2c3dcaab59c13d75e32/aiohttp-3.5.1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d663c71f01eae1cba2055d6c8f88bbcf", "sha256": "5691c630435fd6bd09a789de9ffd5a61b812445dfd515525c738a97d4f9b550a" }, "downloads": -1, "filename": "aiohttp-3.5.1-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "d663c71f01eae1cba2055d6c8f88bbcf", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 638095, "upload_time": "2018-12-24T21:33:15", "upload_time_iso_8601": "2018-12-24T21:33:15.041350Z", "url": "https://files.pythonhosted.org/packages/01/87/4a48135642149f54ad9dc842993cb2eef95b927d7dcb16e5626c5e0e1981/aiohttp-3.5.1-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a4d7fafb7f5fc942c35cfb835e93fe42", "sha256": "310c95f1da5f92e937b136e55c2013e4bccd1b53bc88780256ba8ed75699dbdb" }, "downloads": -1, "filename": "aiohttp-3.5.1-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "a4d7fafb7f5fc942c35cfb835e93fe42", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 630346, "upload_time": "2018-12-24T21:54:55", "upload_time_iso_8601": "2018-12-24T21:54:55.795289Z", "url": "https://files.pythonhosted.org/packages/0d/a4/8f938d1fe5ac4897968c8fd0903f54713d944ac36e2ffe76d5444424d0ec/aiohttp-3.5.1-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "df5591e01e5506a999a2c35926f8fc80", "sha256": "bb96d5e0a82f67a04cde32f970ca837fbcf7ef44124170bc5e34f26c0ed92f7d" }, "downloads": -1, "filename": "aiohttp-3.5.1-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "df5591e01e5506a999a2c35926f8fc80", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 630063, "upload_time": "2018-12-24T22:05:37", "upload_time_iso_8601": "2018-12-24T22:05:37.593737Z", "url": "https://files.pythonhosted.org/packages/d0/f6/d60a81640378a9227f74ba2d6049b703b0503250b01ab64ccb046eaf5b88/aiohttp-3.5.1-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b285806006994cb105da03d6c4c4901e", "sha256": "c9b47b2ee669b2f01824e0f3b364a8cdfab8d40df1b5987c7c2103d3e13ec9e9" }, "downloads": -1, "filename": "aiohttp-3.5.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b285806006994cb105da03d6c4c4901e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1117348, "upload_time": "2018-12-24T21:38:22", "upload_time_iso_8601": "2018-12-24T21:38:22.206790Z", "url": "https://files.pythonhosted.org/packages/ec/0a/7a933efff6a82186ae2b1d9d156acc088f1848a5ce36752e48c9823070c0/aiohttp-3.5.1-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c9eca95bfe8be3275c9ae6960a898a8", "sha256": "0bbaec0b171b1ea77d34bc7c49db71a15e511ef34c45065fd2c7fad8daf1483f" }, "downloads": -1, "filename": "aiohttp-3.5.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2c9eca95bfe8be3275c9ae6960a898a8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1150733, "upload_time": "2018-12-24T21:38:24", "upload_time_iso_8601": "2018-12-24T21:38:24.643185Z", "url": "https://files.pythonhosted.org/packages/b2/1b/77c21d6bc5ce567e12a7fd6a79cca109188baafaa625238cc22bfaffda73/aiohttp-3.5.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "31b6b50ae4970b74b3bd6546beeca663", "sha256": "f73d6a3e711f26be58bfa13a65a425638fa9d3f4a081eebff0eb70e42fee40a8" }, "downloads": -1, "filename": "aiohttp-3.5.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "31b6b50ae4970b74b3bd6546beeca663", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 579865, "upload_time": "2018-12-24T21:09:17", "upload_time_iso_8601": "2018-12-24T21:09:17.139459Z", "url": "https://files.pythonhosted.org/packages/87/73/ff8aecd740250612a0959ec39e67d1977fb54504346b0adaa67edc468005/aiohttp-3.5.1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "425ac75bf7dbe3a13cc07cdf0b13ec76", "sha256": "e3b29248c9180fd6a30619b2714c534e3165e523a568296250337fe8952d39b8" }, "downloads": -1, "filename": "aiohttp-3.5.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "425ac75bf7dbe3a13cc07cdf0b13ec76", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 607764, "upload_time": "2018-12-24T21:13:18", "upload_time_iso_8601": "2018-12-24T21:13:18.349887Z", "url": "https://files.pythonhosted.org/packages/26/55/01ea30200d5d50c5772696eb8c7514b59e2d2db5c9b6833eb084fd3fcb5b/aiohttp-3.5.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "619a2ba2eca931704313b6eac073fd4d", "sha256": "168f0ecc91200784467479765eb26a80d6d9cf0025b8a9cc5e501413812d32e7" }, "downloads": -1, "filename": "aiohttp-3.5.1-cp37-cp37m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "619a2ba2eca931704313b6eac073fd4d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 638058, "upload_time": "2018-12-24T21:50:08", "upload_time_iso_8601": "2018-12-24T21:50:08.439118Z", "url": "https://files.pythonhosted.org/packages/16/e6/27d8969e0259fcbc5ed096613a71838c69018a16fd5598924aace5353769/aiohttp-3.5.1-cp37-cp37m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "573ecc3af5d1eede3b9cdf41c6e952d1", "sha256": "53fc0ad2e8d8f2f0c87bdc3009784de61f5dd9a4259f67301b317525eedc3ed5" }, "downloads": -1, "filename": "aiohttp-3.5.1-cp37-cp37m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "573ecc3af5d1eede3b9cdf41c6e952d1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 631134, "upload_time": "2018-12-24T22:07:38", "upload_time_iso_8601": "2018-12-24T22:07:38.652159Z", "url": "https://files.pythonhosted.org/packages/50/de/a59b10d9f51f2cf9341546bfa4fd2df1f386bf0e4908b1554c74053a34ab/aiohttp-3.5.1-cp37-cp37m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "64d0196b8675bedc46b9bb8197f48129", "sha256": "f438eab30868997407b73814ba097b80862d6d5bc5f7f2fda384e60df769777b" }, "downloads": -1, "filename": "aiohttp-3.5.1-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "64d0196b8675bedc46b9bb8197f48129", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 627249, "upload_time": "2018-12-24T22:12:55", "upload_time_iso_8601": "2018-12-24T22:12:55.518288Z", "url": "https://files.pythonhosted.org/packages/94/c5/5b6bc7bb2ff7a21f1f5c16299ae5cd8c655e7e7647a0230a61b63647e04d/aiohttp-3.5.1-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "884ed052d1e021de2cc2cc63f62952a7", "sha256": "af664f067d3c905f4f44d724e65406ed95dd2b4adfcc3d23a9203320ce497950" }, "downloads": -1, "filename": "aiohttp-3.5.1-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "884ed052d1e021de2cc2cc63f62952a7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1116943, "upload_time": "2018-12-24T21:38:26", "upload_time_iso_8601": "2018-12-24T21:38:26.644860Z", "url": "https://files.pythonhosted.org/packages/fd/b7/9dd4cff248aa576ab53f300a4a8d7c3cf92ce4852cf125a81126938cea31/aiohttp-3.5.1-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "db7a03b27890b8b3f966595b2da36210", "sha256": "5202ac2d00226f0b2990af9f3301c1ba5eebb673ae0a0acfe499eaea8a1b23ad" }, "downloads": -1, "filename": "aiohttp-3.5.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "db7a03b27890b8b3f966595b2da36210", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1148103, "upload_time": "2018-12-24T21:38:29", "upload_time_iso_8601": "2018-12-24T21:38:29.117571Z", "url": "https://files.pythonhosted.org/packages/af/9a/2a29d0da3a864cb7fb64a2d6344f0cc1d234b6ec201a6050e91a5b7576fa/aiohttp-3.5.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c63d243469d213fbf84e93e636cbfc58", "sha256": "ed65392135299698b0ebff4ee53ccf19d5c7c12077652a7faab05db369eb3996" }, "downloads": -1, "filename": "aiohttp-3.5.1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "c63d243469d213fbf84e93e636cbfc58", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 579962, "upload_time": "2018-12-24T21:16:51", "upload_time_iso_8601": "2018-12-24T21:16:51.512549Z", "url": "https://files.pythonhosted.org/packages/96/db/612309801331f993afe0d59c10e7ddd2dc868d671b4a359e322d41814437/aiohttp-3.5.1-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "756bde6c56721e0fc7c5ebaedbfd5526", "sha256": "a68232a60b8c1a822c4ac4096bfb42b4f873ac7dcef265642223690220b5af4f" }, "downloads": -1, "filename": "aiohttp-3.5.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "756bde6c56721e0fc7c5ebaedbfd5526", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 607650, "upload_time": "2018-12-24T21:20:44", "upload_time_iso_8601": "2018-12-24T21:20:44.449604Z", "url": "https://files.pythonhosted.org/packages/24/b7/cb6f90b733db21eea886774f576f8e68359c0f7fc419b6751468754f3d75/aiohttp-3.5.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "64671c5d9cca40a1949d39bc6d970804", "sha256": "c115744b2a0bf666fd8cde52a6d3e9319ffeb486009579743f5adfdcf0bf0773" }, "downloads": -1, "filename": "aiohttp-3.5.1.tar.gz", "has_sig": false, "md5_digest": "64671c5d9cca40a1949d39bc6d970804", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1094214, "upload_time": "2018-12-24T21:01:50", "upload_time_iso_8601": "2018-12-24T21:01:50.516039Z", "url": "https://files.pythonhosted.org/packages/37/a4/583b391d58ffa6c981ff8f78161b9fdc1883a1de69d792a602da4a69a349/aiohttp-3.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.5.2": [ { "comment_text": "", "digests": { "md5": "f68a89ad43730b34a19b85c2888e5da2", "sha256": "b4697481137b93df776921af6f004006f9983287d0ec1de1fef5cc5003de5e0f" }, "downloads": -1, "filename": "aiohttp-3.5.2-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "f68a89ad43730b34a19b85c2888e5da2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 624444, "upload_time": "2019-01-08T11:03:16", "upload_time_iso_8601": "2019-01-08T11:03:16.455571Z", "url": "https://files.pythonhosted.org/packages/9d/9e/c25ba40bf9014b77c33d81456c2d8257b1468f2fb777f6252b7c55800b11/aiohttp-3.5.2-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cefbe8ba35d27b084753d14b32476108", "sha256": "3c29653e39dba10e9fd309ca55a429c8ae872ec2d0383a7124fad32ddca7f68d" }, "downloads": -1, "filename": "aiohttp-3.5.2-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "cefbe8ba35d27b084753d14b32476108", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 619863, "upload_time": "2019-01-08T12:04:11", "upload_time_iso_8601": "2019-01-08T12:04:11.035683Z", "url": "https://files.pythonhosted.org/packages/72/83/884bfbc95c0ad7484a40ffa7b0bb9089c0a1fdedb0c6da890bfd6bd2b072/aiohttp-3.5.2-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "26fcc8c796a9465ecc9c058d75ddce15", "sha256": "4c909075fdbb72d32cf4264d3d7636b34bc593bcd6e91ebc6a09614f6a358a9f" }, "downloads": -1, "filename": "aiohttp-3.5.2-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "26fcc8c796a9465ecc9c058d75ddce15", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 616128, "upload_time": "2019-01-08T11:26:43", "upload_time_iso_8601": "2019-01-08T11:26:43.321918Z", "url": "https://files.pythonhosted.org/packages/a9/a1/046e97ab236e15f98e877aa678751a038f78e5d4d1f797ee6b99aca07d87/aiohttp-3.5.2-cp35-cp35m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18abf3e877de0de042c4ecb58601ec42", "sha256": "ccc106721cbc2cb3a436892677a71611214220aed9b14e55b1ef8a053be0d5c2" }, "downloads": -1, "filename": "aiohttp-3.5.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "18abf3e877de0de042c4ecb58601ec42", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 577345, "upload_time": "2019-01-08T10:41:24", "upload_time_iso_8601": "2019-01-08T10:41:24.959128Z", "url": "https://files.pythonhosted.org/packages/a4/7d/f91d882459b2fddfd61538f305d5cec93888a97b0fe93e33b43021ae836d/aiohttp-3.5.2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "79cf9a1b2463b7f047e55f5a9cdc48ff", "sha256": "88f05b3eb290588b4ec250be92c7f1d61c3773a965a053f0ebb918cec2fea99d" }, "downloads": -1, "filename": "aiohttp-3.5.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "79cf9a1b2463b7f047e55f5a9cdc48ff", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 605116, "upload_time": "2019-01-08T10:47:50", "upload_time_iso_8601": "2019-01-08T10:47:50.446755Z", "url": "https://files.pythonhosted.org/packages/45/1e/948b559e69b20b9b924a0acb1e777e71abc45b061e146cc48adb139fbbb4/aiohttp-3.5.2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0efc25929d1872810d49d478947865c3", "sha256": "7db10a247c164966c4755098dcf53b999cbe2709af0004ddb7a9af20a64cc544" }, "downloads": -1, "filename": "aiohttp-3.5.2-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "0efc25929d1872810d49d478947865c3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 641262, "upload_time": "2019-01-08T12:04:01", "upload_time_iso_8601": "2019-01-08T12:04:01.737447Z", "url": "https://files.pythonhosted.org/packages/a6/9a/c97c63704a480a56c941a3a48798f784db8add4470bfa94a9a2d102c7a6f/aiohttp-3.5.2-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cdd3087737238f29e43ac4ab6b9a0994", "sha256": "17e29040b80c0674696c806ba86cba6e68813966825885027e2c39054f51ff0b" }, "downloads": -1, "filename": "aiohttp-3.5.2-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "cdd3087737238f29e43ac4ab6b9a0994", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 633518, "upload_time": "2019-01-08T11:21:23", "upload_time_iso_8601": "2019-01-08T11:21:23.903875Z", "url": "https://files.pythonhosted.org/packages/11/d2/68cedaabe9b9577076ad90298de2427dd8891d9e6c3c60886abcca255c4d/aiohttp-3.5.2-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2375075c92e48384b619591ea36165e2", "sha256": "bf9a2c14c3ef664e7c04684fbe1ddbefc20966636fc659ab0189cb00475d3149" }, "downloads": -1, "filename": "aiohttp-3.5.2-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "2375075c92e48384b619591ea36165e2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 633231, "upload_time": "2019-01-08T11:32:47", "upload_time_iso_8601": "2019-01-08T11:32:47.245650Z", "url": "https://files.pythonhosted.org/packages/89/e3/bf2d53f4ad854b7d837bf1faa49b1a2c11ed45f517b45b1c4f236f72b5bb/aiohttp-3.5.2-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cf75cb68c10aef4b87057f7483d2ce7a", "sha256": "c86549a6cea53442e1bbfbae3415e49220fcbd181405b5fae54c1ca2f0285347" }, "downloads": -1, "filename": "aiohttp-3.5.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "cf75cb68c10aef4b87057f7483d2ce7a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 583029, "upload_time": "2019-01-08T10:52:15", "upload_time_iso_8601": "2019-01-08T10:52:15.757287Z", "url": "https://files.pythonhosted.org/packages/8a/2a/5d0e92fc9ae92e3adddf46474bdfe48d882ff637f18c7a7b5a2984060233/aiohttp-3.5.2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9880bd0d3380b6cbdf241fe64cdabf8f", "sha256": "f9847ad31aec2ba4697b28ca50dc933b14fedc97e1090797e819be30180d62c4" }, "downloads": -1, "filename": "aiohttp-3.5.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "9880bd0d3380b6cbdf241fe64cdabf8f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 610928, "upload_time": "2019-01-08T10:57:05", "upload_time_iso_8601": "2019-01-08T10:57:05.422806Z", "url": "https://files.pythonhosted.org/packages/80/39/9a269c7e8be4b9d39bc49c9a374bd17b64e1d610442e3f1fcc200edcd461/aiohttp-3.5.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5cde92dadaa6fb40bdb34056060bab47", "sha256": "3a9799ca609a27dbe74762f2be1267695464218614fa20d9b19bae298716c56a" }, "downloads": -1, "filename": "aiohttp-3.5.2-cp37-cp37m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "5cde92dadaa6fb40bdb34056060bab47", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 641225, "upload_time": "2019-01-08T11:14:46", "upload_time_iso_8601": "2019-01-08T11:14:46.037867Z", "url": "https://files.pythonhosted.org/packages/c4/8a/f8ffb0fe5e8fcfb545f03bc1b93448eaa9bdf0ae5658e35438bec4351dd2/aiohttp-3.5.2-cp37-cp37m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f7ecc3eb4abbc8000a87c40162e1a4a", "sha256": "ce4ed6df667e5add49362af1e1d7a38d511cebb717caa8f2e97adfdb1a730402" }, "downloads": -1, "filename": "aiohttp-3.5.2-cp37-cp37m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "6f7ecc3eb4abbc8000a87c40162e1a4a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 634301, "upload_time": "2019-01-08T11:24:21", "upload_time_iso_8601": "2019-01-08T11:24:21.206540Z", "url": "https://files.pythonhosted.org/packages/e7/b7/92645b962db0a23c61438e9aa16cab384d27b4ec5ceed46eaccde89b94ef/aiohttp-3.5.2-cp37-cp37m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "401b44f7273913e696db5d274dadb81a", "sha256": "e74a93b56bda8c5d4b1de53f4244b18995302b955d44aab6e9f422676f1febe2" }, "downloads": -1, "filename": "aiohttp-3.5.2-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "401b44f7273913e696db5d274dadb81a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 630413, "upload_time": "2019-01-08T11:37:13", "upload_time_iso_8601": "2019-01-08T11:37:13.136941Z", "url": "https://files.pythonhosted.org/packages/c1/55/ce987a700fbd997975e1ccf8450789ed645f530c9614dba0f7aea6a0fc28/aiohttp-3.5.2-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "985d135bd9d35ad3ce3dc92566edc64d", "sha256": "a2d86fda9b71a0a47f8fa8910322ca149cb9aa18f1649d7a625f97f0911c3bdc" }, "downloads": -1, "filename": "aiohttp-3.5.2-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "985d135bd9d35ad3ce3dc92566edc64d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 583123, "upload_time": "2019-01-08T11:00:57", "upload_time_iso_8601": "2019-01-08T11:00:57.629821Z", "url": "https://files.pythonhosted.org/packages/dc/36/4a535af6aaf5067e772f87de7bb82cc9b8d7386b4fdb6686be08b55cd898/aiohttp-3.5.2-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42da0be559f3c974ab7c835ccd00bba7", "sha256": "d85ae8281d43016f4c6d9bee93f13b43933c405784ff3e0d68ff31b45290010a" }, "downloads": -1, "filename": "aiohttp-3.5.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "42da0be559f3c974ab7c835ccd00bba7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 610809, "upload_time": "2019-01-08T11:06:43", "upload_time_iso_8601": "2019-01-08T11:06:43.832005Z", "url": "https://files.pythonhosted.org/packages/48/54/00a4ce67a3fcc723b2d634ec1ae3bd798e654aaa8e7a30116b7c9b7c7142/aiohttp-3.5.2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "614f5f2986b57ae6a123e868a9ac9622", "sha256": "3d851b15e615c0ad619de0990ab94c9721c335aebb58d160bf77a4af963c6b50" }, "downloads": -1, "filename": "aiohttp-3.5.2.tar.gz", "has_sig": false, "md5_digest": "614f5f2986b57ae6a123e868a9ac9622", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1096903, "upload_time": "2019-01-08T10:41:27", "upload_time_iso_8601": "2019-01-08T10:41:27.130146Z", "url": "https://files.pythonhosted.org/packages/ab/b2/cebdde1822389fce7d273e228dd8319c669663378020ca6e876d12904bf6/aiohttp-3.5.2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.5.3": [ { "comment_text": "", "digests": { "md5": "61e92e1fa9f19e8a6f06a1f6ea8c1a2e", "sha256": "632d4d14f81febec236e5f11c822f7b984930dc3327dcdf163fa893e574cc78a" }, "downloads": -1, "filename": "aiohttp-3.5.3-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "61e92e1fa9f19e8a6f06a1f6ea8c1a2e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 624628, "upload_time": "2019-01-10T21:42:53", "upload_time_iso_8601": "2019-01-10T21:42:53.741577Z", "url": "https://files.pythonhosted.org/packages/8e/da/a17641fdc0f13312cad1b3a9d7c47aee78159c35bedbc8db98aaa5c3b3d9/aiohttp-3.5.3-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab7867773e22f3a10f7806f8fb0229a9", "sha256": "f14d8a6f6cf5e3b680a7c498c17df2a9383ee2a3c8f1b7cc0742cb7952ec62a5" }, "downloads": -1, "filename": "aiohttp-3.5.3-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "ab7867773e22f3a10f7806f8fb0229a9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 620041, "upload_time": "2019-01-10T22:01:19", "upload_time_iso_8601": "2019-01-10T22:01:19.501409Z", "url": "https://files.pythonhosted.org/packages/dd/aa/dc496fcbfb620ed1792da4f0b1abad529d05fd69afefd2c71ce5384e85ee/aiohttp-3.5.3-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c87f12eec07f6a2506993bd30889574e", "sha256": "2bdae1298716279577fd76a6f71ab4dd696eecf12c11f70a33da114a46c47224" }, "downloads": -1, "filename": "aiohttp-3.5.3-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "c87f12eec07f6a2506993bd30889574e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 616312, "upload_time": "2019-01-10T22:14:07", "upload_time_iso_8601": "2019-01-10T22:14:07.996826Z", "url": "https://files.pythonhosted.org/packages/1a/48/e9e83c7f786508cc4d1326cb632bb5ea07e8269f7d8cda07a5583f3dca2c/aiohttp-3.5.3-cp35-cp35m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5bac31be7aafac1944ae149311aa69ba", "sha256": "c959eac80233fa3181ebc4a5da4563ad27975ff8294a2b331972b401e261c95d" }, "downloads": -1, "filename": "aiohttp-3.5.3-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5bac31be7aafac1944ae149311aa69ba", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1099164, "upload_time": "2019-01-10T21:48:22", "upload_time_iso_8601": "2019-01-10T21:48:22.344273Z", "url": "https://files.pythonhosted.org/packages/6e/4f/f6da7811ef211659b3b91725a33a38950e43b4a0f73c9860eff226e791f3/aiohttp-3.5.3-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5430bc3f3212b3a521e2a3ba7c6eddcf", "sha256": "dd64eb7cc9c1bd5502085b53ccbd256662151cfd8d287350c00d3e05ab731649" }, "downloads": -1, "filename": "aiohttp-3.5.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5430bc3f3212b3a521e2a3ba7c6eddcf", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1133919, "upload_time": "2019-01-10T21:48:24", "upload_time_iso_8601": "2019-01-10T21:48:24.614061Z", "url": "https://files.pythonhosted.org/packages/00/56/989a57878a6869adff576b073611f78da9ba4866403184f04dc5e41e4f12/aiohttp-3.5.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2b83703cc96b18b776a3c96579c5dd36", "sha256": "f86d74127d160530a8f10d16388ad5d7ebdb92619c70f9d5758571b6b673fb8d" }, "downloads": -1, "filename": "aiohttp-3.5.3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "2b83703cc96b18b776a3c96579c5dd36", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 577519, "upload_time": "2019-01-10T21:08:37", "upload_time_iso_8601": "2019-01-10T21:08:37.401025Z", "url": "https://files.pythonhosted.org/packages/d4/4b/b49815e0bf2cc7aee8a7dc02326729e01a51bfbbc1c1c38d7543d8e71759/aiohttp-3.5.3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "433b4addc223ae2da4b5fdfd8a9d1ca2", "sha256": "ab479a60b73a9986495653309572de4e70fd73319ccc06f32fe777486af346a6" }, "downloads": -1, "filename": "aiohttp-3.5.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "433b4addc223ae2da4b5fdfd8a9d1ca2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 605295, "upload_time": "2019-01-10T21:12:54", "upload_time_iso_8601": "2019-01-10T21:12:54.411011Z", "url": "https://files.pythonhosted.org/packages/31/94/edb655ce5914dc45b13e5bef8380f4cdb8773e8a748edde0b7458887d695/aiohttp-3.5.3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9554f6a959a8502dcc901857e4f5205d", "sha256": "e83ef478bf81d53086798bbe262dcfa46b068f92b590cc2b6f116be1736340ac" }, "downloads": -1, "filename": "aiohttp-3.5.3-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "9554f6a959a8502dcc901857e4f5205d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 641440, "upload_time": "2019-01-10T21:43:04", "upload_time_iso_8601": "2019-01-10T21:43:04.509623Z", "url": "https://files.pythonhosted.org/packages/b3/f3/1218ee4b1266d0b378061a1b0b4ced17c49bb2fc6ef83b849812b96ce0fe/aiohttp-3.5.3-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "03e4c62c5aca66a357033a853710200c", "sha256": "3c9340aba607652fcb776be7bbad8f03f780d3c0131230d2bda59901e0fc194f" }, "downloads": -1, "filename": "aiohttp-3.5.3-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "03e4c62c5aca66a357033a853710200c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 633696, "upload_time": "2019-01-10T22:07:19", "upload_time_iso_8601": "2019-01-10T22:07:19.039724Z", "url": "https://files.pythonhosted.org/packages/b7/3f/f842d2747887e75505e4e6afed1f18605a03cc9880c329bdffb266842d1a/aiohttp-3.5.3-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67a3fcc0d8996f99e7e353abbb3d5752", "sha256": "872d87583baa384bf4e8d99a517d9a1b94264eca3b91d3899448c57c60a0e582" }, "downloads": -1, "filename": "aiohttp-3.5.3-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "67a3fcc0d8996f99e7e353abbb3d5752", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 633415, "upload_time": "2019-01-10T22:19:16", "upload_time_iso_8601": "2019-01-10T22:19:16.900740Z", "url": "https://files.pythonhosted.org/packages/cb/af/4643468017a504efb7443d97b6a3b07a9da151c09de0e42656580dbfd33d/aiohttp-3.5.3-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2aa50e65668018414766f72e69236e83", "sha256": "4d2870e1caa6a14fdfb75b5b2ad513177247fae178224e36a5b4e16e24cb8cb2" }, "downloads": -1, "filename": "aiohttp-3.5.3-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2aa50e65668018414766f72e69236e83", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1120717, "upload_time": "2019-01-10T21:48:27", "upload_time_iso_8601": "2019-01-10T21:48:27.122019Z", "url": "https://files.pythonhosted.org/packages/39/7c/38fbe25b7d6ecd703faeed3acf9f1ab2dbde016667a3a0b706fbb00ba7da/aiohttp-3.5.3-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6e2874d07995a810676612d6fcdee0bb", "sha256": "5208115f302b84bc7de6e9e64dbb931694102d2b6b9137430992a1e061bfe964" }, "downloads": -1, "filename": "aiohttp-3.5.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6e2874d07995a810676612d6fcdee0bb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1154059, "upload_time": "2019-01-10T21:48:29", "upload_time_iso_8601": "2019-01-10T21:48:29.802607Z", "url": "https://files.pythonhosted.org/packages/6e/54/01b63fda9cc825cb91072acd96253cdc1e2f5aba14fcaf67f36c99b8e838/aiohttp-3.5.3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7d5508655f99b7765c4ba5e49af4a488", "sha256": "98c4cf50a9dea93e7241ee481593ad3a906399c017402ad183a6391aa959b6b5" }, "downloads": -1, "filename": "aiohttp-3.5.3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "7d5508655f99b7765c4ba5e49af4a488", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 583213, "upload_time": "2019-01-10T21:16:46", "upload_time_iso_8601": "2019-01-10T21:16:46.239495Z", "url": "https://files.pythonhosted.org/packages/98/e0/a85723f98074ec791ee13757bd14c7121fc356b1081a5cbcbbcc307c2701/aiohttp-3.5.3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "71d05f8f109fb6fc74d1a0bedae48fce", "sha256": "2e8a27e0b2ae1835a01302497178f2c512efc1e8b248aa3253e89e361dd2bb81" }, "downloads": -1, "filename": "aiohttp-3.5.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "71d05f8f109fb6fc74d1a0bedae48fce", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 611116, "upload_time": "2019-01-10T21:22:33", "upload_time_iso_8601": "2019-01-10T21:22:33.134951Z", "url": "https://files.pythonhosted.org/packages/4f/e1/e93338ab9d2b3765e85aa3bc58bd8c45acf59b00a98ab31b00985bc526f0/aiohttp-3.5.3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "894d002ca281fc64deda6c0ba6956298", "sha256": "1594b5e9f3c566c708b16f84b9c4e7f614d44bb3cad31e1a56222817de53c13d" }, "downloads": -1, "filename": "aiohttp-3.5.3-cp37-cp37m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "894d002ca281fc64deda6c0ba6956298", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 641406, "upload_time": "2019-01-10T22:01:38", "upload_time_iso_8601": "2019-01-10T22:01:38.707851Z", "url": "https://files.pythonhosted.org/packages/00/de/31c81b2bae86b49098ef5750d79f40964e47cfbc0bbbb1d2235cb090db99/aiohttp-3.5.3-cp37-cp37m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "97a4be32e4ff6aa4571ee2fc559806a5", "sha256": "585972c1636f432ac579ebbd548792416967d7aca863495544b22ab58824e63f" }, "downloads": -1, "filename": "aiohttp-3.5.3-cp37-cp37m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "97a4be32e4ff6aa4571ee2fc559806a5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 634487, "upload_time": "2019-01-10T22:19:49", "upload_time_iso_8601": "2019-01-10T22:19:49.234125Z", "url": "https://files.pythonhosted.org/packages/fc/2e/a130e273a79268e315cb4ae5470215104f0e0c278d29f224b0092bbf8d58/aiohttp-3.5.3-cp37-cp37m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2076c2fbfefc8c929cf2460eddbac5a4", "sha256": "f84d4152d6e8f6ee2e768ceed8b62a1f3d65747599a475cfb82214eda7531403" }, "downloads": -1, "filename": "aiohttp-3.5.3-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "2076c2fbfefc8c929cf2460eddbac5a4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 630595, "upload_time": "2019-01-10T22:26:40", "upload_time_iso_8601": "2019-01-10T22:26:40.675651Z", "url": "https://files.pythonhosted.org/packages/f5/e7/86a9aa960d1b76ad653566d833894609d8ab822f8c5b332bbb529e972a96/aiohttp-3.5.3-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "20b3555470c9bb7b0222a1fc6c0f537d", "sha256": "00085baa76d8436991475af85c1384878399cc07cbb7260ec35197c051269ea4" }, "downloads": -1, "filename": "aiohttp-3.5.3-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "20b3555470c9bb7b0222a1fc6c0f537d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1120305, "upload_time": "2019-01-10T21:48:32", "upload_time_iso_8601": "2019-01-10T21:48:32.207797Z", "url": "https://files.pythonhosted.org/packages/b6/02/17f734b43e3abdef663a2a2d2095f462b918febea9dbef2caa51e47a2f22/aiohttp-3.5.3-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "11427e98ae8e8cd20794bb30464845a0", "sha256": "70fe62a0291166320fc85dbae2634a24acc652b8bf11d0f91004a53361ad677e" }, "downloads": -1, "filename": "aiohttp-3.5.3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "11427e98ae8e8cd20794bb30464845a0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1151441, "upload_time": "2019-01-10T21:48:34", "upload_time_iso_8601": "2019-01-10T21:48:34.654884Z", "url": "https://files.pythonhosted.org/packages/4e/40/bfd114bce3db2f2a8788672dd88f52a801f4499634758729a76fceb585c0/aiohttp-3.5.3-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "61bcff1f9b0781f6768db3da89fce701", "sha256": "2e38f05245a953b5ae9961a947ba01be6fd2e5e7af9485eef488b80b894c2e68" }, "downloads": -1, "filename": "aiohttp-3.5.3-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "61bcff1f9b0781f6768db3da89fce701", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 583307, "upload_time": "2019-01-10T21:26:48", "upload_time_iso_8601": "2019-01-10T21:26:48.041673Z", "url": "https://files.pythonhosted.org/packages/97/58/6036ab4cf2b77e50d34c825eb1f3c1c06e86b4cfe0a1d3cdfba844203c30/aiohttp-3.5.3-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de511cebb2d5392bf5432a736338f3e3", "sha256": "62c38a2b0633271cc1ba7e8436e42bc3805428c34c4a57fe319f1c1c2be1b830" }, "downloads": -1, "filename": "aiohttp-3.5.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "de511cebb2d5392bf5432a736338f3e3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 610997, "upload_time": "2019-01-10T21:32:57", "upload_time_iso_8601": "2019-01-10T21:32:57.700954Z", "url": "https://files.pythonhosted.org/packages/ed/db/3da569f5545c54a63982a817b9dbacd5e77b824554c186615b4531071e7e/aiohttp-3.5.3-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a91a8a56be516017fdbe0aa0ed9ea9fb", "sha256": "7967b760d0e96eb7ac6b20a9143112ce5c03a00b4f74d8a5ee66c8e88e6b6800" }, "downloads": -1, "filename": "aiohttp-3.5.3.tar.gz", "has_sig": false, "md5_digest": "a91a8a56be516017fdbe0aa0ed9ea9fb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1097382, "upload_time": "2019-01-10T21:08:39", "upload_time_iso_8601": "2019-01-10T21:08:39.821067Z", "url": "https://files.pythonhosted.org/packages/a9/4f/2ff6cd9053bf2a6b09722a225f6644220ab55c9e155a8e72160db4a6adcf/aiohttp-3.5.3.tar.gz", "yanked": false, "yanked_reason": null } ], "3.5.4": [ { "comment_text": "", "digests": { "md5": "5536152af71471533fd3680658459235", "sha256": "199f1d106e2b44b6dacdf6f9245493c7d716b01d0b7fbe1959318ba4dc64d1f5" }, "downloads": -1, "filename": "aiohttp-3.5.4-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "5536152af71471533fd3680658459235", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 624769, "upload_time": "2019-01-12T10:48:08", "upload_time_iso_8601": "2019-01-12T10:48:08.499359Z", "url": "https://files.pythonhosted.org/packages/c4/6e/88ee58bd3a69dcb39b8f14ee56a28421a0d28711c47b6c1282997020a95b/aiohttp-3.5.4-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de23fa96659f9835e5258c553998ccb9", "sha256": "0155af66de8c21b8dba4992aaeeabf55503caefae00067a3b1139f86d0ec50ed" }, "downloads": -1, "filename": "aiohttp-3.5.4-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "de23fa96659f9835e5258c553998ccb9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 620180, "upload_time": "2019-01-12T11:05:37", "upload_time_iso_8601": "2019-01-12T11:05:37.200707Z", "url": "https://files.pythonhosted.org/packages/9c/4c/bc69821c2cc440520a9569e5ad31554b7c35f5c2a26a34ef7b6ee1d07bd5/aiohttp-3.5.4-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e617939b53bf0261e5102b27a3febe6", "sha256": "cc619d974c8c11fe84527e4b5e1c07238799a8c29ea1c1285149170524ba9303" }, "downloads": -1, "filename": "aiohttp-3.5.4-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "3e617939b53bf0261e5102b27a3febe6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 616450, "upload_time": "2019-01-12T11:16:45", "upload_time_iso_8601": "2019-01-12T11:16:45.342446Z", "url": "https://files.pythonhosted.org/packages/92/63/85e28605cd8f08a062974db3338c7e77437b662d980ef0dc6705fde167c6/aiohttp-3.5.4-cp35-cp35m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42de1baa009ad0263ba455f3e4c010a8", "sha256": "09654a9eca62d1bd6d64aa44db2498f60a5c1e0ac4750953fdd79d5c88955e10" }, "downloads": -1, "filename": "aiohttp-3.5.4-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "42de1baa009ad0263ba455f3e4c010a8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1099311, "upload_time": "2019-01-12T10:53:11", "upload_time_iso_8601": "2019-01-12T10:53:11.459718Z", "url": "https://files.pythonhosted.org/packages/6d/16/31b2e95c396cf66e606eca5456099bc488a3f1f394f5587d6718f8874479/aiohttp-3.5.4-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "56b1d4207922988c910e8c908de3487b", "sha256": "629102a193162e37102c50713e2e31dc9a2fe7ac5e481da83e5bb3c0cee700aa" }, "downloads": -1, "filename": "aiohttp-3.5.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "56b1d4207922988c910e8c908de3487b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1134048, "upload_time": "2019-01-12T10:53:13", "upload_time_iso_8601": "2019-01-12T10:53:13.814314Z", "url": "https://files.pythonhosted.org/packages/21/e6/35e3f6b1a0aea0c5567ef7fadc727487cacb7a15a892403213fcee8f9280/aiohttp-3.5.4-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "27fa1136ab66c058a309ad71c7e047c2", "sha256": "acc89b29b5f4e2332d65cd1b7d10c609a75b88ef8925d487a611ca788432dfa4" }, "downloads": -1, "filename": "aiohttp-3.5.4-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "27fa1136ab66c058a309ad71c7e047c2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 577661, "upload_time": "2019-01-12T10:17:05", "upload_time_iso_8601": "2019-01-12T10:17:05.166476Z", "url": "https://files.pythonhosted.org/packages/2c/01/5d1c5db6435da0c03967502d487bd2fcb87b5592de64e76c76a6f90d8980/aiohttp-3.5.4-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d77ea2bd34ed61c824786150b388164", "sha256": "a25237abf327530d9561ef751eef9511ab56fd9431023ca6f4803f1994104d72" }, "downloads": -1, "filename": "aiohttp-3.5.4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "3d77ea2bd34ed61c824786150b388164", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 605430, "upload_time": "2019-01-12T10:21:04", "upload_time_iso_8601": "2019-01-12T10:21:04.838854Z", "url": "https://files.pythonhosted.org/packages/4b/e4/98a2a1b1015427bff31cc390defaf55d01fd6aceda10c11f0f3c1ad6ffb0/aiohttp-3.5.4-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3104ff1fa055e7913cf07e8cabc27261", "sha256": "87331d1d6810214085a50749160196391a712a13336cd02ce1c3ea3d05bcf8d5" }, "downloads": -1, "filename": "aiohttp-3.5.4-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "3104ff1fa055e7913cf07e8cabc27261", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 641581, "upload_time": "2019-01-12T10:48:08", "upload_time_iso_8601": "2019-01-12T10:48:08.142937Z", "url": "https://files.pythonhosted.org/packages/57/2b/d4ddec2e1b5f048e94efa86cf74f7b466dabab7d40f25260e53459047f34/aiohttp-3.5.4-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "856a31cf15c4c91176d4197586cbd09e", "sha256": "a5cbd7157b0e383738b8e29d6e556fde8726823dae0e348952a61742b21aeb12" }, "downloads": -1, "filename": "aiohttp-3.5.4-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "856a31cf15c4c91176d4197586cbd09e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 633834, "upload_time": "2019-01-12T11:10:49", "upload_time_iso_8601": "2019-01-12T11:10:49.452504Z", "url": "https://files.pythonhosted.org/packages/d3/0b/68f2db07c7d2865f0a04b209599c5c59e0de2c121567438aa1e8b9713b72/aiohttp-3.5.4-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f7b836f5ebe11be2e3960303fc7a920e", "sha256": "9cddaff94c0135ee627213ac6ca6d05724bfe6e7a356e5e09ec57bd3249510f6" }, "downloads": -1, "filename": "aiohttp-3.5.4-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "f7b836f5ebe11be2e3960303fc7a920e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 633548, "upload_time": "2019-01-12T11:21:28", "upload_time_iso_8601": "2019-01-12T11:21:28.542543Z", "url": "https://files.pythonhosted.org/packages/74/30/83e59bc133a04fb0db67f3bd80558129e2c5f53b12d75980d122162447fe/aiohttp-3.5.4-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "492adf005eed4eae21b9b67154bffa9f", "sha256": "d4392defd4648badaa42b3e101080ae3313e8f4787cb517efd3f5b8157eaefd6" }, "downloads": -1, "filename": "aiohttp-3.5.4-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "492adf005eed4eae21b9b67154bffa9f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1120826, "upload_time": "2019-01-12T10:53:16", "upload_time_iso_8601": "2019-01-12T10:53:16.428480Z", "url": "https://files.pythonhosted.org/packages/f4/b5/2997ebf5d44626b8ec9dd00952ea21c3e30d9afd48b3cc511f023affaf33/aiohttp-3.5.4-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7ee91162450ed06f2b12ee8bf24c8e11", "sha256": "c2bec436a2b5dafe5eaeb297c03711074d46b6eb236d002c13c42f25c4a8ce9d" }, "downloads": -1, "filename": "aiohttp-3.5.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7ee91162450ed06f2b12ee8bf24c8e11", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1154250, "upload_time": "2019-01-12T10:53:19", "upload_time_iso_8601": "2019-01-12T10:53:19.135218Z", "url": "https://files.pythonhosted.org/packages/0d/5c/f87987f4dc8b2cfcf37c83a814ea4b2aff4d285cbffc0ab08b2b4fa3f584/aiohttp-3.5.4-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef2512ad36fdaa20b86ca1ed7749dde9", "sha256": "296f30dedc9f4b9e7a301e5cc963012264112d78a1d3094cd83ef148fdf33ca1" }, "downloads": -1, "filename": "aiohttp-3.5.4-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "ef2512ad36fdaa20b86ca1ed7749dde9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 583352, "upload_time": "2019-01-12T10:24:25", "upload_time_iso_8601": "2019-01-12T10:24:25.337114Z", "url": "https://files.pythonhosted.org/packages/41/a9/117a4f0a1791b7f9db0cc1d7d85a05a49b66990dc6302bd9fd635c92ab85/aiohttp-3.5.4-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d018e4fa6239299d669a6d033b8c6212", "sha256": "9a02a04bbe581c8605ac423ba3a74999ec9d8bce7ae37977a3d38680f5780b6d" }, "downloads": -1, "filename": "aiohttp-3.5.4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "d018e4fa6239299d669a6d033b8c6212", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 611249, "upload_time": "2019-01-12T10:28:26", "upload_time_iso_8601": "2019-01-12T10:28:26.034776Z", "url": "https://files.pythonhosted.org/packages/b0/b4/b5b59a05ac9845712902ea87c6b7945e041a78462c2c6e094b394fca6840/aiohttp-3.5.4-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c369153e23c52fdc19afd09639b3892f", "sha256": "b05bd85cc99b06740aad3629c2585bda7b83bd86e080b44ba47faf905fdf1300" }, "downloads": -1, "filename": "aiohttp-3.5.4-cp37-cp37m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "c369153e23c52fdc19afd09639b3892f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 641548, "upload_time": "2019-01-12T11:06:09", "upload_time_iso_8601": "2019-01-12T11:06:09.239975Z", "url": "https://files.pythonhosted.org/packages/28/a6/b4b527203dee74918ec008b9c262b2073e0242843118355d82b1cb763972/aiohttp-3.5.4-cp37-cp37m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "089d546f24101b1b116a27780c7786f7", "sha256": "40d7ea570b88db017c51392349cf99b7aefaaddd19d2c78368aeb0bddde9d390" }, "downloads": -1, "filename": "aiohttp-3.5.4-cp37-cp37m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "089d546f24101b1b116a27780c7786f7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 634622, "upload_time": "2019-01-12T11:23:45", "upload_time_iso_8601": "2019-01-12T11:23:45.248133Z", "url": "https://files.pythonhosted.org/packages/80/26/b613d3ddeddfb260c9894a5aae16f01fb94f2e53813f09408288241159d2/aiohttp-3.5.4-cp37-cp37m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a5dd0f63344c6a3ba06ea9e4827cbb22", "sha256": "a97a516e02b726e089cffcde2eea0d3258450389bbac48cbe89e0f0b6e7b0366" }, "downloads": -1, "filename": "aiohttp-3.5.4-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "a5dd0f63344c6a3ba06ea9e4827cbb22", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 630732, "upload_time": "2019-01-12T11:28:36", "upload_time_iso_8601": "2019-01-12T11:28:36.239480Z", "url": "https://files.pythonhosted.org/packages/16/60/c6ac986c2caeab6d3bae1e0b3400ab49df3aff23a8e37c543be68780d014/aiohttp-3.5.4-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da1ccf3a204e7b693f5a587ffd34f7a2", "sha256": "e1c3c582ee11af7f63a34a46f0448fca58e59889396ffdae1f482085061a2889" }, "downloads": -1, "filename": "aiohttp-3.5.4-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "da1ccf3a204e7b693f5a587ffd34f7a2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1120453, "upload_time": "2019-01-12T10:53:21", "upload_time_iso_8601": "2019-01-12T10:53:21.612399Z", "url": "https://files.pythonhosted.org/packages/45/5d/e792594f40bb6bc306aa85bdfdd266ba1159cb9c67173eb1b4cab578618d/aiohttp-3.5.4-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "143cf0610d720e4db6fb83aeb5209b2a", "sha256": "00d198585474299c9c3b4f1d5de1a576cc230d562abc5e4a0e81d71a20a6ca55" }, "downloads": -1, "filename": "aiohttp-3.5.4-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "143cf0610d720e4db6fb83aeb5209b2a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1151583, "upload_time": "2019-01-12T10:53:24", "upload_time_iso_8601": "2019-01-12T10:53:24.013294Z", "url": "https://files.pythonhosted.org/packages/33/60/c21acb7002110699761d3dec36fad3f5087c2752a4eb495444f877db6553/aiohttp-3.5.4-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd7ceef98b92af47db2ce1a951319d99", "sha256": "6d5ec9b8948c3d957e75ea14d41e9330e1ac3fed24ec53766c780f82805140dc" }, "downloads": -1, "filename": "aiohttp-3.5.4-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "bd7ceef98b92af47db2ce1a951319d99", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 583447, "upload_time": "2019-01-12T10:32:13", "upload_time_iso_8601": "2019-01-12T10:32:13.298180Z", "url": "https://files.pythonhosted.org/packages/2b/6f/a20c36018f2a1804b54bce2377f06ccd173572351f17e1df098be38eba5a/aiohttp-3.5.4-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "945f4ef71f7e9952f408aa25592f06a3", "sha256": "368ed312550bd663ce84dc4b032a962fcb3c7cae099dbbd48663afc305e3b939" }, "downloads": -1, "filename": "aiohttp-3.5.4-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "945f4ef71f7e9952f408aa25592f06a3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 611130, "upload_time": "2019-01-12T10:36:09", "upload_time_iso_8601": "2019-01-12T10:36:09.608826Z", "url": "https://files.pythonhosted.org/packages/bc/bd/08f0900d62b4ea1ca10bb2e2a1596ac3b04024c7daf7350debee0bd022fb/aiohttp-3.5.4-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "85fe5c9037256c58d4678148bd91b3f3", "sha256": "9c4c83f4fa1938377da32bc2d59379025ceeee8e24b89f72fcbccd8ca22dc9bf" }, "downloads": -1, "filename": "aiohttp-3.5.4.tar.gz", "has_sig": false, "md5_digest": "85fe5c9037256c58d4678148bd91b3f3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1097647, "upload_time": "2019-01-12T10:17:07", "upload_time_iso_8601": "2019-01-12T10:17:07.617789Z", "url": "https://files.pythonhosted.org/packages/0f/58/c8b83f999da3b13e66249ea32f325be923791c0c10aee6cf16002a3effc1/aiohttp-3.5.4.tar.gz", "yanked": false, "yanked_reason": null } ], "3.6.0": [ { "comment_text": "", "digests": { "md5": "2673e0707fa278b4c250ea8f616450a6", "sha256": "4f3c1572716ce2c8f22877a8185414ec213c057df35d27f7195f185691828608" }, "downloads": -1, "filename": "aiohttp-3.6.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2673e0707fa278b4c250ea8f616450a6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1106392, "upload_time": "2019-09-06T14:33:45", "upload_time_iso_8601": "2019-09-06T14:33:45.625593Z", "url": "https://files.pythonhosted.org/packages/30/87/6f499d1945d1375c1cd73d93241079ce2fad10ef0d4b6ff91b9e1d111e7e/aiohttp-3.6.0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "56d2ae12a0f026e869f73994a67eb006", "sha256": "de611d7b95c1067d9a415979c63503dbdc735b943d08779506886614b410644a" }, "downloads": -1, "filename": "aiohttp-3.6.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "56d2ae12a0f026e869f73994a67eb006", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1141103, "upload_time": "2019-09-06T14:33:48", "upload_time_iso_8601": "2019-09-06T14:33:48.952966Z", "url": "https://files.pythonhosted.org/packages/dc/58/dc64aebcd4448b93b39ee3675bd16d8347fb2689162f9d2379add464b315/aiohttp-3.6.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f639e993a1ed09b2abf364175d3245ee", "sha256": "27b2bc8ca5555d5dadeee07cc2d6f8c06092c9d9c3f203c79c124d07474d3cf8" }, "downloads": -1, "filename": "aiohttp-3.6.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "f639e993a1ed09b2abf364175d3245ee", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 583693, "upload_time": "2019-09-06T12:58:20", "upload_time_iso_8601": "2019-09-06T12:58:20.401848Z", "url": "https://files.pythonhosted.org/packages/de/c9/6c85af4b1c051855567543330df6cf700ad4edeb3ef8b8e640bab5cad11b/aiohttp-3.6.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95979f2b5e61ecc91ee4fa90b74f478b", "sha256": "1ab7ab0a710135133dcc2980dd48fdd92f6f6066b66ef0356f458f395aa375af" }, "downloads": -1, "filename": "aiohttp-3.6.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "95979f2b5e61ecc91ee4fa90b74f478b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 611678, "upload_time": "2019-09-06T13:02:24", "upload_time_iso_8601": "2019-09-06T13:02:24.004101Z", "url": "https://files.pythonhosted.org/packages/ba/74/f99d00bc439f2a9788e9357c5d9c0d0aa56c2779e5d4649aeda11590c4e7/aiohttp-3.6.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e95f00c3be7d9716b86b7a6ba970ddb6", "sha256": "e0fe698d1e6a852a27a88d2844a1a63839ee764d7cf214fd58cbea480407cc1d" }, "downloads": -1, "filename": "aiohttp-3.6.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e95f00c3be7d9716b86b7a6ba970ddb6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1126562, "upload_time": "2019-09-06T14:33:51", "upload_time_iso_8601": "2019-09-06T14:33:51.668724Z", "url": "https://files.pythonhosted.org/packages/db/6f/6dac934238a8f04fead3607f5c3a3b58ab0c6f6796cbd9c5941a9e657618/aiohttp-3.6.0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ec6435bbf73f0f74f8ec9d515e93a3e", "sha256": "acbbf0c47aa713d7a4baf52f11a356b01b82cabb53da452328546acaa21c6605" }, "downloads": -1, "filename": "aiohttp-3.6.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6ec6435bbf73f0f74f8ec9d515e93a3e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1160809, "upload_time": "2019-09-06T14:33:54", "upload_time_iso_8601": "2019-09-06T14:33:54.631541Z", "url": "https://files.pythonhosted.org/packages/20/3e/bde50b8d1f5e7de24ea9119fab9ef33ea333a72bfcdd00345f6ba7c5cea6/aiohttp-3.6.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d6b05a56e8338426c14cb81c3fe75ae", "sha256": "1cf5b433a0aa3cf45b0acd4adb14cb20d99166aaa967ab89f629635ac263ca64" }, "downloads": -1, "filename": "aiohttp-3.6.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "2d6b05a56e8338426c14cb81c3fe75ae", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 589595, "upload_time": "2019-09-06T13:05:35", "upload_time_iso_8601": "2019-09-06T13:05:35.562897Z", "url": "https://files.pythonhosted.org/packages/d4/8b/9d0b4670697bf1666a67957e1393a64b44db9ba6e1e9657e5cdbc8c3e982/aiohttp-3.6.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "db808a0cb0b8d2f72c39c234f6233073", "sha256": "fa155e309cc2277d6f9d099aecaf3ce78d86a31f5a62a994debc872e4c34ddf4" }, "downloads": -1, "filename": "aiohttp-3.6.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "db808a0cb0b8d2f72c39c234f6233073", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 617238, "upload_time": "2019-09-06T13:10:07", "upload_time_iso_8601": "2019-09-06T13:10:07.808490Z", "url": "https://files.pythonhosted.org/packages/db/18/620ab7361efd4ebd7a5a1ff1dfbb1caf64200f94e96840549cee98a2d38e/aiohttp-3.6.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "47cccf97e39999a147fab75546b646a5", "sha256": "772cfc0ff7c088d9e211377951a51c8a5173110cf56214f3e3d08a89be07badc" }, "downloads": -1, "filename": "aiohttp-3.6.0-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "47cccf97e39999a147fab75546b646a5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1127441, "upload_time": "2019-09-06T14:33:57", "upload_time_iso_8601": "2019-09-06T14:33:57.909359Z", "url": "https://files.pythonhosted.org/packages/3f/b4/0aa23df1c733e846d1a5e20ca2784e7eff23eb328a1b82676df10819e270/aiohttp-3.6.0-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "df8197f4767e5d8ab0327e713d450705", "sha256": "315f55a8469284f3ee54534d76f525b5c104dc514999dca4a007524a458aaba2" }, "downloads": -1, "filename": "aiohttp-3.6.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "df8197f4767e5d8ab0327e713d450705", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1158268, "upload_time": "2019-09-06T14:34:01", "upload_time_iso_8601": "2019-09-06T14:34:01.342967Z", "url": "https://files.pythonhosted.org/packages/5e/86/f505d447c97cf57a0224c7e0e3a79b73b8cc3f0eb6eeed856e7fa48f8f64/aiohttp-3.6.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "93226cf9d8e4984e1fd4ebb8f29e64f8", "sha256": "635bef0626e28446372511e1fd31585205db2f18dab37a43d8adb30b0483e1bf" }, "downloads": -1, "filename": "aiohttp-3.6.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "93226cf9d8e4984e1fd4ebb8f29e64f8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 589700, "upload_time": "2019-09-06T13:14:06", "upload_time_iso_8601": "2019-09-06T13:14:06.304947Z", "url": "https://files.pythonhosted.org/packages/1b/c5/36504584476bab207f035f73ace683615fb6f347ab4fcc0a075c11917613/aiohttp-3.6.0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5dff69b7ec99dc5bd86119b320edba0c", "sha256": "6907359de725e7ccd04b458a0f3322c7d1ba78df3df02e2ceb5abb0e21c975e6" }, "downloads": -1, "filename": "aiohttp-3.6.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "5dff69b7ec99dc5bd86119b320edba0c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 617367, "upload_time": "2019-09-06T13:18:57", "upload_time_iso_8601": "2019-09-06T13:18:57.619738Z", "url": "https://files.pythonhosted.org/packages/a2/b6/f43ecd9d36bd4e514cdb72a4cd9e4b7afcaeba2840a1864a78e900acc83a/aiohttp-3.6.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b7cdae8e71ffeb57bb2f1b366429201d", "sha256": "a91251585acf5203842551e37d2700c13c0bb411fa61b13485ab9e8d2dd400e9" }, "downloads": -1, "filename": "aiohttp-3.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b7cdae8e71ffeb57bb2f1b366429201d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.3", "size": 191106, "upload_time": "2019-09-06T14:30:27", "upload_time_iso_8601": "2019-09-06T14:30:27.973627Z", "url": "https://files.pythonhosted.org/packages/18/02/4b93461b42791a0021ebda53dedaf1cb76b7eafa652c1f025e77bba5951a/aiohttp-3.6.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a9b961d1dc6a04fefc3e3aba10b3f1f", "sha256": "af7809ce7de6709afc7770403a70dfdbc4e988c91451108c8e123fac46b870d9" }, "downloads": -1, "filename": "aiohttp-3.6.0.tar.gz", "has_sig": false, "md5_digest": "5a9b961d1dc6a04fefc3e3aba10b3f1f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1110800, "upload_time": "2019-09-06T12:58:23", "upload_time_iso_8601": "2019-09-06T12:58:23.244299Z", "url": "https://files.pythonhosted.org/packages/26/d5/9de37b49a716b2e9a1f0813aab502ff1b815aa3748dbe98c4e73f1781390/aiohttp-3.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.6.0a0": [ { "comment_text": "", "digests": { "md5": "2d33e8056abe3e97bed015462daed7e6", "sha256": "7aa9291ac6922215f73d0b65da30324f5538f1999feba9531a57dcf6a9221a6b" }, "downloads": -1, "filename": "aiohttp-3.6.0a0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "2d33e8056abe3e97bed015462daed7e6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 582166, "upload_time": "2019-08-12T11:37:41", "upload_time_iso_8601": "2019-08-12T11:37:41.932279Z", "url": "https://files.pythonhosted.org/packages/01/48/8e6a39ec100db4f3037c27a4964ba630ebc4fb157b7061b8c9c4e9ba3160/aiohttp-3.6.0a0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a6d199f280845a56f031de56d342cef5", "sha256": "8d821cf189a95b66057b76a4fe90ab18696076d26b41f85f832025202f73ee65" }, "downloads": -1, "filename": "aiohttp-3.6.0a0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "a6d199f280845a56f031de56d342cef5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 610156, "upload_time": "2019-08-12T11:42:25", "upload_time_iso_8601": "2019-08-12T11:42:25.788527Z", "url": "https://files.pythonhosted.org/packages/d8/38/10494199b1238a0f123f7757801aa9a7c03e0fceb8ea6997712f50fb4b09/aiohttp-3.6.0a0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bca28e3721522d057877abcc9025a3e6", "sha256": "cb1edf4ab8c50ea46a87e9ff90ed416e62a6c9a17ebdac107fa50a517f094be3" }, "downloads": -1, "filename": "aiohttp-3.6.0a0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "bca28e3721522d057877abcc9025a3e6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 588062, "upload_time": "2019-08-12T11:46:22", "upload_time_iso_8601": "2019-08-12T11:46:22.436339Z", "url": "https://files.pythonhosted.org/packages/6a/2c/57f8c7f5efed23bc81541fd2f7bc4d065e1761ff53f694f5068fd23e7880/aiohttp-3.6.0a0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b3b37a2ac7c477ccc71c68816a916d45", "sha256": "04617874c7332c521ed956311ac7cca4729dd2728926960cfb3239c5bc9036a7" }, "downloads": -1, "filename": "aiohttp-3.6.0a0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "b3b37a2ac7c477ccc71c68816a916d45", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 615713, "upload_time": "2019-08-12T11:50:45", "upload_time_iso_8601": "2019-08-12T11:50:45.810801Z", "url": "https://files.pythonhosted.org/packages/d6/1b/dcd8a773ca47ea1af514665729105839a75b1f2e78a6056223d5bac01928/aiohttp-3.6.0a0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f158d54afd5fbdce8f16fb86af2b0567", "sha256": "5fd03d48f91cd37fa0f6d3cf5c70c4afcca38116ae6bd85758ea792899eb4b04" }, "downloads": -1, "filename": "aiohttp-3.6.0a0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "f158d54afd5fbdce8f16fb86af2b0567", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 588173, "upload_time": "2019-08-12T11:54:19", "upload_time_iso_8601": "2019-08-12T11:54:19.895762Z", "url": "https://files.pythonhosted.org/packages/22/81/642ed9ad535cd70577a43a87b5846ff1dfac78d739cfb3f43f1941211ca0/aiohttp-3.6.0a0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bc65594acc0d9f5a993edafa989512d5", "sha256": "7b794f98e7b773c5060611c33f66199a5daaedc4b7b5d54c69745d6e95f24848" }, "downloads": -1, "filename": "aiohttp-3.6.0a0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "bc65594acc0d9f5a993edafa989512d5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 615834, "upload_time": "2019-08-12T11:58:37", "upload_time_iso_8601": "2019-08-12T11:58:37.636009Z", "url": "https://files.pythonhosted.org/packages/f6/96/6fe030a06e58c3329e81d9e121af4be71440ee55249d95037175d6acd590/aiohttp-3.6.0a0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e2461bb3edc97b1071cb0209d95c268d", "sha256": "95715cf8b9ca3bc0d9e3b5a9d12b6306aa1e8e23137ca41afea9e754fe2bf4c7" }, "downloads": -1, "filename": "aiohttp-3.6.0a0-py3-none-any.whl", "has_sig": false, "md5_digest": "e2461bb3edc97b1071cb0209d95c268d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.3", "size": 189577, "upload_time": "2019-08-12T12:02:27", "upload_time_iso_8601": "2019-08-12T12:02:27.646041Z", "url": "https://files.pythonhosted.org/packages/38/04/5099955b3e1c9734fcfdb04f659aaf7b4f358828af9257f063447bf1308f/aiohttp-3.6.0a0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "058701eeb314ef2302f0d6b85c014a17", "sha256": "750cb75e2f3dbf67ecebdd54dbcc6e0beddaea05bc37ff02ede29e83796d9543" }, "downloads": -1, "filename": "aiohttp-3.6.0a0.tar.gz", "has_sig": false, "md5_digest": "058701eeb314ef2302f0d6b85c014a17", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1112094, "upload_time": "2019-08-12T11:37:44", "upload_time_iso_8601": "2019-08-12T11:37:44.338593Z", "url": "https://files.pythonhosted.org/packages/35/07/28b86dfd7ff79eb3ec693b937bd830bd09a06645082d7e5af3cbaa1ba8b2/aiohttp-3.6.0a0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.6.0a1": [ { "comment_text": "", "digests": { "md5": "2c4777d4d80bdea795fbc8ba64397ced", "sha256": "44ac25f9fc5743c1b87391679334618acd404a310b4d5f54265cfb1643fd40e0" }, "downloads": -1, "filename": "aiohttp-3.6.0a1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "2c4777d4d80bdea795fbc8ba64397ced", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 582161, "upload_time": "2019-08-12T14:02:25", "upload_time_iso_8601": "2019-08-12T14:02:25.249860Z", "url": "https://files.pythonhosted.org/packages/bc/b1/c05e22f683bf8eb35d2b3a8cb674bbd84d18ca6f9144a85d86e064e9c14b/aiohttp-3.6.0a1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "14b48cf8c0b2cb3788c7073ee7521077", "sha256": "05b0b209a4a112323844ec189396a4cb0a92ec617aa4d2257baff1a6b3e53c8b" }, "downloads": -1, "filename": "aiohttp-3.6.0a1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "14b48cf8c0b2cb3788c7073ee7521077", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 610155, "upload_time": "2019-08-12T14:07:42", "upload_time_iso_8601": "2019-08-12T14:07:42.004565Z", "url": "https://files.pythonhosted.org/packages/f4/9a/a875c1cad9735fd133aac6b7157132cbff5b844aed6e9331aa8c930f3517/aiohttp-3.6.0a1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cff69fbed1bcf8f89225561427c97a79", "sha256": "87ce4a0fc78dd4f1972cdb09e1c3630817bf90258114f48e61f3915dfb7d91d5" }, "downloads": -1, "filename": "aiohttp-3.6.0a1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "cff69fbed1bcf8f89225561427c97a79", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 588060, "upload_time": "2019-08-12T14:12:00", "upload_time_iso_8601": "2019-08-12T14:12:00.150289Z", "url": "https://files.pythonhosted.org/packages/53/bc/195ddb585d8d0ab3a5df70922c8e66f501299cc21213551dd16a37c21b0d/aiohttp-3.6.0a1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a6a078cbea707bf906d31d57b1928ad8", "sha256": "e80be97c47501fdf0b5c719966e4a69f23d289fb493d8cbc1167d0e2e6e6415f" }, "downloads": -1, "filename": "aiohttp-3.6.0a1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "a6a078cbea707bf906d31d57b1928ad8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 615703, "upload_time": "2019-08-12T14:17:22", "upload_time_iso_8601": "2019-08-12T14:17:22.212538Z", "url": "https://files.pythonhosted.org/packages/05/e7/cec8931ab6811ee78853e3c64b1a345f3846566394b172556fc37c0a4065/aiohttp-3.6.0a1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c11cce2c0e0503d57e77362d3ea37611", "sha256": "266f2d3e7ae73fd563c4474ed38ea682b869ccecd906a702584853eb484aefc9" }, "downloads": -1, "filename": "aiohttp-3.6.0a1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "c11cce2c0e0503d57e77362d3ea37611", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 588171, "upload_time": "2019-08-12T14:21:48", "upload_time_iso_8601": "2019-08-12T14:21:48.432294Z", "url": "https://files.pythonhosted.org/packages/c8/b1/97f2b5e4f8ed2af61da1e41cdd9e9c873f01e5d86849bd4b2f10bf4888dc/aiohttp-3.6.0a1-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c136251e52a4329ea498afe0cc2ceae6", "sha256": "5f531b5b87e2641d31b9bb15553c07097b2282303338a792f1fd59e9ab81c741" }, "downloads": -1, "filename": "aiohttp-3.6.0a1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "c136251e52a4329ea498afe0cc2ceae6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 615831, "upload_time": "2019-08-12T14:26:08", "upload_time_iso_8601": "2019-08-12T14:26:08.347979Z", "url": "https://files.pythonhosted.org/packages/6d/0b/9e8e74a7249bccd568d29dacf5a97fb70d3ef151833746d361cf83991fa2/aiohttp-3.6.0a1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c2a5b72eb65b3c571b73d42a684c2ca2", "sha256": "f96990481622745034dea680f8354c978aebb5198511d44457bc4dde27aa9617" }, "downloads": -1, "filename": "aiohttp-3.6.0a1-py3-none-any.whl", "has_sig": false, "md5_digest": "c2a5b72eb65b3c571b73d42a684c2ca2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.3", "size": 189572, "upload_time": "2019-08-12T13:57:22", "upload_time_iso_8601": "2019-08-12T13:57:22.978424Z", "url": "https://files.pythonhosted.org/packages/16/f3/37886ff02fca91596568440d580344557d9d6de7dd5f772fbfbf17802795/aiohttp-3.6.0a1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b20792091cea99688797f1a22374ec8b", "sha256": "589d588a1ae17e2b0a31b09fb782f1dace109b573f47601aebc7ec59b07007cc" }, "downloads": -1, "filename": "aiohttp-3.6.0a1.tar.gz", "has_sig": false, "md5_digest": "b20792091cea99688797f1a22374ec8b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1112097, "upload_time": "2019-08-12T14:02:28", "upload_time_iso_8601": "2019-08-12T14:02:28.114247Z", "url": "https://files.pythonhosted.org/packages/e2/32/666439f4a2a590b4066f595316b8df8e831ea6f2b4225469395a19488ad8/aiohttp-3.6.0a1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.6.0a11": [ { "comment_text": "", "digests": { "md5": "0e9e429ddddb8509ecfd520aa2ca6284", "sha256": "32c066ac7dd61088d0ba878b06d62359f7b62f0e05012af68830f60a5e6f3f7c" }, "downloads": -1, "filename": "aiohttp-3.6.0a11-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "0e9e429ddddb8509ecfd520aa2ca6284", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 582132, "upload_time": "2019-08-29T13:54:12", "upload_time_iso_8601": "2019-08-29T13:54:12.007746Z", "url": "https://files.pythonhosted.org/packages/90/16/955bf253e41088fa630f4d472b03b3cd9b1b8e189cc6c033cfa16ef3268d/aiohttp-3.6.0a11-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fdc7657655ea15449d1b096a1374871f", "sha256": "139ea40a17e5a5e945d52c8230d0cfad9284bf54e1bf746496ecee369eab9c6c" }, "downloads": -1, "filename": "aiohttp-3.6.0a11-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "fdc7657655ea15449d1b096a1374871f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 610119, "upload_time": "2019-08-29T13:58:58", "upload_time_iso_8601": "2019-08-29T13:58:58.525040Z", "url": "https://files.pythonhosted.org/packages/a8/95/f32f09cfe4f5421f7962ccf08338c11ccec229fa1a2ea598841b419b30fb/aiohttp-3.6.0a11-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b0d89ab94bcaa856de247ac93f3e7e6c", "sha256": "7fb7b1591b9dd0984c07a97f2c44c4dc47dbeadaf417c1ef74fd87b57d277c04" }, "downloads": -1, "filename": "aiohttp-3.6.0a11-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "b0d89ab94bcaa856de247ac93f3e7e6c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 588040, "upload_time": "2019-08-29T14:03:10", "upload_time_iso_8601": "2019-08-29T14:03:10.942217Z", "url": "https://files.pythonhosted.org/packages/ef/ec/5b050fb0e53cb3332970e14b35ec3addc9dd2d22cd950f1697612d4fc381/aiohttp-3.6.0a11-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb023a9871071a21e6a864ab85b46267", "sha256": "6220ad6af623c6d7dfae400d56f671587a186bf7a02041e60c3b62219fa53687" }, "downloads": -1, "filename": "aiohttp-3.6.0a11-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "eb023a9871071a21e6a864ab85b46267", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 615680, "upload_time": "2019-08-29T14:07:12", "upload_time_iso_8601": "2019-08-29T14:07:12.419309Z", "url": "https://files.pythonhosted.org/packages/b7/5d/9352da662e8f7ea9be3c37212057c78d1d49daecb6fbcb7b2caf0aef6466/aiohttp-3.6.0a11-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad7dafd2afe2ba6219b412d8d9f1170f", "sha256": "12bb88ff26259b6084d9af18be17e77be6d553b951ff1d2b66dcf06d928cf8d6" }, "downloads": -1, "filename": "aiohttp-3.6.0a11-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "ad7dafd2afe2ba6219b412d8d9f1170f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 588146, "upload_time": "2019-08-29T14:11:53", "upload_time_iso_8601": "2019-08-29T14:11:53.111027Z", "url": "https://files.pythonhosted.org/packages/2c/2a/e5cd0e2c61e9d6f361378b39c4259ccb4b880d3e9263102c5ad75d976d22/aiohttp-3.6.0a11-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ea96c44666491eba965516e5546d5f4f", "sha256": "873c19a9c872ac76376b04232cc17ada917b41c93c505874af8ad302fa245ec7" }, "downloads": -1, "filename": "aiohttp-3.6.0a11-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "ea96c44666491eba965516e5546d5f4f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 615810, "upload_time": "2019-08-29T14:17:15", "upload_time_iso_8601": "2019-08-29T14:17:15.262233Z", "url": "https://files.pythonhosted.org/packages/02/5e/1419c5b3b2ef6a36b763d0188eb7297b0ba9e9d38890be293cbd9f6463e0/aiohttp-3.6.0a11-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43237158cd0ee19c960fb162f657edd7", "sha256": "4014246a40625f47cb1598ca2347a733ae4f7fd18397933730806f8ac47c294f" }, "downloads": -1, "filename": "aiohttp-3.6.0a11-py3-none-any.whl", "has_sig": false, "md5_digest": "43237158cd0ee19c960fb162f657edd7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.3", "size": 189548, "upload_time": "2019-08-29T14:15:25", "upload_time_iso_8601": "2019-08-29T14:15:25.693952Z", "url": "https://files.pythonhosted.org/packages/7d/2b/7afd31932652a065bbc7bf1d71488c39c0b6fa1aa4017f9c79b0167b1651/aiohttp-3.6.0a11-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3abc8c350d8e0aa85390cd1d5ea67cbc", "sha256": "df17e79c06780ff711248c4535839d15d4d8ab65752d1c514861947d2d5fb13e" }, "downloads": -1, "filename": "aiohttp-3.6.0a11.tar.gz", "has_sig": false, "md5_digest": "3abc8c350d8e0aa85390cd1d5ea67cbc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1112231, "upload_time": "2019-08-29T13:54:16", "upload_time_iso_8601": "2019-08-29T13:54:16.322781Z", "url": "https://files.pythonhosted.org/packages/de/64/d7826b20adce278224a730348bd4d521ab7dda55fc9fc29551267f735b48/aiohttp-3.6.0a11.tar.gz", "yanked": false, "yanked_reason": null } ], "3.6.0a12": [ { "comment_text": "", "digests": { "md5": "dde1f52ad01a672934cb6c36b2115c84", "sha256": "c629e0667136d988095b12a3471b292d684875a4d9dc1351f51fabec4bfb7444" }, "downloads": -1, "filename": "aiohttp-3.6.0a12-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "dde1f52ad01a672934cb6c36b2115c84", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1104850, "upload_time": "2019-08-29T17:39:34", "upload_time_iso_8601": "2019-08-29T17:39:34.913156Z", "url": "https://files.pythonhosted.org/packages/0e/8c/42cd82738bf3e906601fe1f9859c0ead62ddb47eb8b7d39456afc6229585/aiohttp-3.6.0a12-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "df84087aea50f6a60787671165fcf0bb", "sha256": "b721433b628fa73689d6213c30014fd7e555e15654f0f2dcae7319b4840ef967" }, "downloads": -1, "filename": "aiohttp-3.6.0a12-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "df84087aea50f6a60787671165fcf0bb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1139512, "upload_time": "2019-08-29T17:39:37", "upload_time_iso_8601": "2019-08-29T17:39:37.367014Z", "url": "https://files.pythonhosted.org/packages/09/35/c5a2d06dca8e2d6fee00e47dc43a9328a2c1419ff5696a2ff0ad2ff5da21/aiohttp-3.6.0a12-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "91cee11032108039e0b8ade37e5a30e4", "sha256": "eb5603b7fd4b58b21604ff10de804e983698ee1f47d0760dfce327f12f511149" }, "downloads": -1, "filename": "aiohttp-3.6.0a12-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "91cee11032108039e0b8ade37e5a30e4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 582133, "upload_time": "2019-08-29T17:16:03", "upload_time_iso_8601": "2019-08-29T17:16:03.338978Z", "url": "https://files.pythonhosted.org/packages/0f/7b/d55eb379f4bc7224f414f024b5f2e103663f21ce9b375414d42908de5c05/aiohttp-3.6.0a12-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "763800061ca73b5a291491bfee70ea77", "sha256": "c1f5ecd39062e5b5a807f02a15136d87b19d647f5f3d0af92afc1dc4748ca396" }, "downloads": -1, "filename": "aiohttp-3.6.0a12-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "763800061ca73b5a291491bfee70ea77", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 610127, "upload_time": "2019-08-29T17:20:43", "upload_time_iso_8601": "2019-08-29T17:20:43.124740Z", "url": "https://files.pythonhosted.org/packages/39/f7/c61600fd18aac22f9e0cc55f8055957610e2fbdbb671b3e3b8950468ad48/aiohttp-3.6.0a12-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d02b525d9cb98c426505c761ecaecae", "sha256": "e1a68dde3131eaddcb801aa987844091496c62d984a863ff50aa5bb6ff3ff181" }, "downloads": -1, "filename": "aiohttp-3.6.0a12-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8d02b525d9cb98c426505c761ecaecae", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1125021, "upload_time": "2019-08-29T17:39:40", "upload_time_iso_8601": "2019-08-29T17:39:40.251867Z", "url": "https://files.pythonhosted.org/packages/f8/47/dd3e30f4b36ac84a8f197be38671023b929e9d11ea7f510e38ae927e85f0/aiohttp-3.6.0a12-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dfb48c97f6838974ad17d03f98d59e74", "sha256": "f18e7c4630f2dea0932c904470b07943e26c64584be6cc476ad9a0e60f2d4998" }, "downloads": -1, "filename": "aiohttp-3.6.0a12-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dfb48c97f6838974ad17d03f98d59e74", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1159277, "upload_time": "2019-08-29T17:39:43", "upload_time_iso_8601": "2019-08-29T17:39:43.439302Z", "url": "https://files.pythonhosted.org/packages/b5/38/0a1db9f7c5ded27d18570129639d5169668514056a30cb3f7cb88a97fe4a/aiohttp-3.6.0a12-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6e963502cf0f40e4b01831b21b52827a", "sha256": "0bd57e084c5e4623793cabd75eff06abe543bb1a462796e71dc6eee99a761215" }, "downloads": -1, "filename": "aiohttp-3.6.0a12-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "6e963502cf0f40e4b01831b21b52827a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 588039, "upload_time": "2019-08-29T17:24:22", "upload_time_iso_8601": "2019-08-29T17:24:22.731435Z", "url": "https://files.pythonhosted.org/packages/df/cc/f8ce97e071688ed0fdbf579de4b7204381792d199cad66de6a013ef1c0ed/aiohttp-3.6.0a12-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6392d1178b4392b76365f8c41127d52a", "sha256": "d0d61938da1f6e7ebaa35bc4da266131c607e16404801ebba3d3c22059babdbe" }, "downloads": -1, "filename": "aiohttp-3.6.0a12-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "6392d1178b4392b76365f8c41127d52a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 615683, "upload_time": "2019-08-29T17:28:13", "upload_time_iso_8601": "2019-08-29T17:28:13.647365Z", "url": "https://files.pythonhosted.org/packages/7b/74/784194455be1199e2e0d3bc6f6eae1aed1002ba5ec3ae0ef72cd24529ecd/aiohttp-3.6.0a12-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d3afedc30bae028b7cab8af3b7e864d", "sha256": "38810dabd6552108a10eae6fcdfd42bf65f6bf35d390a345bdba896f66317c96" }, "downloads": -1, "filename": "aiohttp-3.6.0a12-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "9d3afedc30bae028b7cab8af3b7e864d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1125898, "upload_time": "2019-08-29T17:39:46", "upload_time_iso_8601": "2019-08-29T17:39:46.048664Z", "url": "https://files.pythonhosted.org/packages/4f/8c/5a453c93c2fab5d31b6fd4ac38afe8e5b37886be48e91fbe9d8970a84031/aiohttp-3.6.0a12-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "833141d34ce8ae0618e4daf7da458daf", "sha256": "ae6e074cb535174b6e2a2d4577c3268357da6fb72a0213bb4cc3a5b19d27433a" }, "downloads": -1, "filename": "aiohttp-3.6.0a12-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "833141d34ce8ae0618e4daf7da458daf", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1156715, "upload_time": "2019-08-29T17:39:49", "upload_time_iso_8601": "2019-08-29T17:39:49.555950Z", "url": "https://files.pythonhosted.org/packages/b5/f9/a03cb17c6d366c83c04afd1484cea88d4d37fd76f605ddcecfa492d9c8ab/aiohttp-3.6.0a12-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "06c19a8fb39ccc27d03a40068fb1734c", "sha256": "8dc351b9d7fde0b28e98bbbe26af1283888cac40b85487d71cb9ab1a2782d11e" }, "downloads": -1, "filename": "aiohttp-3.6.0a12-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "06c19a8fb39ccc27d03a40068fb1734c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 588145, "upload_time": "2019-08-29T17:32:30", "upload_time_iso_8601": "2019-08-29T17:32:30.901934Z", "url": "https://files.pythonhosted.org/packages/63/c9/8620091021b08ca11014d82f39001ab004a80c4a6e8defcdcb3477ed826a/aiohttp-3.6.0a12-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a94e472e221664d5ae9acae4a2feec5e", "sha256": "9f56b968648ccab736635a419db3610f622a9ef57cf23ff738e8f400bbccd195" }, "downloads": -1, "filename": "aiohttp-3.6.0a12-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "a94e472e221664d5ae9acae4a2feec5e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 615806, "upload_time": "2019-08-29T17:37:55", "upload_time_iso_8601": "2019-08-29T17:37:55.036410Z", "url": "https://files.pythonhosted.org/packages/36/8f/c86c9a50280da758ea9d60124b828c1f8515e1de465ddd858c02071c04eb/aiohttp-3.6.0a12-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "effee662ea130c8d900e8fea3ce6987f", "sha256": "8c8ab1007db37fc21a268314298e217c356f563e62643895016b1fd386f652ea" }, "downloads": -1, "filename": "aiohttp-3.6.0a12-py3-none-any.whl", "has_sig": false, "md5_digest": "effee662ea130c8d900e8fea3ce6987f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.3", "size": 189549, "upload_time": "2019-08-29T17:36:27", "upload_time_iso_8601": "2019-08-29T17:36:27.271602Z", "url": "https://files.pythonhosted.org/packages/eb/15/5aa7b56562cd6099e39965c520892af559ef82dabfee58dc03594117a6bb/aiohttp-3.6.0a12-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "31d4fd8960e3427ecaf335f9c857a24d", "sha256": "74c33b3952b5593c9f029cbf3e250a434d8a53c2ad2ef03cf0165ea3b7c20d39" }, "downloads": -1, "filename": "aiohttp-3.6.0a12.tar.gz", "has_sig": false, "md5_digest": "31d4fd8960e3427ecaf335f9c857a24d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1112214, "upload_time": "2019-08-29T17:16:06", "upload_time_iso_8601": "2019-08-29T17:16:06.516147Z", "url": "https://files.pythonhosted.org/packages/b8/27/f8b6e9cf66189ac452a66b05aa387370a7c57edb38b7d4459cace126a585/aiohttp-3.6.0a12.tar.gz", "yanked": false, "yanked_reason": null } ], "3.6.0a2": [ { "comment_text": "", "digests": { "md5": "1629e11c113529734c2ca7512ccc4011", "sha256": "f6fa42de739e2d60608e1a81496c5108fd0fb5af06ce63cf629816ca7acd0ba2" }, "downloads": -1, "filename": "aiohttp-3.6.0a2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "1629e11c113529734c2ca7512ccc4011", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 582123, "upload_time": "2019-08-19T13:46:50", "upload_time_iso_8601": "2019-08-19T13:46:50.626735Z", "url": "https://files.pythonhosted.org/packages/86/4e/1e9864509b8674a0e8b827cc2d61ed7383e9bdab3e8f30efa97e0d81cc00/aiohttp-3.6.0a2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d0df2f4dc1ce1b09e011d1c9e3cd5a5e", "sha256": "84c98084106c401078298e26635d2536bb4704b9ae4d73420a9b3566a692938d" }, "downloads": -1, "filename": "aiohttp-3.6.0a2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "d0df2f4dc1ce1b09e011d1c9e3cd5a5e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 610115, "upload_time": "2019-08-19T13:51:15", "upload_time_iso_8601": "2019-08-19T13:51:15.947722Z", "url": "https://files.pythonhosted.org/packages/c2/f6/3b25ca0df5c2ff4c62004b2459fe7b34ea26aa0589ad688e5c7ce35e3f2c/aiohttp-3.6.0a2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e41ede952280fb959e8e40957fdc4d3", "sha256": "af03cd2ad35fadc63bde70f8737c39698c536507b9e68ab555ab87aa078f843a" }, "downloads": -1, "filename": "aiohttp-3.6.0a2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "4e41ede952280fb959e8e40957fdc4d3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 588024, "upload_time": "2019-08-19T13:55:02", "upload_time_iso_8601": "2019-08-19T13:55:02.922529Z", "url": "https://files.pythonhosted.org/packages/1e/b9/2953b6c3ac04530c7ccc4bc47e694775d6f03e371b80532861d767736f9b/aiohttp-3.6.0a2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d263b39d67afc01a0e918cfad59a4569", "sha256": "b9efd0b3ca7a1cc306ba035c60869669fb0baad75d6f48a3c6144ab77fb99f32" }, "downloads": -1, "filename": "aiohttp-3.6.0a2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "d263b39d67afc01a0e918cfad59a4569", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 615674, "upload_time": "2019-08-19T13:59:08", "upload_time_iso_8601": "2019-08-19T13:59:08.524306Z", "url": "https://files.pythonhosted.org/packages/6a/8f/d2deeeb3f8361aae7f77f2d71984f8cfa32ee16f5b52458db7e0fd863360/aiohttp-3.6.0a2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "88230ff0dc2d4c840cc72a9b06343f20", "sha256": "c04a9c66fa8579616f0ea6306dff8c3bc1551f866fdbbaedd9ed1c779e1e368d" }, "downloads": -1, "filename": "aiohttp-3.6.0a2-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "88230ff0dc2d4c840cc72a9b06343f20", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 588135, "upload_time": "2019-08-19T14:04:13", "upload_time_iso_8601": "2019-08-19T14:04:13.588765Z", "url": "https://files.pythonhosted.org/packages/ed/a9/fb04456a7d3eaf164f1ae30df18a6149b9b2a64154ac33d072138fda3405/aiohttp-3.6.0a2-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "be203ba9af4b0e481ef74c96869b0293", "sha256": "ec121f37b05d1d96defc9886840b86f98da80381e5021d3a9713ed5f2b6588f2" }, "downloads": -1, "filename": "aiohttp-3.6.0a2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "be203ba9af4b0e481ef74c96869b0293", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 615794, "upload_time": "2019-08-19T14:08:54", "upload_time_iso_8601": "2019-08-19T14:08:54.286589Z", "url": "https://files.pythonhosted.org/packages/1d/2a/cdcad9e2832271eea58901650b69bc9a45304a2e38ae73c1d9b1cc25be8f/aiohttp-3.6.0a2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b29c8a077c7a44001f1907aa013b9098", "sha256": "91ee1385cdea124bcd2c497d45b1a2974e20a41da5897eb1259fff74a2aea421" }, "downloads": -1, "filename": "aiohttp-3.6.0a2-py3-none-any.whl", "has_sig": false, "md5_digest": "b29c8a077c7a44001f1907aa013b9098", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.3", "size": 189534, "upload_time": "2019-08-19T15:46:25", "upload_time_iso_8601": "2019-08-19T15:46:25.655134Z", "url": "https://files.pythonhosted.org/packages/ba/2f/34d4b099de335a0b8423093575b9d3111e11b3d92343d7969a5fc0132853/aiohttp-3.6.0a2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "48f9d0ad237a8a8a149563450e634fd8", "sha256": "fa0c6f11ddd1664c22cfdec85d18c6f68dd91c2fc3530dec75c897c52cc467b3" }, "downloads": -1, "filename": "aiohttp-3.6.0a2.tar.gz", "has_sig": false, "md5_digest": "48f9d0ad237a8a8a149563450e634fd8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1112218, "upload_time": "2019-08-19T13:46:53", "upload_time_iso_8601": "2019-08-19T13:46:53.954380Z", "url": "https://files.pythonhosted.org/packages/51/8d/7fdc69f4db1ea16ec8bf6e1da85f68c7260d16464c74a12a42d8245cee89/aiohttp-3.6.0a2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.6.0a3": [ { "comment_text": "", "digests": { "md5": "9a447d0fcaa048fca9e675513194fd71", "sha256": "a97afd93c86380a7ddf57064d84b4ada71c8433cf00d33458e1bcc12910f5bae" }, "downloads": -1, "filename": "aiohttp-3.6.0a3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "9a447d0fcaa048fca9e675513194fd71", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 582123, "upload_time": "2019-08-19T17:29:18", "upload_time_iso_8601": "2019-08-19T17:29:18.721152Z", "url": "https://files.pythonhosted.org/packages/86/22/baadde83175f1ee7f7c680af734b136520297bfbb5f30a51e09643b744c0/aiohttp-3.6.0a3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba2edb203a351dcbb18f9d639d3018fb", "sha256": "d50ac6d3b717b2ae89a3216f01318639238dcf94eda1e6334fc8ef781a78117d" }, "downloads": -1, "filename": "aiohttp-3.6.0a3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "ba2edb203a351dcbb18f9d639d3018fb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 610113, "upload_time": "2019-08-19T17:34:00", "upload_time_iso_8601": "2019-08-19T17:34:00.538113Z", "url": "https://files.pythonhosted.org/packages/04/0d/73a25613760c5aaf283b0f0675bb56baa7df443fdb1dcd3209e7010747c3/aiohttp-3.6.0a3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d407622d452c243c41946d73e59237dd", "sha256": "793c7bd9126f4b553e8a0d77dff51d889b2805f47a7febe215d4dae4c226c949" }, "downloads": -1, "filename": "aiohttp-3.6.0a3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "d407622d452c243c41946d73e59237dd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 588026, "upload_time": "2019-08-19T17:37:43", "upload_time_iso_8601": "2019-08-19T17:37:43.789002Z", "url": "https://files.pythonhosted.org/packages/36/35/493497b49701f0c616d0a08e0ae676365fe0527cea98155724fa3ae56c9f/aiohttp-3.6.0a3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7667c272c8fc7c3013be6ffd9446619f", "sha256": "70873ca8e39676890d570dd48626c62fcd49abfadbb976d13600471c2bbcd644" }, "downloads": -1, "filename": "aiohttp-3.6.0a3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "7667c272c8fc7c3013be6ffd9446619f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 615669, "upload_time": "2019-08-19T17:42:31", "upload_time_iso_8601": "2019-08-19T17:42:31.535695Z", "url": "https://files.pythonhosted.org/packages/ed/64/7199442def64f40bfba96b64bd5bf0398a56478a72429accf181d4cd44ba/aiohttp-3.6.0a3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "276269bc51bbf62c7f0606214abb8907", "sha256": "9b5f71e2a8c72e108f0ae14143d161d31d77b2309db9cfeb4e9f681475dce26e" }, "downloads": -1, "filename": "aiohttp-3.6.0a3-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "276269bc51bbf62c7f0606214abb8907", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 588136, "upload_time": "2019-08-19T17:46:14", "upload_time_iso_8601": "2019-08-19T17:46:14.670919Z", "url": "https://files.pythonhosted.org/packages/fd/68/56ebe9b2f58e5d04c62d0cf4e9676693978691ed438f064e8958ed81a741/aiohttp-3.6.0a3-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e6d99f9caf8828a0b2c42798e9ad559", "sha256": "a26463456214fc6d468a42e9d0aa8e70f25a0b210cbbb3dd0703d1cbeedaa9aa" }, "downloads": -1, "filename": "aiohttp-3.6.0a3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "8e6d99f9caf8828a0b2c42798e9ad559", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 615794, "upload_time": "2019-08-19T17:50:25", "upload_time_iso_8601": "2019-08-19T17:50:25.505573Z", "url": "https://files.pythonhosted.org/packages/03/fb/7fd6db147024190d434f66ae46c40db3c9c5c52d14f4bd2591a07943715d/aiohttp-3.6.0a3-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d89293d3bb4b7bc8e586dfa8c9ea513f", "sha256": "b10edc82fb087e3bd9bb6f7ba0dd64c017197eaac11b3228278111a88c028633" }, "downloads": -1, "filename": "aiohttp-3.6.0a3-py3-none-any.whl", "has_sig": false, "md5_digest": "d89293d3bb4b7bc8e586dfa8c9ea513f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.3", "size": 189537, "upload_time": "2019-08-19T22:26:56", "upload_time_iso_8601": "2019-08-19T22:26:56.924083Z", "url": "https://files.pythonhosted.org/packages/9b/6a/12c77e4b9bc0ae7067deaa1b8c8459ce11359a758997cc616eaa73d8e568/aiohttp-3.6.0a3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dc3acf39eac8a1a2eae2af8edaa83199", "sha256": "84a0545aeb5afb98dde939e001290a396364ae4dc4d86b7fc23be2df45b47dda" }, "downloads": -1, "filename": "aiohttp-3.6.0a3.tar.gz", "has_sig": false, "md5_digest": "dc3acf39eac8a1a2eae2af8edaa83199", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1112219, "upload_time": "2019-08-19T17:29:21", "upload_time_iso_8601": "2019-08-19T17:29:21.353607Z", "url": "https://files.pythonhosted.org/packages/d0/50/5bfc962d49c53fad7298cb7447802b2053dc00f7a66919460aff8f370fee/aiohttp-3.6.0a3.tar.gz", "yanked": false, "yanked_reason": null } ], "3.6.0a4": [ { "comment_text": "", "digests": { "md5": "33b777e8a4cd93b189c983f0e4792413", "sha256": "837a7a311b5afdaef4bf7be04dfde80f60867d63cac69530dfc20a1efb0548bb" }, "downloads": -1, "filename": "aiohttp-3.6.0a4-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "33b777e8a4cd93b189c983f0e4792413", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 582123, "upload_time": "2019-08-20T17:08:29", "upload_time_iso_8601": "2019-08-20T17:08:29.258471Z", "url": "https://files.pythonhosted.org/packages/cf/96/61c64ffa83f125bacf11a839f7ffafff237ee60bd1731ea1e075e763f663/aiohttp-3.6.0a4-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1ee4d5a48a00038e47d681c9c0ddd5ff", "sha256": "2447690d86211bec72eacb4e0c4805f829180997c962e044b909c67d6ecd60bc" }, "downloads": -1, "filename": "aiohttp-3.6.0a4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "1ee4d5a48a00038e47d681c9c0ddd5ff", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 610116, "upload_time": "2019-08-20T17:13:21", "upload_time_iso_8601": "2019-08-20T17:13:21.786377Z", "url": "https://files.pythonhosted.org/packages/d8/3b/d1278f7769a4cd093f8345ccfa262f0c3631bb2a77a9c73ea4bebff36557/aiohttp-3.6.0a4-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b86cb6529ed4c0acc1c1e56b320ccfb", "sha256": "d66ee16f66afcc40763afb95de6b7a053b51b8c795c8793f46b591cf143d2d70" }, "downloads": -1, "filename": "aiohttp-3.6.0a4-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "0b86cb6529ed4c0acc1c1e56b320ccfb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 588025, "upload_time": "2019-08-20T17:17:35", "upload_time_iso_8601": "2019-08-20T17:17:35.197018Z", "url": "https://files.pythonhosted.org/packages/c5/f6/94751b793223e3194074321bb814e9a42b6deb25140c52efaef0bb3d1a1a/aiohttp-3.6.0a4-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e4d7d619c718662436e07cb176ed7044", "sha256": "6f5dc291eecef68cbe5f32fdefd5958a54f9e27c47d4082128c0fdf0e3746eba" }, "downloads": -1, "filename": "aiohttp-3.6.0a4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "e4d7d619c718662436e07cb176ed7044", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 615673, "upload_time": "2019-08-20T17:22:48", "upload_time_iso_8601": "2019-08-20T17:22:48.842555Z", "url": "https://files.pythonhosted.org/packages/d5/a3/c22d82b7080365f1badd4de41fa522b5d7228813619050e5c201a447bf26/aiohttp-3.6.0a4-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3863b966450a15fcd7b5f8374a0d7fa6", "sha256": "1107869e71a1c971143d5c5256d6d09a4097fc6653ca185e3f5db1b331be8c06" }, "downloads": -1, "filename": "aiohttp-3.6.0a4-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "3863b966450a15fcd7b5f8374a0d7fa6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 588135, "upload_time": "2019-08-20T17:27:21", "upload_time_iso_8601": "2019-08-20T17:27:21.536607Z", "url": "https://files.pythonhosted.org/packages/82/90/4038873e1747b2f1eab8ec8d6fd1b5d024569ec13aa72dd1df8605e23dc0/aiohttp-3.6.0a4-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "249c8aa19f7b3298fd030b0c361fe683", "sha256": "c7f03b39c981a4998bb0f03a7e90e235729a3c6f318d69d2bd1d31d24b6aed2e" }, "downloads": -1, "filename": "aiohttp-3.6.0a4-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "249c8aa19f7b3298fd030b0c361fe683", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 615796, "upload_time": "2019-08-20T17:32:03", "upload_time_iso_8601": "2019-08-20T17:32:03.299408Z", "url": "https://files.pythonhosted.org/packages/1d/5e/272346b5b16c8042e510c51c5492fefa59e7e0098e3b92520d7e55d104a2/aiohttp-3.6.0a4-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f0d1ce3f5220f4d7a170bb1534f20a5", "sha256": "74f1dc9ef6e95503ff89fc5f44ee8aa14c788fe82454a665843fb102c85e096d" }, "downloads": -1, "filename": "aiohttp-3.6.0a4-py3-none-any.whl", "has_sig": false, "md5_digest": "1f0d1ce3f5220f4d7a170bb1534f20a5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.3", "size": 189534, "upload_time": "2019-08-20T17:13:11", "upload_time_iso_8601": "2019-08-20T17:13:11.550269Z", "url": "https://files.pythonhosted.org/packages/89/5e/ebc77da0e0fa53edc0619f8069fde54838eb5fba8792170914b1fcbb2974/aiohttp-3.6.0a4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc2f48ede82dd09b3663265c79bb4ef3", "sha256": "50d436f2e75e3dfaf2de58df7474bb8797762cc0089d402729cb163079cfdd7c" }, "downloads": -1, "filename": "aiohttp-3.6.0a4.tar.gz", "has_sig": false, "md5_digest": "fc2f48ede82dd09b3663265c79bb4ef3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1112246, "upload_time": "2019-08-20T17:08:31", "upload_time_iso_8601": "2019-08-20T17:08:31.708815Z", "url": "https://files.pythonhosted.org/packages/57/c0/d98f2777051e6d6bda7aea8aa98812ba1b791199e6102a77be8a71f89976/aiohttp-3.6.0a4.tar.gz", "yanked": false, "yanked_reason": null } ], "3.6.0a5": [ { "comment_text": "", "digests": { "md5": "036e52ae714a74138c8ff86909bb64ee", "sha256": "d8d9dc49aeaa948314f998763ddcb7e5be33ecefbdc7222ca4634992084278ca" }, "downloads": -1, "filename": "aiohttp-3.6.0a5-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "036e52ae714a74138c8ff86909bb64ee", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 582122, "upload_time": "2019-08-20T18:03:41", "upload_time_iso_8601": "2019-08-20T18:03:41.037577Z", "url": "https://files.pythonhosted.org/packages/00/90/3a66a2ce0da9ebe01cd3ad3be3d8b3c70ba533b9625aefa06fe51aa178b0/aiohttp-3.6.0a5-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac56764fe41719d45a98e3034631c80e", "sha256": "ca2f08a31133594a0bb857eebcef27e4123b6e1d62246dd60323a4e4fba2c47b" }, "downloads": -1, "filename": "aiohttp-3.6.0a5-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "ac56764fe41719d45a98e3034631c80e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 610112, "upload_time": "2019-08-20T18:09:28", "upload_time_iso_8601": "2019-08-20T18:09:28.672704Z", "url": "https://files.pythonhosted.org/packages/3c/61/bead9d25bf9f4acfe730eb761bfbb7941c8f63ad7b2900781b1e4b9e5494/aiohttp-3.6.0a5-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1a8460df95ef5d3e32ab24f0be35d30", "sha256": "419230949520578a4cfaa23e5d0462e2a05291cd84d0467490368501a15b9659" }, "downloads": -1, "filename": "aiohttp-3.6.0a5-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "f1a8460df95ef5d3e32ab24f0be35d30", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 588025, "upload_time": "2019-08-20T18:14:13", "upload_time_iso_8601": "2019-08-20T18:14:13.484941Z", "url": "https://files.pythonhosted.org/packages/78/4e/e03c2bfa7cbbcae61b73780c922c774f599e0795f5a581f6c5f2b3f36bf9/aiohttp-3.6.0a5-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "280e9f3e7fc36bf3448b4023dd0386a0", "sha256": "b52a02fd138bc1b0a517bd79ac72ecff0daf75191541fb5ca6099294d576273d" }, "downloads": -1, "filename": "aiohttp-3.6.0a5-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "280e9f3e7fc36bf3448b4023dd0386a0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 615670, "upload_time": "2019-08-20T18:18:49", "upload_time_iso_8601": "2019-08-20T18:18:49.356664Z", "url": "https://files.pythonhosted.org/packages/5b/74/3239bf5ce2c31e8bcadcbf5c7a65e7a87b2f578c8da9f8beef1a65eaa78e/aiohttp-3.6.0a5-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e6ced7fb6e02ae7e8e6373bd8a188e34", "sha256": "ba66b9d311b0f3f444ec7ec15015099533456eb4321a399d3e0f86989696f37a" }, "downloads": -1, "filename": "aiohttp-3.6.0a5-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "e6ced7fb6e02ae7e8e6373bd8a188e34", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 588130, "upload_time": "2019-08-20T18:23:22", "upload_time_iso_8601": "2019-08-20T18:23:22.629798Z", "url": "https://files.pythonhosted.org/packages/99/00/107ed8fe636423901ac12e3bbf27fa3d570d4095092446f94dbfda832af7/aiohttp-3.6.0a5-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a6aa66f9cdb4f05e640c7820aaab1617", "sha256": "19500d56781598f3f832ff4aa9b17613dabc9957b450663e9b1657be469ebcbf" }, "downloads": -1, "filename": "aiohttp-3.6.0a5-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "a6aa66f9cdb4f05e640c7820aaab1617", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 615798, "upload_time": "2019-08-20T18:27:35", "upload_time_iso_8601": "2019-08-20T18:27:35.929688Z", "url": "https://files.pythonhosted.org/packages/71/e9/862628eeeb2fa07617b614fba50c38d73c3bb74c28439389db81ee97e83d/aiohttp-3.6.0a5-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f9975828bb42363143a6328a28d5cb6", "sha256": "9761cb1c8b4d1c4063533d0c7ef0f4660b2cd9ea7f0a5657ce72201d21df4686" }, "downloads": -1, "filename": "aiohttp-3.6.0a5-py3-none-any.whl", "has_sig": false, "md5_digest": "3f9975828bb42363143a6328a28d5cb6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.3", "size": 189534, "upload_time": "2019-08-20T18:13:50", "upload_time_iso_8601": "2019-08-20T18:13:50.595745Z", "url": "https://files.pythonhosted.org/packages/9e/1e/b1e17a16df2c1c591cc8c92a0ebedc7f3ee51356473618b7936eab516964/aiohttp-3.6.0a5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3660eff0766296e3c8500450e912a427", "sha256": "9c30b65d085a4ee9b83b4e4400b9473c18c92439abedfa6a05fc0c222a03dff7" }, "downloads": -1, "filename": "aiohttp-3.6.0a5.tar.gz", "has_sig": false, "md5_digest": "3660eff0766296e3c8500450e912a427", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1112274, "upload_time": "2019-08-20T18:03:44", "upload_time_iso_8601": "2019-08-20T18:03:44.391425Z", "url": "https://files.pythonhosted.org/packages/72/a4/b68f9fe39502bf8c2aba43732d5a9954ff269349b7398e3d6ca59193fac9/aiohttp-3.6.0a5.tar.gz", "yanked": false, "yanked_reason": null } ], "3.6.0a6": [ { "comment_text": "", "digests": { "md5": "02315bd5763efa3cc8a07097da9ca91c", "sha256": "f5618970cbc205cdd2f33e10e926b318b3eaa8ad47be3d562fd49453bca000d3" }, "downloads": -1, "filename": "aiohttp-3.6.0a6-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "02315bd5763efa3cc8a07097da9ca91c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 582121, "upload_time": "2019-08-20T19:13:27", "upload_time_iso_8601": "2019-08-20T19:13:27.507131Z", "url": "https://files.pythonhosted.org/packages/1f/eb/3266e3b3f0c960acbd20092a10ed64e5b404b8aa8faf4830fe917696ebc4/aiohttp-3.6.0a6-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5d5425e4c67612fffd7957eace3e30f", "sha256": "5486aa0b3b47c46229abe813639e5d5fc39c27a59dbc7c55ced0fcc0346c95dc" }, "downloads": -1, "filename": "aiohttp-3.6.0a6-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "f5d5425e4c67612fffd7957eace3e30f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 610121, "upload_time": "2019-08-20T19:17:53", "upload_time_iso_8601": "2019-08-20T19:17:53.406784Z", "url": "https://files.pythonhosted.org/packages/b6/75/5db31c477937115ff2222c411c41ffeed01c826ac917a64bea12e28873a7/aiohttp-3.6.0a6-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cd069b319cf4c09b6bf6984ce1e0dfe3", "sha256": "a5b13986cf60352c5ff72704213e868dd7372a8ef95fa1df1d231e57034ff030" }, "downloads": -1, "filename": "aiohttp-3.6.0a6-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "cd069b319cf4c09b6bf6984ce1e0dfe3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 588026, "upload_time": "2019-08-20T19:21:49", "upload_time_iso_8601": "2019-08-20T19:21:49.247067Z", "url": "https://files.pythonhosted.org/packages/d6/50/0bc8c49ed7026f0e783b85556683c8a28c3c8f44841f2bd980e936994930/aiohttp-3.6.0a6-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3ff7c4e0d0fa95bbafdb4b0f45ab1b9", "sha256": "e9d360a2fa0b34fc8aa5ad8f38a807fe39d200467fee0f44c2000f653844686c" }, "downloads": -1, "filename": "aiohttp-3.6.0a6-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "c3ff7c4e0d0fa95bbafdb4b0f45ab1b9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 615668, "upload_time": "2019-08-20T19:26:38", "upload_time_iso_8601": "2019-08-20T19:26:38.007876Z", "url": "https://files.pythonhosted.org/packages/af/09/8e1748ddb361e4c28bef24b88c81e6c5a1351e7319d2ce1fb4b7a3527128/aiohttp-3.6.0a6-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "49be0edfb70c2fab33e0052ea9533669", "sha256": "7468b60738612f2cd18f49b03328e738f1c5635a8aa334324f4411dc12734630" }, "downloads": -1, "filename": "aiohttp-3.6.0a6-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "49be0edfb70c2fab33e0052ea9533669", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 588136, "upload_time": "2019-08-20T19:30:50", "upload_time_iso_8601": "2019-08-20T19:30:50.737387Z", "url": "https://files.pythonhosted.org/packages/74/0e/0948eb7fcd41e85f6010cf744c32ff006d2c3d181b6f17d4988eed6a1f65/aiohttp-3.6.0a6-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "14adb55b51c612d0c66d72e2889a2058", "sha256": "5ee0a78c8c181d181195494fd66014cd30fb7815d73e7b76d772ee2d55cbc5c2" }, "downloads": -1, "filename": "aiohttp-3.6.0a6-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "14adb55b51c612d0c66d72e2889a2058", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 615793, "upload_time": "2019-08-20T19:36:25", "upload_time_iso_8601": "2019-08-20T19:36:25.933946Z", "url": "https://files.pythonhosted.org/packages/0c/d5/c79b2901890fd04d87e47ded63d5055a43bbd3ed7b1bafa9df190c7753f6/aiohttp-3.6.0a6-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2791268bb943db9a1d8bacc3974be914", "sha256": "005f41c830df6405f3cd920585aeab8fc3c87cc58762796f3627917424a4b100" }, "downloads": -1, "filename": "aiohttp-3.6.0a6-py3-none-any.whl", "has_sig": false, "md5_digest": "2791268bb943db9a1d8bacc3974be914", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.3", "size": 189536, "upload_time": "2019-08-20T19:47:36", "upload_time_iso_8601": "2019-08-20T19:47:36.252338Z", "url": "https://files.pythonhosted.org/packages/0d/7a/fc1a1f3a3ae07717d48f8f586d8e44b7356758c93c32ebd5d88336b2540c/aiohttp-3.6.0a6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "028b39d80afad69425f18b8da8a04757", "sha256": "6be6d6eea0f5301a82c58565b48e7a3881e6a492d6a938ce283e5f57e7733413" }, "downloads": -1, "filename": "aiohttp-3.6.0a6.tar.gz", "has_sig": false, "md5_digest": "028b39d80afad69425f18b8da8a04757", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1112282, "upload_time": "2019-08-20T19:13:30", "upload_time_iso_8601": "2019-08-20T19:13:30.536282Z", "url": "https://files.pythonhosted.org/packages/13/f1/e3497b4804752703b56646aa76318984c8dc1b8e770c10cf515af2beda2e/aiohttp-3.6.0a6.tar.gz", "yanked": false, "yanked_reason": null } ], "3.6.0a7": [ { "comment_text": "", "digests": { "md5": "a19e8ce922f1f7e47cc0a89092487baa", "sha256": "d628274fb8343f54bcaf2c129f9b759bc168bb24a08db6aacf7e38cff6c48b48" }, "downloads": -1, "filename": "aiohttp-3.6.0a7-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "a19e8ce922f1f7e47cc0a89092487baa", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 582122, "upload_time": "2019-08-20T21:13:13", "upload_time_iso_8601": "2019-08-20T21:13:13.633039Z", "url": "https://files.pythonhosted.org/packages/37/e8/97d4868092e23a6d90f62bd1206c51ffad28ada7583adb6efa102beabf98/aiohttp-3.6.0a7-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4161351255410e4ccb48f78344fcecb1", "sha256": "92bffa0064d07aa4b6b54c2c3d02e9bd9f562cc62f996deedc3362b29c1db233" }, "downloads": -1, "filename": "aiohttp-3.6.0a7-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "4161351255410e4ccb48f78344fcecb1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 610113, "upload_time": "2019-08-20T21:17:29", "upload_time_iso_8601": "2019-08-20T21:17:29.337709Z", "url": "https://files.pythonhosted.org/packages/95/70/1aaecd0c9ebb0ae2c8f05c3322bbbe4aeb734a46cc389ffb1a0a78f1c862/aiohttp-3.6.0a7-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c884018020f866f5c403352ec96434f1", "sha256": "c298d35225bede55f27a9ebe1e8cc559bc94d323f9dc32f16392f0a3046655f2" }, "downloads": -1, "filename": "aiohttp-3.6.0a7-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "c884018020f866f5c403352ec96434f1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 588026, "upload_time": "2019-08-20T21:21:10", "upload_time_iso_8601": "2019-08-20T21:21:10.134275Z", "url": "https://files.pythonhosted.org/packages/3a/e3/0dc562110241c5b5ff6025ba1cc9e7ae866a8b59b6b07cd2b1be24aa998d/aiohttp-3.6.0a7-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "85fcb800cf82acb312a16f910afe5240", "sha256": "7c3fb51b241a9145a4d8d43ed244d9516011d403be0f020008a82e18c1baf976" }, "downloads": -1, "filename": "aiohttp-3.6.0a7-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "85fcb800cf82acb312a16f910afe5240", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 615670, "upload_time": "2019-08-20T21:25:28", "upload_time_iso_8601": "2019-08-20T21:25:28.405293Z", "url": "https://files.pythonhosted.org/packages/40/86/5ec4c326ec9ecea4e538955b135a24ea64804d3a97bb3557a6268125d68a/aiohttp-3.6.0a7-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "828c385dc48a8a31437b2d2a13458e7d", "sha256": "9468233d4aa3fea255f56cd744a5ac91f99a622529260db4263c1cab049c3f3c" }, "downloads": -1, "filename": "aiohttp-3.6.0a7-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "828c385dc48a8a31437b2d2a13458e7d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 588133, "upload_time": "2019-08-20T21:29:04", "upload_time_iso_8601": "2019-08-20T21:29:04.592002Z", "url": "https://files.pythonhosted.org/packages/8a/b5/0066cbea830850eef71614a16c68b3d942487471796e6efbf971036b3747/aiohttp-3.6.0a7-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9273ed2dcfb5f56202c66b050e7a3eef", "sha256": "2a899b5b84d471dcb0d134be4eed8c690d981e618be50cdbebe45f5485e0b72e" }, "downloads": -1, "filename": "aiohttp-3.6.0a7-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "9273ed2dcfb5f56202c66b050e7a3eef", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 615791, "upload_time": "2019-08-20T21:33:08", "upload_time_iso_8601": "2019-08-20T21:33:08.214804Z", "url": "https://files.pythonhosted.org/packages/69/2c/1e7bc5a9c44c330dbcae793bb36363076aec6d73a38ed094a6fc5c7eed8a/aiohttp-3.6.0a7-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4b2aa99d008cbb9a13fd6eac10bd6c50", "sha256": "b82d91144695caf107e5535f6324f4780aa689671da156588b5b3cf6e5b002ce" }, "downloads": -1, "filename": "aiohttp-3.6.0a7-py3-none-any.whl", "has_sig": false, "md5_digest": "4b2aa99d008cbb9a13fd6eac10bd6c50", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.3", "size": 189536, "upload_time": "2019-08-20T21:13:11", "upload_time_iso_8601": "2019-08-20T21:13:11.526016Z", "url": "https://files.pythonhosted.org/packages/8f/a6/4f7f5de8c08f732669e3a19bb95479e3fe3acc3d29ba766434b3fdb3c178/aiohttp-3.6.0a7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4406d79c36e4d33843962467da2b8523", "sha256": "b53b08b565779560a61ee8ddfc28f213d79e834a54cdb8c7bfce55cf9621f807" }, "downloads": -1, "filename": "aiohttp-3.6.0a7.tar.gz", "has_sig": false, "md5_digest": "4406d79c36e4d33843962467da2b8523", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1112241, "upload_time": "2019-08-20T21:13:16", "upload_time_iso_8601": "2019-08-20T21:13:16.913762Z", "url": "https://files.pythonhosted.org/packages/c5/26/da8fcf19b72ee063df9fd14efc43a734628b6c3c8e2c2139e0726c914549/aiohttp-3.6.0a7.tar.gz", "yanked": false, "yanked_reason": null } ], "3.6.0a8": [ { "comment_text": "", "digests": { "md5": "6ea2c84435452fdf276595e59038565b", "sha256": "9ed0e3cb3d43bf544825ba6f8c698dbf4cccd6a437010ed00ba6eb9b511df180" }, "downloads": -1, "filename": "aiohttp-3.6.0a8-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "6ea2c84435452fdf276595e59038565b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 582123, "upload_time": "2019-08-20T23:44:22", "upload_time_iso_8601": "2019-08-20T23:44:22.705623Z", "url": "https://files.pythonhosted.org/packages/48/c6/ce2085fbfd96245a53068671ad7c1f6f34cab3bf874c567d93856a1d63de/aiohttp-3.6.0a8-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7be1730d0b9ced171daf3ec67835cacc", "sha256": "8ff163d7eda5926f12c7f021b45818db51bc1e7207d358b76277131c690037b2" }, "downloads": -1, "filename": "aiohttp-3.6.0a8-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "7be1730d0b9ced171daf3ec67835cacc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 610114, "upload_time": "2019-08-20T23:48:23", "upload_time_iso_8601": "2019-08-20T23:48:23.538168Z", "url": "https://files.pythonhosted.org/packages/36/35/1b86b3aa401d228ef18c6fd73ff75d3d1fb023db9b08eda66f84db2fb9f3/aiohttp-3.6.0a8-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da8a7720e27a2db151cbe583fc06f483", "sha256": "ddf3e5b6896a78cb9876e7ef272652776448004923bf716380c6378b3ef8738c" }, "downloads": -1, "filename": "aiohttp-3.6.0a8-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "da8a7720e27a2db151cbe583fc06f483", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 588026, "upload_time": "2019-08-20T23:51:57", "upload_time_iso_8601": "2019-08-20T23:51:57.241654Z", "url": "https://files.pythonhosted.org/packages/52/26/77e72665fc1d23d13f6d647ec11ba9ddf36521c87cfc963580c0f04bbeea/aiohttp-3.6.0a8-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9b79601bcebd17c4793cd7d1e0f0853", "sha256": "670f1cc552f32dd944d1091d9987c975a0ae40bdbbfb148d3601247868f427a1" }, "downloads": -1, "filename": "aiohttp-3.6.0a8-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "d9b79601bcebd17c4793cd7d1e0f0853", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 615670, "upload_time": "2019-08-20T23:55:55", "upload_time_iso_8601": "2019-08-20T23:55:55.445243Z", "url": "https://files.pythonhosted.org/packages/c3/85/80d24027fe560c2c99959ed75e9e7048b8d0c2041985ced1e8982b5ff587/aiohttp-3.6.0a8-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bf75d06adef87dff55ac724c2763de95", "sha256": "fedb10022bf130c28224ecdf16a6e979a529d893d0ab6b503e22be55f2c757b6" }, "downloads": -1, "filename": "aiohttp-3.6.0a8-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "bf75d06adef87dff55ac724c2763de95", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 588134, "upload_time": "2019-08-20T23:59:30", "upload_time_iso_8601": "2019-08-20T23:59:30.617527Z", "url": "https://files.pythonhosted.org/packages/d9/82/6a9f458d976b6ec54ad064e85119dfbd15152ca713d0441f70a506e63b94/aiohttp-3.6.0a8-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "88ea248dd04e111cd697e6ec56c5844e", "sha256": "73a990b8f98ba66a2962b60227e0767465bf23a4290b9a70aacef81a4394ed21" }, "downloads": -1, "filename": "aiohttp-3.6.0a8-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "88ea248dd04e111cd697e6ec56c5844e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 615793, "upload_time": "2019-08-21T00:03:20", "upload_time_iso_8601": "2019-08-21T00:03:20.419661Z", "url": "https://files.pythonhosted.org/packages/7b/1f/22e594deda300e61fdbdac6ae6b8dff7ba7aba80a23e74d9b3cd651c68a7/aiohttp-3.6.0a8-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "166e313c6a017939c71debc3daa9f1a8", "sha256": "f62dc4acc6cd92458f01634510fe0debeb0928c680cb7000a3096cb6bd27d323" }, "downloads": -1, "filename": "aiohttp-3.6.0a8-py3-none-any.whl", "has_sig": false, "md5_digest": "166e313c6a017939c71debc3daa9f1a8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.3", "size": 189535, "upload_time": "2019-08-20T23:27:25", "upload_time_iso_8601": "2019-08-20T23:27:25.596644Z", "url": "https://files.pythonhosted.org/packages/5a/6b/86cd2e55900810665703907c35c1bf437a7d35156cdee07c23e6c00cda89/aiohttp-3.6.0a8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7eeb3e0f92112fbd91f9ec28d628a300", "sha256": "ec9059dc47ba65e58910b99b4b5ba91804acd9001ee5b536c12b76c997bd689c" }, "downloads": -1, "filename": "aiohttp-3.6.0a8.tar.gz", "has_sig": false, "md5_digest": "7eeb3e0f92112fbd91f9ec28d628a300", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1112152, "upload_time": "2019-08-20T23:44:25", "upload_time_iso_8601": "2019-08-20T23:44:25.513838Z", "url": "https://files.pythonhosted.org/packages/72/14/07d3c059e2d57fbdbca4e307b22f2919bc01010f15e65c531769c83e9d4d/aiohttp-3.6.0a8.tar.gz", "yanked": false, "yanked_reason": null } ], "3.6.0a9": [ { "comment_text": "", "digests": { "md5": "7aba9129cd6c408aab607e6a21951622", "sha256": "46931d1d2f65bd394adff7385a122789ca3fae2788018667616ad98951133783" }, "downloads": -1, "filename": "aiohttp-3.6.0a9-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "7aba9129cd6c408aab607e6a21951622", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 582131, "upload_time": "2019-08-29T11:52:11", "upload_time_iso_8601": "2019-08-29T11:52:11.301981Z", "url": "https://files.pythonhosted.org/packages/d7/ac/55596c1823841923ba377563b97bbbac54a46a6e09458afa237bf6b9daaa/aiohttp-3.6.0a9-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "33abc1a823b37278becac5ceeb159b20", "sha256": "287f068dd5554c3ace00be3b51e8c59fc11f4842f6b01b0034d6e71b3c22576b" }, "downloads": -1, "filename": "aiohttp-3.6.0a9-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "33abc1a823b37278becac5ceeb159b20", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 610115, "upload_time": "2019-08-29T11:56:10", "upload_time_iso_8601": "2019-08-29T11:56:10.346890Z", "url": "https://files.pythonhosted.org/packages/2f/46/f6a30353ed36a2dce41341a4f948679f4cbf4e53fd298b259301406b840f/aiohttp-3.6.0a9-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d2f33df66f7e1de7e753ca029207677e", "sha256": "5b3ba43b858fdbd4605e9d8c3f28a2d4de206fc11b4025c212ec6664bb3c4464" }, "downloads": -1, "filename": "aiohttp-3.6.0a9-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "d2f33df66f7e1de7e753ca029207677e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 588026, "upload_time": "2019-08-29T12:00:02", "upload_time_iso_8601": "2019-08-29T12:00:02.805298Z", "url": "https://files.pythonhosted.org/packages/5d/f3/70f2dbcde6cb9244abf0e418d32c8020f91dc5c21ad1258e63471ce3d967/aiohttp-3.6.0a9-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e9412ac65d9b97d3d6db938e0db86e85", "sha256": "02df8a8b04d52eee3aa07247f3b9850a21cb9aa9455da72c351727dcd6ffe9a0" }, "downloads": -1, "filename": "aiohttp-3.6.0a9-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "e9412ac65d9b97d3d6db938e0db86e85", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 615671, "upload_time": "2019-08-29T12:04:47", "upload_time_iso_8601": "2019-08-29T12:04:47.234648Z", "url": "https://files.pythonhosted.org/packages/85/b7/2408354cc2cc3a548e52daa1d86fdf946308217703cb088709a835172c0e/aiohttp-3.6.0a9-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2212d833cf0b7df65fbc60fc37d2fc54", "sha256": "85d54f0c2cc026a8841e554526f2ab5a85eb746192ef665aeedb934e0aa3f21f" }, "downloads": -1, "filename": "aiohttp-3.6.0a9-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "2212d833cf0b7df65fbc60fc37d2fc54", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 588135, "upload_time": "2019-08-29T12:08:26", "upload_time_iso_8601": "2019-08-29T12:08:26.435145Z", "url": "https://files.pythonhosted.org/packages/50/8f/c769ae2806953226c54bdfb77b3ef43df5091ea7264ada4c87b14fadc04e/aiohttp-3.6.0a9-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "93fc3cf28cbe4f19520eda518e0db27d", "sha256": "41a0479dc259586af6ac315f440226eb8fa0498a2af1bd101054bbd5284b54b1" }, "downloads": -1, "filename": "aiohttp-3.6.0a9-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "93fc3cf28cbe4f19520eda518e0db27d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 615789, "upload_time": "2019-08-29T12:12:26", "upload_time_iso_8601": "2019-08-29T12:12:26.341281Z", "url": "https://files.pythonhosted.org/packages/83/e6/2477445b3b5da069d5eab548e11b060845615d84146dd0f6706487d05d4e/aiohttp-3.6.0a9-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67914b098b966deac9725d32889d85cf", "sha256": "77d037816abbe847ad3ed4c28e69d35ccffc12be6bafb507cfbf9219390a5eca" }, "downloads": -1, "filename": "aiohttp-3.6.0a9-py3-none-any.whl", "has_sig": false, "md5_digest": "67914b098b966deac9725d32889d85cf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.3", "size": 189538, "upload_time": "2019-08-29T12:47:52", "upload_time_iso_8601": "2019-08-29T12:47:52.506176Z", "url": "https://files.pythonhosted.org/packages/0b/18/121b108d192348b690e9cb227273b5a3a360315531a6de362d78a6a054ff/aiohttp-3.6.0a9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c4f81f7d6f9115762997d0257e12bb3c", "sha256": "660b6935b7b14f4853592c4cfaa62fe42657d26bb663465b82ea160af688bf91" }, "downloads": -1, "filename": "aiohttp-3.6.0a9.tar.gz", "has_sig": false, "md5_digest": "c4f81f7d6f9115762997d0257e12bb3c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1112154, "upload_time": "2019-08-29T11:52:14", "upload_time_iso_8601": "2019-08-29T11:52:14.462882Z", "url": "https://files.pythonhosted.org/packages/9f/63/c86f0a8cc03c1110ab650f78b31865fcbdafc5c664e2f111ab7b8b39fe57/aiohttp-3.6.0a9.tar.gz", "yanked": false, "yanked_reason": null } ], "3.6.0b0": [ { "comment_text": "", "digests": { "md5": "d29e906e5946523050c99fea44cd315c", "sha256": "570203dcc2f3e1a8c3cf5355e8b2bc3c0028054e837bf1e394cb3209e8e9d64f" }, "downloads": -1, "filename": "aiohttp-3.6.0b0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d29e906e5946523050c99fea44cd315c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1104944, "upload_time": "2019-09-05T12:43:59", "upload_time_iso_8601": "2019-09-05T12:43:59.863361Z", "url": "https://files.pythonhosted.org/packages/86/87/e4da200ae41eca9ad75b948ed9342c5d55dded06c7a02403bc3ea51b0648/aiohttp-3.6.0b0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9c0244847ecc098c2f9b03d4de08ed5e", "sha256": "d2d9d957072007c06226d8c9bfac836dcb199e62552386106c18640c5874cb6a" }, "downloads": -1, "filename": "aiohttp-3.6.0b0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9c0244847ecc098c2f9b03d4de08ed5e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1139619, "upload_time": "2019-09-05T12:44:02", "upload_time_iso_8601": "2019-09-05T12:44:02.503556Z", "url": "https://files.pythonhosted.org/packages/5f/90/23bac07adffd65edfa9793c7779e02a654d31216e50aba2892936b5ed66d/aiohttp-3.6.0b0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2f8082c6c30c8f69c3138f41db5d3f0c", "sha256": "4b2f8dcdb3a51faeabc6cf3ca44b0db8ec0e0a4b76e0b4734254e91b820fb043" }, "downloads": -1, "filename": "aiohttp-3.6.0b0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "2f8082c6c30c8f69c3138f41db5d3f0c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 582226, "upload_time": "2019-09-05T11:43:37", "upload_time_iso_8601": "2019-09-05T11:43:37.135238Z", "url": "https://files.pythonhosted.org/packages/43/b8/d28532e0841ec8b2a46ca06c1fe8b4bf6c91df969ddedbecdb8142c694bb/aiohttp-3.6.0b0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "16a97d95e732f6034d35e74d4f1a6f86", "sha256": "4781a0aa0ee83fc6b9e0fb4d8fb3913db18cc5e057331629ed32bd5422f4b63c" }, "downloads": -1, "filename": "aiohttp-3.6.0b0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "16a97d95e732f6034d35e74d4f1a6f86", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 610215, "upload_time": "2019-09-05T11:47:25", "upload_time_iso_8601": "2019-09-05T11:47:25.613610Z", "url": "https://files.pythonhosted.org/packages/1e/2b/817285cc8ea344a98ca22231d7c7b2a95524b06f557ef57e1718225cfd6c/aiohttp-3.6.0b0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "246edee3b9b962627a7b8838b2c1edb0", "sha256": "ed0c1f7e16ac5ecfe5e1b142e860efa07d5cc954ee4d44162e855fadcf8f1fb0" }, "downloads": -1, "filename": "aiohttp-3.6.0b0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "246edee3b9b962627a7b8838b2c1edb0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1125082, "upload_time": "2019-09-05T12:44:05", "upload_time_iso_8601": "2019-09-05T12:44:05.550782Z", "url": "https://files.pythonhosted.org/packages/34/46/d7e2bc8a3a3798783e4cb4cd51d40fa26239bfa20609b608cbe12562bd88/aiohttp-3.6.0b0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19f3b9cab74cf1357c1433fea48fddf9", "sha256": "0450fed4e38b8936e5c5c3ae14e88a57b0eee86a7de0a4c222a75d774e500db6" }, "downloads": -1, "filename": "aiohttp-3.6.0b0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "19f3b9cab74cf1357c1433fea48fddf9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1159409, "upload_time": "2019-09-05T12:44:08", "upload_time_iso_8601": "2019-09-05T12:44:08.419071Z", "url": "https://files.pythonhosted.org/packages/4f/e0/f6a223013473ad3e5a4e61f2050a30b5c0b79a2b6fde17e6add0b2da8a3b/aiohttp-3.6.0b0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1c1430f238bac84ddccd5074bb611d51", "sha256": "64b54a04eac3f5293ecc7c8164dd54eafbb3b3f0943a45b7cbb5cd918333ad12" }, "downloads": -1, "filename": "aiohttp-3.6.0b0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "1c1430f238bac84ddccd5074bb611d51", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 588124, "upload_time": "2019-09-05T11:51:01", "upload_time_iso_8601": "2019-09-05T11:51:01.335691Z", "url": "https://files.pythonhosted.org/packages/71/f8/a93f9c79c60baa15faa5e119641af4ba7cac97510bc829aa59c9be7a983f/aiohttp-3.6.0b0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f2154369eec70a10fe3cdcba903e2bc9", "sha256": "eee75f5469a10be0b3e4fc13a7d1444ec5b9ea0533987e27d07573a9e0e2e8fa" }, "downloads": -1, "filename": "aiohttp-3.6.0b0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "f2154369eec70a10fe3cdcba903e2bc9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 615773, "upload_time": "2019-09-05T11:54:09", "upload_time_iso_8601": "2019-09-05T11:54:09.402619Z", "url": "https://files.pythonhosted.org/packages/f3/89/4df51374136fa7fdb0a2644268d5fa30e54992f1fc1ee51c7f315c785637/aiohttp-3.6.0b0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f801b5a89c10ef0aa94b23be02babae", "sha256": "a3025f39128ea418c879c0993cc0d95bcfb687bdfbaeb6dbd69be051e1368c1a" }, "downloads": -1, "filename": "aiohttp-3.6.0b0-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3f801b5a89c10ef0aa94b23be02babae", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1125971, "upload_time": "2019-09-05T12:44:11", "upload_time_iso_8601": "2019-09-05T12:44:11.534316Z", "url": "https://files.pythonhosted.org/packages/85/97/951f7f42247e3ace2fda211ac24de49065e003986ab07cd8567452f9e5c8/aiohttp-3.6.0b0-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0cc1395bf6014fe3d15643e01b525a54", "sha256": "041e33547c18a93366803e33821e66c69b1fbdd6145b83d674be653442ad4181" }, "downloads": -1, "filename": "aiohttp-3.6.0b0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0cc1395bf6014fe3d15643e01b525a54", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1156747, "upload_time": "2019-09-05T12:44:14", "upload_time_iso_8601": "2019-09-05T12:44:14.902243Z", "url": "https://files.pythonhosted.org/packages/b3/5d/5bbf35677f89b8a123548d51a79489da8fd6b68a0b1ccce5c5044549740a/aiohttp-3.6.0b0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95e07d6d6b9706923f630232658e0b9a", "sha256": "92bea782878bee1c04870f5184facdaaa9c314301cc4cc7e4287ce39563e1773" }, "downloads": -1, "filename": "aiohttp-3.6.0b0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "95e07d6d6b9706923f630232658e0b9a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 588237, "upload_time": "2019-09-05T11:59:30", "upload_time_iso_8601": "2019-09-05T11:59:30.802064Z", "url": "https://files.pythonhosted.org/packages/c3/f3/d760e18e7a3a69c2f961a29b49c1f1f748429f19a32fb43b2ada1342cdb8/aiohttp-3.6.0b0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d3a00740fe3711b963c1e5a68a14e1b", "sha256": "f847f2100b6fe840b8eb1c0421c4506d6660ff7234ac34d15e50c096101f8fa2" }, "downloads": -1, "filename": "aiohttp-3.6.0b0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "0d3a00740fe3711b963c1e5a68a14e1b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 615896, "upload_time": "2019-09-05T12:03:00", "upload_time_iso_8601": "2019-09-05T12:03:00.103936Z", "url": "https://files.pythonhosted.org/packages/2a/c2/1fd4525fe183439f83bf14f009194d1d64254c5e9150974aa603f53d22b0/aiohttp-3.6.0b0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "183b7c08450ba4c765597f89cca2f4c1", "sha256": "bd7774c0505f891d599e50afaffd4d59cf3aae307c5de8e9b5a52cbb7e93c168" }, "downloads": -1, "filename": "aiohttp-3.6.0b0-py3-none-any.whl", "has_sig": false, "md5_digest": "183b7c08450ba4c765597f89cca2f4c1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.3", "size": 189641, "upload_time": "2019-09-05T12:39:50", "upload_time_iso_8601": "2019-09-05T12:39:50.956024Z", "url": "https://files.pythonhosted.org/packages/f6/fe/f733951d6cc0b0cbf5df3277d01dd5a10d0f72b43582b21c86aff78d5a59/aiohttp-3.6.0b0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0718b04617c008c1da3230bd26aff23", "sha256": "868a3472d90d573266dc85ba5c776b4eaf745ef40f871ec7ab4c0f92294060ef" }, "downloads": -1, "filename": "aiohttp-3.6.0b0.tar.gz", "has_sig": false, "md5_digest": "e0718b04617c008c1da3230bd26aff23", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1112935, "upload_time": "2019-09-05T11:43:39", "upload_time_iso_8601": "2019-09-05T11:43:39.670783Z", "url": "https://files.pythonhosted.org/packages/bf/b3/00ab8dcab63d293ae598e1140ae94d96cd6b6e23a08cb00131e9333903ea/aiohttp-3.6.0b0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.6.1": [ { "comment_text": "", "digests": { "md5": "bd15b78afa71cf7c8a7458e81f270484", "sha256": "cc648ecaca79e37c6e26f370e802e7ae640a069913f661f66c0421084bef219a" }, "downloads": -1, "filename": "aiohttp-3.6.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "bd15b78afa71cf7c8a7458e81f270484", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1106703, "upload_time": "2019-09-19T17:17:45", "upload_time_iso_8601": "2019-09-19T17:17:45.058991Z", "url": "https://files.pythonhosted.org/packages/e8/4e/290e0ee3d4e5d8fd46700fe28a3981bcb4f9f71f5e91f405e48ab322adf2/aiohttp-3.6.1-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7c06e57665b54d88fafe96902a325612", "sha256": "022c400e30848b1994236e31fb38db1dc4b551efe049f737cbac690ab2cdf5c4" }, "downloads": -1, "filename": "aiohttp-3.6.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7c06e57665b54d88fafe96902a325612", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1141388, "upload_time": "2019-09-19T17:17:48", "upload_time_iso_8601": "2019-09-19T17:17:48.798670Z", "url": "https://files.pythonhosted.org/packages/c2/a5/64734083e6b5204cf035f451f75c0f628301bf3366fbe07c7ec3c9f2a0ec/aiohttp-3.6.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e4dcbc71b42d089b34e16d61a32bcdf", "sha256": "e7d6ae4a36bfe6d7f93c6f42a0bfa1659f7d011006cb6e8207c85ef5acdb2986" }, "downloads": -1, "filename": "aiohttp-3.6.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "4e4dcbc71b42d089b34e16d61a32bcdf", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 584010, "upload_time": "2019-09-19T16:31:06", "upload_time_iso_8601": "2019-09-19T16:31:06.251520Z", "url": "https://files.pythonhosted.org/packages/af/b0/85485dc9a06e0b04be4774a80d60635985eaf58eac737e953dfd52d89dcd/aiohttp-3.6.1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e07ed854e2aab0ec680947c45da9f75f", "sha256": "7aab39c2a61a5c6b15bb7e561218ef64770ca1fbf4cc1878c96e630e2b7cc3cc" }, "downloads": -1, "filename": "aiohttp-3.6.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "e07ed854e2aab0ec680947c45da9f75f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 611999, "upload_time": "2019-09-19T16:35:25", "upload_time_iso_8601": "2019-09-19T16:35:25.516596Z", "url": "https://files.pythonhosted.org/packages/fd/fd/2c41c2e195059b08765c07cdc81966ab02b42743fad758eaa400183455fc/aiohttp-3.6.1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "12aa323f3bf8aa86710e7a4536062407", "sha256": "2599b93fd5ba1120b3bd1366d67a7e26bd45b3d5d5548069e00b2fbef7f20ab0" }, "downloads": -1, "filename": "aiohttp-3.6.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "12aa323f3bf8aa86710e7a4536062407", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1126863, "upload_time": "2019-09-19T17:17:52", "upload_time_iso_8601": "2019-09-19T17:17:52.105305Z", "url": "https://files.pythonhosted.org/packages/c2/fb/d5ddf428aba63935d4d4f7d21b365659df968d6793ae1c072273580cd5a0/aiohttp-3.6.1-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1997f26119df61b7a42ec7e8def41088", "sha256": "89820f7c488f4e9b1f74371da33403181e11e006663ddf074317aacd690838a6" }, "downloads": -1, "filename": "aiohttp-3.6.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1997f26119df61b7a42ec7e8def41088", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1161173, "upload_time": "2019-09-19T17:17:55", "upload_time_iso_8601": "2019-09-19T17:17:55.402784Z", "url": "https://files.pythonhosted.org/packages/e0/cb/5fa1d7722488995358d6092a7d2ccceb9011ab78842ccd336fbb5ec0d878/aiohttp-3.6.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e87e3fe111372c8790975304e02dd691", "sha256": "10f9316ef068536dec0b9f09531fa1cb6bfa8394f278022cb96e789c77811ad2" }, "downloads": -1, "filename": "aiohttp-3.6.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "e87e3fe111372c8790975304e02dd691", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 589909, "upload_time": "2019-09-19T16:39:55", "upload_time_iso_8601": "2019-09-19T16:39:55.938780Z", "url": "https://files.pythonhosted.org/packages/18/bc/64f62a4111483dfa99b838a1008697e1a96eb3c8187b716ca9676fcf81fc/aiohttp-3.6.1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f173c73fdc9f683bfb9cd9e7727e5abb", "sha256": "d6f26e80cd55ac88e1f0397fc8d547933225a5dc1add040e27788c2a028c64c6" }, "downloads": -1, "filename": "aiohttp-3.6.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "f173c73fdc9f683bfb9cd9e7727e5abb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 617556, "upload_time": "2019-09-19T16:44:48", "upload_time_iso_8601": "2019-09-19T16:44:48.933208Z", "url": "https://files.pythonhosted.org/packages/7b/57/80b90eedc40a87b9348ae6419e838c355b385298b2bbd94a3e1812d17f10/aiohttp-3.6.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac9b73c9470d5140dbec1f69bc2f5350", "sha256": "6a19d34cc01414d94dd5a4466f8f397293fcb8929df8eeb8989119cc5ef928bb" }, "downloads": -1, "filename": "aiohttp-3.6.1-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ac9b73c9470d5140dbec1f69bc2f5350", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1127754, "upload_time": "2019-09-19T17:17:59", "upload_time_iso_8601": "2019-09-19T17:17:59.756274Z", "url": "https://files.pythonhosted.org/packages/e1/08/fae42ded047f84db27d12d8ef54da4b6c9c4adfa39407587c73e7118e960/aiohttp-3.6.1-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "12aae2e0b78b7eceb29df2e7361253b7", "sha256": "ab761cf0f0b0b90887e276b4a7918f11e323f2228bbb30814bbd538c122028bf" }, "downloads": -1, "filename": "aiohttp-3.6.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "12aae2e0b78b7eceb29df2e7361253b7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1158572, "upload_time": "2019-09-19T17:18:03", "upload_time_iso_8601": "2019-09-19T17:18:03.413216Z", "url": "https://files.pythonhosted.org/packages/76/96/3b0682d7d63d7ffb30d02e8a0d9242d6413affb7af5514eab27974e91585/aiohttp-3.6.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9d1f643c75f325ec373bd6052636f08", "sha256": "2a1c71e7fb8c50e60fb4c9bab8bd5cf7c07f91a6b27dc2556d7354cd2ebb3689" }, "downloads": -1, "filename": "aiohttp-3.6.1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "d9d1f643c75f325ec373bd6052636f08", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 590020, "upload_time": "2019-09-19T16:51:28", "upload_time_iso_8601": "2019-09-19T16:51:28.883025Z", "url": "https://files.pythonhosted.org/packages/ac/d8/c50e43565f139a68b358386d84f7a66e5c72e5d885271a002d402ea2062a/aiohttp-3.6.1-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0bec796323f3cfa4d499f160e0adbc83", "sha256": "8959e28bc1b87542b0ee4a8302128f633bee296252f261bf03e118c4dff725f0" }, "downloads": -1, "filename": "aiohttp-3.6.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "0bec796323f3cfa4d499f160e0adbc83", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 617679, "upload_time": "2019-09-19T16:55:38", "upload_time_iso_8601": "2019-09-19T16:55:38.788942Z", "url": "https://files.pythonhosted.org/packages/4e/d0/11da46e78d7e41e507833d6b441de33dc13fbdac670603fb5cd5dd8c1f97/aiohttp-3.6.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a3706ef8dc9128ed98dcb6bfe1c8e116", "sha256": "fc55b1fec0e4cc1134ffb09ea3970783ee2906dc5dfd7cd16917913f2cfed65b" }, "downloads": -1, "filename": "aiohttp-3.6.1.tar.gz", "has_sig": false, "md5_digest": "a3706ef8dc9128ed98dcb6bfe1c8e116", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1113678, "upload_time": "2019-09-19T16:31:10", "upload_time_iso_8601": "2019-09-19T16:31:10.100088Z", "url": "https://files.pythonhosted.org/packages/10/28/ab9decdf95f0b2babe509f264ca531fd6c910615e0b4be5f240dba500832/aiohttp-3.6.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.6.1b3": [ { "comment_text": "", "digests": { "md5": "c045279036bd0300ac7314fbd444d2cc", "sha256": "8f158555c7a1b37f7935a0d229794baba0f3cac3c975fe2644a499303256a883" }, "downloads": -1, "filename": "aiohttp-3.6.1b3-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c045279036bd0300ac7314fbd444d2cc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1106693, "upload_time": "2019-09-15T12:28:19", "upload_time_iso_8601": "2019-09-15T12:28:19.969645Z", "url": "https://files.pythonhosted.org/packages/bf/4f/1bbc29623e675b010a825712157589433813badf98d423aa32b743245387/aiohttp-3.6.1b3-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a4e681987bd094079d85cb62186196ac", "sha256": "77b34f96ce23e6409abf1744cb50d8fec48a3146a051b19f83eae76793ce5076" }, "downloads": -1, "filename": "aiohttp-3.6.1b3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a4e681987bd094079d85cb62186196ac", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1141352, "upload_time": "2019-09-15T12:28:23", "upload_time_iso_8601": "2019-09-15T12:28:23.036837Z", "url": "https://files.pythonhosted.org/packages/93/3b/22c6bc01b7a3e4da4a96db322120fcc90b64176768f06bb270c6be3793fe/aiohttp-3.6.1b3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "21b518d6ff4063e8ca50042ca21270aa", "sha256": "5ca20acba24855b3000825d612b369019b65015a7de1664528795162a9a73bfd" }, "downloads": -1, "filename": "aiohttp-3.6.1b3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "21b518d6ff4063e8ca50042ca21270aa", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 583971, "upload_time": "2019-09-15T11:49:20", "upload_time_iso_8601": "2019-09-15T11:49:20.331243Z", "url": "https://files.pythonhosted.org/packages/c0/3d/85f2fbd5ac1b92f6994006596d59670f565297f455a049c7e4fba8699f79/aiohttp-3.6.1b3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d1f65e3c9a75b12bd84b61592c05ed8", "sha256": "8fb385a4429dfeb9311f3eaa410aa10989f0b5560b4ff8cf06376195fd63a3f2" }, "downloads": -1, "filename": "aiohttp-3.6.1b3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "1d1f65e3c9a75b12bd84b61592c05ed8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 611964, "upload_time": "2019-09-15T11:53:11", "upload_time_iso_8601": "2019-09-15T11:53:11.142782Z", "url": "https://files.pythonhosted.org/packages/90/ce/31f74f649ba92c646e91cbe67e9a0bf421c403a513cc44f61fc8c5f620ed/aiohttp-3.6.1b3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "74291f7267b30ff8eca0603280a0019c", "sha256": "7f975809fde3d7dd762d3049cc35abba36a444d3a9a3cae5408525bcad02dfaa" }, "downloads": -1, "filename": "aiohttp-3.6.1b3-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "74291f7267b30ff8eca0603280a0019c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1126840, "upload_time": "2019-09-15T12:28:26", "upload_time_iso_8601": "2019-09-15T12:28:26.534634Z", "url": "https://files.pythonhosted.org/packages/c0/f2/351be9eeb7c7984314c07f17d3cd66744672cf7f4c7575e207c4f2f53a3c/aiohttp-3.6.1b3-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6a05bc1c809842499ff40328094018f4", "sha256": "5751f2659a8e859610993e1bd8a0e65d15ac152894fc84872395ff49d25bfe4c" }, "downloads": -1, "filename": "aiohttp-3.6.1b3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6a05bc1c809842499ff40328094018f4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1161135, "upload_time": "2019-09-15T12:28:29", "upload_time_iso_8601": "2019-09-15T12:28:29.457919Z", "url": "https://files.pythonhosted.org/packages/61/38/b04a8bc7e9535d5b55c007d1454ae161f41c19a9f1a2bb3810aa2a28c99d/aiohttp-3.6.1b3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "32c27f43904c431612df6a8769aeaa63", "sha256": "8104aaf1bc94803810622660016b33b8b261012ef0453666656b95775165b2c8" }, "downloads": -1, "filename": "aiohttp-3.6.1b3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "32c27f43904c431612df6a8769aeaa63", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 589873, "upload_time": "2019-09-15T11:56:08", "upload_time_iso_8601": "2019-09-15T11:56:08.588535Z", "url": "https://files.pythonhosted.org/packages/5d/a6/371e117cf042b0b4a27272cf7ebb729b677dd705117634ea9f3511ca8a30/aiohttp-3.6.1b3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c7fb8c90f9fe95ab453b250ff48cc05b", "sha256": "0bc7845005bcc741955b4488df168b17d8952f703c815c2115d0936842c2a1f5" }, "downloads": -1, "filename": "aiohttp-3.6.1b3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "c7fb8c90f9fe95ab453b250ff48cc05b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 617519, "upload_time": "2019-09-15T11:59:18", "upload_time_iso_8601": "2019-09-15T11:59:18.123144Z", "url": "https://files.pythonhosted.org/packages/9c/55/596d144e4afc3b4ea2d2cad330ae6d7fbf2c49fb61e9bad5613f436bb9fd/aiohttp-3.6.1b3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "09a56af5e844cca408db9184cbc19421", "sha256": "b51b720c792816006ceb7dfe9e92bdd7ce9099c18c2542b3b7bb352de5c7da1f" }, "downloads": -1, "filename": "aiohttp-3.6.1b3-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "09a56af5e844cca408db9184cbc19421", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1127735, "upload_time": "2019-09-15T12:28:32", "upload_time_iso_8601": "2019-09-15T12:28:32.850784Z", "url": "https://files.pythonhosted.org/packages/77/af/ee87f0ae229557d94122e1504e08a1be5a9f8ca26f688081d9906c3abf64/aiohttp-3.6.1b3-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "48680fe5db630c6283398627ea6c6661", "sha256": "7d4c5a6563d0fd9ec4aad98e7a0c640706da12df1c7dcf850ec1ff4c68dbe17a" }, "downloads": -1, "filename": "aiohttp-3.6.1b3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "48680fe5db630c6283398627ea6c6661", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1158534, "upload_time": "2019-09-15T12:28:36", "upload_time_iso_8601": "2019-09-15T12:28:36.436878Z", "url": "https://files.pythonhosted.org/packages/67/05/6ef7c24157bd547a2eebc1fe62d85b8a87c7dc1d947e8fff924c5eb1dbc8/aiohttp-3.6.1b3-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "54286ed2f7f46ca0609b2cb215f1b87b", "sha256": "64a3500e9a30b5cb41e825cd10c44bcf050b16bdc7d80133940618d01aad512a" }, "downloads": -1, "filename": "aiohttp-3.6.1b3-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "54286ed2f7f46ca0609b2cb215f1b87b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 589980, "upload_time": "2019-09-15T12:02:24", "upload_time_iso_8601": "2019-09-15T12:02:24.853388Z", "url": "https://files.pythonhosted.org/packages/76/9e/fdeb6a941d0e660e2a008cb46d2b37f04bd0a4bc7ece13e96db40690281a/aiohttp-3.6.1b3-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "865a16aab0c14f74c89a768132324e69", "sha256": "9c15776b7c712fb6e857f8738ebc9433046b448f82caf9e91bbcd8c39279cc75" }, "downloads": -1, "filename": "aiohttp-3.6.1b3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "865a16aab0c14f74c89a768132324e69", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 617639, "upload_time": "2019-09-15T12:05:36", "upload_time_iso_8601": "2019-09-15T12:05:36.189154Z", "url": "https://files.pythonhosted.org/packages/0c/f7/7e49f0ba193be1b52e72649db1b1661ac0e943a2644fd37c5b96616fd164/aiohttp-3.6.1b3-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "568a79052f7c6be69c17bccc422c985a", "sha256": "f82eec1420fbd2d304dfd5a82fb88572be0c1cd703a8e9b5dbcf5e5e94a3e01f" }, "downloads": -1, "filename": "aiohttp-3.6.1b3.tar.gz", "has_sig": false, "md5_digest": "568a79052f7c6be69c17bccc422c985a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1113411, "upload_time": "2019-09-15T11:49:23", "upload_time_iso_8601": "2019-09-15T11:49:23.244881Z", "url": "https://files.pythonhosted.org/packages/97/a3/074baa502e2a3d48694b089af75230909b58b94fe0ae46d268beeb4d42c4/aiohttp-3.6.1b3.tar.gz", "yanked": false, "yanked_reason": null } ], "3.6.1b4": [ { "comment_text": "", "digests": { "md5": "289c1b730543d25c3342b24d45c5105f", "sha256": "e6f98b9846ec2e4eaebc2188d7dac4597a667d91b06321082156097201afcb72" }, "downloads": -1, "filename": "aiohttp-3.6.1b4-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "289c1b730543d25c3342b24d45c5105f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1106685, "upload_time": "2019-09-17T19:50:39", "upload_time_iso_8601": "2019-09-17T19:50:39.665461Z", "url": "https://files.pythonhosted.org/packages/ff/e7/ad65f23cafbcf902d232af55ca0bea9ef5f64a5097f7999fc223c1e98b8a/aiohttp-3.6.1b4-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b318bf9e5bb7803b108a1b1ea4e7dea3", "sha256": "dd5556b4b4a60a511a1222f666ac64580a1a7fd17a0084c5433a630cfb9209a8" }, "downloads": -1, "filename": "aiohttp-3.6.1b4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b318bf9e5bb7803b108a1b1ea4e7dea3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1141348, "upload_time": "2019-09-17T19:50:43", "upload_time_iso_8601": "2019-09-17T19:50:43.362786Z", "url": "https://files.pythonhosted.org/packages/72/e9/79ef5f105589c636d893a618e69776c667eaeb482a514d29de779ca02509/aiohttp-3.6.1b4-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "55385f1ccffc993ef2eab7a535b68006", "sha256": "8092ac7b2a2a6f3ecb68bea5d4bf7d0c60ad9e9421863cea3baaff262d1eec77" }, "downloads": -1, "filename": "aiohttp-3.6.1b4-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "55385f1ccffc993ef2eab7a535b68006", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 583976, "upload_time": "2019-09-17T20:28:29", "upload_time_iso_8601": "2019-09-17T20:28:29.956398Z", "url": "https://files.pythonhosted.org/packages/d8/35/f476616612e998087f5342276a3c3443d1f3375b81aeaaf9fdff6b7e72ce/aiohttp-3.6.1b4-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "185198a3892fe6b88cdad23559912d05", "sha256": "453f3f9115996bdc1dae5aa035d054cdee85213024c76571f16a4ebd78008157" }, "downloads": -1, "filename": "aiohttp-3.6.1b4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "185198a3892fe6b88cdad23559912d05", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 611963, "upload_time": "2019-09-17T20:32:28", "upload_time_iso_8601": "2019-09-17T20:32:28.918036Z", "url": "https://files.pythonhosted.org/packages/52/86/2771398a81ad46a648646f2e0d38a82d7adf1e713cbc394c678ce7ff4351/aiohttp-3.6.1b4-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "14f5c6c06f162fee2b4e0ceaf4012849", "sha256": "0f68a112cb0f651a9e9bf978465efa7cdf964e889c49c2e9a05519e6c24a0d18" }, "downloads": -1, "filename": "aiohttp-3.6.1b4-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "14f5c6c06f162fee2b4e0ceaf4012849", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1126845, "upload_time": "2019-09-17T19:50:47", "upload_time_iso_8601": "2019-09-17T19:50:47.205895Z", "url": "https://files.pythonhosted.org/packages/06/15/447b4f81405cffba8971aa64df9ef18bd7557fe4547be689a26c0ed1cf31/aiohttp-3.6.1b4-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "791a2af6d4a80f8e8a5a373287efe9ca", "sha256": "767a76ed8e4875cccc85b1f69e0a87653ae01a31908aa91e6b6892b9f93d12a2" }, "downloads": -1, "filename": "aiohttp-3.6.1b4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "791a2af6d4a80f8e8a5a373287efe9ca", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1161125, "upload_time": "2019-09-17T19:50:50", "upload_time_iso_8601": "2019-09-17T19:50:50.655713Z", "url": "https://files.pythonhosted.org/packages/be/fc/81bb6a8a751c9c0f4cfd387e3547dbe9f62539e06cc247383cd7ca0e47cf/aiohttp-3.6.1b4-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8ca0b7d2d833cbca29237ade649852df", "sha256": "9e4ca8095b56af8efea0d3f8f2cde877de32c30f3207e9d6206d33ddc7efbe23" }, "downloads": -1, "filename": "aiohttp-3.6.1b4-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "8ca0b7d2d833cbca29237ade649852df", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 589880, "upload_time": "2019-09-17T20:35:49", "upload_time_iso_8601": "2019-09-17T20:35:49.452274Z", "url": "https://files.pythonhosted.org/packages/b9/62/aaa4b3977729c1edd78884fdf73438651472a990e2cf30c9d9732fba4c0f/aiohttp-3.6.1b4-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dd3020e914548d11351cc1c1a3e60b18", "sha256": "9b436c9acaf57ae024a516271aa931066b4526a1c9201e84f014ac3d45b85f66" }, "downloads": -1, "filename": "aiohttp-3.6.1b4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "dd3020e914548d11351cc1c1a3e60b18", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 617518, "upload_time": "2019-09-17T20:40:19", "upload_time_iso_8601": "2019-09-17T20:40:19.139569Z", "url": "https://files.pythonhosted.org/packages/5a/41/83b90abe47b8fec141297d794e7652306078baa30a5a42d8c85da2cc847e/aiohttp-3.6.1b4-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e2632ffc9bca5ff7622bc40af1a2684", "sha256": "1155062cbed2d05a1371691ac604f4db37d98a2f07a1629d19912cbc556e91a5" }, "downloads": -1, "filename": "aiohttp-3.6.1b4-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "9e2632ffc9bca5ff7622bc40af1a2684", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1127725, "upload_time": "2019-09-17T19:50:54", "upload_time_iso_8601": "2019-09-17T19:50:54.120373Z", "url": "https://files.pythonhosted.org/packages/a6/62/d27a52f8f01e31593958b33d6bb110bd8dbf60fb0630efae22aeed7da449/aiohttp-3.6.1b4-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a5ac04a3aec129bd42e62b6ffc35079b", "sha256": "e38cc1290de455227a26aae4c578f9f308b29425adabf8414d5b78da2b645ff7" }, "downloads": -1, "filename": "aiohttp-3.6.1b4-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a5ac04a3aec129bd42e62b6ffc35079b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1158510, "upload_time": "2019-09-17T19:50:57", "upload_time_iso_8601": "2019-09-17T19:50:57.499620Z", "url": "https://files.pythonhosted.org/packages/09/e5/557c26841a23b665f10b1ca1e81c4dc04377a3e4a17b93a0cd346cf74d69/aiohttp-3.6.1b4-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb19ae58e6cf4d2f29eafd2d59f86936", "sha256": "82c5007c6b3b9ea2062ff6a7d23f84cd9f4367ca70e35bc7d8eb0356e40a96e2" }, "downloads": -1, "filename": "aiohttp-3.6.1b4-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "cb19ae58e6cf4d2f29eafd2d59f86936", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 589983, "upload_time": "2019-09-17T20:43:54", "upload_time_iso_8601": "2019-09-17T20:43:54.722727Z", "url": "https://files.pythonhosted.org/packages/ea/73/e286f46e24eb0cd231f46702b64a4aedfabf18ce5b15a7f21cfaf4caf0e9/aiohttp-3.6.1b4-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ea8abfb18f134663a57267738e49ff5b", "sha256": "3594c9a2fcce5c3f466394a6dd7b76f20c6837f3695ec34cc0508839911f3e07" }, "downloads": -1, "filename": "aiohttp-3.6.1b4-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "ea8abfb18f134663a57267738e49ff5b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 617649, "upload_time": "2019-09-17T20:48:07", "upload_time_iso_8601": "2019-09-17T20:48:07.998779Z", "url": "https://files.pythonhosted.org/packages/e6/38/c4f93396f87c3354d372f8fa0ee4ff88e7c87accd0423cac3df72374e8bb/aiohttp-3.6.1b4-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ea2d9f43dd83de6031a6d39306ef368a", "sha256": "c603d551ad2db3d82f260009e7779a8d65dc34ede4e5506f8e7cf2883c0c37f6" }, "downloads": -1, "filename": "aiohttp-3.6.1b4.tar.gz", "has_sig": false, "md5_digest": "ea2d9f43dd83de6031a6d39306ef368a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1072071, "upload_time": "2019-09-17T19:51:00", "upload_time_iso_8601": "2019-09-17T19:51:00.561345Z", "url": "https://files.pythonhosted.org/packages/11/99/7cd08b82a42e152a5c500c2438050e5407ac99bbd6ea5932b4be30d19a51/aiohttp-3.6.1b4.tar.gz", "yanked": false, "yanked_reason": null } ], "3.6.2": [ { "comment_text": "", "digests": { "md5": "4155d91ec0b70f51cdb5444804ba0369", "sha256": "1e984191d1ec186881ffaed4581092ba04f7c61582a177b187d3a2f07ed9719e" }, "downloads": -1, "filename": "aiohttp-3.6.2-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "4155d91ec0b70f51cdb5444804ba0369", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 629536, "upload_time": "2019-10-09T16:54:45", "upload_time_iso_8601": "2019-10-09T16:54:45.206256Z", "url": "https://files.pythonhosted.org/packages/97/d1/1cc7a1f84097d7abdc6c09ee8d2260366f081f8e82da36ebb22a25cdda9f/aiohttp-3.6.2-cp35-cp35m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "83322661aa43819b1a14d51ea530e97e", "sha256": "50aaad128e6ac62e7bf7bd1f0c0a24bc968a0c0590a726d5a955af193544bcec" }, "downloads": -1, "filename": "aiohttp-3.6.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "83322661aa43819b1a14d51ea530e97e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1142584, "upload_time": "2019-10-09T16:54:48", "upload_time_iso_8601": "2019-10-09T16:54:48.646741Z", "url": "https://files.pythonhosted.org/packages/60/90/60bf09ad2e8c827e3a71f77c43ff7be17c9d397d33baeae7cdf0435139b2/aiohttp-3.6.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b8fe6f2e80cda784f2c10497d75992e6", "sha256": "65f31b622af739a802ca6fd1a3076fd0ae523f8485c52924a89561ba10c49b48" }, "downloads": -1, "filename": "aiohttp-3.6.2-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "b8fe6f2e80cda784f2c10497d75992e6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 646143, "upload_time": "2019-10-09T16:54:52", "upload_time_iso_8601": "2019-10-09T16:54:52.754867Z", "url": "https://files.pythonhosted.org/packages/6c/f5/d4e0798a6fbbd0c59d0ac2d24a1d29ece7279d9bb7403b01da2c2d2bd841/aiohttp-3.6.2-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46b8a5d422e49bebb2d22f48db8eb43b", "sha256": "ae55bac364c405caa23a4f2d6cfecc6a0daada500274ffca4a9230e7129eac59" }, "downloads": -1, "filename": "aiohttp-3.6.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "46b8a5d422e49bebb2d22f48db8eb43b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1162331, "upload_time": "2019-10-09T16:54:56", "upload_time_iso_8601": "2019-10-09T16:54:56.746778Z", "url": "https://files.pythonhosted.org/packages/7c/39/7eb5f98d24904e0f6d3edb505d4aa60e3ef83c0a58d6fe18244a51757247/aiohttp-3.6.2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1bfe10a7b70fc492369089ea1c68dd7", "sha256": "344c780466b73095a72c616fac5ea9c4665add7fc129f285fbdbca3cccf4612a" }, "downloads": -1, "filename": "aiohttp-3.6.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "f1bfe10a7b70fc492369089ea1c68dd7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 624159, "upload_time": "2019-10-09T16:55:01", "upload_time_iso_8601": "2019-10-09T16:55:01.145355Z", "url": "https://files.pythonhosted.org/packages/ea/fb/63a75dde55ec94ced184fe08083714789865c7f23cc471fc55dac5cc0c39/aiohttp-3.6.2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5538e2d528c61597dd565c2caa0711a2", "sha256": "4c6efd824d44ae697814a2a85604d8e992b875462c6655da161ff18fd4f29f17" }, "downloads": -1, "filename": "aiohttp-3.6.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "5538e2d528c61597dd565c2caa0711a2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 649077, "upload_time": "2019-10-09T16:55:06", "upload_time_iso_8601": "2019-10-09T16:55:06.318972Z", "url": "https://files.pythonhosted.org/packages/f1/51/1985ad031e804ce75c00059aacb386703a332cc39683752d7608980cf5d6/aiohttp-3.6.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8bcfa11d81d076fc19f424da53728c7e", "sha256": "2f4d1a4fdce595c947162333353d4a44952a724fba9ca3205a3df99a33d1307a" }, "downloads": -1, "filename": "aiohttp-3.6.2-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "8bcfa11d81d076fc19f424da53728c7e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 642435, "upload_time": "2019-10-09T16:55:09", "upload_time_iso_8601": "2019-10-09T16:55:09.980796Z", "url": "https://files.pythonhosted.org/packages/40/fd/3a595d6467eb31f7b69eb980778567e764b5d93990b4ceb8ddf6079dd776/aiohttp-3.6.2-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee03508617310b1afa45711572975d66", "sha256": "6206a135d072f88da3e71cc501c59d5abffa9d0bb43269a6dcd28d66bfafdbdd" }, "downloads": -1, "filename": "aiohttp-3.6.2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ee03508617310b1afa45711572975d66", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1159706, "upload_time": "2019-10-09T16:55:12", "upload_time_iso_8601": "2019-10-09T16:55:12.752588Z", "url": "https://files.pythonhosted.org/packages/e3/71/6000eacb8923d9fd07aa8784a8fab4f022ae697f3c2456d7dca75c743dd6/aiohttp-3.6.2-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dcfb78bfeee5087434e6f18e07e72a06", "sha256": "b778ce0c909a2653741cb4b1ac7015b5c130ab9c897611df43ae6a58523cb965" }, "downloads": -1, "filename": "aiohttp-3.6.2-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "dcfb78bfeee5087434e6f18e07e72a06", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 624316, "upload_time": "2019-10-09T16:55:17", "upload_time_iso_8601": "2019-10-09T16:55:17.119936Z", "url": "https://files.pythonhosted.org/packages/f2/ff/e570c6f81fa1e23e64da06dbb2b30c61112f171304a142af5702b4e8034f/aiohttp-3.6.2-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "93578e1c2314cc1912d498bcdb75515e", "sha256": "32e5f3b7e511aa850829fbe5aa32eb455e5534eaa4b1ce93231d00e2f76e5654" }, "downloads": -1, "filename": "aiohttp-3.6.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "93578e1c2314cc1912d498bcdb75515e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 649241, "upload_time": "2019-10-09T16:55:21", "upload_time_iso_8601": "2019-10-09T16:55:21.107698Z", "url": "https://files.pythonhosted.org/packages/0b/b3/744a16bdaba2e4df90f6ff10b9ade9c2dce3f01d94848f3949aa4ce7868d/aiohttp-3.6.2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b7631eba37a56caa60c28139bb6787c", "sha256": "460bd4237d2dbecc3b5ed57e122992f60188afe46e7319116da5eb8a9dfedba4" }, "downloads": -1, "filename": "aiohttp-3.6.2-py3-none-any.whl", "has_sig": false, "md5_digest": "0b7631eba37a56caa60c28139bb6787c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.3", "size": 441801, "upload_time": "2019-10-09T16:55:24", "upload_time_iso_8601": "2019-10-09T16:55:24.138781Z", "url": "https://files.pythonhosted.org/packages/c2/f7/f0ad3dbace4762fef5d80aa4124b41bf218e4c4dd6d387a86cede707d9a4/aiohttp-3.6.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ca40144c199a09fc1a141960cf6295f0", "sha256": "259ab809ff0727d0e834ac5e8a283dc5e3e0ecc30c4d80b3cd17a4139ce1f326" }, "downloads": -1, "filename": "aiohttp-3.6.2.tar.gz", "has_sig": false, "md5_digest": "ca40144c199a09fc1a141960cf6295f0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1076923, "upload_time": "2019-10-09T16:55:28", "upload_time_iso_8601": "2019-10-09T16:55:28.158925Z", "url": "https://files.pythonhosted.org/packages/00/94/f9fa18e8d7124d7850a5715a0b9c0584f7b9375d331d35e157cee50f27cc/aiohttp-3.6.2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.6.2a0": [ { "comment_text": "", "digests": { "md5": "f0580b360c570085c6d5700d4bed83ba", "sha256": "0ac6387a2778a1a9e16a9ecc3b9905cf6eb3866b40787d0af4256474cc7e0b56" }, "downloads": -1, "filename": "aiohttp-3.6.2a0-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "f0580b360c570085c6d5700d4bed83ba", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 629109, "upload_time": "2019-10-09T14:28:30", "upload_time_iso_8601": "2019-10-09T14:28:30.202785Z", "url": "https://files.pythonhosted.org/packages/4d/0f/3b500bc82b51b5bf4d7d552c4d75d5af33c3ae9fa6234ce127ab69c262cc/aiohttp-3.6.2a0-cp35-cp35m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "29c0346bd77d34a3803fe4791eb59e5e", "sha256": "c59e87e49b8bc539ccfd065a4a0c00f5d5c85e41f5f17d411aa184dc1ed41ca9" }, "downloads": -1, "filename": "aiohttp-3.6.2a0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "29c0346bd77d34a3803fe4791eb59e5e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1142158, "upload_time": "2019-10-09T14:28:33", "upload_time_iso_8601": "2019-10-09T14:28:33.262786Z", "url": "https://files.pythonhosted.org/packages/71/55/fb78291071fa1e1cb0c470b56d31a71ea5658e181dd523b46459c573d7e7/aiohttp-3.6.2a0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1809a526e5899d93cf2bbb12fce084ca", "sha256": "5fdefc3de07111fa36fb0aedef23ba26f38a9a1f557538eb0e1d088758e6cbe3" }, "downloads": -1, "filename": "aiohttp-3.6.2a0-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "1809a526e5899d93cf2bbb12fce084ca", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 645717, "upload_time": "2019-10-09T14:28:37", "upload_time_iso_8601": "2019-10-09T14:28:37.108205Z", "url": "https://files.pythonhosted.org/packages/57/87/7b6f46f7324d01ed7840bd48c14e98dbb15b969b301580183589737ac106/aiohttp-3.6.2a0-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9495de87d44c488f51467a05ce1fb58", "sha256": "7aa467c4f400196d8e4977c3a03c71b3c47934313ecc0e979cde594fc1bc647b" }, "downloads": -1, "filename": "aiohttp-3.6.2a0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d9495de87d44c488f51467a05ce1fb58", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1161907, "upload_time": "2019-10-09T14:28:40", "upload_time_iso_8601": "2019-10-09T14:28:40.520905Z", "url": "https://files.pythonhosted.org/packages/99/62/f84e6939c35db5aa99ab177bcd1c5eaa61b991fd7fc816e4cdfa1e237901/aiohttp-3.6.2a0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "86535644e82430e7eeb3d32a4345a6b9", "sha256": "9231682bef3500f9f828281a6985f9a92e94075426e9477f577812b25ad3fc4a" }, "downloads": -1, "filename": "aiohttp-3.6.2a0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "86535644e82430e7eeb3d32a4345a6b9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 623733, "upload_time": "2019-10-09T14:28:43", "upload_time_iso_8601": "2019-10-09T14:28:43.790778Z", "url": "https://files.pythonhosted.org/packages/77/07/7d87679a44596a28d548c3f3c2c757dddf655da6efd93e37ad1df57d01a4/aiohttp-3.6.2a0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b7a859ef7e953af97835618c1fe3d123", "sha256": "d81faa99879600258c725f8fe334ed5c402ef77928f4dcf0539645b9b4fcb03e" }, "downloads": -1, "filename": "aiohttp-3.6.2a0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "b7a859ef7e953af97835618c1fe3d123", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 648652, "upload_time": "2019-10-09T14:28:47", "upload_time_iso_8601": "2019-10-09T14:28:47.045759Z", "url": "https://files.pythonhosted.org/packages/84/40/70c3f3b427df4d76fe53f8f8e54717febfb0222449a5c47d9b365336b5dd/aiohttp-3.6.2a0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe6dd694c1c76e4c8e4f127187da0e51", "sha256": "badd29850a9b496e6682bab380057937f2e041a10ae67be0cce8c03667038c6f" }, "downloads": -1, "filename": "aiohttp-3.6.2a0-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "fe6dd694c1c76e4c8e4f127187da0e51", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 642003, "upload_time": "2019-10-09T14:28:50", "upload_time_iso_8601": "2019-10-09T14:28:50.875243Z", "url": "https://files.pythonhosted.org/packages/8c/9c/0a63936f32eda1de02e70e12e3bd720342d89eb966e46fe429adbd3cf785/aiohttp-3.6.2a0-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b24e7e57da9f3d276b118db76ab87c4b", "sha256": "9154b76e2eb8f4d52bc79254e34af48b762a8e0487bc35262d778f3b634bfc41" }, "downloads": -1, "filename": "aiohttp-3.6.2a0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b24e7e57da9f3d276b118db76ab87c4b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1159280, "upload_time": "2019-10-09T14:28:54", "upload_time_iso_8601": "2019-10-09T14:28:54.622799Z", "url": "https://files.pythonhosted.org/packages/94/75/82f0d1d50d2ec9e69b721817c4f6e41e558138f4a83fe60ac10b7cd046fd/aiohttp-3.6.2a0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b3dfda82fec54b98a6a1491181d29e6f", "sha256": "b1b31d84a1991aa22fb015fc14d0509329ae055fd9734ec899a3a17b41481fe0" }, "downloads": -1, "filename": "aiohttp-3.6.2a0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "b3dfda82fec54b98a6a1491181d29e6f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 623887, "upload_time": "2019-10-09T14:28:58", "upload_time_iso_8601": "2019-10-09T14:28:58.245390Z", "url": "https://files.pythonhosted.org/packages/a1/b9/65384037286fdb72fc76feb647a4f99a4502e41df6e2a7a71e17c58ba607/aiohttp-3.6.2a0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4a556477a52988f652de5ec94a292a4", "sha256": "e713302da8a323622c53a8ca496d9cd1a090811f586564edd1886fa42d427897" }, "downloads": -1, "filename": "aiohttp-3.6.2a0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "d4a556477a52988f652de5ec94a292a4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 648816, "upload_time": "2019-10-09T14:29:01", "upload_time_iso_8601": "2019-10-09T14:29:01.371496Z", "url": "https://files.pythonhosted.org/packages/36/19/eb9ddf448939308547753ab1613b9004a9051b90da70965f18a1d5fa95fa/aiohttp-3.6.2a0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "421b6d030cfe9fd87005db1298d6c2c3", "sha256": "a609f066c687ae0fe14c08bae82c16bf78b4f9ff349c86272fe155ca43dcbfad" }, "downloads": -1, "filename": "aiohttp-3.6.2a0-py3-none-any.whl", "has_sig": false, "md5_digest": "421b6d030cfe9fd87005db1298d6c2c3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.3", "size": 441371, "upload_time": "2019-10-09T14:29:04", "upload_time_iso_8601": "2019-10-09T14:29:04.602877Z", "url": "https://files.pythonhosted.org/packages/bb/30/13631853019847926b2e5b581b6731d09e4c599375b107a31b74cad3db28/aiohttp-3.6.2a0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6be5780dd869a88e001aef05d1c5893b", "sha256": "f37b53edd0fefefc42fe57e1f085ffc6c30fbad875baf066b266e8956597b906" }, "downloads": -1, "filename": "aiohttp-3.6.2a0.tar.gz", "has_sig": false, "md5_digest": "6be5780dd869a88e001aef05d1c5893b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1075836, "upload_time": "2019-10-09T14:29:08", "upload_time_iso_8601": "2019-10-09T14:29:08.013977Z", "url": "https://files.pythonhosted.org/packages/71/28/87d113c1a6e631325fd3f2fc8d026142819a836046a0637bf42fa2b86566/aiohttp-3.6.2a0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.6.2a1": [ { "comment_text": "", "digests": { "md5": "bdbdbcbc2a5470da0db5f00e206cc1f1", "sha256": "df0731d8328d9577540834954d801d4ba9d12a4541c5c6d617779f8973ce8cfd" }, "downloads": -1, "filename": "aiohttp-3.6.2a1-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "bdbdbcbc2a5470da0db5f00e206cc1f1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 629110, "upload_time": "2019-10-09T15:07:47", "upload_time_iso_8601": "2019-10-09T15:07:47.738962Z", "url": "https://files.pythonhosted.org/packages/d5/38/7cfeb1f45706f770b33881ed3b78e864e9623c1c1976014a9e3f0ebb4d03/aiohttp-3.6.2a1-cp35-cp35m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6bf6210b6bb2f1acacf616a5a2c1fb6", "sha256": "acb9bce8a33c76dd8bf7b3aa34c8f99bbc82e912e5ddd2ecbf3580428af3a23f" }, "downloads": -1, "filename": "aiohttp-3.6.2a1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f6bf6210b6bb2f1acacf616a5a2c1fb6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1142161, "upload_time": "2019-10-09T15:07:54", "upload_time_iso_8601": "2019-10-09T15:07:54.523124Z", "url": "https://files.pythonhosted.org/packages/5a/ce/c465925d223d3768ee38d763e72ad0e63fafef8715d1d0460c85d7801961/aiohttp-3.6.2a1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4d94bd6fb23618957468a53af1b672f0", "sha256": "a8f604321d8954e32c026ee6dbd32473c2249c07bb8c54a3b08f6fc584e038cd" }, "downloads": -1, "filename": "aiohttp-3.6.2a1-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "4d94bd6fb23618957468a53af1b672f0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 645718, "upload_time": "2019-10-09T15:08:00", "upload_time_iso_8601": "2019-10-09T15:08:00.154781Z", "url": "https://files.pythonhosted.org/packages/6e/41/3c361c81750bd60418e083b961758512204c3c197349aa008e2d810210ed/aiohttp-3.6.2a1-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b9702e4bc40dfd1c38552b2d3b4272bc", "sha256": "3f35bfc8ac5621273f06f82e88cb9fe3e80599af1133f686c6356a921e827d27" }, "downloads": -1, "filename": "aiohttp-3.6.2a1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b9702e4bc40dfd1c38552b2d3b4272bc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1161907, "upload_time": "2019-10-09T15:08:07", "upload_time_iso_8601": "2019-10-09T15:08:07.169912Z", "url": "https://files.pythonhosted.org/packages/ee/6c/69d29c27dc48b1067419563ac472db775d0c9f689ffe8a57bc405ccb89a3/aiohttp-3.6.2a1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "61501c3006bedd3b3ab662d7b224dfa5", "sha256": "825616530129d638267fc0315d51584e6f246572f8b8e25da5d9e5272c4779ba" }, "downloads": -1, "filename": "aiohttp-3.6.2a1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "61501c3006bedd3b3ab662d7b224dfa5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 623733, "upload_time": "2019-10-09T15:08:15", "upload_time_iso_8601": "2019-10-09T15:08:15.142780Z", "url": "https://files.pythonhosted.org/packages/71/15/a5f8b3e1931fa7627fc7bef67d1bdbc18bece5cf6b8cad1365a7ce84e696/aiohttp-3.6.2a1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "442e22de3e91592ee4baf9bec57506ed", "sha256": "33730f2d7ceed4d2556a942e2c907704e5fcfb566565889cc9af98dc77971512" }, "downloads": -1, "filename": "aiohttp-3.6.2a1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "442e22de3e91592ee4baf9bec57506ed", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 648659, "upload_time": "2019-10-09T15:08:21", "upload_time_iso_8601": "2019-10-09T15:08:21.537382Z", "url": "https://files.pythonhosted.org/packages/66/95/ea60c0d623a630fa3338423d263622019839b693cbc773d377c4b13c2f96/aiohttp-3.6.2a1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ae77daeaa390cc67b24368748e12b337", "sha256": "7e55ea4aaec6657e264b493315b5f872ed093f0cfd0115d63743c4ae4b2a5740" }, "downloads": -1, "filename": "aiohttp-3.6.2a1-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "ae77daeaa390cc67b24368748e12b337", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 642004, "upload_time": "2019-10-09T15:08:29", "upload_time_iso_8601": "2019-10-09T15:08:29.254788Z", "url": "https://files.pythonhosted.org/packages/fd/bd/7c93e94098b6faad0e55cdb91b26cbd79e1486fd5137da6fc5c772863ffa/aiohttp-3.6.2a1-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "be5f00ce67b2b41ca9f79641b3fce654", "sha256": "ddd2eaba6f6d7d43dab17a57c6b3659b79bbf5b4a1734e655ac22c313452d72d" }, "downloads": -1, "filename": "aiohttp-3.6.2a1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "be5f00ce67b2b41ca9f79641b3fce654", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1159282, "upload_time": "2019-10-09T15:08:36", "upload_time_iso_8601": "2019-10-09T15:08:36.066787Z", "url": "https://files.pythonhosted.org/packages/93/67/bf2849ae218b03657d2c06cfaf6d6266acbe8a0a11cf1fa1bf462dfe08dc/aiohttp-3.6.2a1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5393982c1977a3b0854404f3c29baca9", "sha256": "6670e3b1d3a00819afdea838ed1431c5d3372a0718476c8f1ccca658112f776c" }, "downloads": -1, "filename": "aiohttp-3.6.2a1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "5393982c1977a3b0854404f3c29baca9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 623889, "upload_time": "2019-10-09T15:08:44", "upload_time_iso_8601": "2019-10-09T15:08:44.411027Z", "url": "https://files.pythonhosted.org/packages/e9/46/cefbcd955eaacc9cd2f047954e7b3000fb697dadcb236516c1a072053504/aiohttp-3.6.2a1-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb4f76260ad113e66f3f56ce2dbc882c", "sha256": "770dfd6cb7975baec018d970be46da77a4c2eabc33c8d3c274ca2c6adf2e5f76" }, "downloads": -1, "filename": "aiohttp-3.6.2a1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "cb4f76260ad113e66f3f56ce2dbc882c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 648814, "upload_time": "2019-10-09T15:08:53", "upload_time_iso_8601": "2019-10-09T15:08:53.155494Z", "url": "https://files.pythonhosted.org/packages/35/1f/3575e2f80b4ca1099ed530a2267c7c419a28f2cae021cbb3e0340c4fe2b8/aiohttp-3.6.2a1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a8798ec739e553139f163ab739084da", "sha256": "0d94c90c2443d8ef2ad74e5365bc563ab15924819900c3893a5785dce14f0313" }, "downloads": -1, "filename": "aiohttp-3.6.2a1-py3-none-any.whl", "has_sig": false, "md5_digest": "9a8798ec739e553139f163ab739084da", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.3", "size": 441368, "upload_time": "2019-10-09T15:09:05", "upload_time_iso_8601": "2019-10-09T15:09:05.562773Z", "url": "https://files.pythonhosted.org/packages/9a/8f/91da0a27ac57327f9b9608867618f09efe3ac119c3e277e103e424ef82f6/aiohttp-3.6.2a1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cba91cf5f6be634fdf4b7a91a0fcf4da", "sha256": "b10c08dd059a3fd557a7565af50d2fba5f2f26c33d517b28aa11984dfd3cbd1d" }, "downloads": -1, "filename": "aiohttp-3.6.2a1.tar.gz", "has_sig": false, "md5_digest": "cba91cf5f6be634fdf4b7a91a0fcf4da", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1075789, "upload_time": "2019-10-09T15:09:14", "upload_time_iso_8601": "2019-10-09T15:09:14.950793Z", "url": "https://files.pythonhosted.org/packages/fa/50/cfde47c7cf4d1d670c274d6f605b99bd40e705ad7cf9e88f31394308404a/aiohttp-3.6.2a1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.6.2a2": [ { "comment_text": "", "digests": { "md5": "34c12328e7a45b9666ac21a2e1e68b5c", "sha256": "6bafbdefc51070f2131be218a124ec2cd9bb6e3ed030da277378c1cc6edc2526" }, "downloads": -1, "filename": "aiohttp-3.6.2a2-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "34c12328e7a45b9666ac21a2e1e68b5c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 629109, "upload_time": "2019-10-09T15:26:52", "upload_time_iso_8601": "2019-10-09T15:26:52.102784Z", "url": "https://files.pythonhosted.org/packages/2b/39/ad98c0c8f66afe7ebcb557be23b50d068e717c33c28528769baceeb9e047/aiohttp-3.6.2a2-cp35-cp35m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d6639d28d30160c5ce00dfc173c17dd9", "sha256": "1faf2b4c055f2fe5c5c231851f06215e59f7db64d5d9922ada172a4e7bd1b8b5" }, "downloads": -1, "filename": "aiohttp-3.6.2a2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d6639d28d30160c5ce00dfc173c17dd9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1142160, "upload_time": "2019-10-09T15:26:56", "upload_time_iso_8601": "2019-10-09T15:26:56.544943Z", "url": "https://files.pythonhosted.org/packages/65/f5/53248bb780e61a27b11ad6492361a34c4963a5dfebfc53a6a7a4940338fd/aiohttp-3.6.2a2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f22145a87490b58120dfe4eb99c6e29", "sha256": "8f09ca32dc45d68250557ab481c6096132bcb3586843f9173c0c9aa16ef09f6c" }, "downloads": -1, "filename": "aiohttp-3.6.2a2-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "6f22145a87490b58120dfe4eb99c6e29", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 645724, "upload_time": "2019-10-09T15:27:02", "upload_time_iso_8601": "2019-10-09T15:27:02.926794Z", "url": "https://files.pythonhosted.org/packages/3f/eb/73a4f67fa09cec6f1a9c5db82be0c07824d12f80d2c01c32b3d65baee388/aiohttp-3.6.2a2-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e2a0e6e5e685270184fb5cf1d34e0bd7", "sha256": "2fe9ce8b9d3975415e5feeda69cc9c34889ca64aa37de418e8c3d83f22cd7e9c" }, "downloads": -1, "filename": "aiohttp-3.6.2a2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e2a0e6e5e685270184fb5cf1d34e0bd7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1161909, "upload_time": "2019-10-09T15:27:09", "upload_time_iso_8601": "2019-10-09T15:27:09.480488Z", "url": "https://files.pythonhosted.org/packages/84/ee/5e435867918232dfd5338d826688c86e3ab5ebb36adca918aeba567d17b6/aiohttp-3.6.2a2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f023be1bf937bd9b74cc54e7abdc8269", "sha256": "90bfd938afca2279dd1e884e434721611ca05725657f1b621460cb9422c79397" }, "downloads": -1, "filename": "aiohttp-3.6.2a2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "f023be1bf937bd9b74cc54e7abdc8269", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 623735, "upload_time": "2019-10-09T15:27:12", "upload_time_iso_8601": "2019-10-09T15:27:12.347592Z", "url": "https://files.pythonhosted.org/packages/a6/9a/4fe9d20f0b5cd0d5a84890eef34fd635bfb646204bc0c4ad8248be04c2a3/aiohttp-3.6.2a2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "91d11bf855a7b3170bef1d4ff2bd50f1", "sha256": "f1f276d8e5ec3e4852e0ab83f1789d152d8269260cdb8740e52b31131b55ca57" }, "downloads": -1, "filename": "aiohttp-3.6.2a2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "91d11bf855a7b3170bef1d4ff2bd50f1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 648660, "upload_time": "2019-10-09T15:27:16", "upload_time_iso_8601": "2019-10-09T15:27:16.315656Z", "url": "https://files.pythonhosted.org/packages/f3/3f/01c8cbb26a846a6c3b5f72d05fc92e3117540ebb60ee84b999fdc55232e0/aiohttp-3.6.2a2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "586068d93275f2318c1a9d65c34c8118", "sha256": "e4b823afc078d157168f213c6218121d2a6c24f9298acc123bfd99344f464298" }, "downloads": -1, "filename": "aiohttp-3.6.2a2-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "586068d93275f2318c1a9d65c34c8118", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 642004, "upload_time": "2019-10-09T15:27:19", "upload_time_iso_8601": "2019-10-09T15:27:19.034780Z", "url": "https://files.pythonhosted.org/packages/85/c7/1c1f4c448ee4f2a042b529309b2f5e7a62cd021153098ab93949b3dc57ac/aiohttp-3.6.2a2-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5bfdb155f0016bffb145f18d3e4edb87", "sha256": "fc7f6760cf97f898f85c06f11a9270b6be9b867fab6c368a64f8798a69579b2e" }, "downloads": -1, "filename": "aiohttp-3.6.2a2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5bfdb155f0016bffb145f18d3e4edb87", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1159284, "upload_time": "2019-10-09T15:27:22", "upload_time_iso_8601": "2019-10-09T15:27:22.531606Z", "url": "https://files.pythonhosted.org/packages/03/29/ef74bb6f49f4eeaf2979de0e06d7b9d91bd3e883b04ca094a5a2b228d09f/aiohttp-3.6.2a2-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3665541952ad379b6af8fbd7b7ba5cae", "sha256": "cda077eb7d94078e416d42784b9ae6a9dc683254007c6ed33281f1f6a7a8db9a" }, "downloads": -1, "filename": "aiohttp-3.6.2a2-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "3665541952ad379b6af8fbd7b7ba5cae", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 623893, "upload_time": "2019-10-09T15:27:26", "upload_time_iso_8601": "2019-10-09T15:27:26.436441Z", "url": "https://files.pythonhosted.org/packages/89/1c/603dcf1cfb2ff66e2f3e08cdd594f1a5c10c554fddecfd4065013d720d46/aiohttp-3.6.2a2-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42af82053d2bd886282f4c879486124b", "sha256": "aff89e725a5475664dcced2335993e02e71304194ee887d5b27e986dded43dc2" }, "downloads": -1, "filename": "aiohttp-3.6.2a2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "42af82053d2bd886282f4c879486124b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 648821, "upload_time": "2019-10-09T15:27:30", "upload_time_iso_8601": "2019-10-09T15:27:30.039030Z", "url": "https://files.pythonhosted.org/packages/5e/3c/41dee24fe87cd3f9a92b3ee46e759b36e41c771f703c31ee72cf167a8be6/aiohttp-3.6.2a2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f60f6e46aae34436f546a80573c50cb", "sha256": "964fbbfbc0dcaf31dc869b24ea28379724d7bf9d71509a4d35f6b6b9c5a91d2a" }, "downloads": -1, "filename": "aiohttp-3.6.2a2-py3-none-any.whl", "has_sig": false, "md5_digest": "3f60f6e46aae34436f546a80573c50cb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5.3", "size": 441370, "upload_time": "2019-10-09T15:27:33", "upload_time_iso_8601": "2019-10-09T15:27:33.959164Z", "url": "https://files.pythonhosted.org/packages/96/5a/e45cd2054b682ec382650ff5f94c729b343a50747571f15739248c47d340/aiohttp-3.6.2a2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8ead7546070e967f1cb9bb8714d84745", "sha256": "93e491efc640362233cd7b69cb5d59449db86806ea8b03e9982f1f49496abed8" }, "downloads": -1, "filename": "aiohttp-3.6.2a2.tar.gz", "has_sig": false, "md5_digest": "8ead7546070e967f1cb9bb8714d84745", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1075774, "upload_time": "2019-10-09T15:27:37", "upload_time_iso_8601": "2019-10-09T15:27:37.959324Z", "url": "https://files.pythonhosted.org/packages/2e/79/3198c8e0b67a5bfd274429667e14fad95cc6cdc9ccec506ef38d26c47b35/aiohttp-3.6.2a2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.6.3": [ { "comment_text": "", "digests": { "md5": "c228f8fac0c2e2161fcd1cd47877b2c7", "sha256": "1a4160579ffbc1b69e88cb6ca8bb0fbd4947dfcbf9fb1e2a4fc4c7a4a986c1fe" }, "downloads": -1, "filename": "aiohttp-3.6.3-cp35-cp35m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "c228f8fac0c2e2161fcd1cd47877b2c7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 630719, "upload_time": "2020-10-12T10:58:41", "upload_time_iso_8601": "2020-10-12T10:58:41.357790Z", "url": "https://files.pythonhosted.org/packages/c3/6d/d32c4cd6aee0086732a79d33f8e2bd85ebfb88710848a2558bc613ee9bb2/aiohttp-3.6.3-cp35-cp35m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ec90853f3e94d80a3289a1760c2b043e", "sha256": "fb83326d8295e8840e4ba774edf346e87eca78ba8a89c55d2690352842c15ba5" }, "downloads": -1, "filename": "aiohttp-3.6.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ec90853f3e94d80a3289a1760c2b043e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1142649, "upload_time": "2020-10-12T10:58:44", "upload_time_iso_8601": "2020-10-12T10:58:44.270781Z", "url": "https://files.pythonhosted.org/packages/06/6d/9ad79b1ceb86a035011c7d12e2e2a8000341f09f23ab28f73dc987ba6891/aiohttp-3.6.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "333d914cec9c7d3194c0a6bcbb4558f1", "sha256": "470e4c90da36b601676fe50c49a60d34eb8c6593780930b1aa4eea6f508dfa37" }, "downloads": -1, "filename": "aiohttp-3.6.3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "333d914cec9c7d3194c0a6bcbb4558f1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 595912, "upload_time": "2020-10-12T10:58:46", "upload_time_iso_8601": "2020-10-12T10:58:46.248813Z", "url": "https://files.pythonhosted.org/packages/1f/7a/5bcf2a9daa87877ab23dadec3ba6da307c02c198ee0fa65056bc7663657d/aiohttp-3.6.3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f7fa411a2938a65ee4270c9fd8b5e6e0", "sha256": "a885432d3cabc1287bcf88ea94e1826d3aec57fd5da4a586afae4591b061d40d" }, "downloads": -1, "filename": "aiohttp-3.6.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "f7fa411a2938a65ee4270c9fd8b5e6e0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 623313, "upload_time": "2020-10-12T10:58:48", "upload_time_iso_8601": "2020-10-12T10:58:48.143456Z", "url": "https://files.pythonhosted.org/packages/fa/29/b302ce53c6aff5d63b2ebb47b7b7e315e657ed13593398462ada063cd538/aiohttp-3.6.3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a297ccf6ffaf5a3bf18a00423ced3d58", "sha256": "c506853ba52e516b264b106321c424d03f3ddef2813246432fa9d1cefd361c81" }, "downloads": -1, "filename": "aiohttp-3.6.3-cp36-cp36m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "a297ccf6ffaf5a3bf18a00423ced3d58", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 647290, "upload_time": "2020-10-12T10:58:49", "upload_time_iso_8601": "2020-10-12T10:58:49.784799Z", "url": "https://files.pythonhosted.org/packages/73/d4/3697980b9758541777ffd9a5ee890dea48ce848181a41ba64fdb2dd18c34/aiohttp-3.6.3-cp36-cp36m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "64cd540217139c173cf00b919d1a1dd5", "sha256": "797456399ffeef73172945708810f3277f794965eb6ec9bd3a0c007c0476be98" }, "downloads": -1, "filename": "aiohttp-3.6.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "64cd540217139c173cf00b919d1a1dd5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1162389, "upload_time": "2020-10-12T10:58:51", "upload_time_iso_8601": "2020-10-12T10:58:51.502553Z", "url": "https://files.pythonhosted.org/packages/78/a6/93acfa8f8b3573c4445ace2f266de62783231923706a4c3ab705e7d43497/aiohttp-3.6.3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "233dec561f2ac217e574d3d62e4f86e3", "sha256": "60f4caa3b7f7a477f66ccdd158e06901e1d235d572283906276e3803f6b098f5" }, "downloads": -1, "filename": "aiohttp-3.6.3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "233dec561f2ac217e574d3d62e4f86e3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 601901, "upload_time": "2020-10-12T10:58:53", "upload_time_iso_8601": "2020-10-12T10:58:53.017978Z", "url": "https://files.pythonhosted.org/packages/92/f5/6a5c031b394e3990c20242e3ce7443ba9449bd15c62df954e5c2cde21954/aiohttp-3.6.3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4d7f1805fe70faa1a0016a989505408b", "sha256": "2ad493de47a8f926386fa6d256832de3095ba285f325db917c7deae0b54a9fc8" }, "downloads": -1, "filename": "aiohttp-3.6.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "4d7f1805fe70faa1a0016a989505408b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 628884, "upload_time": "2020-10-12T10:58:54", "upload_time_iso_8601": "2020-10-12T10:58:54.328103Z", "url": "https://files.pythonhosted.org/packages/ad/e8/bca85fee07389eb6f255bba94abfd6cc9bef2cb5113f6258d78dba45e05a/aiohttp-3.6.3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8884773ece5480f7254b60e9d347ae5b", "sha256": "319b490a5e2beaf06891f6711856ea10591cfe84fe9f3e71a721aa8f20a0872a" }, "downloads": -1, "filename": "aiohttp-3.6.3-cp37-cp37m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "8884773ece5480f7254b60e9d347ae5b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 643445, "upload_time": "2020-10-12T10:58:55", "upload_time_iso_8601": "2020-10-12T10:58:55.859167Z", "url": "https://files.pythonhosted.org/packages/3b/22/2ade4b8958f2b86ce41cdeee33ee9397a3586f21bfa2a2e1d0a23871a52a/aiohttp-3.6.3-cp37-cp37m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c0081430fb7645f448aee8ec441505b", "sha256": "66d64486172b032db19ea8522328b19cfb78a3e1e5b62ab6a0567f93f073dea0" }, "downloads": -1, "filename": "aiohttp-3.6.3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0c0081430fb7645f448aee8ec441505b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1159776, "upload_time": "2020-10-12T10:58:57", "upload_time_iso_8601": "2020-10-12T10:58:57.966055Z", "url": "https://files.pythonhosted.org/packages/12/a2/ca3ba17c50ebeb3e7473330d8d1ce08fb83506a9bc985bcc0716354d2018/aiohttp-3.6.3-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0fbbcf77fea33742aa5305b43c4ed6ca", "sha256": "206c0ccfcea46e1bddc91162449c20c72f308aebdcef4977420ef329c8fcc599" }, "downloads": -1, "filename": "aiohttp-3.6.3-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "0fbbcf77fea33742aa5305b43c4ed6ca", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 601827, "upload_time": "2020-10-12T10:58:59", "upload_time_iso_8601": "2020-10-12T10:58:59.538533Z", "url": "https://files.pythonhosted.org/packages/3d/af/17927b29f0728b884ba1a0fe42220c9681bc5f7e5be1aa4aadda83a49be9/aiohttp-3.6.3-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dc3934734c545e6e5ee07d6e5a36e2db", "sha256": "687461cd974722110d1763b45c5db4d2cdee8d50f57b00c43c7590d1dd77fc5c" }, "downloads": -1, "filename": "aiohttp-3.6.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "dc3934734c545e6e5ee07d6e5a36e2db", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 629074, "upload_time": "2020-10-12T10:59:01", "upload_time_iso_8601": "2020-10-12T10:59:01.280875Z", "url": "https://files.pythonhosted.org/packages/49/66/9572cc48951da97e13e3e2cec2be3feb493c1a88abd3bfc70bde243f1eb5/aiohttp-3.6.3-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "13d02dc8379207dde1f6966d1fc5083d", "sha256": "698cd7bc3c7d1b82bb728bae835724a486a8c376647aec336aa21a60113c3645" }, "downloads": -1, "filename": "aiohttp-3.6.3.tar.gz", "has_sig": false, "md5_digest": "13d02dc8379207dde1f6966d1fc5083d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1077179, "upload_time": "2020-10-12T10:59:03", "upload_time_iso_8601": "2020-10-12T10:59:03.135299Z", "url": "https://files.pythonhosted.org/packages/9d/6c/429faa2d2f73973189ca0cfe141ff703417a5eebe18d78e6b25b70db0a34/aiohttp-3.6.3.tar.gz", "yanked": false, "yanked_reason": null } ], "3.7.0": [ { "comment_text": "", "digests": { "md5": "7b0f10a42c8481203ac9a261cf4c6f2d", "sha256": "72fe89f7e14939e896d984c4b592580f8cdfa7497feb1c0c24639a9c60be3eb9" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp36-cp36m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "7b0f10a42c8481203ac9a261cf4c6f2d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 651314, "upload_time": "2020-10-24T08:23:23", "upload_time_iso_8601": "2020-10-24T08:23:23.337795Z", "url": "https://files.pythonhosted.org/packages/3a/ee/0e7b7a2a6abb1c3a7b957cf21b9a2106f4a955ab8e08b9103f09306dc74f/aiohttp-3.7.0-cp36-cp36m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "680b73843418b2d90b74b3fab26b54dd", "sha256": "fdf778d4c4bf976e69a37213fe8083613d0851976ddcf485bd7c0650a43d3852" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "680b73843418b2d90b74b3fab26b54dd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1294523, "upload_time": "2020-10-24T08:23:25", "upload_time_iso_8601": "2020-10-24T08:23:25.528053Z", "url": "https://files.pythonhosted.org/packages/62/d5/2b6ff2583f75c36475d113abfd7c141e66a2676be165b20d37d78749493b/aiohttp-3.7.0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0fc93a3857e853b12683f8ff3ffad8fa", "sha256": "fee7b5e68939ffc09f9b29f167ed49c8b50de3eee0a1d8108b439ddd9963af46" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp36-cp36m-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "0fc93a3857e853b12683f8ff3ffad8fa", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1326953, "upload_time": "2020-10-24T08:23:27", "upload_time_iso_8601": "2020-10-24T08:23:27.340636Z", "url": "https://files.pythonhosted.org/packages/2c/e6/b7af1c2f8b8140c34496adcd91f699400bddbe451c9ccf9439f45a413a38/aiohttp-3.7.0-cp36-cp36m-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "81e0b29f80330eb0aaa1c1073ecd6611", "sha256": "dd64634713be409202058f2ea267dfbcdd74b387b8793425f21ef0266d45d0e9" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp36-cp36m-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "81e0b29f80330eb0aaa1c1073ecd6611", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1294525, "upload_time": "2020-10-24T08:23:28", "upload_time_iso_8601": "2020-10-24T08:23:28.969609Z", "url": "https://files.pythonhosted.org/packages/a0/a9/60c0109974ac383383acf3d10cc53be9e7ebe7942877677fddc5e90caa98/aiohttp-3.7.0-cp36-cp36m-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95b9b16fc1d930cdf6c3aa4816aef220", "sha256": "713dd7fd70ddda9dc8d014c49dd0e55b58afe4e0cddb8722c7501f53edf30c3f" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp36-cp36m-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "95b9b16fc1d930cdf6c3aa4816aef220", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1350821, "upload_time": "2020-10-24T08:23:30", "upload_time_iso_8601": "2020-10-24T08:23:30.820345Z", "url": "https://files.pythonhosted.org/packages/53/5a/db743a639f593590bacb74e01c3862d385079d556dcd40f70d750759e111/aiohttp-3.7.0-cp36-cp36m-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f36cff86adb098f4dad7a45b707b0b2e", "sha256": "d31c43f7c4948ce01957f9a1ceee0784e067778477557ebccdf805398331c1a1" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp36-cp36m-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "f36cff86adb098f4dad7a45b707b0b2e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1405616, "upload_time": "2020-10-24T08:23:32", "upload_time_iso_8601": "2020-10-24T08:23:32.787117Z", "url": "https://files.pythonhosted.org/packages/0f/c8/b303db94dd1c6db2f001a1f210082db8fb825a4ac8178ca9090f25df1c56/aiohttp-3.7.0-cp36-cp36m-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d6be0d4e367e503f1af0069234cf1cf", "sha256": "5e26d6003eb6df304608d9fd9c9437065a8532d869a3ffcbd8113a3d710f8239" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "2d6be0d4e367e503f1af0069234cf1cf", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1323545, "upload_time": "2020-10-24T08:23:34", "upload_time_iso_8601": "2020-10-24T08:23:34.250773Z", "url": "https://files.pythonhosted.org/packages/2a/36/2b16b750de61cf54da3d64d0c8631e13b9934100c6ac73c478d1620c86f4/aiohttp-3.7.0-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a5ce867a9762b094c2f5174c787b9685", "sha256": "bf08462cddd10ddd8ffe5cb5c1638bfa051290909ebedb31c06e46578b9b7529" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "a5ce867a9762b094c2f5174c787b9685", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 628428, "upload_time": "2020-10-24T08:23:35", "upload_time_iso_8601": "2020-10-24T08:23:35.873018Z", "url": "https://files.pythonhosted.org/packages/c7/e1/b46fbd28b4eb995e8866c0cbc35197ae1020a3a5900a30b91c0dcf3b3fb8/aiohttp-3.7.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "348e8bcb7907d8c6bda1ccd2fe15f1ef", "sha256": "07bacf6721db51a4c6160ed3031a2a97910647969dafd7c653f600f3b542f463" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp37-cp37m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "348e8bcb7907d8c6bda1ccd2fe15f1ef", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 647638, "upload_time": "2020-10-24T08:23:37", "upload_time_iso_8601": "2020-10-24T08:23:37.562613Z", "url": "https://files.pythonhosted.org/packages/1a/eb/93d1e50349e7552caaf66a00953e249f90477ab007f347b8f65540a5b844/aiohttp-3.7.0-cp37-cp37m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "88a405f99c911da542e32eaadaad5afd", "sha256": "245b58e30bc889d18b783db2f09ef1d814f466e15c84325410827451297003a0" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "88a405f99c911da542e32eaadaad5afd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1301959, "upload_time": "2020-10-24T08:23:39", "upload_time_iso_8601": "2020-10-24T08:23:39.453021Z", "url": "https://files.pythonhosted.org/packages/98/d3/7fcfaa99552b1597a97c2af9d299070ec4473da3bcb586c0e80841c23f20/aiohttp-3.7.0-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "429d0d727d6bb285df3d4388566e5221", "sha256": "b392e5c3e122586c49cd8b9426f577bf4d51958933b839d158d28b69515af74e" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp37-cp37m-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "429d0d727d6bb285df3d4388566e5221", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1334655, "upload_time": "2020-10-24T08:23:40", "upload_time_iso_8601": "2020-10-24T08:23:40.934507Z", "url": "https://files.pythonhosted.org/packages/66/7a/faebf41784e479ecac44c8a721cf7a964b71630637b05078ff1bd15566e2/aiohttp-3.7.0-cp37-cp37m-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1e1113e72484aa0f07dd9036c30e5765", "sha256": "5b5c320621a171aa85f96909af28fbb5286bd6842066db3062b083ba92261256" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp37-cp37m-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "1e1113e72484aa0f07dd9036c30e5765", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1301962, "upload_time": "2020-10-24T08:23:42", "upload_time_iso_8601": "2020-10-24T08:23:42.835559Z", "url": "https://files.pythonhosted.org/packages/26/88/55e67c13739883c45cc350c819350f1a6d6886059348919c59034875a36e/aiohttp-3.7.0-cp37-cp37m-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5bdc91ce25572910fe6a7721d6fd8183", "sha256": "97d2341d1360dbe2c5b1d94922f7d68f9ce2ded1daab88b9bdeb49ce419cdc1b" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp37-cp37m-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "5bdc91ce25572910fe6a7721d6fd8183", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1357883, "upload_time": "2020-10-24T08:23:44", "upload_time_iso_8601": "2020-10-24T08:23:44.795676Z", "url": "https://files.pythonhosted.org/packages/42/00/5c33e0eb146ff0070b9bfb49ab95c8f11ccf3a09713f550972918cfdbe53/aiohttp-3.7.0-cp37-cp37m-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b96bd33b99e6dfd78090e60c04a13483", "sha256": "beda23f292716887532661dc19abb9db2302ccfbd671a080cd8f4be7463d0841" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp37-cp37m-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "b96bd33b99e6dfd78090e60c04a13483", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1412637, "upload_time": "2020-10-24T08:23:46", "upload_time_iso_8601": "2020-10-24T08:23:46.624534Z", "url": "https://files.pythonhosted.org/packages/a3/9c/48a8ab1d84687b3e7f187aa9006db0fd24a3adf1c5325d7dd12d28dceaee/aiohttp-3.7.0-cp37-cp37m-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a16b13e95728b28d4a3f66d1cc3f7855", "sha256": "cbcaae9a6f14f762348d19b2dce8162772c0b0a1739314e18492a308a22caf96" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "a16b13e95728b28d4a3f66d1cc3f7855", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1331729, "upload_time": "2020-10-24T08:23:48", "upload_time_iso_8601": "2020-10-24T08:23:48.248749Z", "url": "https://files.pythonhosted.org/packages/84/44/3722592d693a037a0ebb4106c7645c77dd06b062ed8ab2e2bf150580967a/aiohttp-3.7.0-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bcfc80937f2dd90485166ac8c7fb60b4", "sha256": "7a49ef7b691babc83db126db874fbf26ba2f781899b91399f9ff8b235f059245" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "bcfc80937f2dd90485166ac8c7fb60b4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 628904, "upload_time": "2020-10-24T08:23:49", "upload_time_iso_8601": "2020-10-24T08:23:49.764067Z", "url": "https://files.pythonhosted.org/packages/bf/cf/07d7173838a2e20c46ba8a7d85267ed2187bf6774312c8bbb48820fbcb52/aiohttp-3.7.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e4890088a6061bc3926ed3bcc71ff070", "sha256": "f56892f57310415cf6a179eec3ea6c7a82a9d37fbc00894943ea3154011a6d2a" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp38-cp38-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "e4890088a6061bc3926ed3bcc71ff070", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 651840, "upload_time": "2020-10-24T08:23:51", "upload_time_iso_8601": "2020-10-24T08:23:51.530785Z", "url": "https://files.pythonhosted.org/packages/46/4f/ff7ea122edfe6cabd9388a2a342594841cf377489b9316bd6151c060dc66/aiohttp-3.7.0-cp38-cp38-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d522e809d1a7184f1c41d06a56977a7", "sha256": "df1274b7620c32d3b15bfb0a8fb3165dd6cdc9c39f4db74d162f051c80826542" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1d522e809d1a7184f1c41d06a56977a7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1429502, "upload_time": "2020-10-24T08:23:53", "upload_time_iso_8601": "2020-10-24T08:23:53.503206Z", "url": "https://files.pythonhosted.org/packages/15/08/cc8d428ecb455e6bbcc93938c60b1e033f9686a378ae37fa6736bf865453/aiohttp-3.7.0-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "89e6315bc77e3b4e2354d96fb5612011", "sha256": "a04ba359dc5f2e21b96bfc90c4a7665441441ba61b52e992b7799493889a3419" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp38-cp38-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "89e6315bc77e3b4e2354d96fb5612011", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1473737, "upload_time": "2020-10-24T08:23:55", "upload_time_iso_8601": "2020-10-24T08:23:55.323019Z", "url": "https://files.pythonhosted.org/packages/d0/89/a7b840369dde1657ccc92a5ce92d53ddcba4cc79bdcc2b0d85e6893a6270/aiohttp-3.7.0-cp38-cp38-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e354a92657ccf9f42ac081c23bd8be6", "sha256": "f548d7976d168f0f45ac5909ca5f606ae3f6f7aa1725b22504004a053b29a7d0" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp38-cp38-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "3e354a92657ccf9f42ac081c23bd8be6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1429505, "upload_time": "2020-10-24T08:23:57", "upload_time_iso_8601": "2020-10-24T08:23:57.368906Z", "url": "https://files.pythonhosted.org/packages/9f/85/cbfdd9a2a6355dd786e647aa30ce206872c0b969266f251ca7df43ab5421/aiohttp-3.7.0-cp38-cp38-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1700d16cc42359aefd207493770451f1", "sha256": "deef02e2a9f5095463098c7c22d5566f20a6e4e14fc0996c0c2efc74d461b680" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp38-cp38-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "1700d16cc42359aefd207493770451f1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1499463, "upload_time": "2020-10-24T08:23:58", "upload_time_iso_8601": "2020-10-24T08:23:58.953413Z", "url": "https://files.pythonhosted.org/packages/ef/a3/86ade7b590a43f275eae8a7361f1d73e41ac94b18e9bd5d8f6b5feab0d4c/aiohttp-3.7.0-cp38-cp38-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "788be546478383420e4a255c399b8ac9", "sha256": "fe44c96bc380588d36729392b602470d88a7c18e646e95dd4348cafe3900d91d" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp38-cp38-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "788be546478383420e4a255c399b8ac9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1553744, "upload_time": "2020-10-24T08:24:00", "upload_time_iso_8601": "2020-10-24T08:24:00.810785Z", "url": "https://files.pythonhosted.org/packages/08/93/c28e6d1a004ead6226fc459b131ae2b7e0382e75e4d718f34e03bd0b0957/aiohttp-3.7.0-cp38-cp38-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f07e7be8f0ec933b2a589c827ac5f0b", "sha256": "9210532e6e95b40d22a33415bb84423eef3f633b2d2339b97f3b26438eebc466" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "8f07e7be8f0ec933b2a589c827ac5f0b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1463494, "upload_time": "2020-10-24T08:24:02", "upload_time_iso_8601": "2020-10-24T08:24:02.802813Z", "url": "https://files.pythonhosted.org/packages/74/d4/7180dbbec4c287f1db3788c4089877efe38c2b304a32cd5246c4bda535b0/aiohttp-3.7.0-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9aca75097e986e4515204bb8221cd42b", "sha256": "a586e476a251483d222c73dfb2f27df90bc4ea1b8c7da9396236510e0d4046c8" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "9aca75097e986e4515204bb8221cd42b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 633623, "upload_time": "2020-10-24T08:24:04", "upload_time_iso_8601": "2020-10-24T08:24:04.597295Z", "url": "https://files.pythonhosted.org/packages/07/e9/f2cc3feee344b470b12fea27b5e5f1f5446fe9b94c79b963085f7fa5c7da/aiohttp-3.7.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c6f305d7239d2d8f90c85a22b33db284", "sha256": "900012c5f12ff72b1453229afe288ddc9135176df8b3b3cc5b8f6cfde912aaa4" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp39-cp39-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "c6f305d7239d2d8f90c85a22b33db284", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 652900, "upload_time": "2020-10-24T08:24:06", "upload_time_iso_8601": "2020-10-24T08:24:06.068113Z", "url": "https://files.pythonhosted.org/packages/62/b6/01db442957375c7940a3f05b900a0f0fcb16ba0b6e63297be960134e2332/aiohttp-3.7.0-cp39-cp39-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7232d79df2fcd41d616b4c71c2445819", "sha256": "064d5f0738bcbab3e0c0ecf85c93b5ee1e07e124f994eaa03bf73687f3ecd9da" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7232d79df2fcd41d616b4c71c2445819", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1373795, "upload_time": "2020-10-24T08:24:07", "upload_time_iso_8601": "2020-10-24T08:24:07.704712Z", "url": "https://files.pythonhosted.org/packages/3b/71/eaade3fb7db21c0d7e5427621fa0a8c7e285d4140dab524043904f921fd3/aiohttp-3.7.0-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0f8b09aa0557b72564ee5c8b87d3a4b", "sha256": "0a2edf27865e66a33f64fa793cd14d0aae8127ce20a858539e97c25b600556dc" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp39-cp39-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "e0f8b09aa0557b72564ee5c8b87d3a4b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1419289, "upload_time": "2020-10-24T08:24:09", "upload_time_iso_8601": "2020-10-24T08:24:09.353728Z", "url": "https://files.pythonhosted.org/packages/96/a8/3e43cadc30ece4c497ab15b8240b8035a77b81baf5f59298c3ff423746ce/aiohttp-3.7.0-cp39-cp39-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "51e13321ada5a7266962c946ac10e09a", "sha256": "eaa8ae734639d5a0a3b5e33a154b8bfef384cdc090706f95c387cae8b21af764" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp39-cp39-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "51e13321ada5a7266962c946ac10e09a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1373797, "upload_time": "2020-10-24T08:24:11", "upload_time_iso_8601": "2020-10-24T08:24:11.222858Z", "url": "https://files.pythonhosted.org/packages/1f/3d/fe46ce423f06b199b828bdfcf53dff59bd4119e97d45ee9cab09862a50c2/aiohttp-3.7.0-cp39-cp39-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d0d25f6f6d8dc433c2e79586a6e4b4db", "sha256": "a8a42f05491d9c04a77806875a68f84fea9af7a59d47b7897cb166632f74606c" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp39-cp39-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "d0d25f6f6d8dc433c2e79586a6e4b4db", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1441486, "upload_time": "2020-10-24T08:24:12", "upload_time_iso_8601": "2020-10-24T08:24:12.882798Z", "url": "https://files.pythonhosted.org/packages/96/8c/2479682adb32dad7e8e287bfdaf01632588a2389f9b6a4f113a31f9d7b5b/aiohttp-3.7.0-cp39-cp39-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb8d290428dbc49f2a91e61f9e6c9d2f", "sha256": "b19ded3f6957693b97ba8372aacb5b0021639bbd5e77b1e960796bcef5431969" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp39-cp39-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "eb8d290428dbc49f2a91e61f9e6c9d2f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1497669, "upload_time": "2020-10-24T08:24:14", "upload_time_iso_8601": "2020-10-24T08:24:14.727891Z", "url": "https://files.pythonhosted.org/packages/f5/87/fb31606ad1342ea2e48bc249fc0566657c19f6a72f09ec71ecb218e7d705/aiohttp-3.7.0-cp39-cp39-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d2788c36cdde6e8c2c75d218da4f2f37", "sha256": "cefbd7ce7d1f1db43749a077e4970e29e2b631f367c9eff3862c3c886b4218dd" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "d2788c36cdde6e8c2c75d218da4f2f37", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1408626, "upload_time": "2020-10-24T08:24:16", "upload_time_iso_8601": "2020-10-24T08:24:16.338066Z", "url": "https://files.pythonhosted.org/packages/5f/94/49015b2e656f33d1b10a8412461e2e3c2f51c2f1024aa8c57abfb32d4bf6/aiohttp-3.7.0-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "27c9b23a4a04093e9d66cab7c2dc5ba9", "sha256": "7d64f7dfd4e326d9b0d11b07fcd5ebf78844ba3c8f7699f38b50b0e0db0ae68f" }, "downloads": -1, "filename": "aiohttp-3.7.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "27c9b23a4a04093e9d66cab7c2dc5ba9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 632760, "upload_time": "2020-10-24T08:24:17", "upload_time_iso_8601": "2020-10-24T08:24:17.835436Z", "url": "https://files.pythonhosted.org/packages/de/30/e4cc492eb451f5f65f10e44e5da0668fc2a0696b407ccd8848988f99d5b8/aiohttp-3.7.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab916a6b7802b183c388bafcd9293cf2", "sha256": "176f1d2b2bc07044f4ed583216578a72a2bd35dffdeb92e0517d0aaa29d29549" }, "downloads": -1, "filename": "aiohttp-3.7.0.tar.gz", "has_sig": false, "md5_digest": "ab916a6b7802b183c388bafcd9293cf2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1112272, "upload_time": "2020-10-24T08:24:19", "upload_time_iso_8601": "2020-10-24T08:24:19.614046Z", "url": "https://files.pythonhosted.org/packages/de/14/0cac091b4dee22540f5c54a6ff31b56624e71f3a893b8b01485bf2ce2a4f/aiohttp-3.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.7.0b0": [ { "comment_text": "", "digests": { "md5": "3781e52edc7c91df60d4521ee982344c", "sha256": "39ecff7bb4d059dca40a9c486c70c3571b32db67a232942b1fbabf9850e895dc" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp36-cp36m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "3781e52edc7c91df60d4521ee982344c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 648732, "upload_time": "2020-10-21T19:08:22", "upload_time_iso_8601": "2020-10-21T19:08:22.651651Z", "url": "https://files.pythonhosted.org/packages/50/29/004d3f556441cec37127e542c05e565c9758d1bc82973b08e968c8dbd715/aiohttp-3.7.0b0-cp36-cp36m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "24167c154f9dc1e6c4ff7b469e15de52", "sha256": "4a9c227a71d550ed365470f9b2422f3f98c8400c8d16879f42f4fd198228fa53" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "24167c154f9dc1e6c4ff7b469e15de52", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1291947, "upload_time": "2020-10-21T19:08:25", "upload_time_iso_8601": "2020-10-21T19:08:25.182782Z", "url": "https://files.pythonhosted.org/packages/0a/40/6bd1d2c3656c7e028664904c15d5c4bbc221ca81875db747082515e39314/aiohttp-3.7.0b0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "22311128efffd8cfc9eb0a2081dcb4f0", "sha256": "06347ce29ee44683258167ec609b513de0fe46fc75cc0f7af0b807359288f11e" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp36-cp36m-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "22311128efffd8cfc9eb0a2081dcb4f0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1324378, "upload_time": "2020-10-21T19:08:27", "upload_time_iso_8601": "2020-10-21T19:08:27.242612Z", "url": "https://files.pythonhosted.org/packages/62/b5/d779d57455327647233d10d9a76ad53bc414ece8081e699b998e73599d1b/aiohttp-3.7.0b0-cp36-cp36m-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6228bbfd641a7f4d69843f27b85af2bc", "sha256": "344e8a70c051275b35a6dfc6543291131f6de209db393b6bcc04af6ee9f1a08e" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp36-cp36m-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "6228bbfd641a7f4d69843f27b85af2bc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1291949, "upload_time": "2020-10-21T19:08:29", "upload_time_iso_8601": "2020-10-21T19:08:29.141765Z", "url": "https://files.pythonhosted.org/packages/b7/45/faeba44c271f1b73df91b955ca4bf2aaf77a132de5410ff172f5222a1969/aiohttp-3.7.0b0-cp36-cp36m-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee220d382ce084089f70da069171acdb", "sha256": "a83c6baa62f66ee446ce2b114936454e2cbbb497184d8620adb722f0cd47785d" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp36-cp36m-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "ee220d382ce084089f70da069171acdb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1348242, "upload_time": "2020-10-21T19:08:31", "upload_time_iso_8601": "2020-10-21T19:08:31.210880Z", "url": "https://files.pythonhosted.org/packages/1c/e6/d949016ffe319fb57f130b526e8666550e1456ae14563f61e965266e2f5b/aiohttp-3.7.0b0-cp36-cp36m-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6c4eea219a6f5895e720799c38a404fa", "sha256": "357a11151ee030a9cb5f60e5004c6ebf9870e31c34afd76d8b8a3ec8a767dc4a" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp36-cp36m-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "6c4eea219a6f5895e720799c38a404fa", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1403039, "upload_time": "2020-10-21T19:08:33", "upload_time_iso_8601": "2020-10-21T19:08:33.494778Z", "url": "https://files.pythonhosted.org/packages/55/2e/9a6d69ad2f3e31ac10491e20387ce76c39b4badd82be1fb691c2672e0d23/aiohttp-3.7.0b0-cp36-cp36m-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe7c1b5cc158632c54b19551acf879ba", "sha256": "a3639af67c4ca1deb65cde243220d79a5e398df76046be3ec75f88f5f23c61bf" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "fe7c1b5cc158632c54b19551acf879ba", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1320969, "upload_time": "2020-10-21T19:08:35", "upload_time_iso_8601": "2020-10-21T19:08:35.722960Z", "url": "https://files.pythonhosted.org/packages/4c/b2/9c43762fd0e4e2bc53b346bd37cc45c897383ebacc6066f4165fa664e1e8/aiohttp-3.7.0b0-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1893d496e56ed9ec24b76756612ce1f", "sha256": "6d869a3922ebbe3c065b441497623bdc42c68c1cdb2daab0cd207c670fb8ebab" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "f1893d496e56ed9ec24b76756612ce1f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 625847, "upload_time": "2020-10-21T19:08:37", "upload_time_iso_8601": "2020-10-21T19:08:37.954780Z", "url": "https://files.pythonhosted.org/packages/4e/85/a4f74b7e1e4548fef4274e1397046fddc29573a49d0b736e703b2c242611/aiohttp-3.7.0b0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e243c11e84090c109884d8d30ea0386b", "sha256": "baa454d5eb16fee5174f1c5e83e100fe2a12278c6694f18bcaaa83b7be389c29" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp37-cp37m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "e243c11e84090c109884d8d30ea0386b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 645061, "upload_time": "2020-10-21T19:08:40", "upload_time_iso_8601": "2020-10-21T19:08:40.506871Z", "url": "https://files.pythonhosted.org/packages/ad/66/2234ef4afb029645dfe41686ab56b610567a4342065194e0fdd322402317/aiohttp-3.7.0b0-cp37-cp37m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "461932ebf6929c8a468334885e1dfc47", "sha256": "f5db432fadba7e8c0f594e6484eba0d9df5d0f1a15bbaf984ff5bf7eb0fcbac1" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "461932ebf6929c8a468334885e1dfc47", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1299381, "upload_time": "2020-10-21T19:08:43", "upload_time_iso_8601": "2020-10-21T19:08:43.033086Z", "url": "https://files.pythonhosted.org/packages/33/08/f48ef7620fde5044511363d919be69a3a71e62e0375e45bdb3f177caf896/aiohttp-3.7.0b0-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b2007fe06a10eac26c622cab29a16de5", "sha256": "ae064be51d6be1764fbe433c12fc0fcd5495772a32621ec785dd70f82dffd804" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp37-cp37m-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "b2007fe06a10eac26c622cab29a16de5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1332079, "upload_time": "2020-10-21T19:08:45", "upload_time_iso_8601": "2020-10-21T19:08:45.578856Z", "url": "https://files.pythonhosted.org/packages/65/33/e15e06409670ecd65a4c65041229fd31d6f0559d2b8bd9833f5ba307dcfd/aiohttp-3.7.0b0-cp37-cp37m-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3952bb3b5f4e9ef23049e137a2e36c86", "sha256": "e64ec6cc74234b26feefe0b75413612acb3c87d97bf6db28f02729b67d91bd20" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp37-cp37m-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "3952bb3b5f4e9ef23049e137a2e36c86", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1299387, "upload_time": "2020-10-21T19:08:48", "upload_time_iso_8601": "2020-10-21T19:08:48.050552Z", "url": "https://files.pythonhosted.org/packages/f1/df/1f5e2439cddb697855b8f31d40a29605b65f3e53f35a9c3d53fb8438251f/aiohttp-3.7.0b0-cp37-cp37m-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "25cf2f031f86e185fd68cb6a836968dd", "sha256": "8b0452d2f6dd4e4371d6a6d8b67292c2165b11ba227a2261bd8af77f31aa7ff5" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp37-cp37m-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "25cf2f031f86e185fd68cb6a836968dd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1355307, "upload_time": "2020-10-21T19:08:50", "upload_time_iso_8601": "2020-10-21T19:08:50.036164Z", "url": "https://files.pythonhosted.org/packages/72/c5/f5beb36d6c9dd086b47e79bb82ca7c44a1845c435cf4f1977eefdd847c30/aiohttp-3.7.0b0-cp37-cp37m-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2786b2e593ac6418bfa83c96a1c72703", "sha256": "9b1016752e77d0c607c3b4a87e5fa62940b5c3208325d7871aac7c3263dd3c2c" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp37-cp37m-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "2786b2e593ac6418bfa83c96a1c72703", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1410061, "upload_time": "2020-10-21T19:08:52", "upload_time_iso_8601": "2020-10-21T19:08:52.524097Z", "url": "https://files.pythonhosted.org/packages/e8/f4/62fac35773100263ab374d5944f78bb3542dedc30b5ba9ef029e2416f1b6/aiohttp-3.7.0b0-cp37-cp37m-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de1972bda1ffa955e85b301ca8b89c45", "sha256": "934293b4557f748863a9a20c8acae5fec1efd025acd1424b9b5855ae8b5ecbc5" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "de1972bda1ffa955e85b301ca8b89c45", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1329153, "upload_time": "2020-10-21T19:08:55", "upload_time_iso_8601": "2020-10-21T19:08:55.886919Z", "url": "https://files.pythonhosted.org/packages/d7/05/0e9318a6f650d9700c3f678a6da4ff707d8e2e3e4a797fefb4567f8fed0f/aiohttp-3.7.0b0-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e08975848d1e36b5318e545e03055682", "sha256": "ee192bb6ed71dc97416aac89a1b01e31b651ca9cff29b74a599405eb8a3d0b67" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "e08975848d1e36b5318e545e03055682", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 626320, "upload_time": "2020-10-21T19:08:58", "upload_time_iso_8601": "2020-10-21T19:08:58.178789Z", "url": "https://files.pythonhosted.org/packages/70/56/dc13e7efbf7f38b1bac8af8d14f4e22463dd3967a97c15da8c9d6c9aeae7/aiohttp-3.7.0b0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d6d78302ab84688bf5f2a25258e4cfa9", "sha256": "79391f8b8f3b727a8c267e249f1a6a0e0ec049e19598380e1822a7bda6c31773" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp38-cp38-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "d6d78302ab84688bf5f2a25258e4cfa9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 649268, "upload_time": "2020-10-21T19:09:00", "upload_time_iso_8601": "2020-10-21T19:09:00.585751Z", "url": "https://files.pythonhosted.org/packages/d0/0f/55b42ebefd70008d9b1b002b15429e44b0361010b2bab1783e5f940e960c/aiohttp-3.7.0b0-cp38-cp38-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "267264d858b4a1272aa4a488fbe4b473", "sha256": "b59f8add1537021b610884693fdc5899feaab28f07ccca1101dee4bf5619ec54" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "267264d858b4a1272aa4a488fbe4b473", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1426926, "upload_time": "2020-10-21T19:09:02", "upload_time_iso_8601": "2020-10-21T19:09:02.939111Z", "url": "https://files.pythonhosted.org/packages/37/c9/cf7428e12b8dda7036b6c6178d9992e048df6249546d1c528f1dbc4a99db/aiohttp-3.7.0b0-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "94f7a96c116b17bb9cb9f366924cab02", "sha256": "4493887db043079c636783f1083eb636c81f90a55f0ddcc48b563433a6355a8e" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp38-cp38-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "94f7a96c116b17bb9cb9f366924cab02", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1471160, "upload_time": "2020-10-21T19:09:05", "upload_time_iso_8601": "2020-10-21T19:09:05.542781Z", "url": "https://files.pythonhosted.org/packages/84/58/43f777fca915db79c15a97c8eb329beaa853915beaa074921262f06d3e09/aiohttp-3.7.0b0-cp38-cp38-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ba8c3cef7dd67320b3eeba5d16108c8", "sha256": "e8b771cea344ab0b096b03d2e7ffb70db8d3886fe239fd840860aedcf7669987" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp38-cp38-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "3ba8c3cef7dd67320b3eeba5d16108c8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1426929, "upload_time": "2020-10-21T19:09:07", "upload_time_iso_8601": "2020-10-21T19:09:07.774779Z", "url": "https://files.pythonhosted.org/packages/6f/b2/f941ef601c25ed0f56b8914e6283472af70915b3003297895a8761ea2447/aiohttp-3.7.0b0-cp38-cp38-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e8ae1ae427c617bf7cd7bd705d62e16", "sha256": "b10668b8436325523fa2920b9149639e5c1393f8e389de63c20c5c489929e1d4" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp38-cp38-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "5e8ae1ae427c617bf7cd7bd705d62e16", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1496883, "upload_time": "2020-10-21T19:09:10", "upload_time_iso_8601": "2020-10-21T19:09:10.170630Z", "url": "https://files.pythonhosted.org/packages/b0/57/21a40a71194dde8e508b06c886d06162e8a1d3318b991573f5b69ef26284/aiohttp-3.7.0b0-cp38-cp38-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b8898c624b2aaefdb132181b25df0f61", "sha256": "bd690fbb1361c0e4b1ef25ef2a99b25e8a099589aa916fb8a1c4070ec6feb5b3" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp38-cp38-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "b8898c624b2aaefdb132181b25df0f61", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1551167, "upload_time": "2020-10-21T19:09:12", "upload_time_iso_8601": "2020-10-21T19:09:12.238861Z", "url": "https://files.pythonhosted.org/packages/70/5a/e11b673cf55b8ca447d57a55bec319f9b07d206c79a69dd930a1fe5b380f/aiohttp-3.7.0b0-cp38-cp38-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5ca564093766e7b284da8b835ad68dd3", "sha256": "2086d2acacfcee5f6268f3cf0e9b7219b9bea7e2db89d45f4eead43260454970" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "5ca564093766e7b284da8b835ad68dd3", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1460916, "upload_time": "2020-10-21T19:09:14", "upload_time_iso_8601": "2020-10-21T19:09:14.676394Z", "url": "https://files.pythonhosted.org/packages/76/da/b1aa42eaeb2d689bdbfc8b2cb6fe2dfe0fd3c11c4b3e5460ae466b60fadd/aiohttp-3.7.0b0-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cc355b57b554d5c0510e0d669801c2c1", "sha256": "36f50fc384f3186902e7003eb65bb83ae537bb3b762e52b957fc88d8c1b05277" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "cc355b57b554d5c0510e0d669801c2c1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 631041, "upload_time": "2020-10-21T19:09:17", "upload_time_iso_8601": "2020-10-21T19:09:17.701987Z", "url": "https://files.pythonhosted.org/packages/e9/b7/2dd314ac5fd956da9b22739683d1a0ab924238b36de30f4dc77d21a085f4/aiohttp-3.7.0b0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ecf3bfc6b6d8dd2cd90fd79fc6353238", "sha256": "6e683f2d8519a9f0a9f8ec99720df0080a855dfd64fc623b5ad43c88025f566b" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp39-cp39-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "ecf3bfc6b6d8dd2cd90fd79fc6353238", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 650327, "upload_time": "2020-10-21T19:09:20", "upload_time_iso_8601": "2020-10-21T19:09:20.110777Z", "url": "https://files.pythonhosted.org/packages/4d/c3/42c25a3f6a07783e63799c1132e4396ee75336670315e3949294d712a808/aiohttp-3.7.0b0-cp39-cp39-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "86d78e598caf1d5c33ad00f7bedd6218", "sha256": "2d58c9114ce5bfbed8356d268ee4714b2bd29863e149f2c8dfdd004bdad0de84" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "86d78e598caf1d5c33ad00f7bedd6218", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1371219, "upload_time": "2020-10-21T19:09:23", "upload_time_iso_8601": "2020-10-21T19:09:23.427061Z", "url": "https://files.pythonhosted.org/packages/c8/7f/e96c6229167c7d14bebf748873e44fee76f1722be4a9c99a81cd84c28827/aiohttp-3.7.0b0-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa7d20c487987411a028a18d7ae6438d", "sha256": "e18ef8439d5bfde171da6a698b67122a97f0ad89804acd91fd68aff0398e0f3e" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp39-cp39-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "fa7d20c487987411a028a18d7ae6438d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1416711, "upload_time": "2020-10-21T19:09:25", "upload_time_iso_8601": "2020-10-21T19:09:25.582679Z", "url": "https://files.pythonhosted.org/packages/23/0c/f776ebecac2f42ce899881020e57a3df7585a0127a4d0e38faad07611d4f/aiohttp-3.7.0b0-cp39-cp39-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68dc041f50322bc06b95fbf8fd7c0b18", "sha256": "583c562501afa907889808d9426d98bdfd311efd4a2e75d6e189e592f749367d" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp39-cp39-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "68dc041f50322bc06b95fbf8fd7c0b18", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1371221, "upload_time": "2020-10-21T19:09:28", "upload_time_iso_8601": "2020-10-21T19:09:28.481085Z", "url": "https://files.pythonhosted.org/packages/67/44/7ac29898fb679102d0347a56161ee8b1cdf601f52951d2dceb17bd74af24/aiohttp-3.7.0b0-cp39-cp39-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c9f228bd4317d5decb9bf7568c6a991a", "sha256": "b0845dfa45406e586e8c937eeb23ba1d1dadd4d8ab0503a56f7228c85233f525" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp39-cp39-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "c9f228bd4317d5decb9bf7568c6a991a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1438913, "upload_time": "2020-10-21T19:09:31", "upload_time_iso_8601": "2020-10-21T19:09:31.240204Z", "url": "https://files.pythonhosted.org/packages/b1/7a/6ae3683a17622a5e0b5d16d078383b484301346bac646a5aef3e5593b2ca/aiohttp-3.7.0b0-cp39-cp39-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e28baa08d47b2f8e4d95f86192375efe", "sha256": "df9c1791c04150086b156e83edf057738be594c07d5eb90074135f8634df27e2" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp39-cp39-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "e28baa08d47b2f8e4d95f86192375efe", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1495094, "upload_time": "2020-10-21T19:09:33", "upload_time_iso_8601": "2020-10-21T19:09:33.375496Z", "url": "https://files.pythonhosted.org/packages/86/00/46c622329e835432c2fda4e8331ff9bde4ce3ad44bef821fff67973960ce/aiohttp-3.7.0b0-cp39-cp39-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e307a381464d7f5bb566f0819cd5d5f", "sha256": "d6a2532fc6dfc6cb29df0eaeb2801e835fd1b206fb3f44210553601d53c6129c" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "4e307a381464d7f5bb566f0819cd5d5f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1406049, "upload_time": "2020-10-21T19:09:36", "upload_time_iso_8601": "2020-10-21T19:09:36.370779Z", "url": "https://files.pythonhosted.org/packages/00/f2/cd77d9fd988e24e6267df7bb44b9e4173aaaa3cc755a2aa79083c3932521/aiohttp-3.7.0b0-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b4bb076eb439973000375d97bdeef72", "sha256": "ec2fd30107fca91e748fb5b24d66246a3b0e223d11fa1a1fca17570491722294" }, "downloads": -1, "filename": "aiohttp-3.7.0b0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "9b4bb076eb439973000375d97bdeef72", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 630188, "upload_time": "2020-10-21T19:09:39", "upload_time_iso_8601": "2020-10-21T19:09:39.042957Z", "url": "https://files.pythonhosted.org/packages/bf/c3/7189b07c4517b89ebed1de340d94690939a7cc6cc9cbb1e6b6acb4a6653e/aiohttp-3.7.0b0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "87485cb01f5d17e2496ea2ea0ce7af6d", "sha256": "31fa737443b068840d75ae2b2d8f1a660d4fc4fcb91f4ef93940c7bf1ff574ab" }, "downloads": -1, "filename": "aiohttp-3.7.0b0.tar.gz", "has_sig": false, "md5_digest": "87485cb01f5d17e2496ea2ea0ce7af6d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1103587, "upload_time": "2020-10-21T19:09:41", "upload_time_iso_8601": "2020-10-21T19:09:41.714865Z", "url": "https://files.pythonhosted.org/packages/4d/25/89f6b871ceb21a5711f32057acfcb7d9988be4af2b0d6d17fa642d64847f/aiohttp-3.7.0b0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.7.0b1": [ { "comment_text": "", "digests": { "md5": "a114873ae2bb75e3ae63f41c07841292", "sha256": "cf32b18ad0d821be80b5d5705afd4f259fa47b4e879eec62393cbe3b50b50cac" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp36-cp36m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "a114873ae2bb75e3ae63f41c07841292", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 648740, "upload_time": "2020-10-22T14:40:21", "upload_time_iso_8601": "2020-10-22T14:40:21.117050Z", "url": "https://files.pythonhosted.org/packages/c7/e8/aa0c7f418d24cf9459ae734af56b5a51f9e9d07cead001b23565168d1015/aiohttp-3.7.0b1-cp36-cp36m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e38acb1913a01578c6842adbf6088d04", "sha256": "715db30134bca3702fa331bf2dae7fc132c3ae63870a78e89bacd10a3f450c57" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e38acb1913a01578c6842adbf6088d04", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1291952, "upload_time": "2020-10-22T14:40:22", "upload_time_iso_8601": "2020-10-22T14:40:22.887394Z", "url": "https://files.pythonhosted.org/packages/a9/9b/d7753555dfff8763e5f6e6690c5d6f1d356509cbea0dee6f9494d32d1c88/aiohttp-3.7.0b1-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "63db7dfd9bf6f28749decc463fd447e0", "sha256": "64d124c4c013482484c1e014f3cb08bd5bb2da7fbccff8341958443aa59923c1" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp36-cp36m-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "63db7dfd9bf6f28749decc463fd447e0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1324383, "upload_time": "2020-10-22T14:40:24", "upload_time_iso_8601": "2020-10-22T14:40:24.562030Z", "url": "https://files.pythonhosted.org/packages/d9/82/48da99ec44c8be733b3a72382d7bd5dc93a30e3b6de478a0ca0c0a395bb3/aiohttp-3.7.0b1-cp36-cp36m-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a2362009e693b87bf5b9f106839b9029", "sha256": "b62512b7349efeb89705d201f84293fb83f683ac47d627b89959a63c64d6a130" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp36-cp36m-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "a2362009e693b87bf5b9f106839b9029", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1291955, "upload_time": "2020-10-22T14:40:26", "upload_time_iso_8601": "2020-10-22T14:40:26.629784Z", "url": "https://files.pythonhosted.org/packages/c5/94/3155c23d1e05ae9b019d4c6de746cf421c49dfbc491c15b5841c474af2cc/aiohttp-3.7.0b1-cp36-cp36m-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cd2ea2d7d4a07bd1d9d5efe9ee43b781", "sha256": "e73921b4d95afe18b404aabef7a2116c68188980d1688673688765af05fb7c47" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp36-cp36m-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "cd2ea2d7d4a07bd1d9d5efe9ee43b781", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1348248, "upload_time": "2020-10-22T14:40:28", "upload_time_iso_8601": "2020-10-22T14:40:28.399119Z", "url": "https://files.pythonhosted.org/packages/5c/a3/fd3673bc5fcea686c43b51de2a428593c5b69d0e24914df1f5fa16ad9f69/aiohttp-3.7.0b1-cp36-cp36m-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "41d87a1699763a4f9a3b65dac5d3792a", "sha256": "6f4aa339f01f99a2d678b869b102922cc0388840a7025cdb554f0220bd505815" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp36-cp36m-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "41d87a1699763a4f9a3b65dac5d3792a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1403044, "upload_time": "2020-10-22T14:40:30", "upload_time_iso_8601": "2020-10-22T14:40:30.226784Z", "url": "https://files.pythonhosted.org/packages/8a/85/5a2344dafde41ec13fce3e57d0e01659030efb2460d7b3ba09504c830cf7/aiohttp-3.7.0b1-cp36-cp36m-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fda984443aba7deefd0e9f126c804d5e", "sha256": "63cc1f4806eda074f502c2210ddd7a8ea82f1aeee19373fed46e03e5ffd99f17" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "fda984443aba7deefd0e9f126c804d5e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1320975, "upload_time": "2020-10-22T14:40:32", "upload_time_iso_8601": "2020-10-22T14:40:32.370790Z", "url": "https://files.pythonhosted.org/packages/17/fa/b266bc529a5fa6f86346dd643b024455c9cb3427ed27e48fb39fb71cc7e7/aiohttp-3.7.0b1-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "342a36db2f43114ca16f6a04e8b4f04a", "sha256": "117dc422f861a6e747124ded7a664ad11f78a49d4d4bbe67119cecb73723fbfd" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "342a36db2f43114ca16f6a04e8b4f04a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 625853, "upload_time": "2020-10-22T14:40:34", "upload_time_iso_8601": "2020-10-22T14:40:34.296170Z", "url": "https://files.pythonhosted.org/packages/1a/aa/0b89f3f6503464ce594b5e27bbc1b600845208104888d9ec6809b171f562/aiohttp-3.7.0b1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9c998d01d819fb66c8f6c934c39866e9", "sha256": "3595a64030f2bcad9a6e7749e1e0012f65139eece25e5d04defd2be4473829af" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp37-cp37m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "9c998d01d819fb66c8f6c934c39866e9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 645065, "upload_time": "2020-10-22T14:40:36", "upload_time_iso_8601": "2020-10-22T14:40:36.042520Z", "url": "https://files.pythonhosted.org/packages/73/e5/126242fef55c794a75df50fa075041282b7b962d1f4d936ebd79e4c7d0df/aiohttp-3.7.0b1-cp37-cp37m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2a2c064e1158a40fd58c170b13657f48", "sha256": "2fa072d702770e18272fd01960934649b15b6f7b29d74389a9dd709700a07dfe" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2a2c064e1158a40fd58c170b13657f48", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1299388, "upload_time": "2020-10-22T14:40:37", "upload_time_iso_8601": "2020-10-22T14:40:37.782865Z", "url": "https://files.pythonhosted.org/packages/e6/61/08ecce18082bd0758f8c07f041fd06d4e5a4117a787d6aa2345e0a4b0dd2/aiohttp-3.7.0b1-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "241362749d2eaeb81c25a7db7278ec22", "sha256": "a10ec9b8c16d1aa5a2f0c53e17d5c2e5585cde1c4960f70b99050b246d93ced5" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp37-cp37m-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "241362749d2eaeb81c25a7db7278ec22", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1332085, "upload_time": "2020-10-22T14:40:39", "upload_time_iso_8601": "2020-10-22T14:40:39.302966Z", "url": "https://files.pythonhosted.org/packages/88/00/84e967bb8e1ecf3e59153eec4dc6cc7e80816391b16b86e918ffa9287b14/aiohttp-3.7.0b1-cp37-cp37m-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99b81cce7ad8881dd9a44cf2d77a6f05", "sha256": "d0dbdbaa7dcbfe6798cd2e0eb2388742c4575fad91609824de2ed76566ecfe49" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp37-cp37m-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "99b81cce7ad8881dd9a44cf2d77a6f05", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1299392, "upload_time": "2020-10-22T14:40:40", "upload_time_iso_8601": "2020-10-22T14:40:40.895880Z", "url": "https://files.pythonhosted.org/packages/de/c1/88f884a123fad13ed10b8babe2559611b5d4827cc3e8975ba88cd2093caf/aiohttp-3.7.0b1-cp37-cp37m-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "208dd4f99ac18acc0c24e1a833a96873", "sha256": "ab6410413c2ce564c078055b452b16a6f9684a15353cc794687c88093685d8ca" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp37-cp37m-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "208dd4f99ac18acc0c24e1a833a96873", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1355310, "upload_time": "2020-10-22T14:40:42", "upload_time_iso_8601": "2020-10-22T14:40:42.397728Z", "url": "https://files.pythonhosted.org/packages/66/5e/1f3063c29ea62a98d6050e534e5844886dd7d01c58d1970237b2d2324682/aiohttp-3.7.0b1-cp37-cp37m-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "289cb30defe8809c80e72e3ac0a8843c", "sha256": "c8c476712871d649305a91d3cd878df65ca65fd353ab38d9ce90d5b8ee244511" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp37-cp37m-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "289cb30defe8809c80e72e3ac0a8843c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1410064, "upload_time": "2020-10-22T14:40:44", "upload_time_iso_8601": "2020-10-22T14:40:44.076053Z", "url": "https://files.pythonhosted.org/packages/fd/f4/924358c5dfe8e68dbcaa450a8778e56f82c1b55abcb2856f6fc7da6a73ef/aiohttp-3.7.0b1-cp37-cp37m-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2de76dbb17b11eac19e75903e2e1c29f", "sha256": "20a6db07b68b0d0b0da7257e2b89bdcb2bb6fb14bb3a0dd4610c7514ec9d04bf" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "2de76dbb17b11eac19e75903e2e1c29f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1329157, "upload_time": "2020-10-22T14:40:45", "upload_time_iso_8601": "2020-10-22T14:40:45.621005Z", "url": "https://files.pythonhosted.org/packages/cd/20/8496d2538eea74a4dabc3df7a9a1213bd686f32de22b20af6302853e9bc7/aiohttp-3.7.0b1-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67191f245fdf2946890b0f9d47025cb1", "sha256": "1e91d927305a457a0e090c7c90da355106a615fa4191dd288c703bc1c494dd5b" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "67191f245fdf2946890b0f9d47025cb1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 626323, "upload_time": "2020-10-22T14:40:47", "upload_time_iso_8601": "2020-10-22T14:40:47.286206Z", "url": "https://files.pythonhosted.org/packages/72/e6/8b74f097fe714bf846d8ecfca8acf49a364b296e11c4da414c8fd008bffb/aiohttp-3.7.0b1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da48d6daf0851507a412ba9896454431", "sha256": "e903b34d4a52b2fdc7ad909dc530596e31d1b18d1eb4d142508d43a70d91228b" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp38-cp38-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "da48d6daf0851507a412ba9896454431", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 649273, "upload_time": "2020-10-22T14:40:48", "upload_time_iso_8601": "2020-10-22T14:40:48.886783Z", "url": "https://files.pythonhosted.org/packages/7e/68/86169d2ecf6662f85faa6e187fc41603046733e777ce3720dbd02ae9812c/aiohttp-3.7.0b1-cp38-cp38-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3eb0cb2df4ec65cf0aae421d313bc168", "sha256": "7318c89853e9cabbd6d7d3f1534892393f2fc812e45cfc1fc1a1d76105a9b644" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3eb0cb2df4ec65cf0aae421d313bc168", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1426931, "upload_time": "2020-10-22T14:40:50", "upload_time_iso_8601": "2020-10-22T14:40:50.298881Z", "url": "https://files.pythonhosted.org/packages/9e/cc/6eab59cad9f22a8731c04d013ff81c337c29c1b814a2e3bc2a327d14324b/aiohttp-3.7.0b1-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "84988db5e121408881b33a8d9fbf3d79", "sha256": "2a55f93977eb464eb46f4b0e437e723a568c0c210834d2ec2eee8b55eed0f4f7" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp38-cp38-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "84988db5e121408881b33a8d9fbf3d79", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1471163, "upload_time": "2020-10-22T14:40:51", "upload_time_iso_8601": "2020-10-22T14:40:51.913222Z", "url": "https://files.pythonhosted.org/packages/f6/83/a64ac214d9ae78ae75e53eef73df5ec8e4f93636e110b19fcd81b777f8e3/aiohttp-3.7.0b1-cp38-cp38-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "305e54e6f6baa437f4a6525eca2bdcdc", "sha256": "b1b5ad50fcc7cdfcf1b1a104db77b6d30da5350d7dcacf820c1290b767e1a82d" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp38-cp38-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "305e54e6f6baa437f4a6525eca2bdcdc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1426934, "upload_time": "2020-10-22T14:40:53", "upload_time_iso_8601": "2020-10-22T14:40:53.680362Z", "url": "https://files.pythonhosted.org/packages/3b/02/12cfed825790d864b33082ba9bfb86b476e712fc5dee41f72cc1e4315e04/aiohttp-3.7.0b1-cp38-cp38-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3302ae0af4e9f861086f77d1173fd878", "sha256": "e08db7c3f7540fc6a880215a14ccc053396651fcfa6aa7a4775a23cdca760761" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp38-cp38-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "3302ae0af4e9f861086f77d1173fd878", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1496888, "upload_time": "2020-10-22T14:40:55", "upload_time_iso_8601": "2020-10-22T14:40:55.402963Z", "url": "https://files.pythonhosted.org/packages/83/82/53d2cc698e822857f4afee2873f8625a42c72282b98ea8f2a8fa2624cfb4/aiohttp-3.7.0b1-cp38-cp38-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "336335480149ae29193e54ec281564fc", "sha256": "c8b9580ed29e664901ecb4069028005f163cba47565fb01b2c0257ecf26075f1" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp38-cp38-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "336335480149ae29193e54ec281564fc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1551173, "upload_time": "2020-10-22T14:40:57", "upload_time_iso_8601": "2020-10-22T14:40:57.384441Z", "url": "https://files.pythonhosted.org/packages/22/94/19d6280aa1fffafab38f56864afce4b8564b05862cb7abbc7551b6d7478b/aiohttp-3.7.0b1-cp38-cp38-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1ed589c56c0f29e93810785ad0af1923", "sha256": "08f2e1d1faafd097f410ad596b8cf391baedac564d11002ea0c65cc025c56986" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1ed589c56c0f29e93810785ad0af1923", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1460921, "upload_time": "2020-10-22T14:40:58", "upload_time_iso_8601": "2020-10-22T14:40:58.829427Z", "url": "https://files.pythonhosted.org/packages/a4/ad/c43c1498306022168b2d49c0928f2842be0ceb7f158110b5abb586fb0ffe/aiohttp-3.7.0b1-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6c356ab381dfe0480cb1b23dddb26a01", "sha256": "88f213d33189098f07a03659350c9e9771c68e67ca493902b93a3dbdc1f267e6" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "6c356ab381dfe0480cb1b23dddb26a01", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 631043, "upload_time": "2020-10-22T14:41:00", "upload_time_iso_8601": "2020-10-22T14:41:00.302779Z", "url": "https://files.pythonhosted.org/packages/d7/6a/2d763037a34abbabefba9d0cc81bda3b0910a4a8eec960008e402e02fab5/aiohttp-3.7.0b1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "424cb527145131e9343456df05304f6f", "sha256": "6c41fd39999116a4fc2047732aedce7f8342a8fd67f5387434fb693f71c7e9da" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp39-cp39-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "424cb527145131e9343456df05304f6f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 650336, "upload_time": "2020-10-22T14:41:01", "upload_time_iso_8601": "2020-10-22T14:41:01.692292Z", "url": "https://files.pythonhosted.org/packages/7c/54/12feb20b253fa21285f6a4b85016069f837429e4d5237991c8e7067fed7a/aiohttp-3.7.0b1-cp39-cp39-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43d0a38ed440299570ecc7cd4ad5555e", "sha256": "5ec195cd5bc7ca0485f8908a740ef01098ec1ebc3cc77f8115773731dc053b48" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "43d0a38ed440299570ecc7cd4ad5555e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1371223, "upload_time": "2020-10-22T14:41:03", "upload_time_iso_8601": "2020-10-22T14:41:03.354794Z", "url": "https://files.pythonhosted.org/packages/1b/f3/7c60ebf976bf60c02fae28e3a84fa4812030a8bc1aafb1e069763e39f31e/aiohttp-3.7.0b1-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "735e092d2b6c0dd4e98a74156bf95059", "sha256": "c4b19209e4af3529034c3d5fd3912ca846d25b654d7edf655a6985c5c83f7cbd" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp39-cp39-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "735e092d2b6c0dd4e98a74156bf95059", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1416714, "upload_time": "2020-10-22T14:41:05", "upload_time_iso_8601": "2020-10-22T14:41:05.217619Z", "url": "https://files.pythonhosted.org/packages/5c/e4/2db351c98914664ed3621dec228ff75e872f7a3a4a0d10ae1074161da526/aiohttp-3.7.0b1-cp39-cp39-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75d8152082614c0e3e421673f4271483", "sha256": "4a40e823c4708b819230da7ca1e886ee2af646df82171b05d32074ef4e8cc347" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp39-cp39-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "75d8152082614c0e3e421673f4271483", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1371225, "upload_time": "2020-10-22T14:41:06", "upload_time_iso_8601": "2020-10-22T14:41:06.873649Z", "url": "https://files.pythonhosted.org/packages/7f/c1/b39f1160c97577a6bf54d26fa827243737d0f6c16bc1be7c81eb5cf47adf/aiohttp-3.7.0b1-cp39-cp39-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "792c57f9d0e802d69378fbeca9196cf2", "sha256": "e73df51d8586fa5e94f7ae2e5ca0f6f276db4c7bba679b10cb607762f8c6d740" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp39-cp39-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "792c57f9d0e802d69378fbeca9196cf2", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1438915, "upload_time": "2020-10-22T14:41:09", "upload_time_iso_8601": "2020-10-22T14:41:09.043829Z", "url": "https://files.pythonhosted.org/packages/77/6c/4ed7fe15161a141013dd038925187cc9af239524794f76688fd0480e41e3/aiohttp-3.7.0b1-cp39-cp39-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ff7ac66b26a9ce7978c3f03b2e061a92", "sha256": "9e4148e4e1a71e80bb1f13ac0e6d21504749659df091db124c144f06d55f6de4" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp39-cp39-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "ff7ac66b26a9ce7978c3f03b2e061a92", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1495099, "upload_time": "2020-10-22T14:41:10", "upload_time_iso_8601": "2020-10-22T14:41:10.803635Z", "url": "https://files.pythonhosted.org/packages/58/aa/fc983d42a5c5bcb492f7eeec74fd0bbfef20310480ba5e3b2758f9d1499d/aiohttp-3.7.0b1-cp39-cp39-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "87bff26cb9d0e60f517262185539a461", "sha256": "62cdee6ddd8f9e1f501f15b6da564d17750bfe77ff44a8b77b2c1f8255023844" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "87bff26cb9d0e60f517262185539a461", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1406055, "upload_time": "2020-10-22T14:41:12", "upload_time_iso_8601": "2020-10-22T14:41:12.646243Z", "url": "https://files.pythonhosted.org/packages/6a/7b/7f98df4fb2e616e844ee52809f137faa76898a639d542f1001b7dfb9e7f6/aiohttp-3.7.0b1-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "32ec92a0d88c19b1c3f9d776d99e870e", "sha256": "1a7cfbc7055e97d7e88f33882416ef072513af6f2040be8ad1f1ee450365a5af" }, "downloads": -1, "filename": "aiohttp-3.7.0b1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "32ec92a0d88c19b1c3f9d776d99e870e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 630186, "upload_time": "2020-10-22T14:41:14", "upload_time_iso_8601": "2020-10-22T14:41:14.034585Z", "url": "https://files.pythonhosted.org/packages/98/0d/b129aa878ab76c70fc504fdf5ac1eb8bf2088ed260240c214b5ffa885327/aiohttp-3.7.0b1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e05eca191505b772f40e527c19c3321", "sha256": "908ed6327c01dc5a4211e4e13cf8f63db95cd3ea08c91274f98ad16c4d733073" }, "downloads": -1, "filename": "aiohttp-3.7.0b1.tar.gz", "has_sig": false, "md5_digest": "5e05eca191505b772f40e527c19c3321", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1103610, "upload_time": "2020-10-22T14:41:15", "upload_time_iso_8601": "2020-10-22T14:41:15.649145Z", "url": "https://files.pythonhosted.org/packages/57/43/9511fda9ccb97087218b5cc55bfabf945799f499dbfb44f6d5b4616bedc0/aiohttp-3.7.0b1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.7.1": [ { "comment_text": "", "digests": { "md5": "b9b74d38f7ea648a868003ef407ab944", "sha256": "6072fd5b635b276071c2eda77931adb6254a6271645a260c63f7dd4a0872b04b" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp36-cp36m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "b9b74d38f7ea648a868003ef407ab944", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 650477, "upload_time": "2020-10-25T07:44:02", "upload_time_iso_8601": "2020-10-25T07:44:02.350744Z", "url": "https://files.pythonhosted.org/packages/fa/2b/a54f5aa6dfcd29426f7d2d8479d163389fbb598e88acdb9166990c0a3cec/aiohttp-3.7.1-cp36-cp36m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da88c84c1609d49c2217b9a97eca5f7e", "sha256": "fb7d473b5faa75341f4acb659267d16f300ebd28a7575b5c58cc467bfabb0fd4" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "da88c84c1609d49c2217b9a97eca5f7e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1293383, "upload_time": "2020-10-25T07:44:04", "upload_time_iso_8601": "2020-10-25T07:44:04.346103Z", "url": "https://files.pythonhosted.org/packages/4e/3e/94f07e1d0f873dc731e456a6b3150646817e05f72646b968771bdbbe5f7e/aiohttp-3.7.1-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fd915f4b53e617d6922947e6f3078637", "sha256": "729deb9d0f56211ea4657c7d20ab134c0403173308d9ba21debe20d35a37302c" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp36-cp36m-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "fd915f4b53e617d6922947e6f3078637", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1325469, "upload_time": "2020-10-25T07:44:06", "upload_time_iso_8601": "2020-10-25T07:44:06.286781Z", "url": "https://files.pythonhosted.org/packages/34/d9/abf138711e09032cb53a0c38482f64e71d74d83d551747683cd53feac1c6/aiohttp-3.7.1-cp36-cp36m-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8a57d4116978002fbd080ed2955296df", "sha256": "00f258b8b1e40f87358095ef62ec0547df3f1bd30ce228af98ffe5aad4aaf864" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp36-cp36m-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "8a57d4116978002fbd080ed2955296df", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1293387, "upload_time": "2020-10-25T07:44:08", "upload_time_iso_8601": "2020-10-25T07:44:08.022781Z", "url": "https://files.pythonhosted.org/packages/5c/96/660b443e2476a5446cd26fc122c89a5e9d909b160dc6697de0fd46f05657/aiohttp-3.7.1-cp36-cp36m-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f911d50905110ef1eba6f096be0269b", "sha256": "00496dc15c3dd921218664b7aa55405d9032cb9523ccf812835ffc5e229d4b8e" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp36-cp36m-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "1f911d50905110ef1eba6f096be0269b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1349892, "upload_time": "2020-10-25T07:44:09", "upload_time_iso_8601": "2020-10-25T07:44:09.565358Z", "url": "https://files.pythonhosted.org/packages/71/86/1bbf77f32e1fd6386f0935af95473161a2ffb2589c04754feb46a3a007a7/aiohttp-3.7.1-cp36-cp36m-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d6a5c5afe38a416e0f0a8a9d72e88798", "sha256": "af8470ed2420dc9d6edcbc255204edbf3d3ba9eaa94bc1c3a470e328722a0fa2" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp36-cp36m-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "d6a5c5afe38a416e0f0a8a9d72e88798", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1404470, "upload_time": "2020-10-25T07:44:11", "upload_time_iso_8601": "2020-10-25T07:44:11.065800Z", "url": "https://files.pythonhosted.org/packages/34/55/93034ac62346eee08436a245e99710a3f93629429f86b73bddaf143aa14a/aiohttp-3.7.1-cp36-cp36m-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aef676a1c7fa8cc496d895dc031f3b36", "sha256": "6c971a9728957df5e1cd7dda3a557382ca965f7d8d038f901c7c60fc502b9245" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "aef676a1c7fa8cc496d895dc031f3b36", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1318906, "upload_time": "2020-10-25T07:44:12", "upload_time_iso_8601": "2020-10-25T07:44:12.593872Z", "url": "https://files.pythonhosted.org/packages/0c/56/e8aed71a1da06e0fab18e5e08a3b8cc5ad581f11cde12a420637860d80f9/aiohttp-3.7.1-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5dfb72ae1c061aa5d688b156fcde04b2", "sha256": "52ba0350c03814f30156f65c76a303275fb616e81e70e345b066c761280f6762" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "5dfb72ae1c061aa5d688b156fcde04b2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 627794, "upload_time": "2020-10-25T07:44:13", "upload_time_iso_8601": "2020-10-25T07:44:13.887820Z", "url": "https://files.pythonhosted.org/packages/52/7a/7c9eec757f3306c355d96684533ed65df7b1ffb109ab4fc57f0f429010b2/aiohttp-3.7.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c388d5a9cdf82498806d31528d10541", "sha256": "910b1f98412690341aaa73ae70ee185da0dbd6768de7b89c5b6c805119eff4a3" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp37-cp37m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "2c388d5a9cdf82498806d31528d10541", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 646856, "upload_time": "2020-10-25T07:44:15", "upload_time_iso_8601": "2020-10-25T07:44:15.300299Z", "url": "https://files.pythonhosted.org/packages/ae/2d/163f4e3a1409351f2a7922a45dd9ae1537fa11b0b371c1bf17c08db40e72/aiohttp-3.7.1-cp37-cp37m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e949f7f01a00e84abfb2ecd745136a5", "sha256": "1daa3fe52f632c51b064804a23df40bd1089e337b131f29b4bde2968ad414ed8" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0e949f7f01a00e84abfb2ecd745136a5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1300909, "upload_time": "2020-10-25T07:44:16", "upload_time_iso_8601": "2020-10-25T07:44:16.728677Z", "url": "https://files.pythonhosted.org/packages/0e/77/fdcae6438c8b3993f0cf566059255db7c06b8f2d68fffaaee1b248570c75/aiohttp-3.7.1-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd6595d9adefbd885d9d6bb10a4e119e", "sha256": "4f9395802ca6d133e5106f4d328949fcb22c3f5ee65e87c1e586d5f5952d3397" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp37-cp37m-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "bd6595d9adefbd885d9d6bb10a4e119e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1333042, "upload_time": "2020-10-25T07:44:18", "upload_time_iso_8601": "2020-10-25T07:44:18.491039Z", "url": "https://files.pythonhosted.org/packages/e2/55/000e29ae7d028a32f8d3ee46a6d7ccc045ea4762889983a44c509ccec03b/aiohttp-3.7.1-cp37-cp37m-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "be4cf2f99569bd8aceacc08af364cbe0", "sha256": "a04dc48f0117089860200847f24862ac084e0f25454c7507b40ce2715f92197b" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp37-cp37m-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "be4cf2f99569bd8aceacc08af364cbe0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1300911, "upload_time": "2020-10-25T07:44:20", "upload_time_iso_8601": "2020-10-25T07:44:20.405863Z", "url": "https://files.pythonhosted.org/packages/b0/81/4f11333da05afebd80a9a1fc542be9b92b16acc7adda92fff790aafde10f/aiohttp-3.7.1-cp37-cp37m-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d1b8cc8c601590664094b61b70c0e7ac", "sha256": "4fbe2e7642f9c78474cc5819420b77fc20de2114e0139838332b428aa14e1e07" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp37-cp37m-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "d1b8cc8c601590664094b61b70c0e7ac", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1357038, "upload_time": "2020-10-25T07:44:21", "upload_time_iso_8601": "2020-10-25T07:44:21.925263Z", "url": "https://files.pythonhosted.org/packages/a1/85/f8ba80ae65f8895fe0a316aac6c952d9aefbcbe9fb25f2feeb379d08df22/aiohttp-3.7.1-cp37-cp37m-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "606ef37f1e0eaed283d88e56317dfdb8", "sha256": "9e3ad780feccf411c300705dd56226bdbc991ee260138bd1b5059a4674176513" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp37-cp37m-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "606ef37f1e0eaed283d88e56317dfdb8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1411095, "upload_time": "2020-10-25T07:44:23", "upload_time_iso_8601": "2020-10-25T07:44:23.400763Z", "url": "https://files.pythonhosted.org/packages/56/d7/bfe2e9a30c2e2e5382f88ce28e166b77f0da2ea21cc98eac4307ac6c71e5/aiohttp-3.7.1-cp37-cp37m-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "26bda7d9deeeb08f142068f5ff41b0ac", "sha256": "1b328022c11531b174281736a20e464d7c9ca390232f1b2cca6f77074c438859" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "26bda7d9deeeb08f142068f5ff41b0ac", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1327554, "upload_time": "2020-10-25T07:44:24", "upload_time_iso_8601": "2020-10-25T07:44:24.947684Z", "url": "https://files.pythonhosted.org/packages/88/e1/64f35a531e69310313be5f5f296787bb1cd0fa256311932ea181c5699a62/aiohttp-3.7.1-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2da7e37a5f98a10a54a2c53aed36f627", "sha256": "628c9f2a590a0be02967ce014255868e8e6dc780649677ab43f87f8c3114e89d" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "2da7e37a5f98a10a54a2c53aed36f627", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 628324, "upload_time": "2020-10-25T07:44:26", "upload_time_iso_8601": "2020-10-25T07:44:26.336249Z", "url": "https://files.pythonhosted.org/packages/e7/97/1cb811b27ab862ccdea49dd4f6947fc70ec4f1949363272c1d7e65281c48/aiohttp-3.7.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "823bc5588b8e15a287ede59743863312", "sha256": "a6fa0dea87eec5179e4dc8974d8f20385ed030df272c64b2db75db62be3f3dd7" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp38-cp38-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "823bc5588b8e15a287ede59743863312", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 651225, "upload_time": "2020-10-25T07:44:27", "upload_time_iso_8601": "2020-10-25T07:44:27.690787Z", "url": "https://files.pythonhosted.org/packages/14/7b/bab4331393bf2dd955ee41fa2c84d3c98949534e9152a1823188d7022ab5/aiohttp-3.7.1-cp38-cp38-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bba5afc2412c03c9b4feab9cf63a1a74", "sha256": "e51141d86d19c641c1c52f04095a8af5bf1208182b3a0bc16144bce050d3f8f5" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "bba5afc2412c03c9b4feab9cf63a1a74", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1427508, "upload_time": "2020-10-25T07:44:29", "upload_time_iso_8601": "2020-10-25T07:44:29.454781Z", "url": "https://files.pythonhosted.org/packages/ab/cf/82eff9aeaed0158ece1fc2e60910fa910716686a7b2cf5bac82179e7f88a/aiohttp-3.7.1-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8b258901eb7fa7a46b31ef94339dc346", "sha256": "d6ec3d2c49353756f781111c0c2024ae422ba2338bf179940c298d4099fda277" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp38-cp38-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "8b258901eb7fa7a46b31ef94339dc346", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1468871, "upload_time": "2020-10-25T07:44:31", "upload_time_iso_8601": "2020-10-25T07:44:31.320545Z", "url": "https://files.pythonhosted.org/packages/15/41/561a4df9739924a63569bac55bec85f15fc1c3500a2e3c52cec112965812/aiohttp-3.7.1-cp38-cp38-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2587464044e6965232fd816938e0daa1", "sha256": "21d6b65bb3e14e82d358fa2d7ed193d1dae6592b79525ce484e58a65fcfb57c9" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp38-cp38-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "2587464044e6965232fd816938e0daa1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1427510, "upload_time": "2020-10-25T07:44:32", "upload_time_iso_8601": "2020-10-25T07:44:32.922827Z", "url": "https://files.pythonhosted.org/packages/8c/fe/98c3d64698b8ed7920069a1121494d12e77eea3ffd8b9708591e87f78010/aiohttp-3.7.1-cp38-cp38-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5d638e3023073c2c7aa2b48d7167e4e1", "sha256": "4c6f3a389b8d6509a8d7b6639ec8bd50418a5a81e821f38ddec0d9226e4998b6" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp38-cp38-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "5d638e3023073c2c7aa2b48d7167e4e1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1494484, "upload_time": "2020-10-25T07:44:34", "upload_time_iso_8601": "2020-10-25T07:44:34.490672Z", "url": "https://files.pythonhosted.org/packages/2e/3c/39731280ce514f61dd563c9bef60e09a6a56c3e095810d2285e060250af1/aiohttp-3.7.1-cp38-cp38-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb8bb47ca2977aa9eb33d4cb05064beb", "sha256": "26c1264409ca2d76b57ead2f5c2d22cb4510682f35e449c3a3afa98d4a7be462" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp38-cp38-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "bb8bb47ca2977aa9eb33d4cb05064beb", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1547676, "upload_time": "2020-10-25T07:44:36", "upload_time_iso_8601": "2020-10-25T07:44:36.065120Z", "url": "https://files.pythonhosted.org/packages/f0/76/63b593de89a790db7c8a0dfcf9222231fb1a2ddfde56929bc7097896e628/aiohttp-3.7.1-cp38-cp38-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa83dafb460f4774f55b070c250d93e6", "sha256": "4d14d823e8c017be21e740d169bd9142fdfc8cc124954787e1e6336dbe1b8612" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "fa83dafb460f4774f55b070c250d93e6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1463093, "upload_time": "2020-10-25T07:44:37", "upload_time_iso_8601": "2020-10-25T07:44:37.694712Z", "url": "https://files.pythonhosted.org/packages/5d/dd/185d4871c8369c32329f62eeadad058b032391a05ba1ade02a4fb5a4d912/aiohttp-3.7.1-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e6ba95f6b51522c4f0f3cea3bc9e460c", "sha256": "85dbf57ca00a4b01e4a31bd27971e420984ce9075cf462dd02d6c0c9b537e29c" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "e6ba95f6b51522c4f0f3cea3bc9e460c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 633048, "upload_time": "2020-10-25T07:44:39", "upload_time_iso_8601": "2020-10-25T07:44:39.338984Z", "url": "https://files.pythonhosted.org/packages/e8/1f/3344ebe2a063a013714fc31d4d3af209a549f7183371e8ee51ba907274ca/aiohttp-3.7.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c4d0b875bea352991da5a4ed8581f37a", "sha256": "96ce3cd77e0fa4ad3c579346d9796b837a58a094881b22e974b6c3df98cf8e4a" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp39-cp39-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "c4d0b875bea352991da5a4ed8581f37a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 652457, "upload_time": "2020-10-25T07:44:41", "upload_time_iso_8601": "2020-10-25T07:44:41.283465Z", "url": "https://files.pythonhosted.org/packages/3e/40/c93b863852de31420b732bdf31915070158d6e221cf452109e73e4b417dd/aiohttp-3.7.1-cp39-cp39-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8fe5c6ec3545e6d691eb85d5f3df9fd4", "sha256": "c49905707caf50a516e407c6e0381f45d76781b1ee1f5ecde2a624961768f2fd" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8fe5c6ec3545e6d691eb85d5f3df9fd4", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1372404, "upload_time": "2020-10-25T07:44:43", "upload_time_iso_8601": "2020-10-25T07:44:43.028082Z", "url": "https://files.pythonhosted.org/packages/d0/7d/b8ec9be47e04aca460bb88ea3242d383fc3524533e133b942109c2ac5768/aiohttp-3.7.1-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3558fa93037ae2f5721be8a30dce1c56", "sha256": "08dabb185c6af8b741c315c0f871ea63267f3b3f835e77743f9270c44a3b422c" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp39-cp39-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "3558fa93037ae2f5721be8a30dce1c56", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1417246, "upload_time": "2020-10-25T07:44:44", "upload_time_iso_8601": "2020-10-25T07:44:44.648930Z", "url": "https://files.pythonhosted.org/packages/a9/27/68b833801b490951c2d101dc86e54c51d117a1197bf8f18b239a19a8a8b4/aiohttp-3.7.1-cp39-cp39-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb9311496887e02caed6fc9b43c47a11", "sha256": "db38a398227b3faac6bf8e6da806a2a4d2cbc3dbd0aa8b9f76e5624539a756db" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp39-cp39-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "cb9311496887e02caed6fc9b43c47a11", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1372407, "upload_time": "2020-10-25T07:44:46", "upload_time_iso_8601": "2020-10-25T07:44:46.614484Z", "url": "https://files.pythonhosted.org/packages/fa/87/0da7e2cbb082f8fec7bb42d5c5acce42c9701e8a0c3f13d448d94965c944/aiohttp-3.7.1-cp39-cp39-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6e622b55e3399728c670c492a20312d7", "sha256": "27dce131d4283a30045c7af5ae9faf07f2bdaa89d845bd3b9a3d3dabc730f06f" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp39-cp39-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "6e622b55e3399728c670c492a20312d7", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1440080, "upload_time": "2020-10-25T07:44:48", "upload_time_iso_8601": "2020-10-25T07:44:48.158794Z", "url": "https://files.pythonhosted.org/packages/04/40/25426f956b0c19b89df0dffd87d90a46643c1de3d06899df0db2d9bbf85d/aiohttp-3.7.1-cp39-cp39-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6d284eee9fffa7f19cc2226ee7a84b57", "sha256": "a86c99e7bca0909942adc51411e57d15ef64604cc0f4ecf3bf0a24a634264f3e" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp39-cp39-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "6d284eee9fffa7f19cc2226ee7a84b57", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1496384, "upload_time": "2020-10-25T07:44:50", "upload_time_iso_8601": "2020-10-25T07:44:50.136778Z", "url": "https://files.pythonhosted.org/packages/97/b4/5be2011e45a6dbc608d9072dfa1bbaa3bfd967adcf2573fbff3a7c227f83/aiohttp-3.7.1-cp39-cp39-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d5dcceefb39c013bef492db6d318f1a", "sha256": "38768355d2f430b32b6013b5a274d74458f65db618c4f4721cd24db4586acf10" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "9d5dcceefb39c013bef492db6d318f1a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1409231, "upload_time": "2020-10-25T07:44:51", "upload_time_iso_8601": "2020-10-25T07:44:51.883496Z", "url": "https://files.pythonhosted.org/packages/1b/c5/0a591b2982495930b946d8ae26e46b5508fd9eb59fe0916a17c49fc069d8/aiohttp-3.7.1-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "74603e073149c3910e64a3d3e7aa9096", "sha256": "8d194780edba342302472ae7caf6397293128f906e5e64bd3fe209462ff9e1c1" }, "downloads": -1, "filename": "aiohttp-3.7.1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "74603e073149c3910e64a3d3e7aa9096", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 632223, "upload_time": "2020-10-25T07:44:53", "upload_time_iso_8601": "2020-10-25T07:44:53.470845Z", "url": "https://files.pythonhosted.org/packages/9b/6c/4172830d93167236c488a6c5a55bc8e6c98bb137212d49bb7bc625e33669/aiohttp-3.7.1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed78633cc420b29d3b61c7d877dc0901", "sha256": "04f9d70f6c4d089be5068d7df6281e638f6820d4f1b1ec3dc012b0b43fa997d2" }, "downloads": -1, "filename": "aiohttp-3.7.1.tar.gz", "has_sig": false, "md5_digest": "ed78633cc420b29d3b61c7d877dc0901", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1111777, "upload_time": "2020-10-25T07:44:54", "upload_time_iso_8601": "2020-10-25T07:44:54.888287Z", "url": "https://files.pythonhosted.org/packages/4f/a4/4c8827bf59bfa85088518c3ddf5ca20ed9373b002d8039eca9541f7461b9/aiohttp-3.7.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.7.2": [ { "comment_text": "", "digests": { "md5": "cd34ac9b333f542973fc65206714acac", "sha256": "0989ff15834a4503056d103077ec3652f9ea5699835e1ceaee46b91cf59830bf" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp36-cp36m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "cd34ac9b333f542973fc65206714acac", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 649407, "upload_time": "2020-10-27T08:23:29", "upload_time_iso_8601": "2020-10-27T08:23:29.315360Z", "url": "https://files.pythonhosted.org/packages/10/c8/f85b12590a30210036599e061a7dcf5f83edf57e7487115f34e9c2acd779/aiohttp-3.7.2-cp36-cp36m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "15e1487448b5868c5c0165609bc6c26f", "sha256": "8fbeeb2296bb9fe16071a674eadade7391be785ae0049610e64b60ead6abcdd7" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "15e1487448b5868c5c0165609bc6c26f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1292311, "upload_time": "2020-10-27T08:23:31", "upload_time_iso_8601": "2020-10-27T08:23:31.414099Z", "url": "https://files.pythonhosted.org/packages/1d/4b/2a6c0e4f72d694e8f6eb7a59dfbc298d53dcf183f0f7ed4e38c8cb7b8361/aiohttp-3.7.2-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "780eb50251db989cdf8493a351953c0c", "sha256": "48104c883099c0e614c5c38f98c1d174a2c68f52f58b2a6e5a07b59df78262ab" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp36-cp36m-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "780eb50251db989cdf8493a351953c0c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1324406, "upload_time": "2020-10-27T08:23:33", "upload_time_iso_8601": "2020-10-27T08:23:33.056009Z", "url": "https://files.pythonhosted.org/packages/24/d4/bb36a0e6e72507957281df20f82ae936dbc96198303a7bd1e9b7d045acf3/aiohttp-3.7.2-cp36-cp36m-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fd74f17cf9f2cf9e5da294fef71b32e7", "sha256": "c9a415f4f2764ab6c7d63ee6b86f02a46b4df9bc11b0de7ffef206908b7bf0b4" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp36-cp36m-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "fd74f17cf9f2cf9e5da294fef71b32e7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1292313, "upload_time": "2020-10-27T08:23:34", "upload_time_iso_8601": "2020-10-27T08:23:34.971084Z", "url": "https://files.pythonhosted.org/packages/29/58/14d6f48ed7b8d329542d6d146b4b1dfaf236203d328ddbc46f80b574e743/aiohttp-3.7.2-cp36-cp36m-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ff6aac08c65742229d82871abbbb9738", "sha256": "7e26712871ebaf55497a60f55483dc5e74326d1fb0bfceab86ebaeaa3a266733" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp36-cp36m-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "ff6aac08c65742229d82871abbbb9738", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1348820, "upload_time": "2020-10-27T08:23:36", "upload_time_iso_8601": "2020-10-27T08:23:36.776300Z", "url": "https://files.pythonhosted.org/packages/19/d8/d537765e3742ebd5be76e9fe691cf1b93d97a617bfbc731c8eed4d2e2d07/aiohttp-3.7.2-cp36-cp36m-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c4d821e3aa84c1a8c71793ef43d220c4", "sha256": "8319a55de469d5af3517dfe1f6a77f248f6668c5a552396635ef900f058882ef" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp36-cp36m-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "c4d821e3aa84c1a8c71793ef43d220c4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1403396, "upload_time": "2020-10-27T08:23:38", "upload_time_iso_8601": "2020-10-27T08:23:38.522922Z", "url": "https://files.pythonhosted.org/packages/59/97/97bd0c16d50f1c74089ad1a29761483aef975efd8fd3fd02838066b72eb8/aiohttp-3.7.2-cp36-cp36m-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "952f31067f6700a4b6601c8ca9e654fa", "sha256": "2aea79734ac5ceeac1ec22b4af4efb4efd6a5ca3d73d77ec74ed782cf318f238" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "952f31067f6700a4b6601c8ca9e654fa", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1317838, "upload_time": "2020-10-27T08:23:40", "upload_time_iso_8601": "2020-10-27T08:23:40.490975Z", "url": "https://files.pythonhosted.org/packages/9c/c6/c518b46d9bf1ae08c1936d82eae4190455ab073bddbb70ddf371211d3151/aiohttp-3.7.2-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f8ed4d1fefe46eb4d690a421ab2a6c35", "sha256": "be9fa3fe94fc95e9bf84e84117a577c892906dd3cb0a95a7ae21e12a84777567" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "f8ed4d1fefe46eb4d690a421ab2a6c35", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 626711, "upload_time": "2020-10-27T08:23:42", "upload_time_iso_8601": "2020-10-27T08:23:42.196149Z", "url": "https://files.pythonhosted.org/packages/bb/d1/57d6955d30de09213b0c1ce66794bc57d1b9ab90452cee9146915417f4ae/aiohttp-3.7.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ecdbf27ade642372fbe1f26638fec0ed", "sha256": "f04dcbf6af1868048a9b4754b1684c669252aa2419aa67266efbcaaead42ced7" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp37-cp37m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "ecdbf27ade642372fbe1f26638fec0ed", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 645793, "upload_time": "2020-10-27T08:23:44", "upload_time_iso_8601": "2020-10-27T08:23:44.387463Z", "url": "https://files.pythonhosted.org/packages/e7/f1/88aefab0721d92f66277d02b61b1efcc2ad064ca53153dd3aafc08a8bf0a/aiohttp-3.7.2-cp37-cp37m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb9c0168920e8369b6428068349550b1", "sha256": "2e886611b100c8c93b753b457e645c5e4b8008ec443434d2a480e5a2bb3e6514" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "bb9c0168920e8369b6428068349550b1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1299843, "upload_time": "2020-10-27T08:23:46", "upload_time_iso_8601": "2020-10-27T08:23:46.265937Z", "url": "https://files.pythonhosted.org/packages/e6/85/1d55331e0308c815dfa8c74b2ea150e60ff933a4624aa4c7ccd0b8fee52f/aiohttp-3.7.2-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "14783042bcb0f09638d54475149dca8e", "sha256": "cdbb65c361ff790c424365a83a496fc8dd1983689a5fb7c6852a9a3ff1710c61" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp37-cp37m-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "14783042bcb0f09638d54475149dca8e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1331974, "upload_time": "2020-10-27T08:23:47", "upload_time_iso_8601": "2020-10-27T08:23:47.851517Z", "url": "https://files.pythonhosted.org/packages/da/04/a11bead7039c35f23b07b7bd1d2f6b00a85a677578026735bd15f54591df/aiohttp-3.7.2-cp37-cp37m-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "20af02a2cd8612fcbfd48b4b83a069dc", "sha256": "8a8addd41320637c1445fea0bae1fd9fe4888acc2cd79217ee33e5d1c83cfe01" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp37-cp37m-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "20af02a2cd8612fcbfd48b4b83a069dc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1299844, "upload_time": "2020-10-27T08:23:49", "upload_time_iso_8601": "2020-10-27T08:23:49.470091Z", "url": "https://files.pythonhosted.org/packages/83/ca/47886b91f1be203c7e8c4904121ca3fe40621783e32d4c7f46beccc0e8c2/aiohttp-3.7.2-cp37-cp37m-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3c6cd6ff5ff4997cedc2d80c57c914bc", "sha256": "b822bf7b764283b5015e3c49b7bb93f37fc03545f4abe26383771c6b1c813436" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp37-cp37m-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "3c6cd6ff5ff4997cedc2d80c57c914bc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1355967, "upload_time": "2020-10-27T08:23:51", "upload_time_iso_8601": "2020-10-27T08:23:51.395930Z", "url": "https://files.pythonhosted.org/packages/69/16/261515778d07cf8dd4c27fdb576c7d3b6f1d98486dc231d8d2d09a70840e/aiohttp-3.7.2-cp37-cp37m-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "986f2348501c6b038316667385bd3c37", "sha256": "ad5c3559e3cd64f746df43fa498038c91aa14f5d7615941ea5b106e435f3b892" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp37-cp37m-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "986f2348501c6b038316667385bd3c37", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1410027, "upload_time": "2020-10-27T08:23:53", "upload_time_iso_8601": "2020-10-27T08:23:53.386792Z", "url": "https://files.pythonhosted.org/packages/49/e4/7a058d579a5617e3ab1f5e38e6768d8a00ee1afb00a066e160ae5f3aad64/aiohttp-3.7.2-cp37-cp37m-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3c899afa07dbaf94bde08de6759c7567", "sha256": "835bd35e14e4f36414e47c195e6645449a0a1c3fd5eeae4b7f22cb4c5e4f503a" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "3c899afa07dbaf94bde08de6759c7567", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1326487, "upload_time": "2020-10-27T08:23:54", "upload_time_iso_8601": "2020-10-27T08:23:54.916066Z", "url": "https://files.pythonhosted.org/packages/b3/c4/0f6b40c30554557d81a6452d4527107f232f512cba6eb1a5f8adffbb6bb6/aiohttp-3.7.2-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5da80a07a8ae9f05f7f6df33e0e93442", "sha256": "11e087c316e933f1f52f3d4a09ce13f15ad966fc43df47f44ca4e8067b6a2e0d" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "5da80a07a8ae9f05f7f6df33e0e93442", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 627241, "upload_time": "2020-10-27T08:23:56", "upload_time_iso_8601": "2020-10-27T08:23:56.725478Z", "url": "https://files.pythonhosted.org/packages/e3/39/1fb4b83c1f2c81afbba00e5fde72cc48f5c6495e5a6bc33847a9538e5ccb/aiohttp-3.7.2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7745d6affe3bd5c4ee5118a41f86175d", "sha256": "f8c583c31c6e790dc003d9d574e3ed2c5b337947722965096c4d684e4f183570" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp38-cp38-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "7745d6affe3bd5c4ee5118a41f86175d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 650151, "upload_time": "2020-10-27T08:23:58", "upload_time_iso_8601": "2020-10-27T08:23:58.680631Z", "url": "https://files.pythonhosted.org/packages/3b/22/e7a8005083b729590058177d05d95147dcdb180603041c1871843301366f/aiohttp-3.7.2-cp38-cp38-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f639f6f26a4e2c99f86d8632b2531957", "sha256": "b84cef790cb93cec82a468b7d2447bf16e3056d2237b652e80f57d653b61da88" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f639f6f26a4e2c99f86d8632b2531957", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1426440, "upload_time": "2020-10-27T08:24:00", "upload_time_iso_8601": "2020-10-27T08:24:00.182878Z", "url": "https://files.pythonhosted.org/packages/69/ce/f07e6944d65ae7dbec96d5ded3c328d50bcc641c61aeb91005da4b36f2a9/aiohttp-3.7.2-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "805d98c9e0cf1007d08b89c8ddc956e1", "sha256": "4afd8002d9238e5e93acf1a8baa38b3ddf1f7f0ebef174374131ff0c6c2d7973" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp38-cp38-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "805d98c9e0cf1007d08b89c8ddc956e1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1467803, "upload_time": "2020-10-27T08:24:01", "upload_time_iso_8601": "2020-10-27T08:24:01.938784Z", "url": "https://files.pythonhosted.org/packages/6c/e5/2f6ace3389cf836ad871e683c3fb05dc5496f6a4baa98c88534988d9394d/aiohttp-3.7.2-cp38-cp38-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a507c43d8ac7785604558ededd2a636a", "sha256": "a1f1cc11c9856bfa7f1ca55002c39070bde2a97ce48ef631468e99e2ac8e3fe6" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp38-cp38-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "a507c43d8ac7785604558ededd2a636a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1426443, "upload_time": "2020-10-27T08:24:03", "upload_time_iso_8601": "2020-10-27T08:24:03.494508Z", "url": "https://files.pythonhosted.org/packages/b4/fa/fbec77f35d0fef0afd81f571b9cab0a2c4d613b921532f7e492a0a57dcc6/aiohttp-3.7.2-cp38-cp38-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7ca301f2dd4bb6e331b3b6a1500944f3", "sha256": "7f1aeb72f14b9254296cdefa029c00d3c4550a26e1059084f2ee10d22086c2d0" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp38-cp38-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "7ca301f2dd4bb6e331b3b6a1500944f3", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1493419, "upload_time": "2020-10-27T08:24:05", "upload_time_iso_8601": "2020-10-27T08:24:05.181388Z", "url": "https://files.pythonhosted.org/packages/8e/26/b81a90853bf6fbdd14f370f31bf6f77ea731a31610ca7fce2b8db876f4c0/aiohttp-3.7.2-cp38-cp38-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1aa5a3f0abc5609b6c98c6caa9116461", "sha256": "67f8564c534d75c1d613186939cee45a124d7d37e7aece83b17d18af665b0d7a" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp38-cp38-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "1aa5a3f0abc5609b6c98c6caa9116461", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1546610, "upload_time": "2020-10-27T08:24:07", "upload_time_iso_8601": "2020-10-27T08:24:07.367023Z", "url": "https://files.pythonhosted.org/packages/6e/de/bbb5327cfea028f55b8e8885a24a0f3ade0d0313a51c571c64b5c324cf71/aiohttp-3.7.2-cp38-cp38-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d86b93e9db9abdc497fd0d18ff581640", "sha256": "184ead67248274f0e20b0cd6bb5f25209b2fad56e5373101cc0137c32c825c87" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "d86b93e9db9abdc497fd0d18ff581640", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1462022, "upload_time": "2020-10-27T08:24:09", "upload_time_iso_8601": "2020-10-27T08:24:09.429112Z", "url": "https://files.pythonhosted.org/packages/63/c8/7c58c9ef4b7ac8f12c83b21e20e6566c48660ae49e403afa025d01df2550/aiohttp-3.7.2-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5dfae0c0d62869b837977ab8c7bde325", "sha256": "6e0d1231a626d07b23f6fe904caa44efb249da4222d8a16ab039fb2348722292" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "5dfae0c0d62869b837977ab8c7bde325", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 631964, "upload_time": "2020-10-27T08:24:11", "upload_time_iso_8601": "2020-10-27T08:24:11.551706Z", "url": "https://files.pythonhosted.org/packages/0c/c0/5aad98cb90eb37ebf97577e78f33381e8596d6ce2ec3ce38e53b891ac766/aiohttp-3.7.2-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b7976c4caef6c6871dc986ba3075884b", "sha256": "476b1f8216e59a3c2ffb71b8d7e1da60304da19f6000d422bacc371abb0fc43d" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp39-cp39-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "b7976c4caef6c6871dc986ba3075884b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 651388, "upload_time": "2020-10-27T08:24:13", "upload_time_iso_8601": "2020-10-27T08:24:13.092487Z", "url": "https://files.pythonhosted.org/packages/de/08/e9d8332a8eebe69dd8f6e325c50dd49089612eb99705d09d2b295f39e96a/aiohttp-3.7.2-cp39-cp39-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "471fb596675f7c89e70528ca49b1ce6a", "sha256": "89c1aa729953b5ac6ca3c82dcbd83e7cdecfa5cf9792c78c154a642e6e29303d" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "471fb596675f7c89e70528ca49b1ce6a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1371332, "upload_time": "2020-10-27T08:24:14", "upload_time_iso_8601": "2020-10-27T08:24:14.837305Z", "url": "https://files.pythonhosted.org/packages/ff/f0/cd926aafb2b5833ba362544b25263e1a1aee82f4defa556a90125343789f/aiohttp-3.7.2-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "94619e2641a2dcb5f4551b5dfe55c795", "sha256": "c53f1d2bd48f5f407b534732f5b3c6b800a58e70b53808637848d8a9ee127fe7" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp39-cp39-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "94619e2641a2dcb5f4551b5dfe55c795", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1416182, "upload_time": "2020-10-27T08:24:16", "upload_time_iso_8601": "2020-10-27T08:24:16.482780Z", "url": "https://files.pythonhosted.org/packages/9e/59/545755cd47607b18ed07196cf92a52a49727ec61e0259fdecc8b6149952c/aiohttp-3.7.2-cp39-cp39-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d70b001feeb075ad85d700448e71a167", "sha256": "06efdb01ab71ec20786b592d510d1d354fbe0b2e4449ee47067b9ca65d45a006" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp39-cp39-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "d70b001feeb075ad85d700448e71a167", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1371335, "upload_time": "2020-10-27T08:24:18", "upload_time_iso_8601": "2020-10-27T08:24:18.229455Z", "url": "https://files.pythonhosted.org/packages/e4/e1/77a309e3cc7ef266c3015e8a8c4ad0414ff0efc6ad8b65212405a57cb163/aiohttp-3.7.2-cp39-cp39-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b86e2bb628470fbb96695d8fa1e2b95", "sha256": "027be45c4b37e21be81d07ae5242361d73eebad1562c033f80032f955f34df82" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp39-cp39-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "9b86e2bb628470fbb96695d8fa1e2b95", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1439011, "upload_time": "2020-10-27T08:24:20", "upload_time_iso_8601": "2020-10-27T08:24:20.006795Z", "url": "https://files.pythonhosted.org/packages/cb/69/79468707c39349b5b04ae4d9ee737eea05d46d2d3095a12e562109bc211e/aiohttp-3.7.2-cp39-cp39-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "98873b5e619e1e0e04f5a8809fa14715", "sha256": "1c36b7ef47cfbc150314c2204cd73613d96d6d0982d41c7679b7cdcf43c0e979" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp39-cp39-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "98873b5e619e1e0e04f5a8809fa14715", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1495309, "upload_time": "2020-10-27T08:24:21", "upload_time_iso_8601": "2020-10-27T08:24:21.524260Z", "url": "https://files.pythonhosted.org/packages/4f/c1/2e055ccdfac743dcac7bca1aec47cf77fdc34659853c5096c85a46bde574/aiohttp-3.7.2-cp39-cp39-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50a56f2cb9b10f603cb52b725fe07b8e", "sha256": "c588a0f824dc7158be9eec1ff465d1c868ad69a4dc518cd098cc11e4f7da09d9" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "50a56f2cb9b10f603cb52b725fe07b8e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1408156, "upload_time": "2020-10-27T08:24:23", "upload_time_iso_8601": "2020-10-27T08:24:23.017338Z", "url": "https://files.pythonhosted.org/packages/00/0a/004a8d02beedb5e029a610c4e4bda7b62e800041434ff9e8f3817f73bdfb/aiohttp-3.7.2-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7b941034e048dfe0c0df8f491973f2e2", "sha256": "547b196a7177511da4f475fc81d0bb88a51a8d535c7444bbf2338b6dc82cb996" }, "downloads": -1, "filename": "aiohttp-3.7.2-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "7b941034e048dfe0c0df8f491973f2e2", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 631144, "upload_time": "2020-10-27T08:24:24", "upload_time_iso_8601": "2020-10-27T08:24:24.831075Z", "url": "https://files.pythonhosted.org/packages/ff/5d/e433c14a894723253dcbf5d86de780878a4053f1f7d0363aeff68e320bc7/aiohttp-3.7.2-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dcf770341241aa09340653a1562ca816", "sha256": "c6da1af59841e6d43255d386a2c4bfb59c0a3b262bdb24325cc969d211be6070" }, "downloads": -1, "filename": "aiohttp-3.7.2.tar.gz", "has_sig": false, "md5_digest": "dcf770341241aa09340653a1562ca816", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1111049, "upload_time": "2020-10-27T08:24:26", "upload_time_iso_8601": "2020-10-27T08:24:26.662786Z", "url": "https://files.pythonhosted.org/packages/4f/b7/a382cf8440d9edfdf2c0125a1b4ad6954caf1d786225b2dede99b60f5ab2/aiohttp-3.7.2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.7.3": [ { "comment_text": "", "digests": { "md5": "2e45c123b5bb2b7acb8f16e1aab684d4", "sha256": "328b552513d4f95b0a2eea4c8573e112866107227661834652a8984766aa7656" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp36-cp36m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "2e45c123b5bb2b7acb8f16e1aab684d4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 646891, "upload_time": "2020-11-18T17:46:55", "upload_time_iso_8601": "2020-11-18T17:46:55.497080Z", "url": "https://files.pythonhosted.org/packages/d0/88/d74771dc1f5bfa03c8b61921a2723a30681b165c09d8ddb8e65c55d51377/aiohttp-3.7.3-cp36-cp36m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8ccf061ba9ed8fb4b06bbe2daa56b563", "sha256": "c733ef3bdcfe52a1a75564389bad4064352274036e7e234730526d155f04d914" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8ccf061ba9ed8fb4b06bbe2daa56b563", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1295489, "upload_time": "2020-11-18T17:46:57", "upload_time_iso_8601": "2020-11-18T17:46:57.358388Z", "url": "https://files.pythonhosted.org/packages/ce/b9/1ad0f51406e5d5143dcc1200de15b3bafde85d10d499324d5e03237835cc/aiohttp-3.7.3-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5151d1c394b858770dff13a4eb27aa93", "sha256": "2858b2504c8697beb9357be01dc47ef86438cc1cb36ecb6991796d19475faa3e" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp36-cp36m-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "5151d1c394b858770dff13a4eb27aa93", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1326320, "upload_time": "2020-11-18T17:46:59", "upload_time_iso_8601": "2020-11-18T17:46:59.411160Z", "url": "https://files.pythonhosted.org/packages/50/47/1fe5cb941c11b68f809451250ad52a60aac1f601677f70a5c1af7666e5dc/aiohttp-3.7.3-cp36-cp36m-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "be5c9db65acc904b5dd185ea6c882055", "sha256": "d2cfac21e31e841d60dc28c0ec7d4ec47a35c608cb8906435d47ef83ffb22150" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp36-cp36m-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "be5c9db65acc904b5dd185ea6c882055", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1295490, "upload_time": "2020-11-18T17:47:01", "upload_time_iso_8601": "2020-11-18T17:47:01.413750Z", "url": "https://files.pythonhosted.org/packages/c4/39/f6207edac8c31bd797a89e9b4a33f714385f09e65b05cab5e32d916805e7/aiohttp-3.7.3-cp36-cp36m-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "37d690603770f38e20cc77169bde0184", "sha256": "3228b7a51e3ed533f5472f54f70fd0b0a64c48dc1649a0f0e809bec312934d7a" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp36-cp36m-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "37d690603770f38e20cc77169bde0184", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1351267, "upload_time": "2020-11-18T17:47:03", "upload_time_iso_8601": "2020-11-18T17:47:03.021787Z", "url": "https://files.pythonhosted.org/packages/c4/e7/430f8153142d783bcac8e2ff77082f6087c3d960e3e761b17caed7005359/aiohttp-3.7.3-cp36-cp36m-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c68ba8ddcd1c92d0201e264743546b00", "sha256": "dcc119db14757b0c7bce64042158307b9b1c76471e655751a61b57f5a0e4d78e" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp36-cp36m-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "c68ba8ddcd1c92d0201e264743546b00", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1404652, "upload_time": "2020-11-18T17:47:04", "upload_time_iso_8601": "2020-11-18T17:47:04.580500Z", "url": "https://files.pythonhosted.org/packages/6c/c4/bea6cd4b2e1bd9de7b0b7abefd170b3f28539093d25ed3384d39e0cc988e/aiohttp-3.7.3-cp36-cp36m-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "575e45d3be21c1a2f90c898146f7509f", "sha256": "7d9b42127a6c0bdcc25c3dcf252bb3ddc70454fac593b1b6933ae091396deb13" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "575e45d3be21c1a2f90c898146f7509f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1318694, "upload_time": "2020-11-18T17:47:06", "upload_time_iso_8601": "2020-11-18T17:47:06.206149Z", "url": "https://files.pythonhosted.org/packages/ad/e6/d4b6235d776c9b33f853e603efede5aac5a34f71ca9d3877adb30492eb4e/aiohttp-3.7.3-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d0452ec357d5538a148b51dcde637bd", "sha256": "df48a623c58180874d7407b4d9ec06a19b84ed47f60a3884345b1a5099c1818b" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "8d0452ec357d5538a148b51dcde637bd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 605269, "upload_time": "2020-11-18T17:47:07", "upload_time_iso_8601": "2020-11-18T17:47:07.639873Z", "url": "https://files.pythonhosted.org/packages/58/18/ed8a1aca97f6d4153649a00c66cbe2c5c0dcb60dca0f68bd9d2ce665ae05/aiohttp-3.7.3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1a27ab3a4cd81562430a6b2b5ed3ab8", "sha256": "0b795072bb1bf87b8620120a6373a3c61bfcb8da7e5c2377f4bb23ff4f0b62c9" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "f1a27ab3a4cd81562430a6b2b5ed3ab8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 629425, "upload_time": "2020-11-18T17:47:09", "upload_time_iso_8601": "2020-11-18T17:47:09.436076Z", "url": "https://files.pythonhosted.org/packages/ef/02/fb63e71c77391a7e4afa37c3c3df1e9b9537bdefb558b4ebb54d654f8b72/aiohttp-3.7.3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "10015bfb62f6b26c4287b91f52ff9e24", "sha256": "0d438c8ca703b1b714e82ed5b7a4412c82577040dadff479c08405e2a715564f" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp37-cp37m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "10015bfb62f6b26c4287b91f52ff9e24", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 643983, "upload_time": "2020-11-18T17:47:11", "upload_time_iso_8601": "2020-11-18T17:47:11.120787Z", "url": "https://files.pythonhosted.org/packages/88/1c/e218f60640e3eaad172f5e728713752401ee345c516f8b783b9e4d20ef44/aiohttp-3.7.3-cp37-cp37m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ff991eab31d94d080f4daa86da6916f", "sha256": "8389d6044ee4e2037dca83e3f6994738550f6ee8cfb746762283fad9b932868f" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3ff991eab31d94d080f4daa86da6916f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1302948, "upload_time": "2020-11-18T17:47:12", "upload_time_iso_8601": "2020-11-18T17:47:12.774127Z", "url": "https://files.pythonhosted.org/packages/50/98/9e327c15495887510319a49d311503c41aeb9b38557fac1f5af38207ce67/aiohttp-3.7.3-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "906895a7162b270418cd37f920fae40a", "sha256": "3ea8c252d8df5e9166bcf3d9edced2af132f4ead8ac422eac723c5781063709a" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp37-cp37m-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "906895a7162b270418cd37f920fae40a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1334002, "upload_time": "2020-11-18T17:47:14", "upload_time_iso_8601": "2020-11-18T17:47:14.829412Z", "url": "https://files.pythonhosted.org/packages/ed/28/782642f2d194a9ca55668fd67c1e6f66356c7e72530026ce379c1e2c9c38/aiohttp-3.7.3-cp37-cp37m-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "697828efa41e091ab821b4bc16d8c4a6", "sha256": "78e2f18a82b88cbc37d22365cf8d2b879a492faedb3f2975adb4ed8dfe994d3a" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp37-cp37m-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "697828efa41e091ab821b4bc16d8c4a6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1302949, "upload_time": "2020-11-18T17:47:16", "upload_time_iso_8601": "2020-11-18T17:47:16.717796Z", "url": "https://files.pythonhosted.org/packages/d9/44/6385884e390f6caf229934bfd4ceb10d983e78453314a699da151e06bf30/aiohttp-3.7.3-cp37-cp37m-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4b6338b47b85bbbdaa7ec009ff8f2b47", "sha256": "df3a7b258cc230a65245167a202dd07320a5af05f3d41da1488ba0fa05bc9347" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp37-cp37m-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "4b6338b47b85bbbdaa7ec009ff8f2b47", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1358578, "upload_time": "2020-11-18T17:47:18", "upload_time_iso_8601": "2020-11-18T17:47:18.710226Z", "url": "https://files.pythonhosted.org/packages/b4/b2/d0285038956e9b4c50ad326a06cfc22ea8a73b14d48abbc2b359486ed2a8/aiohttp-3.7.3-cp37-cp37m-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d5085238dd0ff04d1fc97d61c1b9e0dd", "sha256": "f326b3c1bbfda5b9308252ee0dcb30b612ee92b0e105d4abec70335fab5b1245" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp37-cp37m-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "d5085238dd0ff04d1fc97d61c1b9e0dd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1411200, "upload_time": "2020-11-18T17:47:20", "upload_time_iso_8601": "2020-11-18T17:47:20.740209Z", "url": "https://files.pythonhosted.org/packages/8d/6c/d0c51e18cfc7bfac959105ef6d54380904a46c5e8460fdd8f00f28dfac27/aiohttp-3.7.3-cp37-cp37m-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "047759a270cd6f834fe66cff9aa9bf72", "sha256": "5e479df4b2d0f8f02133b7e4430098699450e1b2a826438af6bec9a400530957" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "047759a270cd6f834fe66cff9aa9bf72", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1327243, "upload_time": "2020-11-18T17:47:23", "upload_time_iso_8601": "2020-11-18T17:47:23.385169Z", "url": "https://files.pythonhosted.org/packages/1a/a2/4eea05bac4b04be79d23159c25ddd13b5fd48c1f844fb3a6427cfadbfffd/aiohttp-3.7.3-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "93917165cc4c260b027774bd520228e7", "sha256": "6d42debaf55450643146fabe4b6817bb2a55b23698b0434107e892a43117285e" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "93917165cc4c260b027774bd520228e7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 605547, "upload_time": "2020-11-18T17:47:24", "upload_time_iso_8601": "2020-11-18T17:47:24.940898Z", "url": "https://files.pythonhosted.org/packages/7c/db/e4c2290c7d77b88bac2cd84e642fecae3ebf906dcff46cd23d9031274c6f/aiohttp-3.7.3-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "643829926e9a65c9fb20eaaaca3fb928", "sha256": "c9c58b0b84055d8bc27b7df5a9d141df4ee6ff59821f922dd73155861282f6a3" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "643829926e9a65c9fb20eaaaca3fb928", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 629935, "upload_time": "2020-11-18T17:47:26", "upload_time_iso_8601": "2020-11-18T17:47:26.338791Z", "url": "https://files.pythonhosted.org/packages/68/4a/221ace4d2283cc3d3b15e9621bb040d239dfea1b3da798ca33a88f8acfc8/aiohttp-3.7.3-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9b9f72b97d1a2c95e56d5820111da80", "sha256": "f411cb22115cb15452d099fec0ee636b06cf81bfb40ed9c02d30c8dc2bc2e3d1" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp38-cp38-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "d9b9f72b97d1a2c95e56d5820111da80", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 647678, "upload_time": "2020-11-18T17:47:27", "upload_time_iso_8601": "2020-11-18T17:47:27.970882Z", "url": "https://files.pythonhosted.org/packages/68/78/dde17bd86ccbe698e3a1a76697eb9b52fbf0e5b13b703912addee4788c2f/aiohttp-3.7.3-cp38-cp38-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba224fd111d9ccbf6c3f99ca3ec15b23", "sha256": "c1e0920909d916d3375c7a1fdb0b1c78e46170e8bb42792312b6eb6676b2f87f" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ba224fd111d9ccbf6c3f99ca3ec15b23", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1429492, "upload_time": "2020-11-18T17:47:29", "upload_time_iso_8601": "2020-11-18T17:47:29.912979Z", "url": "https://files.pythonhosted.org/packages/25/dc/3e1de32d3222a0b678d162e7f801e94c6bf9cc9aab80f2b0898d90c949b9/aiohttp-3.7.3-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "739acb08ff375a9d172862dd72e00d6f", "sha256": "59d11674964b74a81b149d4ceaff2b674b3b0e4d0f10f0be1533e49c4a28408b" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp38-cp38-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "739acb08ff375a9d172862dd72e00d6f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1469649, "upload_time": "2020-11-18T17:47:31", "upload_time_iso_8601": "2020-11-18T17:47:31.873297Z", "url": "https://files.pythonhosted.org/packages/78/f1/ece62e40d2a78e50e293b598b44014efea97afa2dc51d674368bcc331817/aiohttp-3.7.3-cp38-cp38-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "54398ed4848f5e2048eb72d78eb14a2b", "sha256": "41608c0acbe0899c852281978492f9ce2c6fbfaf60aff0cefc54a7c4516b822c" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp38-cp38-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "54398ed4848f5e2048eb72d78eb14a2b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1429495, "upload_time": "2020-11-18T17:47:34", "upload_time_iso_8601": "2020-11-18T17:47:34.206973Z", "url": "https://files.pythonhosted.org/packages/ef/f4/b9fa633fa9eed64f2cd6ee6527681c5b1f076029748d0ec27ab93af13977/aiohttp-3.7.3-cp38-cp38-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e40327c1b5909f30c4f57371da495f97", "sha256": "16a3cb5df5c56f696234ea9e65e227d1ebe9c18aa774d36ff42f532139066a5f" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp38-cp38-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "e40327c1b5909f30c4f57371da495f97", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1495886, "upload_time": "2020-11-18T17:47:36", "upload_time_iso_8601": "2020-11-18T17:47:36.154656Z", "url": "https://files.pythonhosted.org/packages/f0/cc/10158afa323de163dbd6ead1474ceab6c8922825fa108ef80b64dd8f03ea/aiohttp-3.7.3-cp38-cp38-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8396dc8ab3722b21f4389775579fbb7b", "sha256": "6ccc43d68b81c424e46192a778f97da94ee0630337c9bbe5b2ecc9b0c1c59001" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp38-cp38-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "8396dc8ab3722b21f4389775579fbb7b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1548161, "upload_time": "2020-11-18T17:47:38", "upload_time_iso_8601": "2020-11-18T17:47:38.288397Z", "url": "https://files.pythonhosted.org/packages/3c/4f/629aee11c005408bc85a2cb997e82e13220cd177a533df52618ed68a7ea3/aiohttp-3.7.3-cp38-cp38-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d7295247f41292869fb608a759e878b7", "sha256": "d03abec50df423b026a5aa09656bd9d37f1e6a49271f123f31f9b8aed5dc3ea3" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "d7295247f41292869fb608a759e878b7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1463279, "upload_time": "2020-11-18T17:47:40", "upload_time_iso_8601": "2020-11-18T17:47:40.027346Z", "url": "https://files.pythonhosted.org/packages/75/a2/4dd57056be3f166e32b6faf43483607cb049fa59580c7741a4dce73f0a85/aiohttp-3.7.3-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e07ea7ac05e85045c9d78b0cc81cf0f2", "sha256": "39f4b0a6ae22a1c567cb0630c30dd082481f95c13ca528dc501a7766b9c718c0" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "e07ea7ac05e85045c9d78b0cc81cf0f2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 609490, "upload_time": "2020-11-18T17:47:41", "upload_time_iso_8601": "2020-11-18T17:47:41.579271Z", "url": "https://files.pythonhosted.org/packages/47/f9/dead51fd5eca85ebff3d359ede2ec2b547d8cfdfe12e54be8ce9446fd38b/aiohttp-3.7.3-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "efbc1e94443b211af89831ee8483df96", "sha256": "c68fdf21c6f3573ae19c7ee65f9ff185649a060c9a06535e9c3a0ee0bbac9235" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "efbc1e94443b211af89831ee8483df96", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 634664, "upload_time": "2020-11-18T17:47:42", "upload_time_iso_8601": "2020-11-18T17:47:42.965134Z", "url": "https://files.pythonhosted.org/packages/32/cd/2294c0b1624d79764c2bfce2c0feb7c65a5613b671924f7635664bec65fd/aiohttp-3.7.3-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eaa5beff926f5082b8411c55d2f92d33", "sha256": "710376bf67d8ff4500a31d0c207b8941ff4fba5de6890a701d71680474fe2a60" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp39-cp39-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "eaa5beff926f5082b8411c55d2f92d33", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 648841, "upload_time": "2020-11-18T17:47:44", "upload_time_iso_8601": "2020-11-18T17:47:44.421006Z", "url": "https://files.pythonhosted.org/packages/1a/dd/2fb82c1aa9e020175d129ed3b887c3ada5f9bf8f5af042a9888857b590df/aiohttp-3.7.3-cp39-cp39-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19722b040310d24677b32ec4310043cb", "sha256": "2406dc1dda01c7f6060ab586e4601f18affb7a6b965c50a8c90ff07569cf782a" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "19722b040310d24677b32ec4310043cb", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1374320, "upload_time": "2020-11-18T17:47:46", "upload_time_iso_8601": "2020-11-18T17:47:46.011969Z", "url": "https://files.pythonhosted.org/packages/d0/ed/c3a52c2d44271016a8c2b6549bf2f29f37eff5a4e5ba5160698b1b3a3d2c/aiohttp-3.7.3-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a38ae41f6ccb30d93f0a9e475a7d6c6", "sha256": "2a7b7640167ab536c3cb90cfc3977c7094f1c5890d7eeede8b273c175c3910fd" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp39-cp39-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "5a38ae41f6ccb30d93f0a9e475a7d6c6", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1418438, "upload_time": "2020-11-18T17:47:47", "upload_time_iso_8601": "2020-11-18T17:47:47.603404Z", "url": "https://files.pythonhosted.org/packages/2f/d6/44a59928513245d73582efbed3a07224049d1febfe408dca6cf464e861d1/aiohttp-3.7.3-cp39-cp39-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7cc223898ea7c398f2c304a7528804c9", "sha256": "684850fb1e3e55c9220aad007f8386d8e3e477c4ec9211ae54d968ecdca8c6f9" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp39-cp39-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "7cc223898ea7c398f2c304a7528804c9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1374323, "upload_time": "2020-11-18T17:47:49", "upload_time_iso_8601": "2020-11-18T17:47:49.913707Z", "url": "https://files.pythonhosted.org/packages/4c/b9/0781b8cf678896f98976a18c2fcfcb13f5fde82d80c244ba7983805647f0/aiohttp-3.7.3-cp39-cp39-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c51df51d9fc455c4a55d41064640963e", "sha256": "1edfd82a98c5161497bbb111b2b70c0813102ad7e0aa81cbeb34e64c93863005" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp39-cp39-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "c51df51d9fc455c4a55d41064640963e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1441216, "upload_time": "2020-11-18T17:47:51", "upload_time_iso_8601": "2020-11-18T17:47:51.437142Z", "url": "https://files.pythonhosted.org/packages/b1/2b/5edfd86b33fb463feae70433b5f8a75965300145e014c91fd99042dd6a5b/aiohttp-3.7.3-cp39-cp39-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cd1fa5459c325783531d9d7002f91059", "sha256": "77149002d9386fae303a4a162e6bce75cc2161347ad2ba06c2f0182561875d45" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp39-cp39-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "cd1fa5459c325783531d9d7002f91059", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1497288, "upload_time": "2020-11-18T17:47:52", "upload_time_iso_8601": "2020-11-18T17:47:52.921831Z", "url": "https://files.pythonhosted.org/packages/8e/fc/2dd6f17be8d7bdd3be7150cf57193e0c4e6c0d8cef1e99c225b9cfc69f5e/aiohttp-3.7.3-cp39-cp39-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cd116a396431a53b40866c6154930dae", "sha256": "756ae7efddd68d4ea7d89c636b703e14a0c686688d42f588b90778a3c2fc0564" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "cd116a396431a53b40866c6154930dae", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1409810, "upload_time": "2020-11-18T17:47:54", "upload_time_iso_8601": "2020-11-18T17:47:54.634230Z", "url": "https://files.pythonhosted.org/packages/07/d8/85c6b0be6e10c4219931498936edc22b11185c260a4af408c55885b8d7bb/aiohttp-3.7.3-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "258441b118bf9b2bbc4cb5080d0642c9", "sha256": "3b0036c978cbcc4a4512278e98e3e6d9e6b834dc973206162eddf98b586ef1c6" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "258441b118bf9b2bbc4cb5080d0642c9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 608830, "upload_time": "2020-11-18T17:47:56", "upload_time_iso_8601": "2020-11-18T17:47:56.426880Z", "url": "https://files.pythonhosted.org/packages/72/6a/8c0de9f76dd601cca9336e450598831dd2c45dccd945579d8938f7cfda9b/aiohttp-3.7.3-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "72f40c3f537db283d10e91109b849262", "sha256": "e1b95972a0ae3f248a899cdbac92ba2e01d731225f566569311043ce2226f5e7" }, "downloads": -1, "filename": "aiohttp-3.7.3-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "72f40c3f537db283d10e91109b849262", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 633801, "upload_time": "2020-11-18T17:47:59", "upload_time_iso_8601": "2020-11-18T17:47:59.040919Z", "url": "https://files.pythonhosted.org/packages/9c/6e/17da70ac3a5fa17fec39c877376461066d2914d9a71167c7655c0fde24c9/aiohttp-3.7.3-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a66039c12f33dd093a2c260f5c459632", "sha256": "9c1a81af067e72261c9cbe33ea792893e83bc6aa987bfbd6fdc1e5e7b22777c4" }, "downloads": -1, "filename": "aiohttp-3.7.3.tar.gz", "has_sig": false, "md5_digest": "a66039c12f33dd093a2c260f5c459632", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1113127, "upload_time": "2020-11-18T17:48:01", "upload_time_iso_8601": "2020-11-18T17:48:01.090675Z", "url": "https://files.pythonhosted.org/packages/68/96/40a765d7d68028c5a6d169b2747ea3f4828ec91a358a63818d468380521c/aiohttp-3.7.3.tar.gz", "yanked": false, "yanked_reason": null } ], "3.7.4": [ { "comment_text": "", "digests": { "md5": "1f6cff377d74fbde87496198966900b7", "sha256": "6c8200abc9dc5f27203986100579fc19ccad7a832c07d2bc151ce4ff17190076" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp36-cp36m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "1f6cff377d74fbde87496198966900b7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 647516, "upload_time": "2021-02-25T17:50:09", "upload_time_iso_8601": "2021-02-25T17:50:09.034199Z", "url": "https://files.pythonhosted.org/packages/6c/a5/d1bc300d491ab1f58fbf0291586fc501a81c10518d6c4eadd119a1724f70/aiohttp-3.7.4-cp36-cp36m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c47e0e656ef64bd4c854f9a46338195", "sha256": "dd7936f2a6daa861143e376b3a1fb56e9b802f4980923594edd9ca5670974895" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4c47e0e656ef64bd4c854f9a46338195", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1296128, "upload_time": "2021-02-25T17:50:11", "upload_time_iso_8601": "2021-02-25T17:50:11.207768Z", "url": "https://files.pythonhosted.org/packages/5f/a0/fc385b17d75e36008b0a88d4bca88074ee835e192da9a98fcdc007f2eea1/aiohttp-3.7.4-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e790bc2bf4a95fd0afe1f93c5bebe7f", "sha256": "bc3d14bf71a3fb94e5acf5bbf67331ab335467129af6416a437bd6024e4f743d" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp36-cp36m-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "4e790bc2bf4a95fd0afe1f93c5bebe7f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1326966, "upload_time": "2021-02-25T17:50:13", "upload_time_iso_8601": "2021-02-25T17:50:13.108402Z", "url": "https://files.pythonhosted.org/packages/97/ed/c5e4b0768e7097f949637e54fa978f53302488493c1751c81e913e55e2c4/aiohttp-3.7.4-cp36-cp36m-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f3bcec7c35e1a7497f2eadaee4b53679", "sha256": "8ec1a38074f68d66ccb467ed9a673a726bb397142c273f90d4ba954666e87d54" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp36-cp36m-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "f3bcec7c35e1a7497f2eadaee4b53679", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1296132, "upload_time": "2021-02-25T17:50:15", "upload_time_iso_8601": "2021-02-25T17:50:15.418646Z", "url": "https://files.pythonhosted.org/packages/36/fc/e3886d9f28cac8ce1e66c733fdcadc5f4e297bb1b48aaa030516ba8e9954/aiohttp-3.7.4-cp36-cp36m-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "26b61965d645c096dcc17bf94ac89e85", "sha256": "b84ad94868e1e6a5e30d30ec419956042815dfaea1b1df1cef623e4564c374d9" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp36-cp36m-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "26b61965d645c096dcc17bf94ac89e85", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1351911, "upload_time": "2021-02-25T17:50:17", "upload_time_iso_8601": "2021-02-25T17:50:17.273744Z", "url": "https://files.pythonhosted.org/packages/9c/c0/f56fa196af4edc77ed9675ea4d81ea4c9123ce629b4d1647d614679852d6/aiohttp-3.7.4-cp36-cp36m-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1fb2da09f83a4b4afb025ef87ac12e17", "sha256": "d5d102e945ecca93bcd9801a7bb2fa703e37ad188a2f81b1e65e4abe4b51b00c" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp36-cp36m-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "1fb2da09f83a4b4afb025ef87ac12e17", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1405292, "upload_time": "2021-02-25T17:50:19", "upload_time_iso_8601": "2021-02-25T17:50:19.658645Z", "url": "https://files.pythonhosted.org/packages/8a/f1/f616c2c064db0a613407ae967c3d7565ceef8bef31f1faa70b23fc29c424/aiohttp-3.7.4-cp36-cp36m-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "76e9902470d54788ba6e8b2d95167f14", "sha256": "c2a80fd9a8d7e41b4e38ea9fe149deed0d6aaede255c497e66b8213274d6d61b" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "76e9902470d54788ba6e8b2d95167f14", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1319337, "upload_time": "2021-02-25T17:50:21", "upload_time_iso_8601": "2021-02-25T17:50:21.560248Z", "url": "https://files.pythonhosted.org/packages/e5/25/8fa8b4060e83b4300ebdd99d74039a59522d6f8895611cdef9e007bfbd46/aiohttp-3.7.4-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a0ce96b84e513d42608902532cae56ab", "sha256": "481d4b96969fbfdcc3ff35eea5305d8565a8300410d3d269ccac69e7256b1329" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "a0ce96b84e513d42608902532cae56ab", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 605895, "upload_time": "2021-02-25T17:50:23", "upload_time_iso_8601": "2021-02-25T17:50:23.388408Z", "url": "https://files.pythonhosted.org/packages/ab/df/68417d35d167a8044eb99ea43f3e2c9b7db41b4ed3e9b51f35d2834c0cdc/aiohttp-3.7.4-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1b5423014b3f9a378484cc911ef4b4c1", "sha256": "16d0683ef8a6d803207f02b899c928223eb219111bd52420ef3d7a8aa76227b6" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "1b5423014b3f9a378484cc911ef4b4c1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 630026, "upload_time": "2021-02-25T17:50:25", "upload_time_iso_8601": "2021-02-25T17:50:25.103279Z", "url": "https://files.pythonhosted.org/packages/55/d3/27786138a092b0c2efe6a3751e564878a60ef333b3438a5bcce4c56a0596/aiohttp-3.7.4-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b61113264c49bc0b74a317f4ddfd4ef6", "sha256": "eab51036cac2da8a50d7ff0ea30be47750547c9aa1aa2cf1a1b710a1827e7dbe" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp37-cp37m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "b61113264c49bc0b74a317f4ddfd4ef6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 644606, "upload_time": "2021-02-25T17:50:26", "upload_time_iso_8601": "2021-02-25T17:50:26.789626Z", "url": "https://files.pythonhosted.org/packages/66/03/1635f2395076c15ae2c0826fbd21c70498d2f10ba650726fae900b6e990f/aiohttp-3.7.4-cp37-cp37m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d0c41c90e2bbf96572f2e33aa24c6422", "sha256": "feb24ff1226beeb056e247cf2e24bba5232519efb5645121c4aea5b6ad74c1f2" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d0c41c90e2bbf96572f2e33aa24c6422", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1303590, "upload_time": "2021-02-25T17:50:28", "upload_time_iso_8601": "2021-02-25T17:50:28.465613Z", "url": "https://files.pythonhosted.org/packages/38/60/5dc8dc9838477d5f562f1a085214c14caae2e0ca72dfda794e90ca70f0e3/aiohttp-3.7.4-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68882f97befa5c0a374d42a19c3297c3", "sha256": "119feb2bd551e58d83d1b38bfa4cb921af8ddedec9fad7183132db334c3133e0" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp37-cp37m-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "68882f97befa5c0a374d42a19c3297c3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1334649, "upload_time": "2021-02-25T17:50:30", "upload_time_iso_8601": "2021-02-25T17:50:30.271260Z", "url": "https://files.pythonhosted.org/packages/62/4a/9754351d7d77ef3be31451886c073d962d1522e0e8ef103e404751be1bcf/aiohttp-3.7.4-cp37-cp37m-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0657804fac41c07bc1b04795cf46f0eb", "sha256": "6ca56bdfaf825f4439e9e3673775e1032d8b6ea63b8953d3812c71bd6a8b81de" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp37-cp37m-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "0657804fac41c07bc1b04795cf46f0eb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1303594, "upload_time": "2021-02-25T17:50:32", "upload_time_iso_8601": "2021-02-25T17:50:32.110076Z", "url": "https://files.pythonhosted.org/packages/68/76/839ecdc91bb5ba9992b787430dbdfc8c43325436549a948217b7763cf4ec/aiohttp-3.7.4-cp37-cp37m-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "585e5888a37ea00cb9407df7b8931191", "sha256": "5563ad7fde451b1986d42b9bb9140e2599ecf4f8e42241f6da0d3d624b776f40" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp37-cp37m-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "585e5888a37ea00cb9407df7b8931191", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1359223, "upload_time": "2021-02-25T17:50:33", "upload_time_iso_8601": "2021-02-25T17:50:33.638790Z", "url": "https://files.pythonhosted.org/packages/48/4f/b731d7c3410961936b074d2593cb7a276d37bbb686fada2dcfad14fb7698/aiohttp-3.7.4-cp37-cp37m-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "85afbf85fa270b72da2a8f1320aa2370", "sha256": "62bc216eafac3204877241569209d9ba6226185aa6d561c19159f2e1cbb6abfb" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp37-cp37m-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "85afbf85fa270b72da2a8f1320aa2370", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1411848, "upload_time": "2021-02-25T17:50:35", "upload_time_iso_8601": "2021-02-25T17:50:35.256306Z", "url": "https://files.pythonhosted.org/packages/3c/f9/c36741a23e52bd3fab88aba7c7c611a47c8eb0dbd6afd4f7e8a732f3af8f/aiohttp-3.7.4-cp37-cp37m-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "26fda76cd40d71200f6d269511e2c9cd", "sha256": "f4496d8d04da2e98cc9133e238ccebf6a13ef39a93da2e87146c8c8ac9768242" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "26fda76cd40d71200f6d269511e2c9cd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1327884, "upload_time": "2021-02-25T17:50:36", "upload_time_iso_8601": "2021-02-25T17:50:36.960660Z", "url": "https://files.pythonhosted.org/packages/5b/a6/d36302eba284f4f427dc288f6b3ecd7f89d739cfca206b80311d3158f6d9/aiohttp-3.7.4-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d1300908380bac40e5b253fc6b4bca2", "sha256": "2ffea7904e70350da429568113ae422c88d2234ae776519549513c8f217f58a9" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "2d1300908380bac40e5b253fc6b4bca2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 606197, "upload_time": "2021-02-25T17:50:38", "upload_time_iso_8601": "2021-02-25T17:50:38.532167Z", "url": "https://files.pythonhosted.org/packages/fe/71/9777412a73829786139a35d9db9580e6ca094bd28401ccc4b441993e792f/aiohttp-3.7.4-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a30011864c2b7d84a67bf5705065bcde", "sha256": "5e91e927003d1ed9283dee9abcb989334fc8e72cf89ebe94dc3e07e3ff0b11e9" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "a30011864c2b7d84a67bf5705065bcde", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 630570, "upload_time": "2021-02-25T17:50:40", "upload_time_iso_8601": "2021-02-25T17:50:40.635844Z", "url": "https://files.pythonhosted.org/packages/16/8c/41882c0671b842c9d157c5876348b3e9733910f3cbd20315723ab0498529/aiohttp-3.7.4-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "978e39e879817765020a73c5d662b9a9", "sha256": "4c1bdbfdd231a20eee3e56bd0ac1cd88c4ff41b64ab679ed65b75c9c74b6c5c2" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp38-cp38-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "978e39e879817765020a73c5d662b9a9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 648304, "upload_time": "2021-02-25T17:50:42", "upload_time_iso_8601": "2021-02-25T17:50:42.234233Z", "url": "https://files.pythonhosted.org/packages/e7/47/c51482f55465e7e6ee1d9eb8e43324a33246347ea5059ccb8879f01e9ee2/aiohttp-3.7.4-cp38-cp38-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe8d53bfb9ebe065d5fa1e4b92ac3ef7", "sha256": "71680321a8a7176a58dfbc230789790639db78dad61a6e120b39f314f43f1907" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "fe8d53bfb9ebe065d5fa1e4b92ac3ef7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1430133, "upload_time": "2021-02-25T17:50:44", "upload_time_iso_8601": "2021-02-25T17:50:44.033020Z", "url": "https://files.pythonhosted.org/packages/be/9e/45bc01c4c08a4c3d40445f34e8f22306483f927ab8e96f1eafa5ba30178c/aiohttp-3.7.4-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "038396f59bf6db8a92c2538aa7aea6f4", "sha256": "7dbd087ff2f4046b9b37ba28ed73f15fd0bc9f4fdc8ef6781913da7f808d9536" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp38-cp38-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "038396f59bf6db8a92c2538aa7aea6f4", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1470296, "upload_time": "2021-02-25T17:50:45", "upload_time_iso_8601": "2021-02-25T17:50:45.737425Z", "url": "https://files.pythonhosted.org/packages/dc/4a/e999c0a36a6318b2b1ea30bc3434c29f0b6c96f7880957f9a99004fc8bb5/aiohttp-3.7.4-cp38-cp38-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6e6fad325838cbbce4a90bf1bb193e66", "sha256": "dee68ec462ff10c1d836c0ea2642116aba6151c6880b688e56b4c0246770f297" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp38-cp38-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "6e6fad325838cbbce4a90bf1bb193e66", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1430136, "upload_time": "2021-02-25T17:50:47", "upload_time_iso_8601": "2021-02-25T17:50:47.585945Z", "url": "https://files.pythonhosted.org/packages/28/6c/4ab30a9e50d8047ca27845dc01f21c9f5dd8a01f23b06f37db1cb329c3c6/aiohttp-3.7.4-cp38-cp38-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc12c419fd132f574f83b65a470e9053", "sha256": "99c5a5bf7135607959441b7d720d96c8e5c46a1f96e9d6d4c9498be8d5f24212" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp38-cp38-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "fc12c419fd132f574f83b65a470e9053", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1496524, "upload_time": "2021-02-25T17:50:49", "upload_time_iso_8601": "2021-02-25T17:50:49.322900Z", "url": "https://files.pythonhosted.org/packages/dd/4b/28052bb4ec921347a04fa95ec468b82869d7d77a187d71d2cd92f64cd6cd/aiohttp-3.7.4-cp38-cp38-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9782f749a3f1f906c24337c8005d9d09", "sha256": "5dde6d24bacac480be03f4f864e9a67faac5032e28841b00533cd168ab39cad9" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp38-cp38-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "9782f749a3f1f906c24337c8005d9d09", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1548805, "upload_time": "2021-02-25T17:50:50", "upload_time_iso_8601": "2021-02-25T17:50:50.994880Z", "url": "https://files.pythonhosted.org/packages/fd/67/aa2984d471aa29f9a2d27cf67c7eb6ce69346c2de7fa4cfc32b1a85cc787/aiohttp-3.7.4-cp38-cp38-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "871eab8c11d0280a4497ae8727dc4118", "sha256": "418597633b5cd9639e514b1d748f358832c08cd5d9ef0870026535bd5eaefdd0" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "871eab8c11d0280a4497ae8727dc4118", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1463929, "upload_time": "2021-02-25T17:50:52", "upload_time_iso_8601": "2021-02-25T17:50:52.840509Z", "url": "https://files.pythonhosted.org/packages/3e/3d/74f069b633289dd015eaacb71eeb9705990e13f1dd1d76175fce5ad6cd94/aiohttp-3.7.4-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b24df3b8ebfbed9d947d607015221ef1", "sha256": "e76e78863a4eaec3aee5722d85d04dcbd9844bc6cd3bfa6aa880ff46ad16bfcb" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "b24df3b8ebfbed9d947d607015221ef1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 610166, "upload_time": "2021-02-25T17:50:54", "upload_time_iso_8601": "2021-02-25T17:50:54.667124Z", "url": "https://files.pythonhosted.org/packages/25/82/83fdc9c9e6cc58af0dbef5f27b6258805c9f66e427feee3b76e0f8cd0124/aiohttp-3.7.4-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ae0123831b5a5de0b36cf4e5dfc52b94", "sha256": "950b7ef08b2afdab2488ee2edaff92a03ca500a48f1e1aaa5900e73d6cf992bc" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "ae0123831b5a5de0b36cf4e5dfc52b94", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 635315, "upload_time": "2021-02-25T17:50:57", "upload_time_iso_8601": "2021-02-25T17:50:57.317012Z", "url": "https://files.pythonhosted.org/packages/87/9d/c4889810df32becc60d30bb6d78714349db54b33ecf94564291e26c171d3/aiohttp-3.7.4-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6e3e24a056f82f325a1aec34684bae3d", "sha256": "2eb3efe243e0f4ecbb654b08444ae6ffab37ac0ef8f69d3a2ffb958905379daf" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp39-cp39-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "6e3e24a056f82f325a1aec34684bae3d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 649467, "upload_time": "2021-02-25T17:50:59", "upload_time_iso_8601": "2021-02-25T17:50:59.318206Z", "url": "https://files.pythonhosted.org/packages/a7/35/f13621cdf78797f2dfa34e3c92d93e4838bd6d355f0521512d24c3f32f9f/aiohttp-3.7.4-cp39-cp39-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e348ede3dccb4cbbfdddfd22a0a1347", "sha256": "822bd4fd21abaa7b28d65fc9871ecabaddc42767884a626317ef5b75c20e8a2d" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7e348ede3dccb4cbbfdddfd22a0a1347", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1374977, "upload_time": "2021-02-25T17:51:01", "upload_time_iso_8601": "2021-02-25T17:51:01.322210Z", "url": "https://files.pythonhosted.org/packages/89/29/b67977e3181f1b0cf4dd5fb57ade7bbe7917d2248bab456440932d0a83a0/aiohttp-3.7.4-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c8c3a224c8cd7bc13b26c6ab0918e8c9", "sha256": "58c62152c4c8731a3152e7e650b29ace18304d086cb5552d317a54ff2749d32a" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp39-cp39-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "c8c3a224c8cd7bc13b26c6ab0918e8c9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1419069, "upload_time": "2021-02-25T17:51:03", "upload_time_iso_8601": "2021-02-25T17:51:03.348541Z", "url": "https://files.pythonhosted.org/packages/1c/5a/a25ed130426369824c2360b1ec0e59dd2b97efb7fba2c6a39a1f2e396d98/aiohttp-3.7.4-cp39-cp39-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "514103960efd6815108bea7d4c44bb40", "sha256": "7c7820099e8b3171e54e7eedc33e9450afe7cd08172632d32128bd527f8cb77d" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp39-cp39-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "514103960efd6815108bea7d4c44bb40", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1374982, "upload_time": "2021-02-25T17:51:05", "upload_time_iso_8601": "2021-02-25T17:51:05.109656Z", "url": "https://files.pythonhosted.org/packages/0d/15/bb0d1be24b50bc37cc5ca8b06ee11e3d0e39505258a41295c56582223454/aiohttp-3.7.4-cp39-cp39-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "17ac0dbe61bb43f3a67d91ce401af057", "sha256": "5b50e0b9460100fe05d7472264d1975f21ac007b35dcd6fd50279b72925a27f4" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp39-cp39-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "17ac0dbe61bb43f3a67d91ce401af057", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1441856, "upload_time": "2021-02-25T17:51:06", "upload_time_iso_8601": "2021-02-25T17:51:06.912963Z", "url": "https://files.pythonhosted.org/packages/54/96/167bb952d7baeefc6d2c5fef4bbd1f4e643b919481636d7b8bee1db58f90/aiohttp-3.7.4-cp39-cp39-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ca13d63edea9308209864399e85cdd9e", "sha256": "c44d3c82a933c6cbc21039326767e778eface44fca55c65719921c4b9661a3f7" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp39-cp39-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "ca13d63edea9308209864399e85cdd9e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1497941, "upload_time": "2021-02-25T17:51:08", "upload_time_iso_8601": "2021-02-25T17:51:08.800376Z", "url": "https://files.pythonhosted.org/packages/7b/f3/11d782235c3c3bea83f43cd6aefca307799bb77bd6038f27d54a34967b2f/aiohttp-3.7.4-cp39-cp39-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75857793aaecbce8531fa91ecb55d41d", "sha256": "cc31e906be1cc121ee201adbdf844522ea3349600dd0a40366611ca18cd40e81" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "75857793aaecbce8531fa91ecb55d41d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1410448, "upload_time": "2021-02-25T17:51:10", "upload_time_iso_8601": "2021-02-25T17:51:10.472655Z", "url": "https://files.pythonhosted.org/packages/85/ca/2dab75b6961e3bdfa4c0a6ad50a5f439f4ff351a0295f584300b9cec95ca/aiohttp-3.7.4-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1fb56e4b454b5c654a76981bf9c4997", "sha256": "fbd3b5e18d34683decc00d9a360179ac1e7a320a5fee10ab8053ffd6deab76e0" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "f1fb56e4b454b5c654a76981bf9c4997", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 609516, "upload_time": "2021-02-25T17:51:12", "upload_time_iso_8601": "2021-02-25T17:51:12.621987Z", "url": "https://files.pythonhosted.org/packages/55/f7/184114dd7f2982699394c7e4fb8f4a0b67f4e11401fc8d104ad98a87375d/aiohttp-3.7.4-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8045b62be2c34b99bb48afeb8657d975", "sha256": "40bd1b101b71a18a528ffce812cc14ff77d4a2a1272dfb8b11b200967489ef3e" }, "downloads": -1, "filename": "aiohttp-3.7.4-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "8045b62be2c34b99bb48afeb8657d975", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 634411, "upload_time": "2021-02-25T17:51:14", "upload_time_iso_8601": "2021-02-25T17:51:14.396101Z", "url": "https://files.pythonhosted.org/packages/fe/a8/017c33d002a1b8112e718e16e9d1a31eb9b6c67ac8e06d701d19189a8109/aiohttp-3.7.4-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "586eb4e4dcb1e41242ede0c5bcfd4014", "sha256": "5d84ecc73141d0a0d61ece0742bb7ff5751b0657dab8405f899d3ceb104cc7de" }, "downloads": -1, "filename": "aiohttp-3.7.4.tar.gz", "has_sig": false, "md5_digest": "586eb4e4dcb1e41242ede0c5bcfd4014", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1114533, "upload_time": "2021-02-25T17:51:16", "upload_time_iso_8601": "2021-02-25T17:51:16.090881Z", "url": "https://files.pythonhosted.org/packages/7a/95/eb60aaad7943e18c9d091de93c9b0b5ed40aa67c7d5e3c5ee9b36f100a38/aiohttp-3.7.4.tar.gz", "yanked": false, "yanked_reason": null } ], "3.7.4.post0": [ { "comment_text": "", "digests": { "md5": "430a88ee22f8f054bc0ef9ac389a0350", "sha256": "3cf75f7cdc2397ed4442594b935a11ed5569961333d49b7539ea741be2cc79d5" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp36-cp36m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "430a88ee22f8f054bc0ef9ac389a0350", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 647675, "upload_time": "2021-03-06T21:03:46", "upload_time_iso_8601": "2021-03-06T21:03:46.505083Z", "url": "https://files.pythonhosted.org/packages/27/12/972e2da7fd85ace03b37ef35f5a42f53e69ae1ae96d391fd565d047ab2bc/aiohttp-3.7.4.post0-cp36-cp36m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c90ff2d7859ae1a2424e1a301b41e15b", "sha256": "4b302b45040890cea949ad092479e01ba25911a15e648429c7c5aae9650c67a8" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c90ff2d7859ae1a2424e1a301b41e15b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1296280, "upload_time": "2021-03-06T21:03:48", "upload_time_iso_8601": "2021-03-06T21:03:48.815123Z", "url": "https://files.pythonhosted.org/packages/11/e9/3d036dc23aa3d27a439e5167aa379b86eef54d3ac163e2d2be307b318894/aiohttp-3.7.4.post0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8a8fea74610f0a88aec908d9c35c30ac", "sha256": "fe60131d21b31fd1a14bd43e6bb88256f69dfc3188b3a89d736d6c71ed43ec95" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp36-cp36m-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "8a8fea74610f0a88aec908d9c35c30ac", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1327120, "upload_time": "2021-03-06T21:03:50", "upload_time_iso_8601": "2021-03-06T21:03:50.558719Z", "url": "https://files.pythonhosted.org/packages/e7/15/19b71232cefd5f433d8a1dc4f9a3c560cefd199620bec83ff17dfa5325f1/aiohttp-3.7.4.post0-cp36-cp36m-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af47354318272fcebc4906d9f2373105", "sha256": "393f389841e8f2dfc86f774ad22f00923fdee66d238af89b70ea314c4aefd290" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp36-cp36m-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "af47354318272fcebc4906d9f2373105", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1296284, "upload_time": "2021-03-06T21:03:52", "upload_time_iso_8601": "2021-03-06T21:03:52.374714Z", "url": "https://files.pythonhosted.org/packages/23/76/5edd678a864ef72c5afd9448c61f564b1a53af470d04e98c66ac4a193a28/aiohttp-3.7.4.post0-cp36-cp36m-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "df985ab4dcb8710e6ab32c75e4d32053", "sha256": "c6e9dcb4cb338d91a73f178d866d051efe7c62a7166653a91e7d9fb18274058f" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp36-cp36m-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "df985ab4dcb8710e6ab32c75e4d32053", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1352066, "upload_time": "2021-03-06T21:03:54", "upload_time_iso_8601": "2021-03-06T21:03:54.211222Z", "url": "https://files.pythonhosted.org/packages/2a/fb/6351764c1d81f9f0c993c7a2d25e34b5a4fc9bcff1c77ac99e712e207c4d/aiohttp-3.7.4.post0-cp36-cp36m-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0a5335caaeebdd876da77bcf4ca2b8a3", "sha256": "5df68496d19f849921f05f14f31bd6ef53ad4b00245da3195048c69934521809" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp36-cp36m-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "0a5335caaeebdd876da77bcf4ca2b8a3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1405447, "upload_time": "2021-03-06T21:03:56", "upload_time_iso_8601": "2021-03-06T21:03:56.161926Z", "url": "https://files.pythonhosted.org/packages/95/be/94734e9659c433bcbde3c18b13472262a86b6c567f533a4469bef0327fda/aiohttp-3.7.4.post0-cp36-cp36m-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "240ef313aec83dd7c7e9684893d11e06", "sha256": "0563c1b3826945eecd62186f3f5c7d31abb7391fedc893b7e2b26303b5a9f3fe" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "240ef313aec83dd7c7e9684893d11e06", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1319492, "upload_time": "2021-03-06T21:03:57", "upload_time_iso_8601": "2021-03-06T21:03:57.878476Z", "url": "https://files.pythonhosted.org/packages/31/28/7b49246d7825c61e1a14306ab050e8eec48fcf5b009b19c8f6ea4e312467/aiohttp-3.7.4.post0-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ee7860d3772e978e73dd0322d9dcc1b", "sha256": "3d78619672183be860b96ed96f533046ec97ca067fd46ac1f6a09cd9b7484287" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "3ee7860d3772e978e73dd0322d9dcc1b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 606049, "upload_time": "2021-03-06T21:03:59", "upload_time_iso_8601": "2021-03-06T21:03:59.598444Z", "url": "https://files.pythonhosted.org/packages/c5/24/4b5c373a225641e84f68c02412b488f47e7f3fdef5498ecf875220953505/aiohttp-3.7.4.post0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "90e5ec909bc4d3b67518fa0fe4a7abcd", "sha256": "f705e12750171c0ab4ef2a3c76b9a4024a62c4103e3a55dd6f99265b9bc6fcfc" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "90e5ec909bc4d3b67518fa0fe4a7abcd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 630180, "upload_time": "2021-03-06T21:04:01", "upload_time_iso_8601": "2021-03-06T21:04:01.114784Z", "url": "https://files.pythonhosted.org/packages/85/8f/e4fb9574630ae3fe385549cd29174f57e2a0b6808b9109be9bdf6d5e8533/aiohttp-3.7.4.post0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d8a0707e469688c06a0dc0b198d670f0", "sha256": "230a8f7e24298dea47659251abc0fd8b3c4e38a664c59d4b89cca7f6c09c9e87" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp37-cp37m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "d8a0707e469688c06a0dc0b198d670f0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 644761, "upload_time": "2021-03-06T21:04:02", "upload_time_iso_8601": "2021-03-06T21:04:02.600804Z", "url": "https://files.pythonhosted.org/packages/5b/df/5fddeee4eb5864474c2d4e44e0895a39ef4bd7789782d52848ed5d025461/aiohttp-3.7.4.post0-cp37-cp37m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "30c12664f17260c721417aabfac3dd9d", "sha256": "2e19413bf84934d651344783c9f5e22dee452e251cfd220ebadbed2d9931dbf0" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "30c12664f17260c721417aabfac3dd9d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1303744, "upload_time": "2021-03-06T21:04:04", "upload_time_iso_8601": "2021-03-06T21:04:04.614174Z", "url": "https://files.pythonhosted.org/packages/26/aa/1b7ca137f7065a7f56ac03f8abfc07382fec3d9f12a38d8a885c5f7d3826/aiohttp-3.7.4.post0-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7b6a50b595c7473dcc7f904bc9564bc5", "sha256": "e4b2b334e68b18ac9817d828ba44d8fcb391f6acb398bcc5062b14b2cbeac970" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp37-cp37m-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "7b6a50b595c7473dcc7f904bc9564bc5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1334803, "upload_time": "2021-03-06T21:04:06", "upload_time_iso_8601": "2021-03-06T21:04:06.502785Z", "url": "https://files.pythonhosted.org/packages/b3/0e/a300924d2d3fcd88a26146716506f73a3a1216c6247c4466ad21346ffd61/aiohttp-3.7.4.post0-cp37-cp37m-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "05579f494663b6e2a50b4bf0fd5ac2f1", "sha256": "d012ad7911653a906425d8473a1465caa9f8dea7fcf07b6d870397b774ea7c0f" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp37-cp37m-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "05579f494663b6e2a50b4bf0fd5ac2f1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1303747, "upload_time": "2021-03-06T21:04:08", "upload_time_iso_8601": "2021-03-06T21:04:08.009856Z", "url": "https://files.pythonhosted.org/packages/a3/66/71719c7fcd6847fa0aa0b0c2c95928c2e30cd1eec0edc919f41a992ab9dc/aiohttp-3.7.4.post0-cp37-cp37m-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af4bd76a62b0127c0b502f2f126f6431", "sha256": "40eced07f07a9e60e825554a31f923e8d3997cfc7fb31dbc1328c70826e04cde" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp37-cp37m-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "af4bd76a62b0127c0b502f2f126f6431", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1359373, "upload_time": "2021-03-06T21:04:09", "upload_time_iso_8601": "2021-03-06T21:04:09.531251Z", "url": "https://files.pythonhosted.org/packages/c4/d7/ada8fe09cde1ef3579031283ff59e673756f5bd4bdd0f1674f263d86b367/aiohttp-3.7.4.post0-cp37-cp37m-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0428a46da159c0f24d319ba0f6f5e054", "sha256": "209b4a8ee987eccc91e2bd3ac36adee0e53a5970b8ac52c273f7f8fd4872c94c" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp37-cp37m-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "0428a46da159c0f24d319ba0f6f5e054", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1412002, "upload_time": "2021-03-06T21:04:11", "upload_time_iso_8601": "2021-03-06T21:04:11.286083Z", "url": "https://files.pythonhosted.org/packages/c0/7d/f38eb9997f24b6133aa6fb7a9e11d1af24b52d685aea653d723367ff2602/aiohttp-3.7.4.post0-cp37-cp37m-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb44d42d81a651aa66aad8444b2e3832", "sha256": "14762875b22d0055f05d12abc7f7d61d5fd4fe4642ce1a249abdf8c700bf1fd8" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "eb44d42d81a651aa66aad8444b2e3832", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1328038, "upload_time": "2021-03-06T21:04:12", "upload_time_iso_8601": "2021-03-06T21:04:12.754546Z", "url": "https://files.pythonhosted.org/packages/88/c0/5890b4c8b04a79b7360e8fe4490feb0bb3ab179743f199f0e6220cebd568/aiohttp-3.7.4.post0-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "340f3c4fb942f76036069b0887c56880", "sha256": "7615dab56bb07bff74bc865307aeb89a8bfd9941d2ef9d817b9436da3a0ea54f" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "340f3c4fb942f76036069b0887c56880", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 606355, "upload_time": "2021-03-06T21:04:14", "upload_time_iso_8601": "2021-03-06T21:04:14.552796Z", "url": "https://files.pythonhosted.org/packages/50/63/5e9096c7f3d7633b394e1e1a4ccdc8dd0124d1de432499edabbbf56a11c4/aiohttp-3.7.4.post0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b15b912048b6e07d30dcb375b2c9413", "sha256": "d9e13b33afd39ddeb377eff2c1c4f00544e191e1d1dee5b6c51ddee8ea6f0cf5" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "0b15b912048b6e07d30dcb375b2c9413", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 630722, "upload_time": "2021-03-06T21:04:16", "upload_time_iso_8601": "2021-03-06T21:04:16.005487Z", "url": "https://files.pythonhosted.org/packages/30/97/acfee80c69002e6c7eec16a95539c467acb0f9cb686a0d8c17b8d9c6fecb/aiohttp-3.7.4.post0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c04844702da745ac101e289cea34eb8c", "sha256": "547da6cacac20666422d4882cfcd51298d45f7ccb60a04ec27424d2f36ba3eaf" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp38-cp38-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "c04844702da745ac101e289cea34eb8c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 648463, "upload_time": "2021-03-06T21:04:17", "upload_time_iso_8601": "2021-03-06T21:04:17.592416Z", "url": "https://files.pythonhosted.org/packages/85/36/8637de18f5b91c84942b36d5d47b74befb8b41af6574520f1ba23fae59c0/aiohttp-3.7.4.post0-cp38-cp38-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6fdd45aede6a247a4ef00fe4734ee026", "sha256": "af9aa9ef5ba1fd5b8c948bb11f44891968ab30356d65fd0cc6707d989cd521df" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6fdd45aede6a247a4ef00fe4734ee026", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1430286, "upload_time": "2021-03-06T21:04:19", "upload_time_iso_8601": "2021-03-06T21:04:19.318500Z", "url": "https://files.pythonhosted.org/packages/33/9c/355a3b7fd23335726b1e84ac87dbe4b6744b664977b56316329e0048d070/aiohttp-3.7.4.post0-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "63acef4275aa718b0fc8886cdeeb9ed8", "sha256": "64322071e046020e8797117b3658b9c2f80e3267daec409b350b6a7a05041213" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp38-cp38-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "63acef4275aa718b0fc8886cdeeb9ed8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1470450, "upload_time": "2021-03-06T21:04:21", "upload_time_iso_8601": "2021-03-06T21:04:21.113142Z", "url": "https://files.pythonhosted.org/packages/c2/09/3c014ef067296cf0d842ef37e89ea771f3e7a6476180b4189a5aab77614c/aiohttp-3.7.4.post0-cp38-cp38-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee38496f5ddeca508c43c058df3d93ac", "sha256": "bb437315738aa441251214dad17428cafda9cdc9729499f1d6001748e1d432f4" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp38-cp38-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "ee38496f5ddeca508c43c058df3d93ac", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1430290, "upload_time": "2021-03-06T21:04:22", "upload_time_iso_8601": "2021-03-06T21:04:22.654923Z", "url": "https://files.pythonhosted.org/packages/11/a7/037b565866667fcf29b960347f7577f5b131815c7ae986c8cd28c82319ec/aiohttp-3.7.4.post0-cp38-cp38-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0815fb7f6481e7fc3bf6f3fe2c47996d", "sha256": "e54962802d4b8b18b6207d4a927032826af39395a3bd9196a5af43fc4e60b009" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp38-cp38-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "0815fb7f6481e7fc3bf6f3fe2c47996d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1496678, "upload_time": "2021-03-06T21:04:24", "upload_time_iso_8601": "2021-03-06T21:04:24.706529Z", "url": "https://files.pythonhosted.org/packages/a0/7b/d317bb70c4161389b4c38579e766d52b6d00fb0a45ef479bdd46aeb2fa4f/aiohttp-3.7.4.post0-cp38-cp38-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bddfd6180e15d364f6872e4da776d60c", "sha256": "a00bb73540af068ca7390e636c01cbc4f644961896fa9363154ff43fd37af2f5" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp38-cp38-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "bddfd6180e15d364f6872e4da776d60c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1548960, "upload_time": "2021-03-06T21:04:26", "upload_time_iso_8601": "2021-03-06T21:04:26.438782Z", "url": "https://files.pythonhosted.org/packages/4b/a0/e7a51d38a31df52ae50d42c42e717178ac005c7b3a76764ce2752ed1e376/aiohttp-3.7.4.post0-cp38-cp38-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "27aaa4bdc4bd8ddaf1ff0e6de16d6222", "sha256": "79ebfc238612123a713a457d92afb4096e2148be17df6c50fb9bf7a81c2f8013" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "27aaa4bdc4bd8ddaf1ff0e6de16d6222", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1464082, "upload_time": "2021-03-06T21:04:28", "upload_time_iso_8601": "2021-03-06T21:04:28.046937Z", "url": "https://files.pythonhosted.org/packages/a6/76/f18138b0ff84fcd939667a2efc2e1b49c871299f9091f84c06bb4c350c01/aiohttp-3.7.4.post0-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4d4c62bf623f5542fcea77b3cdf09e1a", "sha256": "515dfef7f869a0feb2afee66b957cc7bbe9ad0cdee45aec7fdc623f4ecd4fb16" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "4d4c62bf623f5542fcea77b3cdf09e1a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 610323, "upload_time": "2021-03-06T21:04:29", "upload_time_iso_8601": "2021-03-06T21:04:29.893024Z", "url": "https://files.pythonhosted.org/packages/ad/33/18c2938872e14c39c6bbfb35015284e1fd3337e9c3b9c18d04eb40a7ce2b/aiohttp-3.7.4.post0-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7279af4fc2e9451de85cf6b6ccd46c57", "sha256": "114b281e4d68302a324dd33abb04778e8557d88947875cbf4e842c2c01a030c5" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "7279af4fc2e9451de85cf6b6ccd46c57", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 635474, "upload_time": "2021-03-06T21:04:31", "upload_time_iso_8601": "2021-03-06T21:04:31.315431Z", "url": "https://files.pythonhosted.org/packages/f4/a2/28a7ec428c3f140ead2f3238814743e5eaf8be3c7dbf42a9551b11357691/aiohttp-3.7.4.post0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0b1944cfc5fc07c9dddf4d74c672a35", "sha256": "7b18b97cf8ee5452fa5f4e3af95d01d84d86d32c5e2bfa260cf041749d66360b" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp39-cp39-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "e0b1944cfc5fc07c9dddf4d74c672a35", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 649620, "upload_time": "2021-03-06T21:04:32", "upload_time_iso_8601": "2021-03-06T21:04:32.920921Z", "url": "https://files.pythonhosted.org/packages/62/c5/49ce62949ab0381300c718cc3934a91c13d23abe72bbb28daffe169660d7/aiohttp-3.7.4.post0-cp39-cp39-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "47754dfd7f78e4595f80392b166cb6c7", "sha256": "15492a6368d985b76a2a5fdd2166cddfea5d24e69eefed4630cbaae5c81d89bd" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "47754dfd7f78e4595f80392b166cb6c7", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1375129, "upload_time": "2021-03-06T21:04:34", "upload_time_iso_8601": "2021-03-06T21:04:34.435532Z", "url": "https://files.pythonhosted.org/packages/c5/62/56354d114074e17a288ba89c3897d6e1965239f0e8def510cb78e04ff6fa/aiohttp-3.7.4.post0-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d8955bf202884699888dd10e74b5e9f", "sha256": "bdb230b4943891321e06fc7def63c7aace16095be7d9cf3b1e01be2f10fba439" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp39-cp39-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "9d8955bf202884699888dd10e74b5e9f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1419221, "upload_time": "2021-03-06T21:04:36", "upload_time_iso_8601": "2021-03-06T21:04:36.127929Z", "url": "https://files.pythonhosted.org/packages/8b/9e/970be81ea38c4fff3e5a77cad58c38dfc94645712ad9125eca4ff50ddb21/aiohttp-3.7.4.post0-cp39-cp39-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1b94acf375d341eaf90a3e80948d50c7", "sha256": "cffe3ab27871bc3ea47df5d8f7013945712c46a3cc5a95b6bee15887f1675c22" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp39-cp39-manylinux2014_i686.whl", "has_sig": false, "md5_digest": "1b94acf375d341eaf90a3e80948d50c7", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1375134, "upload_time": "2021-03-06T21:04:37", "upload_time_iso_8601": "2021-03-06T21:04:37.721221Z", "url": "https://files.pythonhosted.org/packages/ba/09/5412357e129dda648d1ff53a5db292e9a183184855a72eb86f3a516a854a/aiohttp-3.7.4.post0-cp39-cp39-manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7dda3c71d5beeec6e0ec639262df56d0", "sha256": "f881853d2643a29e643609da57b96d5f9c9b93f62429dcc1cbb413c7d07f0e1a" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp39-cp39-manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "7dda3c71d5beeec6e0ec639262df56d0", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1442009, "upload_time": "2021-03-06T21:04:39", "upload_time_iso_8601": "2021-03-06T21:04:39.362478Z", "url": "https://files.pythonhosted.org/packages/ff/1c/5f301a7dd87d667e0b11f6305ff58fcf5910f7a29f23d857c1f9afc56ae4/aiohttp-3.7.4.post0-cp39-cp39-manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "666b38167c768211eb6e62335288cfbe", "sha256": "a5ca29ee66f8343ed336816c553e82d6cade48a3ad702b9ffa6125d187e2dedb" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp39-cp39-manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "666b38167c768211eb6e62335288cfbe", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1498096, "upload_time": "2021-03-06T21:04:41", "upload_time_iso_8601": "2021-03-06T21:04:41.036980Z", "url": "https://files.pythonhosted.org/packages/6c/8f/24dd62e54153fe2b0838891629ef70f86bfdd774585f2a05c115cc54d3bf/aiohttp-3.7.4.post0-cp39-cp39-manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe92649c85f175add795f6d88fec0804", "sha256": "17c073de315745a1510393a96e680d20af8e67e324f70b42accbd4cb3315c9fb" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "fe92649c85f175add795f6d88fec0804", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1410604, "upload_time": "2021-03-06T21:04:42", "upload_time_iso_8601": "2021-03-06T21:04:42.879509Z", "url": "https://files.pythonhosted.org/packages/34/40/2b3295eb6f66209d1b2ad6ef34ebdf1cb1675c62f8697a8fe7c4f11d2838/aiohttp-3.7.4.post0-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a40585f9d8d71d675dd98bd4e6a85235", "sha256": "932bb1ea39a54e9ea27fc9232163059a0b8855256f4052e776357ad9add6f1c9" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "a40585f9d8d71d675dd98bd4e6a85235", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 609671, "upload_time": "2021-03-06T21:04:44", "upload_time_iso_8601": "2021-03-06T21:04:44.512714Z", "url": "https://files.pythonhosted.org/packages/15/34/c784e8ffb442862a96473c2ac468a42257fea6e7f9a99fac9563ee27a9b7/aiohttp-3.7.4.post0-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d3739bb69fc0a2995793277f49c05768", "sha256": "02f46fc0e3c5ac58b80d4d56eb0a7c7d97fcef69ace9326289fb9f1955e65cfe" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "d3739bb69fc0a2995793277f49c05768", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 634567, "upload_time": "2021-03-06T21:04:46", "upload_time_iso_8601": "2021-03-06T21:04:46.591593Z", "url": "https://files.pythonhosted.org/packages/3a/a8/f37091116004c0cc362abed2079e1890a3ab784eb3965a3e41f39ba76c1f/aiohttp-3.7.4.post0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7052a8e9877921d73da98d2b18c9a145", "sha256": "493d3299ebe5f5a7c66b9819eacdcfbbaaf1a8e84911ddffcdc48888497afecf" }, "downloads": -1, "filename": "aiohttp-3.7.4.post0.tar.gz", "has_sig": false, "md5_digest": "7052a8e9877921d73da98d2b18c9a145", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1114888, "upload_time": "2021-03-06T21:04:48", "upload_time_iso_8601": "2021-03-06T21:04:48.590380Z", "url": "https://files.pythonhosted.org/packages/99/f5/90ede947a3ce2d6de1614799f5fea4e93c19b6520a59dc5d2f64123b032f/aiohttp-3.7.4.post0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.8.0": [ { "comment_text": "", "digests": { "md5": "ceadee086e09930644714701c50e024e", "sha256": "48f218a5257b6bc16bcf26a91d97ecea0c7d29c811a90d965f3dd97c20f016d6" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp310-cp310-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "ceadee086e09930644714701c50e024e", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 745264, "upload_time": "2021-10-31T21:41:45", "upload_time_iso_8601": "2021-10-31T21:41:45.966804Z", "url": "https://files.pythonhosted.org/packages/eb/15/cb131c15aa9a7285f78fd6da09104213c1cedb2f33d86d800a66409d0a9e/aiohttp-3.8.0-cp310-cp310-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1cc984d0b1d901dc2bcc6444eb51efe7", "sha256": "a2fee4d656a7cc9ab47771b2a9e8fad8a9a33331c1b59c3057ecf0ac858f5bfe" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "1cc984d0b1d901dc2bcc6444eb51efe7", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 591400, "upload_time": "2021-10-31T21:41:47", "upload_time_iso_8601": "2021-10-31T21:41:47.627823Z", "url": "https://files.pythonhosted.org/packages/3a/7f/3a1a2ab0875e30a6d3e63f957a552cb266f44e85f1c041d7428ea70b36ef/aiohttp-3.8.0-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a613fe811fe1a42c73957ca0fe6e375a", "sha256": "688a1eb8c1a5f7e795c7cb67e0fe600194e6723ba35f138dfae0db20c0cb8f94" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "a613fe811fe1a42c73957ca0fe6e375a", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 568623, "upload_time": "2021-10-31T21:41:49", "upload_time_iso_8601": "2021-10-31T21:41:49.188646Z", "url": "https://files.pythonhosted.org/packages/ba/2a/fa858be8da219e78f3815069e5a01a860513aa11577d681a1781f09799db/aiohttp-3.8.0-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "862a261252b287dfb7e72b3b7df00fc0", "sha256": "7ba09bb3dcb0b7ec936a485db2b64be44fe14cdce0a5eac56f50e55da3627385" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "862a261252b287dfb7e72b3b7df00fc0", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1252465, "upload_time": "2021-10-31T21:41:50", "upload_time_iso_8601": "2021-10-31T21:41:50.302414Z", "url": "https://files.pythonhosted.org/packages/60/63/74b4f5652ea5b208fe8089da665a9b1a6317e23d8fbaf35ca515943bdcb0/aiohttp-3.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "772719942fa7b5cd0cc52998fa5a441f", "sha256": "d7715daf84f10bcebc083ad137e3eced3e1c8e7fa1f096ade9a8d02b08f0d91c" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "772719942fa7b5cd0cc52998fa5a441f", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1266406, "upload_time": "2021-10-31T21:41:51", "upload_time_iso_8601": "2021-10-31T21:41:51.970620Z", "url": "https://files.pythonhosted.org/packages/c3/9a/2e7e5507bd242e564413ac1ef7ad3a6b45e682a2d4863b2e5fde03ceb5f2/aiohttp-3.8.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50aab1f36acbb2e996bcb04202de18ad", "sha256": "5e3f81fbbc170418e22918a9585fd7281bbc11d027064d62aa4b507552c92671" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "50aab1f36acbb2e996bcb04202de18ad", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1321651, "upload_time": "2021-10-31T21:41:53", "upload_time_iso_8601": "2021-10-31T21:41:53.071392Z", "url": "https://files.pythonhosted.org/packages/da/37/9aeaa6db91cf2db3386c944c24744bca1e59938e55b6260ca06cc81da639/aiohttp-3.8.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b9265ff58aea1f0c7846348467bdb76d", "sha256": "1fa9f50aa1f114249b7963c98e20dc35c51be64096a85bc92433185f331de9cc" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "b9265ff58aea1f0c7846348467bdb76d", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1202834, "upload_time": "2021-10-31T21:41:54", "upload_time_iso_8601": "2021-10-31T21:41:54.690185Z", "url": "https://files.pythonhosted.org/packages/63/55/267bd18311b290b257c6b365222b33c097b857d651e8569ed5a69ad8a935/aiohttp-3.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "11c48b2ff71bd28635c3b1850331916b", "sha256": "8a50150419b741ee048b53146c39c47053f060cb9d98e78be08fdbe942eaa3c4" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "11c48b2ff71bd28635c3b1850331916b", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1222308, "upload_time": "2021-10-31T21:41:56", "upload_time_iso_8601": "2021-10-31T21:41:56.382581Z", "url": "https://files.pythonhosted.org/packages/b0/05/4dd89db3d1e16930210122c2d4aa7fe2195f4d2462275f37aa90de94b9e4/aiohttp-3.8.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c9c662fc80130ef2cfb1d513452caf5e", "sha256": "a84c335337b676d832c1e2bc47c3a97531b46b82de9f959dafb315cbcbe0dfcd" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp310-cp310-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "c9c662fc80130ef2cfb1d513452caf5e", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1263620, "upload_time": "2021-10-31T21:41:57", "upload_time_iso_8601": "2021-10-31T21:41:57.572999Z", "url": "https://files.pythonhosted.org/packages/62/19/20164fd08bc55eb5e5f1c9be861f85fdb302f7bce34ef553840a442cc84b/aiohttp-3.8.0-cp310-cp310-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f59a82f35dbf739c3f85a907de38262a", "sha256": "88d4917c30fcd7f6404fb1dc713fa21de59d3063dcc048f4a8a1a90e6bbbd739" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp310-cp310-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "f59a82f35dbf739c3f85a907de38262a", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1229039, "upload_time": "2021-10-31T21:41:58", "upload_time_iso_8601": "2021-10-31T21:41:58.773659Z", "url": "https://files.pythonhosted.org/packages/d9/91/f5c4aa108a5bd632cd7ddcf653dd466440bf265b5902fee4303de4d3eb50/aiohttp-3.8.0-cp310-cp310-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5fe3f1c5b33b306ee7668613f7bfdbfc", "sha256": "b76669b7c058b8020b11008283c3b8e9c61bfd978807c45862956119b77ece45" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp310-cp310-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "5fe3f1c5b33b306ee7668613f7bfdbfc", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1283539, "upload_time": "2021-10-31T21:42:00", "upload_time_iso_8601": "2021-10-31T21:42:00.077271Z", "url": "https://files.pythonhosted.org/packages/1a/c0/68dee32766d51b4c4fb7a46d8572f2c343f2fdfe1a629820cb3ff52f92e4/aiohttp-3.8.0-cp310-cp310-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "027e6400a991360eaba6953e3a897237", "sha256": "84fe1732648c1bc303a70faa67cbc2f7f2e810c8a5bca94f6db7818e722e4c0a" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp310-cp310-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "027e6400a991360eaba6953e3a897237", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1330199, "upload_time": "2021-10-31T21:42:01", "upload_time_iso_8601": "2021-10-31T21:42:01.292885Z", "url": "https://files.pythonhosted.org/packages/f8/e3/7a905f09a1030cba1b12c30cd7c905a19bbcaa95f0aa53688077b9b92748/aiohttp-3.8.0-cp310-cp310-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a7d6fdf0f83d602af4fbbebf220c320d", "sha256": "730b7c2b7382194d9985ffdc32ab317e893bca21e0665cb1186bdfbb4089d990" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp310-cp310-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "a7d6fdf0f83d602af4fbbebf220c320d", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1255920, "upload_time": "2021-10-31T21:42:03", "upload_time_iso_8601": "2021-10-31T21:42:03.215082Z", "url": "https://files.pythonhosted.org/packages/21/74/4e656ac347118ca0af904c6e2c078f2b56a072b5e66efad3ddb30bb03470/aiohttp-3.8.0-cp310-cp310-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fec704059f0f9c722aabc8ad14da1bbf", "sha256": "0a96473a1f61d7920a9099bc8e729dc8282539d25f79c12573ee0fdb9c8b66a8" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp310-cp310-win32.whl", "has_sig": false, "md5_digest": "fec704059f0f9c722aabc8ad14da1bbf", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 550758, "upload_time": "2021-10-31T21:42:04", "upload_time_iso_8601": "2021-10-31T21:42:04.893044Z", "url": "https://files.pythonhosted.org/packages/13/59/32eb914d4f458b134748619e866fc67fd8c34739a12e08107ecfcc731dbe/aiohttp-3.8.0-cp310-cp310-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "07d10867ace5da27fd3075b8d8c4cd56", "sha256": "764c7c6aa1f78bd77bd9674fc07d1ec44654da1818d0eef9fb48aa8371a3c847" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "07d10867ace5da27fd3075b8d8c4cd56", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 571382, "upload_time": "2021-10-31T21:42:06", "upload_time_iso_8601": "2021-10-31T21:42:06.666211Z", "url": "https://files.pythonhosted.org/packages/6b/08/fb0d6895abc66b8b35fc87f68ef22f0252cf495a717a6d0ccf207440a66c/aiohttp-3.8.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b85551fb3de5445ef307a3bfa65f39b", "sha256": "9951c2696c4357703001e1fe6edc6ae8e97553ac630492ea1bf64b429cb712a3" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3b85551fb3de5445ef307a3bfa65f39b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 587143, "upload_time": "2021-10-31T21:42:07", "upload_time_iso_8601": "2021-10-31T21:42:07.859590Z", "url": "https://files.pythonhosted.org/packages/be/04/f3953c8890c4dac352b29aa3215b4e8f0a2629b3692a05066663669794ee/aiohttp-3.8.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "767619f13ae2f254b57d3a8d14b8932e", "sha256": "0af379221975054162959e00daf21159ff69a712fc42ed0052caddbd70d52ff4" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "767619f13ae2f254b57d3a8d14b8932e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1173703, "upload_time": "2021-10-31T21:42:09", "upload_time_iso_8601": "2021-10-31T21:42:09.670444Z", "url": "https://files.pythonhosted.org/packages/de/04/f2faea25fca864d864a4820d4f2a0838a71f43c9781f0a1c68ccb5c894d4/aiohttp-3.8.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef7e845dece4b4a0eb2406fbc096aaeb", "sha256": "9689af0f0a89e5032426c143fa3683b0451f06c83bf3b1e27902bd33acfae769" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "ef7e845dece4b4a0eb2406fbc096aaeb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1188654, "upload_time": "2021-10-31T21:42:11", "upload_time_iso_8601": "2021-10-31T21:42:11.117379Z", "url": "https://files.pythonhosted.org/packages/ae/52/5994119a4ecb65439b9257f21fcb3d184ca917d664e623d100ea8a03ff19/aiohttp-3.8.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0a06824950a57c8cee4c3e51ee846f41", "sha256": "fe4a327da0c6b6e59f2e474ae79d6ee7745ac3279fd15f200044602fa31e3d79" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "0a06824950a57c8cee4c3e51ee846f41", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1247380, "upload_time": "2021-10-31T21:42:12", "upload_time_iso_8601": "2021-10-31T21:42:12.562701Z", "url": "https://files.pythonhosted.org/packages/7d/17/9d4da3eb947c3a700ce9ba4468c37d1e6f5bc901d52f0811ee6d5f1e524c/aiohttp-3.8.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9876e26ba1dfd4485aa2a833ab196f88", "sha256": "ecb314e59bedb77188017f26e6b684b1f6d0465e724c3122a726359fa62ca1ba" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "9876e26ba1dfd4485aa2a833ab196f88", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1118870, "upload_time": "2021-10-31T21:42:14", "upload_time_iso_8601": "2021-10-31T21:42:14.681142Z", "url": "https://files.pythonhosted.org/packages/40/13/1e7b10197b9ec075b0ae657de835f81ad9b859aa77ed500ac0d54143d3d4/aiohttp-3.8.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c5fbd2e27579ac749e691adb43c7fcb", "sha256": "a5399a44a529083951b55521cf4ecbf6ad79fd54b9df57dbf01699ffa0549fc9" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "4c5fbd2e27579ac749e691adb43c7fcb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1136321, "upload_time": "2021-10-31T21:42:15", "upload_time_iso_8601": "2021-10-31T21:42:15.957369Z", "url": "https://files.pythonhosted.org/packages/aa/ff/e8190da603fbc908854ac1ba9c70a95269f296ba7ba637b93ada05286299/aiohttp-3.8.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0f18186fb90418a9edf3152742baeedf", "sha256": "09754a0d5eaab66c37591f2f8fac8f9781a5f61d51aa852a3261c4805ca6b984" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp36-cp36m-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "0f18186fb90418a9edf3152742baeedf", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1181468, "upload_time": "2021-10-31T21:42:17", "upload_time_iso_8601": "2021-10-31T21:42:17.754907Z", "url": "https://files.pythonhosted.org/packages/6d/64/4ffaa36965d1b200ef530178992b1d19a7d891c4f805cd59fb00d2e3bc3f/aiohttp-3.8.0-cp36-cp36m-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "916857beb387ed754ae8cc36a6a98a36", "sha256": "adf0cb251b1b842c9dee5cfcdf880ba0aae32e841b8d0e6b6feeaef002a267c5" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp36-cp36m-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "916857beb387ed754ae8cc36a6a98a36", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1155841, "upload_time": "2021-10-31T21:42:18", "upload_time_iso_8601": "2021-10-31T21:42:18.914337Z", "url": "https://files.pythonhosted.org/packages/c1/c8/35f13532b19cca8ad20d69e74e405e8999068e2a7ab158af72933b9b030a/aiohttp-3.8.0-cp36-cp36m-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b2a7662a3aa7863be78e2cc82f87887b", "sha256": "a4759e85a191de58e0ea468ab6fd9c03941986eee436e0518d7a9291fab122c8" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp36-cp36m-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "b2a7662a3aa7863be78e2cc82f87887b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1202048, "upload_time": "2021-10-31T21:42:20", "upload_time_iso_8601": "2021-10-31T21:42:20.224449Z", "url": "https://files.pythonhosted.org/packages/b4/98/69cf7e35071b7a5e484f418bf006faacd07831280aa8e97b69a690a3cdec/aiohttp-3.8.0-cp36-cp36m-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "61db8fc0e45e926825d7178b2546ba0f", "sha256": "28369fe331a59d80393ec82df3d43307c7461bfaf9217999e33e2acc7984ff7c" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp36-cp36m-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "61db8fc0e45e926825d7178b2546ba0f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1250777, "upload_time": "2021-10-31T21:42:21", "upload_time_iso_8601": "2021-10-31T21:42:21.586009Z", "url": "https://files.pythonhosted.org/packages/42/e0/425398d7a39c947ee982f514f552eec4cd54e790995719e7c604764072b3/aiohttp-3.8.0-cp36-cp36m-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a9ec9e7235408787039f1f2a24c38f9", "sha256": "2f44d1b1c740a9e2275160d77c73a11f61e8a916191c572876baa7b282bcc934" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp36-cp36m-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "7a9ec9e7235408787039f1f2a24c38f9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1174237, "upload_time": "2021-10-31T21:42:22", "upload_time_iso_8601": "2021-10-31T21:42:22.941174Z", "url": "https://files.pythonhosted.org/packages/db/3d/5cae805b3823c44b82eaec9fa0c774cf8d5e7826a562543f261d61fc9322/aiohttp-3.8.0-cp36-cp36m-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a149965f3faf025dc8fa720b686d578b", "sha256": "e27cde1e8d17b09730801ce97b6e0c444ba2a1f06348b169fd931b51d3402f0d" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "a149965f3faf025dc8fa720b686d578b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 547802, "upload_time": "2021-10-31T21:42:24", "upload_time_iso_8601": "2021-10-31T21:42:24.368794Z", "url": "https://files.pythonhosted.org/packages/81/dc/791377c5278d084adb5c3a02b19b2d2b20d94ee79af3afbfe36b25a0d458/aiohttp-3.8.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08fdac6e21ef44fe3077e181b72927ee", "sha256": "15a660d06092b7c92ed17c1dbe6c1eab0a02963992d60e3e8b9d5fa7fa81f01e" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "08fdac6e21ef44fe3077e181b72927ee", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 567401, "upload_time": "2021-10-31T21:42:25", "upload_time_iso_8601": "2021-10-31T21:42:25.579256Z", "url": "https://files.pythonhosted.org/packages/b6/c0/4fd0495864c463b7e0b4097cb40bff2ad7f0a3fdc49124d3b31505d053df/aiohttp-3.8.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "396540e748acc998d2ad2c0a280c4bcf", "sha256": "257f4fad1714d26d562572095c8c5cd271d5a333252795cb7a002dca41fdbad7" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "396540e748acc998d2ad2c0a280c4bcf", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 587062, "upload_time": "2021-10-31T21:42:26", "upload_time_iso_8601": "2021-10-31T21:42:26.650864Z", "url": "https://files.pythonhosted.org/packages/53/ec/3a124104f9f4b48a096392767e1c3424e48df8ffacad25bd518d2b2dbf7f/aiohttp-3.8.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cc64f183778c9710495c6d4e5635e673", "sha256": "a6074a3b2fa2d0c9bf0963f8dfc85e1e54a26114cc8594126bc52d3fa061c40e" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "cc64f183778c9710495c6d4e5635e673", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1174251, "upload_time": "2021-10-31T21:42:27", "upload_time_iso_8601": "2021-10-31T21:42:27.946199Z", "url": "https://files.pythonhosted.org/packages/50/46/30d0664aa6290341a58849f82dcf0fa16dd16af4af9fcc654cd318396b33/aiohttp-3.8.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef396ff700f7aecf9d591bf654710b67", "sha256": "7a315ceb813208ef32bdd6ec3a85cbe3cb3be9bbda5fd030c234592fa9116993" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "ef396ff700f7aecf9d591bf654710b67", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1188221, "upload_time": "2021-10-31T21:42:29", "upload_time_iso_8601": "2021-10-31T21:42:29.802096Z", "url": "https://files.pythonhosted.org/packages/97/9a/9635b5b5b1d6277a1ce992fcab1cd729e432de8f4d7864258f7e19b8c694/aiohttp-3.8.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a6a5194f67d1995a76b7e0a579279639", "sha256": "9a52b141ff3b923a9166595de6e3768a027546e75052ffba267d95b54267f4ab" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "a6a5194f67d1995a76b7e0a579279639", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1247786, "upload_time": "2021-10-31T21:42:31", "upload_time_iso_8601": "2021-10-31T21:42:31.100281Z", "url": "https://files.pythonhosted.org/packages/16/1f/c667600f4d37cfba64a22120dd343a46746ec5e8b768f0f3ff10eac3463b/aiohttp-3.8.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5d267e73aa056c030d02fbf16984665e", "sha256": "6a038cb1e6e55b26bb5520ccffab7f539b3786f5553af2ee47eb2ec5cbd7084e" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "5d267e73aa056c030d02fbf16984665e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1123272, "upload_time": "2021-10-31T21:42:32", "upload_time_iso_8601": "2021-10-31T21:42:32.393198Z", "url": "https://files.pythonhosted.org/packages/e0/07/cc456d85b0cc54822034619afb1c00c5c1f03f50b7e09defe22076b98b10/aiohttp-3.8.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a0626468a19ff2f8e4fdaa5bcc5ccbc9", "sha256": "98b1ea2763b33559dd9ec621d67fc17b583484cb90735bfb0ec3614c17b210e4" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a0626468a19ff2f8e4fdaa5bcc5ccbc9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1142009, "upload_time": "2021-10-31T21:42:34", "upload_time_iso_8601": "2021-10-31T21:42:34.109949Z", "url": "https://files.pythonhosted.org/packages/3a/1a/a7da3e81dc129358d8ac28fae58d4c4a5fea2e18ae9885721c5c45bac78c/aiohttp-3.8.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7b5231995c16bb1e87bd0fd1741823b2", "sha256": "9e8723c3256641e141cd18f6ce478d54a004138b9f1a36e41083b36d9ecc5fc5" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp37-cp37m-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "7b5231995c16bb1e87bd0fd1741823b2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1191555, "upload_time": "2021-10-31T21:42:35", "upload_time_iso_8601": "2021-10-31T21:42:35.441913Z", "url": "https://files.pythonhosted.org/packages/52/55/1d9a7f456989664aa9df8a3c837a05985880f1dd740122901b30ea9093e7/aiohttp-3.8.0-cp37-cp37m-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b0b8f557e2e10d4a7b80bc5d144a5512", "sha256": "14a6f026eca80dfa3d52e86be89feb5cd878f6f4a6adb34457e2c689fd85229b" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp37-cp37m-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "b0b8f557e2e10d4a7b80bc5d144a5512", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1163293, "upload_time": "2021-10-31T21:42:36", "upload_time_iso_8601": "2021-10-31T21:42:36.674863Z", "url": "https://files.pythonhosted.org/packages/88/75/b657f918ecb95c50a431fd8c9876f3d581df888c57ab61da36faa45c571a/aiohttp-3.8.0-cp37-cp37m-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4385fc8fdd073a5c1f506ac530a8d596", "sha256": "c62d4791a8212c885b97a63ef5f3974b2cd41930f0cd224ada9c6ee6654f8150" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "4385fc8fdd073a5c1f506ac530a8d596", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1206947, "upload_time": "2021-10-31T21:42:38", "upload_time_iso_8601": "2021-10-31T21:42:38.170008Z", "url": "https://files.pythonhosted.org/packages/60/eb/98de73ae2208ee47887b3692f236dd1b20f796ca5c33234ad94167aebaee/aiohttp-3.8.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ba6b05c576521a90928925cc0c4a6f3", "sha256": "90a97c2ed2830e7974cbe45f0838de0aefc1c123313f7c402e21c29ec063fbb4" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp37-cp37m-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "4ba6b05c576521a90928925cc0c4a6f3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1255997, "upload_time": "2021-10-31T21:42:39", "upload_time_iso_8601": "2021-10-31T21:42:39.689128Z", "url": "https://files.pythonhosted.org/packages/e8/20/6321f08bce1c84a25cef46f9058876277ff3030297b16094cffa52db6fb7/aiohttp-3.8.0-cp37-cp37m-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7556005517bbe1137685bf09fad9cfd0", "sha256": "dcc4d5dd5fba3affaf4fd08f00ef156407573de8c63338787614ccc64f96b321" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp37-cp37m-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "7556005517bbe1137685bf09fad9cfd0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1184717, "upload_time": "2021-10-31T21:42:40", "upload_time_iso_8601": "2021-10-31T21:42:40.976884Z", "url": "https://files.pythonhosted.org/packages/f4/bc/22d47483b7b535306882bb3509decb88360872cd8ed03868747a6dc91681/aiohttp-3.8.0-cp37-cp37m-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d2203b39a65333eea3ffd3a8fc3fb641", "sha256": "de42f513ed7a997bc821bddab356b72e55e8396b1b7ba1bf39926d538a76a90f" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "d2203b39a65333eea3ffd3a8fc3fb641", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 548154, "upload_time": "2021-10-31T21:42:42", "upload_time_iso_8601": "2021-10-31T21:42:42.616377Z", "url": "https://files.pythonhosted.org/packages/ae/b9/eb87392926772ff72eca74c01eb8ad3b6c951bb9c1c27719e4a572729995/aiohttp-3.8.0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f987fb859ee693826128c61470a49fe9", "sha256": "7d76e8a83396e06abe3df569b25bd3fc88bf78b7baa2c8e4cf4aaf5983af66a3" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "f987fb859ee693826128c61470a49fe9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 568153, "upload_time": "2021-10-31T21:42:44", "upload_time_iso_8601": "2021-10-31T21:42:44.717277Z", "url": "https://files.pythonhosted.org/packages/20/fb/6f223e833128ec8823186f29484b079b90e194e32257ec660604e6fa90e4/aiohttp-3.8.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "376f84ff3b6c58d65463dcccbdc50071", "sha256": "5d79174d96446a02664e2bffc95e7b6fa93b9e6d8314536c5840dff130d0878b" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp38-cp38-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "376f84ff3b6c58d65463dcccbdc50071", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 743791, "upload_time": "2021-10-31T21:42:45", "upload_time_iso_8601": "2021-10-31T21:42:45.941287Z", "url": "https://files.pythonhosted.org/packages/45/e1/261f1d5c4e864fbbd2360ab42cd77bf5266f1294de9f48a74c1fd65de090/aiohttp-3.8.0-cp38-cp38-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d984be3ff8061b1156c704aacc5b2393", "sha256": "4a6551057a846bf72c7a04f73de3fcaca269c0bd85afe475ceb59d261c6a938c" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d984be3ff8061b1156c704aacc5b2393", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 590337, "upload_time": "2021-10-31T21:42:47", "upload_time_iso_8601": "2021-10-31T21:42:47.193040Z", "url": "https://files.pythonhosted.org/packages/20/4d/78a4142cbfced2477ec3e5ebb2125b5e83a562472fab56c3de47b9a18e1b/aiohttp-3.8.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1661f518959e28028a422635ca4175ff", "sha256": "871d4fdc56288caa58b1094c20f2364215f7400411f76783ea19ad13be7c8e19" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "1661f518959e28028a422635ca4175ff", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 568036, "upload_time": "2021-10-31T21:42:48", "upload_time_iso_8601": "2021-10-31T21:42:48.649715Z", "url": "https://files.pythonhosted.org/packages/59/e2/1c21bb3946f2b1f9fd8fc0275137ac40dbd016d92fd95f873a5ac02647d1/aiohttp-3.8.0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7093c24dbcb0c87d98fdbbb1ba7498d0", "sha256": "3ba08a71caa42eef64357257878fb17f3fba3fba6e81a51d170e32321569e079" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "7093c24dbcb0c87d98fdbbb1ba7498d0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1263749, "upload_time": "2021-10-31T21:42:49", "upload_time_iso_8601": "2021-10-31T21:42:49.959304Z", "url": "https://files.pythonhosted.org/packages/67/65/96c05cf2b0df752f0ee67e3d584e55ec6e53aea17170d837fb8ee5113393/aiohttp-3.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "57c060ac3255c1a38c9ee93511e86a22", "sha256": "51f90dabd9933b1621260b32c2f0d05d36923c7a5a909eb823e429dba0fd2f3e" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "57c060ac3255c1a38c9ee93511e86a22", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1281960, "upload_time": "2021-10-31T21:42:51", "upload_time_iso_8601": "2021-10-31T21:42:51.468883Z", "url": "https://files.pythonhosted.org/packages/1d/09/3050c04ae97a866d17d30d03fec444fb604574d338192b9ad8a306023890/aiohttp-3.8.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4267c16d6714d63770cb601ebd3270c3", "sha256": "f348ebd20554e8bc26e8ef3ed8a134110c0f4bf015b3b4da6a4ddf34e0515b19" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "4267c16d6714d63770cb601ebd3270c3", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1335765, "upload_time": "2021-10-31T21:42:52", "upload_time_iso_8601": "2021-10-31T21:42:52.800908Z", "url": "https://files.pythonhosted.org/packages/9d/06/6020e433e70c2443ed5cd8241b15a6b8def06bcf6c656f831c80c028fcbc/aiohttp-3.8.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "169a7f5755cb4a757ebf7d91b36ebd22", "sha256": "d5f8c04574efa814a24510122810e3a3c77c0552f9f6ff65c9862f1f046be2c3" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "169a7f5755cb4a757ebf7d91b36ebd22", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1247159, "upload_time": "2021-10-31T21:42:54", "upload_time_iso_8601": "2021-10-31T21:42:54.133539Z", "url": "https://files.pythonhosted.org/packages/9a/ee/63400095fc8866315b0683706d5671ec22122cbcbe1b26366c3aa0643bec/aiohttp-3.8.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1abf8d0d373b3444779376bfbf98127", "sha256": "5ecffdc748d3b40dd3618ede0170e4f5e1d3c9647cfb410d235d19e62cb54ee0" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "f1abf8d0d373b3444779376bfbf98127", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1270458, "upload_time": "2021-10-31T21:42:55", "upload_time_iso_8601": "2021-10-31T21:42:55.789414Z", "url": "https://files.pythonhosted.org/packages/58/6f/0106658708dec019b983a2b42ace18cce500983e1cf32f159d6dd84ad244/aiohttp-3.8.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5dd2cce8ef7d36cc38f289d33f08bbe8", "sha256": "577cc2c7b807b174814dac2d02e673728f2e46c7f90ceda3a70ea4bb6d90b769" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp38-cp38-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "5dd2cce8ef7d36cc38f289d33f08bbe8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1303549, "upload_time": "2021-10-31T21:42:57", "upload_time_iso_8601": "2021-10-31T21:42:57.191924Z", "url": "https://files.pythonhosted.org/packages/1e/27/f7406fd5935bffd2a0684557a67c41472bba94ade7c47e8462921a704d43/aiohttp-3.8.0-cp38-cp38-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d811013c20873f11159e75568fd9f2be", "sha256": "6b79f6c31e68b6dafc0317ec453c83c86dd8db1f8f0c6f28e97186563fca87a0" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp38-cp38-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "d811013c20873f11159e75568fd9f2be", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1267897, "upload_time": "2021-10-31T21:42:58", "upload_time_iso_8601": "2021-10-31T21:42:58.503953Z", "url": "https://files.pythonhosted.org/packages/75/e7/b6e8a49b35aba7fe48e65654ac3986bea38ca24e6b74563e798ca085d714/aiohttp-3.8.0-cp38-cp38-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "29e6d72a432a5beb9db70233ba18802c", "sha256": "2bdd655732e38b40f8a8344d330cfae3c727fb257585df923316aabbd489ccb8" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp38-cp38-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "29e6d72a432a5beb9db70233ba18802c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1326391, "upload_time": "2021-10-31T21:42:59", "upload_time_iso_8601": "2021-10-31T21:42:59.968885Z", "url": "https://files.pythonhosted.org/packages/d0/f3/8d17676bf30a6bf0f757057ff50693543b8eb0eba54a4cfa67f824c5b130/aiohttp-3.8.0-cp38-cp38-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43b63359aade187c5ddb816e78842a0a", "sha256": "63fa57a0708573d3c059f7b5527617bd0c291e4559298473df238d502e4ab98c" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp38-cp38-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "43b63359aade187c5ddb816e78842a0a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1373885, "upload_time": "2021-10-31T21:43:01", "upload_time_iso_8601": "2021-10-31T21:43:01.576929Z", "url": "https://files.pythonhosted.org/packages/67/e8/395f90c8ad41eedd672f3e2bc1bf0e67646cd9aa12e6d9851e60d76089cc/aiohttp-3.8.0-cp38-cp38-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ecf648ab02a64173c70e67660040063d", "sha256": "d3f90ee275b1d7c942e65b5c44c8fb52d55502a0b9a679837d71be2bd8927661" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp38-cp38-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "ecf648ab02a64173c70e67660040063d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1297519, "upload_time": "2021-10-31T21:43:03", "upload_time_iso_8601": "2021-10-31T21:43:03.596507Z", "url": "https://files.pythonhosted.org/packages/f6/10/8817cb381208cecf7ca9d765e28ff3ebcb0ea882a9dec9d2d3e46bcbc415/aiohttp-3.8.0-cp38-cp38-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67f886bbb3e9e8c2bbbbfc53c9bf4b70", "sha256": "fa818609357dde5c4a94a64c097c6404ad996b1d38ca977a72834b682830a722" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "67f886bbb3e9e8c2bbbbfc53c9bf4b70", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 551624, "upload_time": "2021-10-31T21:43:05", "upload_time_iso_8601": "2021-10-31T21:43:05.744125Z", "url": "https://files.pythonhosted.org/packages/4d/8d/13d975e0b95a8bb90293751788756bd837b62e4aa49fea348dccf33d1f75/aiohttp-3.8.0-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7b6c0ffb7fd477e817cdfe0407072e0c", "sha256": "097ecf52f6b9859b025c1e36401f8aa4573552e887d1b91b4b999d68d0b5a3b3" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "7b6c0ffb7fd477e817cdfe0407072e0c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 572313, "upload_time": "2021-10-31T21:43:08", "upload_time_iso_8601": "2021-10-31T21:43:08.167861Z", "url": "https://files.pythonhosted.org/packages/58/76/4db6f57acde60c8ed3f7656959a29eeff1e548ca9d19219a5d0e4e909056/aiohttp-3.8.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "97c2f2b364332caa32ba4ef0b2f804b2", "sha256": "be03a7483ad9ea60388f930160bb3728467dd0af538aa5edc60962ee700a0bdc" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp39-cp39-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "97c2f2b364332caa32ba4ef0b2f804b2", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 744845, "upload_time": "2021-10-31T21:43:10", "upload_time_iso_8601": "2021-10-31T21:43:10.246007Z", "url": "https://files.pythonhosted.org/packages/fc/ef/9825eb38d7d5c53bbac989fe22bfd81d5d31793600b8d92d04cbf9ffa450/aiohttp-3.8.0-cp39-cp39-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "510592884ead715f4fcf0770e3729d7d", "sha256": "78d51e35ed163783d721b6f2ce8ce3f82fccfe471e8e50a10fba13a766d31f5a" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "510592884ead715f4fcf0770e3729d7d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 591125, "upload_time": "2021-10-31T21:43:12", "upload_time_iso_8601": "2021-10-31T21:43:12.782364Z", "url": "https://files.pythonhosted.org/packages/c0/05/bd90442abfa0af436542d1abe7eef5650f130e2bc57ad9d3241e010b4ab1/aiohttp-3.8.0-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9fb59259ef617892ac33ca0c9d183cb8", "sha256": "bda75d73e7400e81077b0910c9a60bf9771f715420d7e35fa7739ae95555f195" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "9fb59259ef617892ac33ca0c9d183cb8", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 568435, "upload_time": "2021-10-31T21:43:14", "upload_time_iso_8601": "2021-10-31T21:43:14.462425Z", "url": "https://files.pythonhosted.org/packages/33/7d/09aa5c08805281848f08931c3d61562cafe83a5a9d21f2e65e97160fe92c/aiohttp-3.8.0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4a8dfa60951ffc4ddda1ade824a0b6ca", "sha256": "707adc30ea6918fba725c3cb3fe782d271ba352b22d7ae54a7f9f2e8a8488c41" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "4a8dfa60951ffc4ddda1ade824a0b6ca", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1251519, "upload_time": "2021-10-31T21:43:16", "upload_time_iso_8601": "2021-10-31T21:43:16.201747Z", "url": "https://files.pythonhosted.org/packages/4a/70/a832cea219ee70a6dcce1d991507aa5ea796b6bb82992ca4f3962b769acb/aiohttp-3.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e538be49e7cdeef21960352b7cbbd9e8", "sha256": "3f58aa995b905ab82fe228acd38538e7dc1509e01508dcf307dad5046399130f" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "e538be49e7cdeef21960352b7cbbd9e8", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1264899, "upload_time": "2021-10-31T21:43:18", "upload_time_iso_8601": "2021-10-31T21:43:18.188998Z", "url": "https://files.pythonhosted.org/packages/ee/39/c35ac21c3f63176f7b30a3ff44b1571a5a46a8642861f4883806d314151a/aiohttp-3.8.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "313ec5d3ad7fd560ada4cb92ce15fc2f", "sha256": "48c996eb91bfbdab1e01e2c02e7ff678c51e2b28e3a04e26e41691991cc55795" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "313ec5d3ad7fd560ada4cb92ce15fc2f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1320194, "upload_time": "2021-10-31T21:43:19", "upload_time_iso_8601": "2021-10-31T21:43:19.792954Z", "url": "https://files.pythonhosted.org/packages/ac/82/b1fdc034c3f3a1a2e1ad2825a607871f0c3e50384df02038819e954b6a10/aiohttp-3.8.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aafb6a1acd52e5f8379f31357467efdb", "sha256": "d6a1a66bb8bac9bc2892c2674ea363486bfb748b86504966a390345a11b1680e" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "aafb6a1acd52e5f8379f31357467efdb", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1200471, "upload_time": "2021-10-31T21:43:21", "upload_time_iso_8601": "2021-10-31T21:43:21.280059Z", "url": "https://files.pythonhosted.org/packages/c0/83/934b6d75f7692285379d8fef38c9c1c4d07e668742021ce8efc7d43c6e36/aiohttp-3.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ebd8ed74ab559c8f58f7104f0a142e1", "sha256": "dafc01a32b4a1d7d3ef8bfd3699406bb44f7b2e0d3eb8906d574846e1019b12f" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "4ebd8ed74ab559c8f58f7104f0a142e1", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1218313, "upload_time": "2021-10-31T21:43:22", "upload_time_iso_8601": "2021-10-31T21:43:22.662342Z", "url": "https://files.pythonhosted.org/packages/5b/9d/f9f7df8b1e984736ddb56467d3c054e0cfc0406c9b8d6d0dafd9d75d2b28/aiohttp-3.8.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f522693b8b5f7d5bbe95aa0b73c86ae9", "sha256": "949a605ef3907254b122f845baa0920407080cdb1f73aa64f8d47df4a7f4c4f9" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp39-cp39-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "f522693b8b5f7d5bbe95aa0b73c86ae9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1259579, "upload_time": "2021-10-31T21:43:24", "upload_time_iso_8601": "2021-10-31T21:43:24.028842Z", "url": "https://files.pythonhosted.org/packages/27/df/0b47c7b76259dd325e2da6ee3034678fa866406d0651c52bf0d9d2f9d12f/aiohttp-3.8.0-cp39-cp39-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "abd215965c9e385a02cee79e82cfa4a1", "sha256": "0d7b056fd3972d353cb4bc305c03f9381583766b7f8c7f1c44478dba69099e33" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp39-cp39-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "abd215965c9e385a02cee79e82cfa4a1", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1224049, "upload_time": "2021-10-31T21:43:25", "upload_time_iso_8601": "2021-10-31T21:43:25.988326Z", "url": "https://files.pythonhosted.org/packages/d7/cd/87b3948e2fd412a9dcf7b1e8029d49c2f51e96223682b3b43f80aeed9d67/aiohttp-3.8.0-cp39-cp39-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee68c562e3b553531f5c258454989c93", "sha256": "6f1d39a744101bf4043fa0926b3ead616607578192d0a169974fb5265ab1e9d2" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp39-cp39-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "ee68c562e3b553531f5c258454989c93", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1280697, "upload_time": "2021-10-31T21:43:27", "upload_time_iso_8601": "2021-10-31T21:43:27.545232Z", "url": "https://files.pythonhosted.org/packages/ab/b3/3303acf7974e065acacef85d5144826da8a03229098055c806812d28a34c/aiohttp-3.8.0-cp39-cp39-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f709a3c6a110a33cdf87970bcf8b9de0", "sha256": "67ca7032dfac8d001023fadafc812d9f48bf8a8c3bb15412d9cdcf92267593f4" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp39-cp39-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "f709a3c6a110a33cdf87970bcf8b9de0", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1328370, "upload_time": "2021-10-31T21:43:29", "upload_time_iso_8601": "2021-10-31T21:43:29.535121Z", "url": "https://files.pythonhosted.org/packages/90/7a/8604b1605325d74761d5fbd479eb22bab30e850916ed9d29db2eb5e7bfea/aiohttp-3.8.0-cp39-cp39-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08839af899d7cb3ee3da8d0b5779b2ea", "sha256": "cb751ef712570d3bda9a73fd765ff3e1aba943ec5d52a54a0c2e89c7eef9da1e" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp39-cp39-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "08839af899d7cb3ee3da8d0b5779b2ea", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1251819, "upload_time": "2021-10-31T21:43:31", "upload_time_iso_8601": "2021-10-31T21:43:31.193344Z", "url": "https://files.pythonhosted.org/packages/71/67/c28677dbea23c3bb6ded7b7828da6a0c1c2008737f34db758731a8021d48/aiohttp-3.8.0-cp39-cp39-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ff71a67a872073e5efd7e5773b55da93", "sha256": "6d3e027fe291b77f6be9630114a0200b2c52004ef20b94dc50ca59849cd623b3" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "ff71a67a872073e5efd7e5773b55da93", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 550804, "upload_time": "2021-10-31T21:43:32", "upload_time_iso_8601": "2021-10-31T21:43:32.612239Z", "url": "https://files.pythonhosted.org/packages/d1/97/ccfc794087159a8716f02aa814d322dfbcf36f2ebc2fcbaa6e2d0207e32b/aiohttp-3.8.0-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c8b861e8159805a50d491ab424649bbb", "sha256": "3c5e9981e449d54308c6824f172ec8ab63eb9c5f922920970249efee83f7e919" }, "downloads": -1, "filename": "aiohttp-3.8.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "c8b861e8159805a50d491ab424649bbb", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 571219, "upload_time": "2021-10-31T21:43:33", "upload_time_iso_8601": "2021-10-31T21:43:33.948898Z", "url": "https://files.pythonhosted.org/packages/60/cd/fff10c7097f9f364a8cff217480217f955d88fde05862038e5e699965212/aiohttp-3.8.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4743950052dbaf5ce5c3622754ebceae", "sha256": "d3b19d8d183bcfd68b25beebab8dc3308282fe2ca3d6ea3cb4cd101b3c279f8d" }, "downloads": -1, "filename": "aiohttp-3.8.0.tar.gz", "has_sig": false, "md5_digest": "4743950052dbaf5ce5c3622754ebceae", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 7323268, "upload_time": "2021-10-31T21:43:35", "upload_time_iso_8601": "2021-10-31T21:43:35.625621Z", "url": "https://files.pythonhosted.org/packages/48/1a/ba9542a545aed4b0b6ef128561f68dd3c2812ff5abfa9ed5b96547a728ea/aiohttp-3.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.8.0a7": [ { "comment_text": "", "digests": { "md5": "159e86fbe7184c1c2e971bda507b9614", "sha256": "1f672765df9fdae86d9f38bc1d9bbd2a8ceb31947a4330052d99a22178dbbae1" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp310-cp310-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "159e86fbe7184c1c2e971bda507b9614", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 745097, "upload_time": "2021-10-30T15:37:28", "upload_time_iso_8601": "2021-10-30T15:37:28.665747Z", "url": "https://files.pythonhosted.org/packages/4a/47/a1bd5bb7e34398b697d72d9593bd5d99cf16a366110e6e4d4f3e52f1c3fc/aiohttp-3.8.0a7-cp310-cp310-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4bde7a9160042166ff03e8b7ec4d65b2", "sha256": "07a3d46c8796066fc538fe13fe3b2e08f1bbdeba6592434558a5ed94490b066c" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4bde7a9160042166ff03e8b7ec4d65b2", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 591222, "upload_time": "2021-10-30T15:37:30", "upload_time_iso_8601": "2021-10-30T15:37:30.050432Z", "url": "https://files.pythonhosted.org/packages/25/6d/a2f8f9bbebc898225c03ce48e46ce52b1062c535206b07152302d12b9cbd/aiohttp-3.8.0a7-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "73dd682d86650807bb90b1462c8b0d74", "sha256": "f0c3864d5efc91a9707de1ee3aa9c70ee0f8b6c784cb44b3331682494a998392" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "73dd682d86650807bb90b1462c8b0d74", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 568447, "upload_time": "2021-10-30T15:37:31", "upload_time_iso_8601": "2021-10-30T15:37:31.666053Z", "url": "https://files.pythonhosted.org/packages/7a/67/ada5e98de2fd1439461dd4e1c370959b8673549dcbb2bf67c58f9260d465/aiohttp-3.8.0a7-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d94edc6274429e05bbdc3abe842a90cd", "sha256": "5d834390f58d799f6316478367ee5d1b8866ef0965cba961d46be3043dfca2e5" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "d94edc6274429e05bbdc3abe842a90cd", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1252269, "upload_time": "2021-10-30T15:37:33", "upload_time_iso_8601": "2021-10-30T15:37:33.414536Z", "url": "https://files.pythonhosted.org/packages/db/8e/25409a8804adcc25cc5253214fd9ca3424011403c8061500c682dda7d57a/aiohttp-3.8.0a7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "10621a2066e6c691a134e3170f033eee", "sha256": "4dc237f5c14c54944ce925c935d68edd9ea60407c620cdf97658fbea9c70e2d0" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "10621a2066e6c691a134e3170f033eee", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1266231, "upload_time": "2021-10-30T15:37:34", "upload_time_iso_8601": "2021-10-30T15:37:34.553906Z", "url": "https://files.pythonhosted.org/packages/8f/73/2124f1fda4daa5c2df5b30089395005bc49bc640c26952aa32dc7bd33a46/aiohttp-3.8.0a7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "602649b2d6c0b097eb37086c901ea63f", "sha256": "b59266d32472e3e1b981c4c5c59ebbf0f7e3a5d032260b968ab567d381d83237" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "602649b2d6c0b097eb37086c901ea63f", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1321476, "upload_time": "2021-10-30T15:37:36", "upload_time_iso_8601": "2021-10-30T15:37:36.647743Z", "url": "https://files.pythonhosted.org/packages/be/6c/77bc4354e135790e36166507970dda2b0170ad75e100e84596075a9cd209/aiohttp-3.8.0a7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "488ca539d8443f94855583a04de93046", "sha256": "b548e25104716a6ec9ea872810ece87992aa7a3966757421fa0b1b59f44ad4c4" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "488ca539d8443f94855583a04de93046", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1202645, "upload_time": "2021-10-30T15:37:38", "upload_time_iso_8601": "2021-10-30T15:37:38.161633Z", "url": "https://files.pythonhosted.org/packages/c3/e0/07dc946fce4fe943a663713375233e59931c8b17dee37dca562dcb73106f/aiohttp-3.8.0a7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8bad5685eb1b0982ce6e3e22306fb1d5", "sha256": "e05ac8126550b6fdaeb68afd1e5198df40b2af48ee4c96972931c87abb04ad8f" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "8bad5685eb1b0982ce6e3e22306fb1d5", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1222116, "upload_time": "2021-10-30T15:37:39", "upload_time_iso_8601": "2021-10-30T15:37:39.617793Z", "url": "https://files.pythonhosted.org/packages/c1/35/bed0e05bf0576ba0cca3bd623f95e2e579b63edfaa2ee612bba84811bb7f/aiohttp-3.8.0a7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fd85b512d9c2b44fdf17a6fbe2825647", "sha256": "f5ba8e3bcf85903345250cb7eabf4ce4efa667b07b70074cceaa0b903f61b4f0" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp310-cp310-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "fd85b512d9c2b44fdf17a6fbe2825647", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1263419, "upload_time": "2021-10-30T15:37:41", "upload_time_iso_8601": "2021-10-30T15:37:41.163787Z", "url": "https://files.pythonhosted.org/packages/9a/77/6877beb3740a3a3da8fbbd8f094d563458c00c8d3415b59e1fc6468b1103/aiohttp-3.8.0a7-cp310-cp310-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19ac318595a7169e73ebeb68309f7c05", "sha256": "fea5d837e363b26ccb47e6dd00986aafd9ca49b08ffc72997664e202294cb297" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp310-cp310-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "19ac318595a7169e73ebeb68309f7c05", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1228832, "upload_time": "2021-10-30T15:37:42", "upload_time_iso_8601": "2021-10-30T15:37:42.816410Z", "url": "https://files.pythonhosted.org/packages/20/04/e35f3338e2918cca4ae21dc12aa88d06b8b343b2bb356dd67ec842ae960c/aiohttp-3.8.0a7-cp310-cp310-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bcd5ed5d09dea00dd4b62cf67f39e55d", "sha256": "8f38d6302ebc37bb877ff1776d877282d90d3cd7781441904681d1c53ec6bdd0" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp310-cp310-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "bcd5ed5d09dea00dd4b62cf67f39e55d", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1283335, "upload_time": "2021-10-30T15:37:44", "upload_time_iso_8601": "2021-10-30T15:37:44.295495Z", "url": "https://files.pythonhosted.org/packages/14/98/3110402e86ef8ab5835b39cf6c5144f1fde76c8cc6eb2d421f244965b4eb/aiohttp-3.8.0a7-cp310-cp310-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4cbba23795ae3a6af4e1e53461818160", "sha256": "e7c12831bb295b3fedc8bb91d42d41003ab1272ce8c802112cbc740d8d6d2649" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp310-cp310-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "4cbba23795ae3a6af4e1e53461818160", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1330038, "upload_time": "2021-10-30T15:37:45", "upload_time_iso_8601": "2021-10-30T15:37:45.813577Z", "url": "https://files.pythonhosted.org/packages/f1/61/d3dcca4b1133168e9ec3014493b80cabc07bb3cc71ab0feabb0877afce84/aiohttp-3.8.0a7-cp310-cp310-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b21b28e244bd2d56fdd81ff1fc89ed0", "sha256": "cc210b385d4cc784648b6c484e4c83e23ce1473f8d1cea5e3add0c43c8eff79d" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp310-cp310-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "3b21b28e244bd2d56fdd81ff1fc89ed0", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1255784, "upload_time": "2021-10-30T15:37:47", "upload_time_iso_8601": "2021-10-30T15:37:47.336929Z", "url": "https://files.pythonhosted.org/packages/48/c8/345a6c180306dee815ae5a98494db2c7e9c1673e525aa2a043ac02ad4130/aiohttp-3.8.0a7-cp310-cp310-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "990214ffd748f4baf610c7edb2924835", "sha256": "cf8374aa4e3fd6e849a48ddefaeba6674d338d85c525ac38bfa4b941ec1359a0" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp310-cp310-win32.whl", "has_sig": false, "md5_digest": "990214ffd748f4baf610c7edb2924835", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 550578, "upload_time": "2021-10-30T15:37:48", "upload_time_iso_8601": "2021-10-30T15:37:48.708791Z", "url": "https://files.pythonhosted.org/packages/0b/cd/27984e41c8d99f0d658a55efe5eb273205397dfe871587c9e028f9453445/aiohttp-3.8.0a7-cp310-cp310-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "176306e7f456cf4080ca3bdc74904874", "sha256": "9ad648f029f8603b3025937ba66d2555d4e2a0f606693e89e2a1fb3479530dfe" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "176306e7f456cf4080ca3bdc74904874", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 571213, "upload_time": "2021-10-30T15:37:49", "upload_time_iso_8601": "2021-10-30T15:37:49.993872Z", "url": "https://files.pythonhosted.org/packages/e6/cc/3b385af6bb6430d1345a4d6f38597f53d650ada53b99c11dcd95405c0a10/aiohttp-3.8.0a7-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7203331793fc112ccaced72ab3835019", "sha256": "61cae18264b4955eabeb950f10e3c700ce00d1eecd91a3140129bcbeb60d63e1" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7203331793fc112ccaced72ab3835019", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 586968, "upload_time": "2021-10-30T15:37:51", "upload_time_iso_8601": "2021-10-30T15:37:51.444447Z", "url": "https://files.pythonhosted.org/packages/55/14/c90028880ccc4e4c4666e939309be84f70fdb9da891016291f928f9d7445/aiohttp-3.8.0a7-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b58188c44f1ea918a705f3995a041dfd", "sha256": "9d33df01ab70cc185cb565f3d685e1b03797007ee0ab48769c55e0b4d2b465ed" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "b58188c44f1ea918a705f3995a041dfd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1173505, "upload_time": "2021-10-30T15:37:52", "upload_time_iso_8601": "2021-10-30T15:37:52.905601Z", "url": "https://files.pythonhosted.org/packages/d1/69/a311e595e58950f9d6dee16e66eab38f05577f3e3dacdf4c0f4ff16ce7e4/aiohttp-3.8.0a7-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "396a70465215e031399b23c04ee020c1", "sha256": "47b61a5d44fdf841394bec415446bc9c4cbb331197110379293447955c0a8661" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "396a70465215e031399b23c04ee020c1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1188465, "upload_time": "2021-10-30T15:37:54", "upload_time_iso_8601": "2021-10-30T15:37:54.367375Z", "url": "https://files.pythonhosted.org/packages/b9/59/175f7dc2319e543713bee5abb3f92df2e0d1c4aab95a8367cebd63312aee/aiohttp-3.8.0a7-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e6d72ffea0972070c1084e540fd6aeb", "sha256": "b71e505cfef591bb930e2c6ceb68956f1cc69266446d601e8970b4069f9c3442" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "9e6d72ffea0972070c1084e540fd6aeb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1247204, "upload_time": "2021-10-30T15:37:55", "upload_time_iso_8601": "2021-10-30T15:37:55.700899Z", "url": "https://files.pythonhosted.org/packages/e6/19/d962a94001f452c720d8751d28de0687a0b19b328be705087bb5a4f1a3d7/aiohttp-3.8.0a7-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a0903e66c1fd94723a37b1c5fbe4f5bd", "sha256": "cae10e14557a6d57cd76e3e9733d321dea3a270788b14234ed605db67e210c3d" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "a0903e66c1fd94723a37b1c5fbe4f5bd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1118737, "upload_time": "2021-10-30T15:37:57", "upload_time_iso_8601": "2021-10-30T15:37:57.159902Z", "url": "https://files.pythonhosted.org/packages/fe/ff/d0533070009080e66acd67b1fccda73ec85016b940306aea608d0fe91727/aiohttp-3.8.0a7-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da181b5ba105b7d1fee70e09a8d2ae2b", "sha256": "deb180c492032e721527680ff7155dd3860ae8b90868f14c2a5a9632fb410387" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "da181b5ba105b7d1fee70e09a8d2ae2b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1136111, "upload_time": "2021-10-30T15:37:58", "upload_time_iso_8601": "2021-10-30T15:37:58.733301Z", "url": "https://files.pythonhosted.org/packages/fb/30/ceaa5955c28b5341259244c14325c1ed0bdad8dbf43c3348963ac5c1ecf4/aiohttp-3.8.0a7-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b887e7c87c6666b6c888463a77402b2c", "sha256": "1b8086048ca2e976163e93f560bc098a30b3e782c1400df0a5d8643abe34e798" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp36-cp36m-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "b887e7c87c6666b6c888463a77402b2c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1181293, "upload_time": "2021-10-30T15:38:00", "upload_time_iso_8601": "2021-10-30T15:38:00.357371Z", "url": "https://files.pythonhosted.org/packages/10/a4/95d32db59bf986098d57061d2231b8e26011b7fec1110eb2d53dc39b07f4/aiohttp-3.8.0a7-cp36-cp36m-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f34f289a93cbf5fb77e82756875974fc", "sha256": "30f3cfa66631d3e9e32b05ed8061c3cfbc2eae05338381d739a1147d4a797d3a" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp36-cp36m-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "f34f289a93cbf5fb77e82756875974fc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1155709, "upload_time": "2021-10-30T15:38:01", "upload_time_iso_8601": "2021-10-30T15:38:01.782631Z", "url": "https://files.pythonhosted.org/packages/f0/5b/45584d060653148bc2ba33472698ccd568770103edf9d2a13ef0d8511b94/aiohttp-3.8.0a7-cp36-cp36m-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da4c83ae4df8bcab9e1e5700a3be3321", "sha256": "fa4342c1eac30a46653fcf90fe613a68ac2fbbcf599a47cedb4197d3cea49754" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp36-cp36m-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "da4c83ae4df8bcab9e1e5700a3be3321", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1201873, "upload_time": "2021-10-30T15:38:03", "upload_time_iso_8601": "2021-10-30T15:38:03.231900Z", "url": "https://files.pythonhosted.org/packages/41/a1/6b83fac667fc17a5d47c76ee912053bb8c8f48e773a4344b10308ef18c97/aiohttp-3.8.0a7-cp36-cp36m-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3c3924b407ba003ba7f7d8964c0e0117", "sha256": "4f7a77e5986fafddf1cd1e92b1b218d96c74375f882ade3cfa9853ff366a16ed" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp36-cp36m-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "3c3924b407ba003ba7f7d8964c0e0117", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1250644, "upload_time": "2021-10-30T15:38:04", "upload_time_iso_8601": "2021-10-30T15:38:04.680243Z", "url": "https://files.pythonhosted.org/packages/c7/7c/24dfaacf7a6db66b67e8b38e4c7bff1f5883559bc37ceb3ecdbd9d8a65ae/aiohttp-3.8.0a7-cp36-cp36m-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8dfd8896102c83d2258fe649d092f173", "sha256": "a5ad7145ce5fa047614b4f4818824fb8a88a0f12a2220a92e36f0615a0e5989c" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp36-cp36m-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "8dfd8896102c83d2258fe649d092f173", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1174058, "upload_time": "2021-10-30T15:38:06", "upload_time_iso_8601": "2021-10-30T15:38:06.097911Z", "url": "https://files.pythonhosted.org/packages/bb/ca/74e4fd332fd4bd250872bfc34fea9b6b365f21167169e172382e51d721a9/aiohttp-3.8.0a7-cp36-cp36m-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b5ab34db525c7a7f451d2b95cd021484", "sha256": "9a0d6bb906ae00b38af841e20c49a8d2083f34ccd9e8db43d9e84a91ca953720" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "b5ab34db525c7a7f451d2b95cd021484", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 547634, "upload_time": "2021-10-30T15:38:07", "upload_time_iso_8601": "2021-10-30T15:38:07.406929Z", "url": "https://files.pythonhosted.org/packages/34/db/2a25e2de91aa81daec1aec9fc1b44796a73561f1c3946b98873e2349783d/aiohttp-3.8.0a7-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac0a0f3799e938ebd0fb60c08d5fbf41", "sha256": "698a82ec58a0f6668eb6b01bdcfa2e88090ffbba407dc5a2d2e06e1bcf89ff07" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "ac0a0f3799e938ebd0fb60c08d5fbf41", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 567231, "upload_time": "2021-10-30T15:38:08", "upload_time_iso_8601": "2021-10-30T15:38:08.704242Z", "url": "https://files.pythonhosted.org/packages/12/1d/abb7a5c45919b1a50940f9a5c8fd75b6ff3617e803769c8a57e696fb49b4/aiohttp-3.8.0a7-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1be123a9c2d5482d0472f89c6cc867d", "sha256": "6847b4a2dc36377ab82bcbe0ed79f9cf33cc313bf55c9bb3b1b2d3d8cab6d6a6" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f1be123a9c2d5482d0472f89c6cc867d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 586888, "upload_time": "2021-10-30T15:38:10", "upload_time_iso_8601": "2021-10-30T15:38:10.024295Z", "url": "https://files.pythonhosted.org/packages/7f/49/009fc6af01d6354b6ab0561da3d2ccaef749c33686f6712d4cf8eecdec2e/aiohttp-3.8.0a7-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "96b290a91e374e210b1c2c0f32449ed8", "sha256": "07f92b48c557abc0e87c22f9fc21001f6ff9c8e325210e2f6ac0b9cd52c51f97" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "96b290a91e374e210b1c2c0f32449ed8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1174088, "upload_time": "2021-10-30T15:38:11", "upload_time_iso_8601": "2021-10-30T15:38:11.606228Z", "url": "https://files.pythonhosted.org/packages/56/ab/f132ea32c9ebbdcd7c224e40095f84227c88a7a999c50954d187b3e52041/aiohttp-3.8.0a7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "79cd9c48cd0840c263dd8a5b41d0d97b", "sha256": "f9bef469186b88717f09205cbba23b4e91155b74fe5afc68a8e4e8808e22e942" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "79cd9c48cd0840c263dd8a5b41d0d97b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1188022, "upload_time": "2021-10-30T15:38:12", "upload_time_iso_8601": "2021-10-30T15:38:12.901259Z", "url": "https://files.pythonhosted.org/packages/a0/9a/677eebd47d3aeedfa1697d1b55e1f19d8fa63cfc6cd2d72df29c779eeb79/aiohttp-3.8.0a7-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c641480a1fd1cf26647b81ebd9b2cd84", "sha256": "d1615cc69a049c623b69c267025949c52760329bb509719def5ad916b3ff8f7d" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "c641480a1fd1cf26647b81ebd9b2cd84", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1247597, "upload_time": "2021-10-30T15:38:14", "upload_time_iso_8601": "2021-10-30T15:38:14.763241Z", "url": "https://files.pythonhosted.org/packages/c8/d0/24d0fdfcade4a076a24d71eca564dd6e73210cc48d26f01389772f087637/aiohttp-3.8.0a7-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82448926121f713a3b879027864f9fb8", "sha256": "f2d1d22129f2bb4a8fd6f82c5684aa6b3893fc26a31476cb8913af071408a3cd" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "82448926121f713a3b879027864f9fb8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1123084, "upload_time": "2021-10-30T15:38:16", "upload_time_iso_8601": "2021-10-30T15:38:16.262502Z", "url": "https://files.pythonhosted.org/packages/b9/f6/08b8c73f1e20b4226fe069e2e190cb27fbc5a4b623841a665289e2749355/aiohttp-3.8.0a7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "00d1a72f71402b55d904eef0b6d726e2", "sha256": "0c1a358055375773ccc7b3a60c20c624a81ea8cbd15a9c41b639c0b90832fa58" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "00d1a72f71402b55d904eef0b6d726e2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1141834, "upload_time": "2021-10-30T15:38:17", "upload_time_iso_8601": "2021-10-30T15:38:17.561823Z", "url": "https://files.pythonhosted.org/packages/1e/8e/0454f3bfe652b0e4f7f104dca39734b4c27f25e65b44b7cdcc6788f653d8/aiohttp-3.8.0a7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c6238d690742c047c233dcab041ba4ee", "sha256": "296b5d3d066e7b409ecb938d53c233c0d5b9665211c1e5c2876d9f5e370c32a2" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp37-cp37m-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "c6238d690742c047c233dcab041ba4ee", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1191420, "upload_time": "2021-10-30T15:38:18", "upload_time_iso_8601": "2021-10-30T15:38:18.863012Z", "url": "https://files.pythonhosted.org/packages/5b/72/1e486ef001653a9cb9547ac0631ed1e8f6ba50c1e4706ca74205f0210977/aiohttp-3.8.0a7-cp37-cp37m-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "690f256c4eff7e14dd0648f10059c204", "sha256": "4aed312bfab6c06803ad236ce67ea98af0120a72b01dd2803b917af6f227afce" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp37-cp37m-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "690f256c4eff7e14dd0648f10059c204", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1163107, "upload_time": "2021-10-30T15:38:20", "upload_time_iso_8601": "2021-10-30T15:38:20.168908Z", "url": "https://files.pythonhosted.org/packages/56/4f/96ee72a816a8bf9170377beb409a63a991d32681a78d24bf00e298c7529f/aiohttp-3.8.0a7-cp37-cp37m-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1fe2cbb42843a2578214131cf58b4094", "sha256": "655fb0266b5692347c748145ad77479743a92f9ebcc65b2510584dedd706f242" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp37-cp37m-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "1fe2cbb42843a2578214131cf58b4094", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1206770, "upload_time": "2021-10-30T15:38:21", "upload_time_iso_8601": "2021-10-30T15:38:21.702692Z", "url": "https://files.pythonhosted.org/packages/f2/22/ab3432f4f10a7e77790f7a360cf84fe7ccd909d0c0e00d85e70ea37546e6/aiohttp-3.8.0a7-cp37-cp37m-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ef9e5401ff8f4524fdf068b0db28f19", "sha256": "6adca096df4ce6abd90ab07cb5a18fa12c52d8ae9492b004a1a403a0ea5bbae4" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp37-cp37m-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "6ef9e5401ff8f4524fdf068b0db28f19", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1255823, "upload_time": "2021-10-30T15:38:22", "upload_time_iso_8601": "2021-10-30T15:38:22.992950Z", "url": "https://files.pythonhosted.org/packages/f8/ab/21cc0f6845196c8b56265ad0b5a7ed66f9ba4c7b3dde6844dc44eceb2da8/aiohttp-3.8.0a7-cp37-cp37m-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "83f0692d02d97a390cf70cf3fd1cf1df", "sha256": "4f0841982bde50b14643c347ddaf1d6ecd8fe3f85beb9352887a8a6516fda296" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp37-cp37m-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "83f0692d02d97a390cf70cf3fd1cf1df", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1184540, "upload_time": "2021-10-30T15:38:24", "upload_time_iso_8601": "2021-10-30T15:38:24.294359Z", "url": "https://files.pythonhosted.org/packages/23/87/2dc18a804154d1be3ce48763d3ce0c0bf77af527cf4c4f7e306e31fa9c7b/aiohttp-3.8.0a7-cp37-cp37m-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7816e1a46fd523805563d89df913b1c7", "sha256": "e557f5d9552c72ba46f7a520bde126a3bfa59dc672a6457c5cca4499d8a2be7d" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "7816e1a46fd523805563d89df913b1c7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 547983, "upload_time": "2021-10-30T15:38:25", "upload_time_iso_8601": "2021-10-30T15:38:25.713975Z", "url": "https://files.pythonhosted.org/packages/d8/99/d6f90a3c10a36e6022d7b529d9ea72552ad6416005ddcad2750cf1a511a2/aiohttp-3.8.0a7-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a88ce5a8483c714d09eff8465213af95", "sha256": "1ac0a11c91f9f1f14b063cdf5730331197c61d6c1ed51fcf6f5a4c482701575d" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "a88ce5a8483c714d09eff8465213af95", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 567984, "upload_time": "2021-10-30T15:38:26", "upload_time_iso_8601": "2021-10-30T15:38:26.848199Z", "url": "https://files.pythonhosted.org/packages/a8/29/76007ff37bc60e818920e6d115032287d161b0f74c7bef9c74eabac05ebf/aiohttp-3.8.0a7-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "33b5b1cfe30c6a98395d21d7a2af1f8f", "sha256": "22bcb847dfa8fe5112ece76f4bb896f9204d59a79ee59ea7602930e30bba17de" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp38-cp38-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "33b5b1cfe30c6a98395d21d7a2af1f8f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 743615, "upload_time": "2021-10-30T15:38:28", "upload_time_iso_8601": "2021-10-30T15:38:28.093886Z", "url": "https://files.pythonhosted.org/packages/7d/21/20dd60aff29789f5ed540b66956d68ff8cf6378d11c431f5cf18fd9c238f/aiohttp-3.8.0a7-cp38-cp38-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "05268bb82120d84050b422fcca1606a6", "sha256": "e3586eb9424c7b7f061fa2a76498603564fb245061a8cb258df7cec20fd8a84c" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "05268bb82120d84050b422fcca1606a6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 590166, "upload_time": "2021-10-30T15:38:29", "upload_time_iso_8601": "2021-10-30T15:38:29.883539Z", "url": "https://files.pythonhosted.org/packages/ed/fa/2311f4d912e5a588dc28844cfb98c035d324b440a115e820c87e64cf4b73/aiohttp-3.8.0a7-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4f9b14e986e1e79ff23089002687cf1c", "sha256": "21a5f48be649e4f3788030ee3acf976ca62f4b07b1be19d4bf9536bd7c23c943" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "4f9b14e986e1e79ff23089002687cf1c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 567855, "upload_time": "2021-10-30T15:38:31", "upload_time_iso_8601": "2021-10-30T15:38:31.117653Z", "url": "https://files.pythonhosted.org/packages/96/eb/526bec2b01700fba007eb6b1377fb8d783cb6cd25f89e101f7c90659feef/aiohttp-3.8.0a7-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7737c495e303f992df7f65b520cc43b9", "sha256": "0b4e9959e57a46ebf2446b43f04f0eac95fc0e92d6808cad5e52c061e11c1690" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "7737c495e303f992df7f65b520cc43b9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1263574, "upload_time": "2021-10-30T15:38:32", "upload_time_iso_8601": "2021-10-30T15:38:32.372921Z", "url": "https://files.pythonhosted.org/packages/e0/45/76033d58fd5544718c49685be140b5c90926d43319a9578bffc1fd7e8f38/aiohttp-3.8.0a7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2668d68cde8d39251413a4da9c3c4a81", "sha256": "318644d335fec1639e1160d4a9c033714841951e288e162e632c935f105c72d6" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "2668d68cde8d39251413a4da9c3c4a81", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1281800, "upload_time": "2021-10-30T15:38:33", "upload_time_iso_8601": "2021-10-30T15:38:33.933365Z", "url": "https://files.pythonhosted.org/packages/ce/df/92ec59cbe8ce4e80034cbba0617e7932a9df5c8b48a3d8c9574848438b54/aiohttp-3.8.0a7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "70edfda40f6afc2517002d960ef0f81d", "sha256": "0ee7f30d3dc347a808b991de33c85086fbf619a38c5ff5f0d6092ecfc3d3be74" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "70edfda40f6afc2517002d960ef0f81d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1335590, "upload_time": "2021-10-30T15:38:35", "upload_time_iso_8601": "2021-10-30T15:38:35.402689Z", "url": "https://files.pythonhosted.org/packages/0d/82/05001f11fd57a22d8c065a96afe647545cda56534fc148f4f0d8eb772f54/aiohttp-3.8.0a7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0629ac5510acb71c6971747dc92cff07", "sha256": "1e3e9454f3a6b081127f97b0b29ed09f575487029aff57ec17f24af9dee0b773" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "0629ac5510acb71c6971747dc92cff07", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1246982, "upload_time": "2021-10-30T15:38:36", "upload_time_iso_8601": "2021-10-30T15:38:36.821803Z", "url": "https://files.pythonhosted.org/packages/08/7e/fb544a454e87f853512022ffea5d2a25f22507fa3e7544d63e032293c3c5/aiohttp-3.8.0a7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aff7f1c3c846587461d785a1556d67fc", "sha256": "bb00745431194992b04a0f8c22b7451e112aa4bf1f61351a4a44cab930464398" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "aff7f1c3c846587461d785a1556d67fc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1270251, "upload_time": "2021-10-30T15:38:38", "upload_time_iso_8601": "2021-10-30T15:38:38.120333Z", "url": "https://files.pythonhosted.org/packages/b0/a8/adf34034873b1c69aa3aeae3d671596a065a90e9100f3234686210c7e372/aiohttp-3.8.0a7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4b8a1392693583cf17846bc419f5b1be", "sha256": "ae848e622d704a66203705aebe6b73d97ce96f25d46a3a95bd3fe0239cc2cd60" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp38-cp38-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "4b8a1392693583cf17846bc419f5b1be", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1303368, "upload_time": "2021-10-30T15:38:40", "upload_time_iso_8601": "2021-10-30T15:38:40.064054Z", "url": "https://files.pythonhosted.org/packages/72/af/68d337631aed3f8732b7d60e80d4057e35df5d8d05f99ea698ec6bf643cc/aiohttp-3.8.0a7-cp38-cp38-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "714152b407ce4ead691efcfc22b8f800", "sha256": "02e45941bb2f7ff4f0d51940150994993ac54106a43430656650bfc46e0e4bef" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp38-cp38-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "714152b407ce4ead691efcfc22b8f800", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1267744, "upload_time": "2021-10-30T15:38:41", "upload_time_iso_8601": "2021-10-30T15:38:41.594234Z", "url": "https://files.pythonhosted.org/packages/e1/71/c6443e74ad61dcf60f7d4eff882cbe9f3a78b2f2f33fd70eac8360b30418/aiohttp-3.8.0a7-cp38-cp38-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ea00a2cca94013d4fc2c16eff7225af4", "sha256": "a261e41440ad776076510e311f5642c2153c7a51ba71fe34b57fbe80ce9b45d5" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp38-cp38-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "ea00a2cca94013d4fc2c16eff7225af4", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1326231, "upload_time": "2021-10-30T15:38:43", "upload_time_iso_8601": "2021-10-30T15:38:43.026868Z", "url": "https://files.pythonhosted.org/packages/6a/b7/7dbdaec6e8c5e4edd974266c597c0cb81e4539dfecead961fdaf3964d077/aiohttp-3.8.0a7-cp38-cp38-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "10c0626d3489be4937148347d996ab16", "sha256": "fea4e433a7ee458cd6c02cf069d1c4c6ebc8e5fde00d8b86b51cb08933904e7e" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp38-cp38-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "10c0626d3489be4937148347d996ab16", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1373724, "upload_time": "2021-10-30T15:38:44", "upload_time_iso_8601": "2021-10-30T15:38:44.454362Z", "url": "https://files.pythonhosted.org/packages/a0/e5/80561f297586c8e1a541b017b3fdb989d56cd2b14871a4445b3936dfbee5/aiohttp-3.8.0a7-cp38-cp38-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3a6cbfa2cdd6d42b619c2eadbf8951d9", "sha256": "464d0be76a9d12d332bd958823a4fa40a0f41087493f94c6769dabca2344c00d" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp38-cp38-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "3a6cbfa2cdd6d42b619c2eadbf8951d9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1297344, "upload_time": "2021-10-30T15:38:45", "upload_time_iso_8601": "2021-10-30T15:38:45.864263Z", "url": "https://files.pythonhosted.org/packages/c0/75/54de2ec0495bb720d0570cbdb06462d0b99458076b256e1a26484ce9e44c/aiohttp-3.8.0a7-cp38-cp38-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "df7a3af8a577104ab18ad5b9f393113b", "sha256": "fb6436b37d4a50090578ab7d4e2db7528bef97d9c074a68d93f58685da5edaab" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "df7a3af8a577104ab18ad5b9f393113b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 551456, "upload_time": "2021-10-30T15:38:47", "upload_time_iso_8601": "2021-10-30T15:38:47.218697Z", "url": "https://files.pythonhosted.org/packages/e9/e1/4a44f322018457948d7901fa9a0487477c35beaa981e1f97482526256d1c/aiohttp-3.8.0a7-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "579012c0d6b61e4f051efe03ddc90e1f", "sha256": "9cae035489ca6a43938a451b96f4a6f0630dd341105499c8a58fffebce27d0ee" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "579012c0d6b61e4f051efe03ddc90e1f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 572142, "upload_time": "2021-10-30T15:38:48", "upload_time_iso_8601": "2021-10-30T15:38:48.674857Z", "url": "https://files.pythonhosted.org/packages/4c/46/a738f44447ec8f72511059b9ca885289a3f190383b3b9a7edfa946564818/aiohttp-3.8.0a7-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7825e2ac34e27e87205941ec318f0fad", "sha256": "0bdeacb631424dfffeb391b82a1b6d8fc54ab65541af798644136454f82db43d" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp39-cp39-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "7825e2ac34e27e87205941ec318f0fad", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 744661, "upload_time": "2021-10-30T15:38:50", "upload_time_iso_8601": "2021-10-30T15:38:50.257489Z", "url": "https://files.pythonhosted.org/packages/49/e9/960c4ddaadeccb4410676aea2e84ee18ab382a2dedc451c150ffd34a3f64/aiohttp-3.8.0a7-cp39-cp39-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "38596f1b998f9e88c9b65de8a0fc65a2", "sha256": "34bbdfd00b7133534d9b45feafa6afdfbaf6c8632971b1bba24fa27f33727cd3" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "38596f1b998f9e88c9b65de8a0fc65a2", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 590943, "upload_time": "2021-10-30T15:38:52", "upload_time_iso_8601": "2021-10-30T15:38:52.052999Z", "url": "https://files.pythonhosted.org/packages/3a/24/ef38a5b3bc4008f3ab72e99b3cc81b3d2bceb2abc67d5d61ed5a3a52d7e2/aiohttp-3.8.0a7-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ba557a68f5208ae76720df8b52a9676", "sha256": "81dfa3beb82bb1a8d6dc321c67a33228f42df9b2b85ceb4948423d49cb88c7d5" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "9ba557a68f5208ae76720df8b52a9676", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 568261, "upload_time": "2021-10-30T15:38:53", "upload_time_iso_8601": "2021-10-30T15:38:53.360162Z", "url": "https://files.pythonhosted.org/packages/ed/42/ef9eea50a9b9f272cb175cec2d3cf99724949ff949dc5f3b931e86c83dea/aiohttp-3.8.0a7-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "03f4df71613d486ea630bc2e53db02d3", "sha256": "b4bd02091972bba25c47091335288cdf5587728f65c943dfdb3dada622be87c6" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "03f4df71613d486ea630bc2e53db02d3", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1251346, "upload_time": "2021-10-30T15:38:54", "upload_time_iso_8601": "2021-10-30T15:38:54.702549Z", "url": "https://files.pythonhosted.org/packages/72/a0/ead79fbffe6e23c426d54a8baf99b8be311e24a69400c86105af8eed4ca9/aiohttp-3.8.0a7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e09ef1866d15a55564e784469c8d63c4", "sha256": "c4b39264b9e5c35b3ed7a4ba8125a4e57e0b90b78e9983845a30499ac397cc6d" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "e09ef1866d15a55564e784469c8d63c4", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1264737, "upload_time": "2021-10-30T15:38:56", "upload_time_iso_8601": "2021-10-30T15:38:56.106724Z", "url": "https://files.pythonhosted.org/packages/ff/dd/06834e8d157c6d4c3ee95b75ddbe5a90cf7fa3dee7ef8908fa29bad94b1c/aiohttp-3.8.0a7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "64c07dbcd43ec573a615dc0d52e3ba41", "sha256": "b6998da4b4e6bad2cd11e842679b1a6f3735326511f66d19b336087f7cb09bfe" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "64c07dbcd43ec573a615dc0d52e3ba41", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1320016, "upload_time": "2021-10-30T15:38:57", "upload_time_iso_8601": "2021-10-30T15:38:57.382767Z", "url": "https://files.pythonhosted.org/packages/91/e6/43785afd1cab14bf34193c4dce9447cf8c6e6c57b7b4e9849b7d7e6716fb/aiohttp-3.8.0a7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f092d8f8083a3c54aeb6884202bdd9b9", "sha256": "57f7397a0d292b001f8dea65b8942544aa3e59a7aad9c6a08ab0fad0a61ec97e" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "f092d8f8083a3c54aeb6884202bdd9b9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1200270, "upload_time": "2021-10-30T15:38:58", "upload_time_iso_8601": "2021-10-30T15:38:58.712506Z", "url": "https://files.pythonhosted.org/packages/33/78/323a375ccc2b63d2b43eb2aa6b6acc333e08d533d01d661614e8d57416fb/aiohttp-3.8.0a7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3a9ab7ce5be5eb14625d6210776e916c", "sha256": "bc8673a896ee82de0d3a2c6e07a961e03c68e263486d2fd594f0a996702d193f" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "3a9ab7ce5be5eb14625d6210776e916c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1218142, "upload_time": "2021-10-30T15:39:00", "upload_time_iso_8601": "2021-10-30T15:39:00.013430Z", "url": "https://files.pythonhosted.org/packages/2c/99/da1d05299952766fe32e944b4d452d8456b4d67c304b722b61caef5a6f4c/aiohttp-3.8.0a7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f69786478aca4a0a30ec0fbfb52d5a9", "sha256": "3458f7e1709b69743d56bab2005d8d1065cb9cbb42c2ec27e0841e9fae1c4bfb" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp39-cp39-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "5f69786478aca4a0a30ec0fbfb52d5a9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1259402, "upload_time": "2021-10-30T15:39:01", "upload_time_iso_8601": "2021-10-30T15:39:01.607307Z", "url": "https://files.pythonhosted.org/packages/1d/a6/40d6c2ded77279e90ff1245c59a1af762ad067d041ff8801339734fb321d/aiohttp-3.8.0a7-cp39-cp39-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cdcdb418c3c9e8c51cf14cbc9c18527d", "sha256": "82156da69d67fd274bbb75d4260019d1eb4d031c57a9d5a317afec726e24f8af" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp39-cp39-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "cdcdb418c3c9e8c51cf14cbc9c18527d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1223884, "upload_time": "2021-10-30T15:39:03", "upload_time_iso_8601": "2021-10-30T15:39:03.289523Z", "url": "https://files.pythonhosted.org/packages/43/5b/08f7fa968276d2fc2010a2db3b3679eff15712e47237e9973fe718475a84/aiohttp-3.8.0a7-cp39-cp39-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f1687be1cbe5a8b686b04389c68561d", "sha256": "95341a2c48dc86af1b1f3a49d626c12d2754e8a854c409a05704b56c82349dec" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp39-cp39-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "3f1687be1cbe5a8b686b04389c68561d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1280484, "upload_time": "2021-10-30T15:39:04", "upload_time_iso_8601": "2021-10-30T15:39:04.848889Z", "url": "https://files.pythonhosted.org/packages/e0/86/e2f171789e8287274e3ccd584bb50ccf51b56c14459886535298b9b89737/aiohttp-3.8.0a7-cp39-cp39-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab6aa3a876620a2657d5818f83156509", "sha256": "989dd7ef5e5ff29cf300c01ab32edb9516ef4060a91143874ba24893e97cd978" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp39-cp39-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "ab6aa3a876620a2657d5818f83156509", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1328190, "upload_time": "2021-10-30T15:39:06", "upload_time_iso_8601": "2021-10-30T15:39:06.662484Z", "url": "https://files.pythonhosted.org/packages/bc/98/056c86f70eae78d9f026aeb5737e4622b7d8193506083b1cd340811db75b/aiohttp-3.8.0a7-cp39-cp39-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cab201b1a4c0600e05e12bbeaa41d314", "sha256": "3759fb5318a5ea851a981ffb39b0572c40f17148dca7d9873cd1f3cb638406fb" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp39-cp39-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "cab201b1a4c0600e05e12bbeaa41d314", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1251655, "upload_time": "2021-10-30T15:39:08", "upload_time_iso_8601": "2021-10-30T15:39:08.087523Z", "url": "https://files.pythonhosted.org/packages/72/9b/c645d7005ae4a72fc15669481452289a95f71f3fe219f5084d347e41425d/aiohttp-3.8.0a7-cp39-cp39-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "53010420020087c9154f5c07f3fc6204", "sha256": "8498be5a4fe149a361cc6329373cb1590f2557fceac2707c276823f1d9e48216" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "53010420020087c9154f5c07f3fc6204", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 550635, "upload_time": "2021-10-30T15:39:09", "upload_time_iso_8601": "2021-10-30T15:39:09.365724Z", "url": "https://files.pythonhosted.org/packages/32/60/32d37c92e227095d25ebf72d5946ef96bfaf3f792fb4a87b801fbabb1ff5/aiohttp-3.8.0a7-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aa324024709f8452ed07c4ee7e25b177", "sha256": "5aeb958080c38b4244a9150de1e4f9587f4e2a80c44d473391c4d6f1052262e1" }, "downloads": -1, "filename": "aiohttp-3.8.0a7-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "aa324024709f8452ed07c4ee7e25b177", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 571049, "upload_time": "2021-10-30T15:39:11", "upload_time_iso_8601": "2021-10-30T15:39:11.516637Z", "url": "https://files.pythonhosted.org/packages/99/4f/1671a433da2190630360c474b06ca4de6203aa0fde1a44962f459d9e88c6/aiohttp-3.8.0a7-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "78b01f4323cf4179ad6d178b0cc19cbd", "sha256": "ed20f2a635ac9dd0e09207b21349229fc6e3bf8642895abaaf8ab6e9e713463a" }, "downloads": -1, "filename": "aiohttp-3.8.0a7.tar.gz", "has_sig": false, "md5_digest": "78b01f4323cf4179ad6d178b0cc19cbd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 7322434, "upload_time": "2021-10-30T15:39:14", "upload_time_iso_8601": "2021-10-30T15:39:14.321105Z", "url": "https://files.pythonhosted.org/packages/39/09/980dea65ff9a3e156e57712b444a68240d3a0879b3f4c324c0a7dcc183b6/aiohttp-3.8.0a7.tar.gz", "yanked": false, "yanked_reason": null } ], "3.8.0b0": [ { "comment_text": "", "digests": { "md5": "eac813eb57384caf0596b5c8992985a8", "sha256": "a366d71f5bb179e17d5d2095806633e14e68af7166cb401e8021abace915e587" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp310-cp310-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "eac813eb57384caf0596b5c8992985a8", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 745279, "upload_time": "2021-10-31T20:03:58", "upload_time_iso_8601": "2021-10-31T20:03:58.986698Z", "url": "https://files.pythonhosted.org/packages/c0/64/54e5d96df9d337ff1f1d587c5340fa9e9dcdf3ae22fe2781d7be18bfc315/aiohttp-3.8.0b0-cp310-cp310-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bdeadf708f2cf87cbbcef81170ad3319", "sha256": "7c97898b78c5ff1d35625aa72afbd177bf4c949b8b55cfa24296acd8dd6b777e" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bdeadf708f2cf87cbbcef81170ad3319", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 591413, "upload_time": "2021-10-31T20:04:00", "upload_time_iso_8601": "2021-10-31T20:04:00.718511Z", "url": "https://files.pythonhosted.org/packages/6b/29/6189c6df06811d6faf864725d9cf2a2cc9389c7615de07fc3db0175ca098/aiohttp-3.8.0b0-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "832c722b51d593d64bffe9877caca8e8", "sha256": "b232094045efbba1e2040c49e4f07296a114b582c9d15a5863279b58d75a8c6d" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "832c722b51d593d64bffe9877caca8e8", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 568628, "upload_time": "2021-10-31T20:04:02", "upload_time_iso_8601": "2021-10-31T20:04:02.300881Z", "url": "https://files.pythonhosted.org/packages/d0/9d/73957f389c7206b87eeef70df51a7af1ca8de8e6863f220bd0bcc8d62579/aiohttp-3.8.0b0-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19433f487d94f0a95fcadde608b8d0ab", "sha256": "1a423a47525f23a718dd43e832071e6101313c60d68ffbad10da4898dc23678e" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "19433f487d94f0a95fcadde608b8d0ab", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1252503, "upload_time": "2021-10-31T20:04:04", "upload_time_iso_8601": "2021-10-31T20:04:04.381437Z", "url": "https://files.pythonhosted.org/packages/98/1b/9e0b34a1c344b236ef57889f3f0be24a149a7fa10deb9b4e5077eff12144/aiohttp-3.8.0b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0984af69f575f1dec488760bb6fcad4a", "sha256": "f4b7a835bd9409d2bf7be43267d4e59edfad23ab4bd3b8c08d2bea2e6e2cff4e" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "0984af69f575f1dec488760bb6fcad4a", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1266394, "upload_time": "2021-10-31T20:04:06", "upload_time_iso_8601": "2021-10-31T20:04:06.193838Z", "url": "https://files.pythonhosted.org/packages/ba/9b/436bcbdd13628b9130445e7f761b7df9f2294948356fdaac6be4de3baf4b/aiohttp-3.8.0b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "44bd17a1cbcbb9d6a405ce899f2e5c1a", "sha256": "dfe5a0eddd157088c1f1951d4add3d59e3c86bba7613e9db719470561ea85b0f" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "44bd17a1cbcbb9d6a405ce899f2e5c1a", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1321645, "upload_time": "2021-10-31T20:04:08", "upload_time_iso_8601": "2021-10-31T20:04:08.042496Z", "url": "https://files.pythonhosted.org/packages/22/f1/0a6506423601d853b07cf25e91c72f8b3a3f62aecb557507ff0c06a95f11/aiohttp-3.8.0b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ba9b95b7421703e6ce6fc0b192e807c", "sha256": "28d09b342a6f51f8f6e0d8e932240ad89bbc941ce1c382e1f1fe87464fa2fe32" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "3ba9b95b7421703e6ce6fc0b192e807c", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1202844, "upload_time": "2021-10-31T20:04:09", "upload_time_iso_8601": "2021-10-31T20:04:09.368881Z", "url": "https://files.pythonhosted.org/packages/32/49/4385b1dc1d4ffb06fe56be8ae0e0929f449accbe7303c0ccd304e29381de/aiohttp-3.8.0b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ea37fe522191e7bc4abd582fde38504", "sha256": "741f886093b593133ddd11cad9fe1f75d433ce3447bd281137a957a366142088" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "4ea37fe522191e7bc4abd582fde38504", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1222312, "upload_time": "2021-10-31T20:04:11", "upload_time_iso_8601": "2021-10-31T20:04:11.091835Z", "url": "https://files.pythonhosted.org/packages/02/87/ecfc981ad2bd001539b13548702e68cfd6b62a6becd0f0d9e9be0a4d650a/aiohttp-3.8.0b0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b6337dc4039242be67812c8a633f332", "sha256": "366b1699a0308596f39529e017e1a496a699fd1333f9bfe6221c45b090ad20f1" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "5b6337dc4039242be67812c8a633f332", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1263613, "upload_time": "2021-10-31T20:04:12", "upload_time_iso_8601": "2021-10-31T20:04:12.830819Z", "url": "https://files.pythonhosted.org/packages/02/4d/7f1e07b0b8567d1570bffcc313bfbc2be3f38fd4777e65f08e97bdfc0520/aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7bc221b145ac79d8383cfacea1bbb1c2", "sha256": "1ad17a644fb03fdd4a1979b9e2531622c8cca956b075c66ea28c1998a2f17e6b" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "7bc221b145ac79d8383cfacea1bbb1c2", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1229038, "upload_time": "2021-10-31T20:04:14", "upload_time_iso_8601": "2021-10-31T20:04:14.041947Z", "url": "https://files.pythonhosted.org/packages/f1/2a/387a0f714ae52f39b8c59545fa6100095f2a45f1caee4777af3e3938f5c8/aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e7c9fd28548f66182b7fe82c9802fc97", "sha256": "c12f2f0e154514b09e1d1e7f3648129f16de435be4ae2e337add32362ce433ef" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "e7c9fd28548f66182b7fe82c9802fc97", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1283498, "upload_time": "2021-10-31T20:04:15", "upload_time_iso_8601": "2021-10-31T20:04:15.744534Z", "url": "https://files.pythonhosted.org/packages/33/3e/092eed49b2d7703b215ce32ce111c6c57578eb42fbcbd9aa97e0b1a9e69a/aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fb0041ac78a468fd1e22d2b747e95931", "sha256": "c3e7f6b2176e1cb41ee582cade31e11880920528b23fa82c24e3333aa16a1abf" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "fb0041ac78a468fd1e22d2b747e95931", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1330186, "upload_time": "2021-10-31T20:04:17", "upload_time_iso_8601": "2021-10-31T20:04:17.605848Z", "url": "https://files.pythonhosted.org/packages/40/ca/e3f406317bad07fa64cec24bf0f446bdb1983cbc95678cd980f8fa84bf20/aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9444a58748683a27b58b8ebffc04adf2", "sha256": "600be86250a017394053d6bc55267f5a3c47baba1a0df27b3233def55d41fd9e" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "9444a58748683a27b58b8ebffc04adf2", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1255938, "upload_time": "2021-10-31T20:04:18", "upload_time_iso_8601": "2021-10-31T20:04:18.713970Z", "url": "https://files.pythonhosted.org/packages/7d/f8/ae14fbdfd221469d810dbfca3d544d2728189e982a6849fc5e69522d7f0f/aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "565e9422ac4c2aad90a6d3080ee98d6a", "sha256": "c510e5171c1e10c9febc23487854b62b39a9ab33d1f77c57d41d54b78d882b8b" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp310-cp310-win32.whl", "has_sig": false, "md5_digest": "565e9422ac4c2aad90a6d3080ee98d6a", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 550764, "upload_time": "2021-10-31T20:04:20", "upload_time_iso_8601": "2021-10-31T20:04:20.003720Z", "url": "https://files.pythonhosted.org/packages/b8/d7/9c2bb22d144496a6563130ce75a2f41958910784d62a54942a3590406251/aiohttp-3.8.0b0-cp310-cp310-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6bbd96d71eb8446b4418b3c8f1856ed3", "sha256": "cde759e38ef2e48f9d531477e8965288507af3c8f0e94eef6a46b245139da435" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "6bbd96d71eb8446b4418b3c8f1856ed3", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 571392, "upload_time": "2021-10-31T20:04:21", "upload_time_iso_8601": "2021-10-31T20:04:21.139968Z", "url": "https://files.pythonhosted.org/packages/82/66/d9b480193e27b1ebc9f0062795c137ac1c632d267f2da2c538225d1138d5/aiohttp-3.8.0b0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb65b03a414f25eb29d8069fc35d8435", "sha256": "c22bcccdc0602165d186c60514ffb4c133e43ae73351c17b566efadd4b196100" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "cb65b03a414f25eb29d8069fc35d8435", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 587152, "upload_time": "2021-10-31T20:04:22", "upload_time_iso_8601": "2021-10-31T20:04:22.808581Z", "url": "https://files.pythonhosted.org/packages/f8/bd/211ddc21fddf7fdf391e61876dfd49362ff9141179c606aadcdc60009e6b/aiohttp-3.8.0b0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "773a78be496e1bb2bf6468cbcd31d74f", "sha256": "aadff1c7ce77fa007429fe5268644de6ea783f93d72c634f473639713e11b194" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "773a78be496e1bb2bf6468cbcd31d74f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1173719, "upload_time": "2021-10-31T20:04:24", "upload_time_iso_8601": "2021-10-31T20:04:24.064501Z", "url": "https://files.pythonhosted.org/packages/21/55/db1c0bc346b4a40d0ab1b82bf0e4a8710717c93570f9b1d69d023c53591d/aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7be03e98a6c521cc43cb5a0aa6ac253f", "sha256": "3f44d1d9d3ff2fbfdd519151d79f1f5cf8186d0291dc717a4866734334ebd1a6" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "7be03e98a6c521cc43cb5a0aa6ac253f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1188635, "upload_time": "2021-10-31T20:04:25", "upload_time_iso_8601": "2021-10-31T20:04:25.819678Z", "url": "https://files.pythonhosted.org/packages/85/5d/bd0d12014473848264e1b48605a33417aa2e1cddf4fa2608e116f52d142b/aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e0cf59104ea413783b6db515c5d6152", "sha256": "3a0561575fdd6ddd1f8bc3730c1a06223db7ef71e3069fbf5b34b5b6f3aeb416" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "4e0cf59104ea413783b6db515c5d6152", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1247374, "upload_time": "2021-10-31T20:04:27", "upload_time_iso_8601": "2021-10-31T20:04:27.046555Z", "url": "https://files.pythonhosted.org/packages/ad/fe/f4cd69fa5e297c043e2ad58924faab36d98fea1aa48ac1f668c1e5e4923e/aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b02fff0fb49b2c07db91046fdc6ad56c", "sha256": "7872c018a20f1a34ad40416aca83c781ecb37fb828dcbf6891d5983834057991" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "b02fff0fb49b2c07db91046fdc6ad56c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1118887, "upload_time": "2021-10-31T20:04:28", "upload_time_iso_8601": "2021-10-31T20:04:28.109737Z", "url": "https://files.pythonhosted.org/packages/97/a6/6d13fcc31a983e031db9d995d40d1168e15a54a0256378cab549999d082e/aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "96b0f3778da2089837b1a553fef722df", "sha256": "9dd23be08d5892a004ec97bf463944e93ec798ad68cb4ba3988e67740c3ac091" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "96b0f3778da2089837b1a553fef722df", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1136307, "upload_time": "2021-10-31T20:04:29", "upload_time_iso_8601": "2021-10-31T20:04:29.814440Z", "url": "https://files.pythonhosted.org/packages/a5/c7/e11e723d2ad63ee70f82f8b33fcf3db0d1ecd64db10c4f611d093a4cd6ff/aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd1bbd96dabef14cedbf538c317e8965", "sha256": "4e4a5484f14563132615d1e8c21592b6e7c8886a8f27434572aaf229f54e2f08" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "bd1bbd96dabef14cedbf538c317e8965", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1181492, "upload_time": "2021-10-31T20:04:30", "upload_time_iso_8601": "2021-10-31T20:04:30.949580Z", "url": "https://files.pythonhosted.org/packages/09/a4/c9586249cbd8eba23e179e37ba7aebf85bf220d5377779c279a77d31d4b8/aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c567a5739bb4b34615aba9d19b2cebe", "sha256": "37f717b7d06b314c64f689c89f3f6ecd5c136a2159fdfc5ecd2eb8fbb25e138f" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "2c567a5739bb4b34615aba9d19b2cebe", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1155852, "upload_time": "2021-10-31T20:04:32", "upload_time_iso_8601": "2021-10-31T20:04:32.107100Z", "url": "https://files.pythonhosted.org/packages/65/86/ce354fcd78e1cede66da9b9d7192d338bea6c63bdd213217bcd5efdacb08/aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b49b2b2c2be8b9fa72658cce8bc97d8e", "sha256": "be745ec891a25994f9adea3491349a30fc2201da0e0ffb55048fe7e75b339a67" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "b49b2b2c2be8b9fa72658cce8bc97d8e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1202085, "upload_time": "2021-10-31T20:04:33", "upload_time_iso_8601": "2021-10-31T20:04:33.322679Z", "url": "https://files.pythonhosted.org/packages/3a/58/a3e87ac4798f9df8b8754b97844e2deff9e7bb77311c21f55b3faac02255/aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af4ef92e8c6af8802579b226c69ee666", "sha256": "73752bdbffa520e79261ed2b951b6686003cc71e231fa69c273525d2cd22883e" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "af4ef92e8c6af8802579b226c69ee666", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1250836, "upload_time": "2021-10-31T20:04:34", "upload_time_iso_8601": "2021-10-31T20:04:34.629007Z", "url": "https://files.pythonhosted.org/packages/16/18/4792fe152db1706e247f78dbcb48f0bd5107ea1c50931dbdd733ba68955c/aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c2fef61359e4b4aaab2ddbc18413e5ea", "sha256": "a530fd8b5c3dac637b460630958a3282d819cc7cce76f87d570ca1e435dd9a2e" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "c2fef61359e4b4aaab2ddbc18413e5ea", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1174203, "upload_time": "2021-10-31T20:04:36", "upload_time_iso_8601": "2021-10-31T20:04:36.068077Z", "url": "https://files.pythonhosted.org/packages/ca/a0/5ddb1602d1f3cbf371dbb26b97db1a31a623c54d607d6c5c8459c632e245/aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4142f46e17b955443f8a09ec0cf0db9a", "sha256": "efe99d7e3fb0beae8fd7c6afae5fb57fc92029129b9fccbd617a9c1cd565e27d" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "4142f46e17b955443f8a09ec0cf0db9a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 547812, "upload_time": "2021-10-31T20:04:37", "upload_time_iso_8601": "2021-10-31T20:04:37.255928Z", "url": "https://files.pythonhosted.org/packages/a8/ca/35babce7ff174cc037de4a60bc8c1d634c2fbe0795009a610a6f4f1a6887/aiohttp-3.8.0b0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6932ced4e62023cf48fa0c0b19872278", "sha256": "027f238261dd89e2b3e0b04225cfc115092dabab82e51ae547453395361a08c2" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "6932ced4e62023cf48fa0c0b19872278", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 567415, "upload_time": "2021-10-31T20:04:39", "upload_time_iso_8601": "2021-10-31T20:04:39.011019Z", "url": "https://files.pythonhosted.org/packages/65/85/5546684a1a1e811e5f62b9ba5ecb306b2e2fcfa71fea6d423cdd34a103d8/aiohttp-3.8.0b0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e04f7a4caf6b94d280e6afeaf846dc5", "sha256": "7de6084febcd497b38f6fe76dc427b988a53a52d788ca0cced4e6908919b5a65" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4e04f7a4caf6b94d280e6afeaf846dc5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 587064, "upload_time": "2021-10-31T20:04:40", "upload_time_iso_8601": "2021-10-31T20:04:40.408018Z", "url": "https://files.pythonhosted.org/packages/2c/1b/7c1521449e4aa799ec04da1e35e23e272baeb05fa9fdc63fec073dfa26c6/aiohttp-3.8.0b0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "449f26547a268fd1b081b268809ff528", "sha256": "eec2464fece785f6f17b1da3cb42c6e3ed73bb16647393e782fc2ba7ea648996" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "449f26547a268fd1b081b268809ff528", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1174278, "upload_time": "2021-10-31T20:04:42", "upload_time_iso_8601": "2021-10-31T20:04:42.708999Z", "url": "https://files.pythonhosted.org/packages/ca/37/b32eb1c7c6fd028d667d4f7ba746d46090002da4a16d54f14a759f8e6ee8/aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4a6b7f2479cbb91985b1ff05c25c2515", "sha256": "86884b67b28a5e5888775db4a5a238b1a6b4afb2ffe92975850bf4e9a94b2c2a" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "4a6b7f2479cbb91985b1ff05c25c2515", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1188241, "upload_time": "2021-10-31T20:04:44", "upload_time_iso_8601": "2021-10-31T20:04:44.398544Z", "url": "https://files.pythonhosted.org/packages/6e/8f/62729760a2d90c6b8fd60b85e9c168a712059d8681e757248db48adb9962/aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3cfa29d21246f82147cb955a878c647c", "sha256": "46ffe95cef6604e0c4517fbf500e6f6ae4977e872a3561754a90d5dd0ad9f960" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "3cfa29d21246f82147cb955a878c647c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1247793, "upload_time": "2021-10-31T20:04:46", "upload_time_iso_8601": "2021-10-31T20:04:46.080026Z", "url": "https://files.pythonhosted.org/packages/51/21/e126c22b5e209dee9125db22f11e72caa1893773b45311840f3e4f126615/aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f592e5a6b823f671382bf938ce125483", "sha256": "74b87354c05c5226cfaf219c583a53ea53f14d0fea74c6e1aa3e8465a5395a2c" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "f592e5a6b823f671382bf938ce125483", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1123289, "upload_time": "2021-10-31T20:04:47", "upload_time_iso_8601": "2021-10-31T20:04:47.387074Z", "url": "https://files.pythonhosted.org/packages/63/f9/f5f40bd67adf6f68d91a9ee63ad5f1b660603c45e13a5a823c3ad645591a/aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0a13f666faba983fe98b83dc29b21a00", "sha256": "d3add5dfed1cef30599c884d096b193ab7f96b20b7e773f8356ca2fb31530096" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0a13f666faba983fe98b83dc29b21a00", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1142014, "upload_time": "2021-10-31T20:04:48", "upload_time_iso_8601": "2021-10-31T20:04:48.785568Z", "url": "https://files.pythonhosted.org/packages/41/10/b488096e495c94adb3a47957851ca31d489cd469417bee8a3b0c3def3b9d/aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dd9dd5bd223ed8b1acbe0b7ee0bec2f0", "sha256": "b5c9be827ce9446513c0d35a92e228edd38e3d18d71b0d3b3f15baae3f68ddcb" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "dd9dd5bd223ed8b1acbe0b7ee0bec2f0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1191550, "upload_time": "2021-10-31T20:04:50", "upload_time_iso_8601": "2021-10-31T20:04:50.148892Z", "url": "https://files.pythonhosted.org/packages/9a/4b/643b8b31c6eac230add0ce2b34ed905302265caf8412300d20df50f7be79/aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e03c49a6ceb92ae5c89ce228116764e2", "sha256": "d2b35fdae4aa9889a81d7047160692155f25dc2ae398b45947f398436844f3f6" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "e03c49a6ceb92ae5c89ce228116764e2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1163278, "upload_time": "2021-10-31T20:04:51", "upload_time_iso_8601": "2021-10-31T20:04:51.576328Z", "url": "https://files.pythonhosted.org/packages/81/0a/23e9818bf229cbf5aadfa6f9bbd3da21c63524755283c10dd18f3c468459/aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f9131970ec3e7a69c140183bb0f629cc", "sha256": "1dbf266f70a7ece89fdfcf6b800534385ea944e441bbbaa0a1ec98088d1ef456" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "f9131970ec3e7a69c140183bb0f629cc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1206933, "upload_time": "2021-10-31T20:04:53", "upload_time_iso_8601": "2021-10-31T20:04:53.680896Z", "url": "https://files.pythonhosted.org/packages/34/97/1a0223086a4cc775b21d78ea3b990b44a9b13a7ecc1f32977caecc0e02aa/aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "efe3be6e4b5afbb7cd2e83bdc378d39d", "sha256": "f4a6be09c1865b9d6659d27f0d5bcd861f8c3343e3addbc370247d66e695836e" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "efe3be6e4b5afbb7cd2e83bdc378d39d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1255992, "upload_time": "2021-10-31T20:04:54", "upload_time_iso_8601": "2021-10-31T20:04:54.990450Z", "url": "https://files.pythonhosted.org/packages/eb/79/e2580ebe784bf7d2b307f718300a58873a0735c6b6bfaee7cd96bf310698/aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b72f881da1358a71fde20b9cc22698f3", "sha256": "f942aedee46609394e8903e05e4029dc287ff42002be432fc7032176d82b4449" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "b72f881da1358a71fde20b9cc22698f3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1184720, "upload_time": "2021-10-31T20:04:56", "upload_time_iso_8601": "2021-10-31T20:04:56.235525Z", "url": "https://files.pythonhosted.org/packages/09/7f/78d17540d5fbd789f9a66af0c763437f613b12716ffdff7af84250150894/aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "69557f4dee41c8e2fe493a3bd0bba6cc", "sha256": "4a71259fc788ec8a8e1cb1f6c90bb285367836691c96e25f69bf98eef35f80bd" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "69557f4dee41c8e2fe493a3bd0bba6cc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 548162, "upload_time": "2021-10-31T20:04:57", "upload_time_iso_8601": "2021-10-31T20:04:57.432311Z", "url": "https://files.pythonhosted.org/packages/a6/d9/caf613b5e2435bb124c254db353ce847a1ada984f9e6f83a86462959a036/aiohttp-3.8.0b0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b20dc2d215af9f005cef10cee7e22030", "sha256": "f72121b684ba1f0a8a9609bbfceb8c4b0118b10524eb565f9792ef6e9e28a531" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "b20dc2d215af9f005cef10cee7e22030", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 568163, "upload_time": "2021-10-31T20:04:58", "upload_time_iso_8601": "2021-10-31T20:04:58.660893Z", "url": "https://files.pythonhosted.org/packages/ae/c0/bbb431ab63807e33bfe8b508df2e5ae487cca149ca320dbc05db9ebdc1a0/aiohttp-3.8.0b0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac295524c7ebbc168f503e6106980efe", "sha256": "e04f78a6a2fdc34b1c33c7a9d919a841fa1c535f02177b9ef43f0ab3db2769ae" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp38-cp38-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "ac295524c7ebbc168f503e6106980efe", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 743808, "upload_time": "2021-10-31T20:04:59", "upload_time_iso_8601": "2021-10-31T20:04:59.918634Z", "url": "https://files.pythonhosted.org/packages/41/a1/141e65cb9d8f633e7777576654bf444c592cbea5f1bbce59a16e6e21cc14/aiohttp-3.8.0b0-cp38-cp38-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "273ff1bc4b945a42db82836a6de97b79", "sha256": "62444dd7305926b5d1bf3f48af710a6226280e3716b4200e3138c0359e6f8758" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "273ff1bc4b945a42db82836a6de97b79", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 590350, "upload_time": "2021-10-31T20:05:01", "upload_time_iso_8601": "2021-10-31T20:05:01.268776Z", "url": "https://files.pythonhosted.org/packages/af/b6/4bdd3457f8d3db1fc4d7caef792705d1d602633e8143457581bbb43d93ac/aiohttp-3.8.0b0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "812da5c73ccc6acb92f3f1ff2ce20fd3", "sha256": "71e17141946a5caf9a218e5eed8bbafeb0a912c6b9e9597a3da2ec3ffbfb5c76" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "812da5c73ccc6acb92f3f1ff2ce20fd3", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 568040, "upload_time": "2021-10-31T20:05:02", "upload_time_iso_8601": "2021-10-31T20:05:02.705301Z", "url": "https://files.pythonhosted.org/packages/73/e7/7f870097e8bfe999b2199bd89a497a0511386f6bb17a441a4e2684f0d789/aiohttp-3.8.0b0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4bda442811d8ca66b9661bec04da7d76", "sha256": "b351ea6cb34bf2bf6c7d2565391b67c1f704520dcf98936f22ad5fd2f2ef8bd8" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "4bda442811d8ca66b9661bec04da7d76", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1263763, "upload_time": "2021-10-31T20:05:03", "upload_time_iso_8601": "2021-10-31T20:05:03.994413Z", "url": "https://files.pythonhosted.org/packages/e6/45/4a354a2552f4f40580c1560ab5a227f2514fe6579851ea18c2995b914190/aiohttp-3.8.0b0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75ec1bfb3be0df52b66afa21ee92f90e", "sha256": "15c0cf061be891d2e81bf5de4522be6db749f01cb4217ae864c2684c2b87814c" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "75ec1bfb3be0df52b66afa21ee92f90e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1281990, "upload_time": "2021-10-31T20:05:05", "upload_time_iso_8601": "2021-10-31T20:05:05.447716Z", "url": "https://files.pythonhosted.org/packages/7c/50/c941ecb0503f8bafa4e922a1b7862823fcdb8bf366e53f2d4f7978f07c2a/aiohttp-3.8.0b0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b921a59e7797e7a0b0d27a377db03bba", "sha256": "9103fbadd38408e7a07cb544d398e67d217b01d7a10dc27fd3743dbc2748b75e" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "b921a59e7797e7a0b0d27a377db03bba", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1335778, "upload_time": "2021-10-31T20:05:06", "upload_time_iso_8601": "2021-10-31T20:05:06.745058Z", "url": "https://files.pythonhosted.org/packages/da/93/1ed85560f9271417d3ce861440f9959714d372b087e9f983fbba56b2e776/aiohttp-3.8.0b0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7752c9469a96e0930a11b67a5508fb00", "sha256": "edd2408840473ed86a03e7591b1840b2e76bf2d21119a0c8469442e6a1013c38" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "7752c9469a96e0930a11b67a5508fb00", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1247134, "upload_time": "2021-10-31T20:05:08", "upload_time_iso_8601": "2021-10-31T20:05:08.147902Z", "url": "https://files.pythonhosted.org/packages/db/4d/f4c10a45c1c67915038d14ef419b7c05bc54336e80b07ccce0b96af8404c/aiohttp-3.8.0b0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f802cc65832abd8c970300718333bdc0", "sha256": "856ea1f5966d7ccb0d1e4ae7846cc813ffb969b51d3b5ed739b5674d90eebbe3" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "f802cc65832abd8c970300718333bdc0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1270472, "upload_time": "2021-10-31T20:05:09", "upload_time_iso_8601": "2021-10-31T20:05:09.563091Z", "url": "https://files.pythonhosted.org/packages/a7/1e/ef36d17ae0f1d3f4c5fd60d755e1c006017d07cc29d53ea567cdb3e9fa6a/aiohttp-3.8.0b0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6a62fde5680b4515b4380006729f34ba", "sha256": "6b2f5369e658ec9d4529658a432c4bf988092eb3f81e1d24613ae1987d960eab" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "6a62fde5680b4515b4380006729f34ba", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1303537, "upload_time": "2021-10-31T20:05:10", "upload_time_iso_8601": "2021-10-31T20:05:10.979225Z", "url": "https://files.pythonhosted.org/packages/92/b2/fe62f6fb2bd8580127fefd0c591fb58c62dd787413ddbfb6eb6c8b5113a9/aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed967a7748c6ad2742d13d5b994141fb", "sha256": "09d3066ad2e2f50432b5df73c88e9b4ec0fa2daf9fde8fe785487c76550b1d39" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "ed967a7748c6ad2742d13d5b994141fb", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1267925, "upload_time": "2021-10-31T20:05:12", "upload_time_iso_8601": "2021-10-31T20:05:12.397358Z", "url": "https://files.pythonhosted.org/packages/f5/45/c93fcf5858dac82275447f1dcfe3ba58b9b18d280b070403b1b47d62b3e2/aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8175d7133dd01cc7d963b513c30d3e03", "sha256": "3119f61824f65783ba33cf0c4ab6dd2871d304fb6e51104864a86bed5477aee3" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "8175d7133dd01cc7d963b513c30d3e03", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1326397, "upload_time": "2021-10-31T20:05:13", "upload_time_iso_8601": "2021-10-31T20:05:13.857599Z", "url": "https://files.pythonhosted.org/packages/bd/4f/cda0267fb68f665c587877bf8c88d39659766103d8eef441b954c982ddbb/aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18e1222643f7920ab9461b2835e4bb25", "sha256": "680eaa83e9eac4c788c8df9dd42e8c9789da9ad060f7931382aafe28a5067811" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "18e1222643f7920ab9461b2835e4bb25", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1373914, "upload_time": "2021-10-31T20:05:15", "upload_time_iso_8601": "2021-10-31T20:05:15.492370Z", "url": "https://files.pythonhosted.org/packages/e0/91/a4aa891dcf14b16804bed44e1353b920ef2f7b3b47fb846b8383ffcbb3c9/aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f3e9f252095e5b6458641dc3d35f8fb", "sha256": "44edbc23d26d0db09f470056a5f8d5c0e138a79869852be93a86c03b85c20dc5" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "1f3e9f252095e5b6458641dc3d35f8fb", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1297550, "upload_time": "2021-10-31T20:05:16", "upload_time_iso_8601": "2021-10-31T20:05:16.925887Z", "url": "https://files.pythonhosted.org/packages/7d/61/711955836eee4cce054d543f0151b6c21dbde4e73f948d0c82804f036e33/aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c95c9bbbe0cbab7f71411e7f624713f", "sha256": "6edb42ed6d7fc82a1dae21600175c642e5b91d86620913f430d1c55f51995a7f" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "8c95c9bbbe0cbab7f71411e7f624713f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 551632, "upload_time": "2021-10-31T20:05:18", "upload_time_iso_8601": "2021-10-31T20:05:18.408224Z", "url": "https://files.pythonhosted.org/packages/e8/e6/b1430f1a6d5ce06beb667577a0a262a52eb8f6a8c1aa0e25bf72dae49b1c/aiohttp-3.8.0b0-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "535fb72d8110947c1f460aba5e98fd6d", "sha256": "88c1b766e69bbf1cea250d8efd707c280c15f47b080467f7501f07be8f2cbae3" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "535fb72d8110947c1f460aba5e98fd6d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 572321, "upload_time": "2021-10-31T20:05:20", "upload_time_iso_8601": "2021-10-31T20:05:20.015824Z", "url": "https://files.pythonhosted.org/packages/f0/93/fabc76155ec3764746e36e2a324b9aa47591a9fc13ee6d9a5dfb6eb925a1/aiohttp-3.8.0b0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "17fd7ecefe1802331283d462dd6b7b47", "sha256": "da7d583fd4a5bc3bd0f8e816e6d1fe5ba9ee723c76b0139f6ac56743f756c663" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp39-cp39-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "17fd7ecefe1802331283d462dd6b7b47", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 744841, "upload_time": "2021-10-31T20:05:21", "upload_time_iso_8601": "2021-10-31T20:05:21.477420Z", "url": "https://files.pythonhosted.org/packages/f0/ec/1257f4767865162eeaaa538519856708ebef9396685cd390b45a31163fa8/aiohttp-3.8.0b0-cp39-cp39-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c5c27e83820113005b38925d16837081", "sha256": "a4bbb2be7d04e564d2b4eb9a615bde57cd56e550e648f11acc4a3b354d43f0c3" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c5c27e83820113005b38925d16837081", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 591130, "upload_time": "2021-10-31T20:05:23", "upload_time_iso_8601": "2021-10-31T20:05:23.049182Z", "url": "https://files.pythonhosted.org/packages/07/3b/8cc237f5d841e18b3ca20f4165abf3c150a68c5450c1a53dc33683ce98e3/aiohttp-3.8.0b0-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e947094a91e565b10b850b9cd267086", "sha256": "f02613e77e579a8bb11e4a60ad1aa89aec626671d05972cb8b6befb9f4fb14b2" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "5e947094a91e565b10b850b9cd267086", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 568435, "upload_time": "2021-10-31T20:05:24", "upload_time_iso_8601": "2021-10-31T20:05:24.592200Z", "url": "https://files.pythonhosted.org/packages/0a/1f/23bb2b625616307f31890401d5ca9e13a44a4550ecc668a97251bb5be03a/aiohttp-3.8.0b0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bda9c3e2f627852d241b15c0366a8758", "sha256": "26d6f55c56a185288a795acb350f7323657a06f2b97a83368ddef84f2b6ef196" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "bda9c3e2f627852d241b15c0366a8758", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1251525, "upload_time": "2021-10-31T20:05:26", "upload_time_iso_8601": "2021-10-31T20:05:26.476884Z", "url": "https://files.pythonhosted.org/packages/0e/27/f9a5dbf562681b1bc60dd09afe5a1fdee78f71eb0d957da79defa092dead/aiohttp-3.8.0b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a300e706f56d52ee69d3dff37f2d4400", "sha256": "2dd6bec13182b63c15afabeb42805f1ed32a5188b1baa005eb71ade7101a7fb9" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "a300e706f56d52ee69d3dff37f2d4400", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1264935, "upload_time": "2021-10-31T20:05:28", "upload_time_iso_8601": "2021-10-31T20:05:28.176172Z", "url": "https://files.pythonhosted.org/packages/fa/3b/bac955adab69be6be3d68410366ef76b03c41c3c3d9afc3dc2d13e0bbc8b/aiohttp-3.8.0b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aab53d91307138617fe065957c2be76a", "sha256": "e6fe79c60ccdfd2349c6d1030d07e86a395b836c92465c1c8864af7175595b7a" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "aab53d91307138617fe065957c2be76a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1320181, "upload_time": "2021-10-31T20:05:29", "upload_time_iso_8601": "2021-10-31T20:05:29.801373Z", "url": "https://files.pythonhosted.org/packages/da/86/ecf44707bc81a72f5b82999403a57d21b831464d0dd1edfaba4baee27092/aiohttp-3.8.0b0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de9c0f98b59cc093560dfb88590feefd", "sha256": "a67bee21339317c821ae9c1cfe9f5dbbc34d76690fa5518b20d63fe12a23dd58" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "de9c0f98b59cc093560dfb88590feefd", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1200440, "upload_time": "2021-10-31T20:05:31", "upload_time_iso_8601": "2021-10-31T20:05:31.701575Z", "url": "https://files.pythonhosted.org/packages/6b/e9/f58ae2896c067aca9bc6dfe6069b1f3038d6da34340c807344f5c9ff1732/aiohttp-3.8.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18e8fbb7d58ef3d7d81e35429ed0ec7c", "sha256": "d34ccbc30f75679c8ea1f51577c53820dc2f33736368a44562f7f3cd67814080" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "18e8fbb7d58ef3d7d81e35429ed0ec7c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1218312, "upload_time": "2021-10-31T20:05:33", "upload_time_iso_8601": "2021-10-31T20:05:33.178348Z", "url": "https://files.pythonhosted.org/packages/4e/b6/a2c4407d5fcf80176e7cd686fe4e88e86b6d8842a427cd67718e176df511/aiohttp-3.8.0b0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "015bba1dfa9f9b321c40856153b43964", "sha256": "489cd7cc6d12855906f1c4078b44df81a0eb0d3e2d6cf1ffd8a04dae779ba2b5" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "015bba1dfa9f9b321c40856153b43964", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1259582, "upload_time": "2021-10-31T20:05:34", "upload_time_iso_8601": "2021-10-31T20:05:34.719924Z", "url": "https://files.pythonhosted.org/packages/24/71/99d74c704e411001d2b2335515ac30b25d8d8339ab48231aeb6213a110ad/aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac1a6647db2d18d6d386d6f488a44ad2", "sha256": "4e759b842b724fe802da33517f6edbb89c3c91a04b8163c01370af4cb15e56bd" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "ac1a6647db2d18d6d386d6f488a44ad2", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1224108, "upload_time": "2021-10-31T20:05:36", "upload_time_iso_8601": "2021-10-31T20:05:36.137040Z", "url": "https://files.pythonhosted.org/packages/d7/d6/13bbb3d67d87f85e4b5c60e7f3b1dea38428bba2164fbb300531e35ee77d/aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b17f176cd7195a613869ce944a568087", "sha256": "6d81cac9fb2ef36c02871b58f141015e1aa471901b54cd8b88c061516b7f39a9" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "b17f176cd7195a613869ce944a568087", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1280693, "upload_time": "2021-10-31T20:05:37", "upload_time_iso_8601": "2021-10-31T20:05:37.643388Z", "url": "https://files.pythonhosted.org/packages/e2/64/94b7836e9d2d96555b9b4417cbd6d9c74108c5eb9cb5525778c97fb15a27/aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "92296c766aad5c1f03519ab960e0c8ca", "sha256": "fe00030d33419dda4a52a1cfa2cb2254b10b6e2b90038d0f6d2d7819cd57bc92" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "92296c766aad5c1f03519ab960e0c8ca", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1328374, "upload_time": "2021-10-31T20:05:39", "upload_time_iso_8601": "2021-10-31T20:05:39.192410Z", "url": "https://files.pythonhosted.org/packages/be/cd/478c6b6171dbfc2a10a88b835734a411124e7ca08eb1e49ee5f579d0c472/aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6e43417487e54eb79ec8e5f0f523ac85", "sha256": "d3b8a7fd4939919b7f7da3507fece85330259fc40f3a06810acf9d30bb5022d7" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "6e43417487e54eb79ec8e5f0f523ac85", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1251809, "upload_time": "2021-10-31T20:05:41", "upload_time_iso_8601": "2021-10-31T20:05:41.180645Z", "url": "https://files.pythonhosted.org/packages/43/25/cd4ada935f2a0cb7da9ebf1917ce8d13f34648869543b0fe6fd91c9e02a5/aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "677c2581e11ec11692e43cac78caf44c", "sha256": "4991086a7ecf2b11c11f69a9296571c7086414f8fc2d4c422f8097f44731875f" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "677c2581e11ec11692e43cac78caf44c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 550814, "upload_time": "2021-10-31T20:05:42", "upload_time_iso_8601": "2021-10-31T20:05:42.615435Z", "url": "https://files.pythonhosted.org/packages/fb/13/317e86f632fb17249c4824109540cba1a0a94c03d9a2203e409b7e0fad80/aiohttp-3.8.0b0-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "581e255e02c11d1d8095a270f4143c9a", "sha256": "7544498612ce91247f9ddb72e97d6413a9f88b05b67b6f3a0909497cbef3e8bb" }, "downloads": -1, "filename": "aiohttp-3.8.0b0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "581e255e02c11d1d8095a270f4143c9a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 571230, "upload_time": "2021-10-31T20:05:43", "upload_time_iso_8601": "2021-10-31T20:05:43.928791Z", "url": "https://files.pythonhosted.org/packages/6b/57/e095febabc73d33f0ed645609a55eb4de0a5602e7d22c9f1274cb95546a6/aiohttp-3.8.0b0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "264342834dd74589102582de4f9a64ea", "sha256": "1877c0aa9da644ac3e71f3027a14b551183e2ec63aaba7a99b972bfe33c569e5" }, "downloads": -1, "filename": "aiohttp-3.8.0b0.tar.gz", "has_sig": false, "md5_digest": "264342834dd74589102582de4f9a64ea", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 7323122, "upload_time": "2021-10-31T20:05:45", "upload_time_iso_8601": "2021-10-31T20:05:45.908311Z", "url": "https://files.pythonhosted.org/packages/44/98/f2f185361d43e426d0f10580059931c7672f37529381e1ed4145c5c673c1/aiohttp-3.8.0b0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.8.1": [ { "comment_text": "", "digests": { "md5": "f8a95117f5d18c76c3d7628335075932", "sha256": "1ed0b6477896559f17b9eaeb6d38e07f7f9ffe40b9f0f9627ae8b9926ae260a8" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "f8a95117f5d18c76c3d7628335075932", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 729142, "upload_time": "2021-11-14T21:23:48", "upload_time_iso_8601": "2021-11-14T21:23:48.899241Z", "url": "https://files.pythonhosted.org/packages/e3/3a/720635a98bb0eef9179d12ee3ccca659d1fcccfbafaacdf42ed5536a0861/aiohttp-3.8.1-cp310-cp310-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d77a2835334677fdfcc65eb2a552942", "sha256": "7dadf3c307b31e0e61689cbf9e06be7a867c563d5a63ce9dca578f956609abf8" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "1d77a2835334677fdfcc65eb2a552942", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 575262, "upload_time": "2021-11-14T21:23:50", "upload_time_iso_8601": "2021-11-14T21:23:50.264490Z", "url": "https://files.pythonhosted.org/packages/7e/9f/3cd2502f3cab61eccd7c20f5ab67447cf891ad8613282141955df1b7fb98/aiohttp-3.8.1-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95b326022cd719396248358db1d08536", "sha256": "a79004bb58748f31ae1cbe9fa891054baaa46fb106c2dc7af9f8e3304dc30316" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "95b326022cd719396248358db1d08536", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 552486, "upload_time": "2021-11-14T21:23:51", "upload_time_iso_8601": "2021-11-14T21:23:51.529674Z", "url": "https://files.pythonhosted.org/packages/a6/7f/4c202b0fd3c33029e45bb0d06eaac2886be4427763cc9589774fb39b5da7/aiohttp-3.8.1-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b7182c5cd15d05b4d3628d73d525b853", "sha256": "12de6add4038df8f72fac606dff775791a60f113a725c960f2bab01d8b8e6b15" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "b7182c5cd15d05b4d3628d73d525b853", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1236262, "upload_time": "2021-11-14T21:23:53", "upload_time_iso_8601": "2021-11-14T21:23:53.099646Z", "url": "https://files.pythonhosted.org/packages/48/08/c3efb449dea5f38292804e4fbf8eaef1b3f168535a4163cc3fce3f9b4915/aiohttp-3.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e962a37ea2086af3ff490f4fcfe1988", "sha256": "6f0d5f33feb5f69ddd57a4a4bd3d56c719a141080b445cbf18f238973c5c9923" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "9e962a37ea2086af3ff490f4fcfe1988", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1250191, "upload_time": "2021-11-14T21:23:54", "upload_time_iso_8601": "2021-11-14T21:23:54.789182Z", "url": "https://files.pythonhosted.org/packages/b1/bd/e412cb6cd12b7a86966239a97ed0391e1ad5ac6f8a749caddc49e18264ec/aiohttp-3.8.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b0d9c8b36040d25d35dd0d001abef443", "sha256": "eaba923151d9deea315be1f3e2b31cc39a6d1d2f682f942905951f4e40200922" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "b0d9c8b36040d25d35dd0d001abef443", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1305403, "upload_time": "2021-11-14T21:23:56", "upload_time_iso_8601": "2021-11-14T21:23:56.392887Z", "url": "https://files.pythonhosted.org/packages/85/e6/d52a342bf22b5b5c759a94af340836490bcbffd288d4a65494234d8298f7/aiohttp-3.8.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b42d35c5fc7879a9ae6f05bc84a2bfe6", "sha256": "099ebd2c37ac74cce10a3527d2b49af80243e2a4fa39e7bce41617fbc35fa3c1" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "b42d35c5fc7879a9ae6f05bc84a2bfe6", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1186614, "upload_time": "2021-11-14T21:23:58", "upload_time_iso_8601": "2021-11-14T21:23:58.138259Z", "url": "https://files.pythonhosted.org/packages/80/a3/9403173d3a6ba5893a4e0a1816b211da7ba0cb7c00c9ac0279ec2dbbf576/aiohttp-3.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6372d45f9c82554b60ccf83b62a8e8c", "sha256": "2e5d962cf7e1d426aa0e528a7e198658cdc8aa4fe87f781d039ad75dcd52c516" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "f6372d45f9c82554b60ccf83b62a8e8c", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1206094, "upload_time": "2021-11-14T21:23:59", "upload_time_iso_8601": "2021-11-14T21:23:59.393368Z", "url": "https://files.pythonhosted.org/packages/f4/2d/07e3ba718571e79509f88a791611a3e156e8915ed9a19116547806bce8fa/aiohttp-3.8.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1ed2b0987190ec168c4971c83d9094a", "sha256": "fa0ffcace9b3aa34d205d8130f7873fcfefcb6a4dd3dd705b0dab69af6712642" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "f1ed2b0987190ec168c4971c83d9094a", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1247409, "upload_time": "2021-11-14T21:24:00", "upload_time_iso_8601": "2021-11-14T21:24:00.591673Z", "url": "https://files.pythonhosted.org/packages/c0/6d/f5423a7c899c538e2cff2e713f9eb2c51b02fad909ec8e8b1c3ed713049a/aiohttp-3.8.1-cp310-cp310-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f80cce155b39d2c59c3b99163e5080d8", "sha256": "61bfc23df345d8c9716d03717c2ed5e27374e0fe6f659ea64edcd27b4b044cf7" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "f80cce155b39d2c59c3b99163e5080d8", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1212770, "upload_time": "2021-11-14T21:24:02", "upload_time_iso_8601": "2021-11-14T21:24:02.252450Z", "url": "https://files.pythonhosted.org/packages/76/3d/8f64ed6d429f9feeefc52b551f4ba5554d2f7a6f46d92c080f4ae48e0478/aiohttp-3.8.1-cp310-cp310-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8ebfd2d5085341b499693039b16a9d6b", "sha256": "31560d268ff62143e92423ef183680b9829b1b482c011713ae941997921eebc8" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "8ebfd2d5085341b499693039b16a9d6b", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1267346, "upload_time": "2021-11-14T21:24:03", "upload_time_iso_8601": "2021-11-14T21:24:03.521985Z", "url": "https://files.pythonhosted.org/packages/f3/0d/a035862f8a11b6cba4220b0c1201443fa6f5151137889e2dfe1cc983e58e/aiohttp-3.8.1-cp310-cp310-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed498b96bd9a089f2bfb45726fda3c3d", "sha256": "01d7bdb774a9acc838e6b8f1d114f45303841b89b95984cbb7d80ea41172a9e3" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "ed498b96bd9a089f2bfb45726fda3c3d", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1313944, "upload_time": "2021-11-14T21:24:04", "upload_time_iso_8601": "2021-11-14T21:24:04.851534Z", "url": "https://files.pythonhosted.org/packages/cc/28/c95a0694da3082cb76808799017b02db6c10ec8687ee1ac5edad091ab070/aiohttp-3.8.1-cp310-cp310-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bedffeac8388756f52fdd261714aab09", "sha256": "97ef77eb6b044134c0b3a96e16abcb05ecce892965a2124c566af0fd60f717e2" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "bedffeac8388756f52fdd261714aab09", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1239720, "upload_time": "2021-11-14T21:24:05", "upload_time_iso_8601": "2021-11-14T21:24:05.992886Z", "url": "https://files.pythonhosted.org/packages/4f/c6/a8ce9fc6bbf9c0dbdaa631bcb8f9da5b532fd22ead50ef7390976fc9bf0d/aiohttp-3.8.1-cp310-cp310-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b690e579b42d8981f93c5dd403501b4", "sha256": "c2aef4703f1f2ddc6df17519885dbfa3514929149d3ff900b73f45998f2532fa" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-win32.whl", "has_sig": false, "md5_digest": "6b690e579b42d8981f93c5dd403501b4", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 534424, "upload_time": "2021-11-14T21:24:07", "upload_time_iso_8601": "2021-11-14T21:24:07.483659Z", "url": "https://files.pythonhosted.org/packages/75/86/c55c7b6b9d0d9e25b1d721e204424f154bd72bb172d2056f0f9f06c50254/aiohttp-3.8.1-cp310-cp310-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7ac3e2decac14f12dc5fcaf80f35ea8b", "sha256": "713ac174a629d39b7c6a3aa757b337599798da4c1157114a314e4e391cd28e32" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "7ac3e2decac14f12dc5fcaf80f35ea8b", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 555051, "upload_time": "2021-11-14T21:24:09", "upload_time_iso_8601": "2021-11-14T21:24:09.136738Z", "url": "https://files.pythonhosted.org/packages/2e/4f/119a8efad036d1f766ad736864a6dbfc8db9596e74ce9820f8c1282a240b/aiohttp-3.8.1-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a88b5f5f29cee88c89aa013c447a94fc", "sha256": "473d93d4450880fe278696549f2e7aed8cd23708c3c1997981464475f32137db" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a88b5f5f29cee88c89aa013c447a94fc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 571013, "upload_time": "2021-11-14T21:24:10", "upload_time_iso_8601": "2021-11-14T21:24:10.367865Z", "url": "https://files.pythonhosted.org/packages/66/70/1668029f303a33e5508de6825efec00854b0a3afbe3b11b4e3c970e03e88/aiohttp-3.8.1-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c4e5ec177eea4c60d5da91bf8044f48", "sha256": "99b5eeae8e019e7aad8af8bb314fb908dd2e028b3cdaad87ec05095394cce632" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "8c4e5ec177eea4c60d5da91bf8044f48", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1157474, "upload_time": "2021-11-14T21:24:11", "upload_time_iso_8601": "2021-11-14T21:24:11.695463Z", "url": "https://files.pythonhosted.org/packages/b6/5d/2107ef289ddf5a7648ba98a0d4f5137c156f95d67fa1a81253d0f904f308/aiohttp-3.8.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c48e0f92ae85ac2da22445668bfbf2fa", "sha256": "3af642b43ce56c24d063325dd2cf20ee012d2b9ba4c3c008755a301aaea720ad" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "c48e0f92ae85ac2da22445668bfbf2fa", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1172437, "upload_time": "2021-11-14T21:24:13", "upload_time_iso_8601": "2021-11-14T21:24:13.020262Z", "url": "https://files.pythonhosted.org/packages/cc/c5/58e46921955887814c7ca57569d695a45d9471aa48f09089999d9723e639/aiohttp-3.8.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3c41e8ce58a2a4514ae4cfaa13fe86db", "sha256": "c3630c3ef435c0a7c549ba170a0633a56e92629aeed0e707fec832dee313fb7a" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "3c41e8ce58a2a4514ae4cfaa13fe86db", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1231142, "upload_time": "2021-11-14T21:24:14", "upload_time_iso_8601": "2021-11-14T21:24:14.271027Z", "url": "https://files.pythonhosted.org/packages/f6/c4/a32e3d81e716696c1d8149febb73b0d772eb12b3f9f1c039c94b7445a388/aiohttp-3.8.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "edf15faa9f3386189196fa177889e466", "sha256": "4a4a4e30bf1edcad13fb0804300557aedd07a92cabc74382fdd0ba6ca2661091" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "edf15faa9f3386189196fa177889e466", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1102646, "upload_time": "2021-11-14T21:24:15", "upload_time_iso_8601": "2021-11-14T21:24:15.777059Z", "url": "https://files.pythonhosted.org/packages/a4/6e/212f857f9a400dbbedcaca13b99c8bb821a17a25b69e2286881f23e62554/aiohttp-3.8.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ff4a26f583031ec7daa6ff73bc8ab318", "sha256": "6f8b01295e26c68b3a1b90efb7a89029110d3a4139270b24fda961893216c440" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ff4a26f583031ec7daa6ff73bc8ab318", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1120060, "upload_time": "2021-11-14T21:24:17", "upload_time_iso_8601": "2021-11-14T21:24:17.300498Z", "url": "https://files.pythonhosted.org/packages/f6/3b/2e3b8a5b19cdceb532c61d83077a09afe1f120cb876fb771b0ce577cc0ea/aiohttp-3.8.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb755e6eefd51ddeeb58df32329efa9d", "sha256": "a25fa703a527158aaf10dafd956f7d42ac6d30ec80e9a70846253dd13e2f067b" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "bb755e6eefd51ddeeb58df32329efa9d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1165266, "upload_time": "2021-11-14T21:24:19", "upload_time_iso_8601": "2021-11-14T21:24:19.111879Z", "url": "https://files.pythonhosted.org/packages/60/e2/ffc6f4fb33a0f83b506d9b310a6b3028e868f67daf318f2ba50c625ed018/aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cd5f2795767be9f1d80b695b77731b5f", "sha256": "5bfde62d1d2641a1f5173b8c8c2d96ceb4854f54a44c23102e2ccc7e02f003ec" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "cd5f2795767be9f1d80b695b77731b5f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1139665, "upload_time": "2021-11-14T21:24:20", "upload_time_iso_8601": "2021-11-14T21:24:20.644889Z", "url": "https://files.pythonhosted.org/packages/15/f0/cd8e6c2a28a3857c9ee71188d0f4b111847a37ab1c277ece61bcd5374ab4/aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee8c7cf1e5fb750b1b13afd8e6f0f225", "sha256": "51467000f3647d519272392f484126aa716f747859794ac9924a7aafa86cd411" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "ee8c7cf1e5fb750b1b13afd8e6f0f225", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1185804, "upload_time": "2021-11-14T21:24:22", "upload_time_iso_8601": "2021-11-14T21:24:22.664880Z", "url": "https://files.pythonhosted.org/packages/c8/11/94c3ca5ed8b811962de6f4f675adf9dbab28b3cb9e51b9823a5d655fcc9a/aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a00d8280918969384162b7a1e935e160", "sha256": "03a6d5349c9ee8f79ab3ff3694d6ce1cfc3ced1c9d36200cb8f08ba06bd3b782" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "a00d8280918969384162b7a1e935e160", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1234552, "upload_time": "2021-11-14T21:24:24", "upload_time_iso_8601": "2021-11-14T21:24:24.151678Z", "url": "https://files.pythonhosted.org/packages/07/8b/211d1fef10ed6f9e6fc0a70bc6e5658a8fdcdc6440fa5350663b4a2ee101/aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a95c58bc6280a21abb538bcb7244cc25", "sha256": "102e487eeb82afac440581e5d7f8f44560b36cf0bdd11abc51a46c1cd88914d4" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "a95c58bc6280a21abb538bcb7244cc25", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1157999, "upload_time": "2021-11-14T21:24:26", "upload_time_iso_8601": "2021-11-14T21:24:26.032572Z", "url": "https://files.pythonhosted.org/packages/9e/7a/4af63e9951393397691e25aaf742044c66bae700c943d4f7c599da99ce26/aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a66ce072e0d772a919ebe3bbdf60134", "sha256": "4aed991a28ea3ce320dc8ce655875e1e00a11bdd29fe9444dd4f88c30d558602" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "5a66ce072e0d772a919ebe3bbdf60134", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 531475, "upload_time": "2021-11-14T21:24:28", "upload_time_iso_8601": "2021-11-14T21:24:28.433710Z", "url": "https://files.pythonhosted.org/packages/4d/4a/8b095c58f8f8a3732c939fc00190761fb44a95cd601f18fbbf7a4acaf9d6/aiohttp-3.8.1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e8f7f56d67bbc57b3a31afcbbb0041c8", "sha256": "b0e20cddbd676ab8a64c774fefa0ad787cc506afd844de95da56060348021e96" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "e8f7f56d67bbc57b3a31afcbbb0041c8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 551070, "upload_time": "2021-11-14T21:24:31", "upload_time_iso_8601": "2021-11-14T21:24:31.024609Z", "url": "https://files.pythonhosted.org/packages/9f/06/c64cec12f3480433e44d7a65b4087fad73b5409c8eee719a1cc48efddb36/aiohttp-3.8.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75d8902c59d37f052d9fcb2777c113fd", "sha256": "37951ad2f4a6df6506750a23f7cbabad24c73c65f23f72e95897bb2cecbae676" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "75d8902c59d37f052d9fcb2777c113fd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 570929, "upload_time": "2021-11-14T21:24:32", "upload_time_iso_8601": "2021-11-14T21:24:32.510756Z", "url": "https://files.pythonhosted.org/packages/f2/94/af16a3f5baeaefe480271b852b8a18d063859a439183aff0492ed866619d/aiohttp-3.8.1-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c27a8d20a7c1730ee08d7a827c146b1", "sha256": "5c23b1ad869653bc818e972b7a3a79852d0e494e9ab7e1a701a3decc49c20d51" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "8c27a8d20a7c1730ee08d7a827c146b1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1158043, "upload_time": "2021-11-14T21:24:33", "upload_time_iso_8601": "2021-11-14T21:24:33.937530Z", "url": "https://files.pythonhosted.org/packages/59/0b/b1773a7aa69763c336bc3be714c30246a5c4d2acb723e9f679f5566c9afe/aiohttp-3.8.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad6519d2485ae7500c03e3041c75850c", "sha256": "15b09b06dae900777833fe7fc4b4aa426556ce95847a3e8d7548e2d19e34edb8" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "ad6519d2485ae7500c03e3041c75850c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1171964, "upload_time": "2021-11-14T21:24:36", "upload_time_iso_8601": "2021-11-14T21:24:36.056891Z", "url": "https://files.pythonhosted.org/packages/37/38/9f7ad00368f218f5f6b367a72d85f7a1ffce421f22c7c88787e11c87d985/aiohttp-3.8.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3671eb3c4dc499c1ef5c1d0fe0a7133a", "sha256": "477c3ea0ba410b2b56b7efb072c36fa91b1e6fc331761798fa3f28bb224830dd" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "3671eb3c4dc499c1ef5c1d0fe0a7133a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1231545, "upload_time": "2021-11-14T21:24:37", "upload_time_iso_8601": "2021-11-14T21:24:37.992952Z", "url": "https://files.pythonhosted.org/packages/07/2b/ef0ea5695809b1d5e485e136fcf9c1e00c3d8e7806f4bba9af3e77cb7a7d/aiohttp-3.8.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b991dc9b9d95952ec5857d63ffba22e7", "sha256": "2f2f69dca064926e79997f45b2f34e202b320fd3782f17a91941f7eb85502ee2" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "b991dc9b9d95952ec5857d63ffba22e7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1107004, "upload_time": "2021-11-14T21:24:40", "upload_time_iso_8601": "2021-11-14T21:24:40.013320Z", "url": "https://files.pythonhosted.org/packages/ca/b5/af043404814805fc2b74b9b0ce166cc79cbdfed720253777b928c85138c0/aiohttp-3.8.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d47052ae7e707908e5c9b93acba7b58", "sha256": "ef9612483cb35171d51d9173647eed5d0069eaa2ee812793a75373447d487aa4" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0d47052ae7e707908e5c9b93acba7b58", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1125785, "upload_time": "2021-11-14T21:24:41", "upload_time_iso_8601": "2021-11-14T21:24:41.628887Z", "url": "https://files.pythonhosted.org/packages/dd/fe/80c594d62a7ff07730fd2cfc3a058498087436d8c938243e0610d1928f0e/aiohttp-3.8.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9931908edae540ea01632362a7ca6c51", "sha256": "6d69f36d445c45cda7b3b26afef2fc34ef5ac0cdc75584a87ef307ee3c8c6d00" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "9931908edae540ea01632362a7ca6c51", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1175320, "upload_time": "2021-11-14T21:24:43", "upload_time_iso_8601": "2021-11-14T21:24:43.266956Z", "url": "https://files.pythonhosted.org/packages/75/56/e0e5f6a59bd6053d61d7d8d1448100eacfc6f3d47cf39c4448351dd22e72/aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa688128123ed34562d1d8c1091f8850", "sha256": "55c3d1072704d27401c92339144d199d9de7b52627f724a949fc7d5fc56d8b93" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "fa688128123ed34562d1d8c1091f8850", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1147047, "upload_time": "2021-11-14T21:24:46", "upload_time_iso_8601": "2021-11-14T21:24:46.646454Z", "url": "https://files.pythonhosted.org/packages/39/97/1acbab256523838e37b895d70e39f45e7feb82801a18368fba323d598e80/aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "57e88f090e255f0d1e0340317e44d68e", "sha256": "b9d00268fcb9f66fbcc7cd9fe423741d90c75ee029a1d15c09b22d23253c0a44" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "57e88f090e255f0d1e0340317e44d68e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1190713, "upload_time": "2021-11-14T21:24:48", "upload_time_iso_8601": "2021-11-14T21:24:48.219845Z", "url": "https://files.pythonhosted.org/packages/42/8d/8d85c84baa731de1f3a7fbb3bb85632f82534fc0b618abc51c6569440cdf/aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "409066e2a5f31e370f4b2318e6cc5480", "sha256": "07b05cd3305e8a73112103c834e91cd27ce5b4bd07850c4b4dbd1877d3f45be7" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "409066e2a5f31e370f4b2318e6cc5480", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1239751, "upload_time": "2021-11-14T21:24:49", "upload_time_iso_8601": "2021-11-14T21:24:49.839818Z", "url": "https://files.pythonhosted.org/packages/50/dc/9b1fd678730d7e9c8fa125ef0a0102c1783c0a80cffb2159e2a63ab0f569/aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b0dcec956e66a85792772c67ea129f2d", "sha256": "c34dc4958b232ef6188c4318cb7b2c2d80521c9a56c52449f8f93ab7bc2a8a1c" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "b0dcec956e66a85792772c67ea129f2d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1168503, "upload_time": "2021-11-14T21:24:51", "upload_time_iso_8601": "2021-11-14T21:24:51.387914Z", "url": "https://files.pythonhosted.org/packages/d6/23/1942037534eb4f3671e68801af3af1adfe28add92300291934daa2b5cdec/aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "14c26d21ae5ba331299d00cdc4e4b354", "sha256": "d2f9b69293c33aaa53d923032fe227feac867f81682f002ce33ffae978f0a9a9" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "14c26d21ae5ba331299d00cdc4e4b354", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 531814, "upload_time": "2021-11-14T21:24:52", "upload_time_iso_8601": "2021-11-14T21:24:52.766633Z", "url": "https://files.pythonhosted.org/packages/2d/7a/2809619bd5ca3ab7f27c134f93d52c80a5dfed7d22e426e79415f35233b1/aiohttp-3.8.1-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c911a13b6838cc9a190d96c5d6192c5", "sha256": "6ae828d3a003f03ae31915c31fa684b9890ea44c9c989056fea96e3d12a9fa17" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "0c911a13b6838cc9a190d96c5d6192c5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 551824, "upload_time": "2021-11-14T21:24:54", "upload_time_iso_8601": "2021-11-14T21:24:54.236982Z", "url": "https://files.pythonhosted.org/packages/19/22/7a9ea2992cf7adf534eb51f7b6bfd4642bb15894ac36df4edb0838ee1fdb/aiohttp-3.8.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8ade69b0ca2712d292287eac3265c555", "sha256": "0c7ebbbde809ff4e970824b2b6cb7e4222be6b95a296e46c03cf050878fc1785" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "8ade69b0ca2712d292287eac3265c555", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 727661, "upload_time": "2021-11-14T21:24:55", "upload_time_iso_8601": "2021-11-14T21:24:55.836663Z", "url": "https://files.pythonhosted.org/packages/cf/6a/acf689f13f39700cfa526f6bff2d10dfd29aa21cbc0d3a5cf0f153298a74/aiohttp-3.8.1-cp38-cp38-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bbdba37f3990c83c6bad6a3eb2a76b39", "sha256": "8b7ef7cbd4fec9a1e811a5de813311ed4f7ac7d93e0fda233c9b3e1428f7dd7b" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bbdba37f3990c83c6bad6a3eb2a76b39", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 574213, "upload_time": "2021-11-14T21:24:57", "upload_time_iso_8601": "2021-11-14T21:24:57.343178Z", "url": "https://files.pythonhosted.org/packages/79/5c/573d590ebff44e927aa0820b194a46c15253808725f82f23aa13440808ef/aiohttp-3.8.1-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50dffaea7dcbcf6f33ab6fef11587da2", "sha256": "c3d6a4d0619e09dcd61021debf7059955c2004fa29f48788a3dfaf9c9901a7cd" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "50dffaea7dcbcf6f33ab6fef11587da2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 551904, "upload_time": "2021-11-14T21:25:00", "upload_time_iso_8601": "2021-11-14T21:25:00.516881Z", "url": "https://files.pythonhosted.org/packages/5e/34/a5d2619c062e6fed7224fb920e93b1d8ad055bb3b1b544e754c864c978a0/aiohttp-3.8.1-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dc459efa79003e2f74eb4eb1fa900dbe", "sha256": "718626a174e7e467f0558954f94af117b7d4695d48eb980146016afa4b580b2e" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "dc459efa79003e2f74eb4eb1fa900dbe", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1247534, "upload_time": "2021-11-14T21:25:02", "upload_time_iso_8601": "2021-11-14T21:25:02.104673Z", "url": "https://files.pythonhosted.org/packages/ff/a6/184cd63b06ea05edfcfba946fed3da7afb2f0b7e3237fb1b2c056cce57f6/aiohttp-3.8.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "531303babc342caaa94e89eab136040b", "sha256": "589c72667a5febd36f1315aa6e5f56dd4aa4862df295cb51c769d16142ddd7cd" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "531303babc342caaa94e89eab136040b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1265739, "upload_time": "2021-11-14T21:25:03", "upload_time_iso_8601": "2021-11-14T21:25:03.515694Z", "url": "https://files.pythonhosted.org/packages/54/ab/5e5d0e042b9b149efd867eaaf4a6c94c51ccdf3f955564e0fce1dbfbcb4d/aiohttp-3.8.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "610d910901768697519ac0c7d6cc2876", "sha256": "2ed076098b171573161eb146afcb9129b5ff63308960aeca4b676d9d3c35e700" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "610d910901768697519ac0c7d6cc2876", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1319557, "upload_time": "2021-11-14T21:25:05", "upload_time_iso_8601": "2021-11-14T21:25:05.175880Z", "url": "https://files.pythonhosted.org/packages/17/ab/36da1a4b5d2685acdc84117b32588b1edb4033b40cfbdf27a219bd6a4c6d/aiohttp-3.8.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4db3d7414f243db424fc88dd8f98a799", "sha256": "086f92daf51a032d062ec5f58af5ca6a44d082c35299c96376a41cbb33034675" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "4db3d7414f243db424fc88dd8f98a799", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1230913, "upload_time": "2021-11-14T21:25:07", "upload_time_iso_8601": "2021-11-14T21:25:07.008476Z", "url": "https://files.pythonhosted.org/packages/ed/af/cf551e595af1979ba74c280d94aa0c351e634285608ac70cb6def374f661/aiohttp-3.8.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe45fa0afa9eb644bd603288d74e41ee", "sha256": "11691cf4dc5b94236ccc609b70fec991234e7ef8d4c02dd0c9668d1e486f5abf" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "fe45fa0afa9eb644bd603288d74e41ee", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1254246, "upload_time": "2021-11-14T21:25:08", "upload_time_iso_8601": "2021-11-14T21:25:08.558568Z", "url": "https://files.pythonhosted.org/packages/38/71/e1db3f96fa85f77906ef002a08fa8d02dbdb3292180d41eb1b17ddab72bf/aiohttp-3.8.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "161bf14646ed162edb94bbe806d520b8", "sha256": "31d1e1c0dbf19ebccbfd62eff461518dcb1e307b195e93bba60c965a4dcf1ba0" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "161bf14646ed162edb94bbe806d520b8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1287328, "upload_time": "2021-11-14T21:25:10", "upload_time_iso_8601": "2021-11-14T21:25:10.216784Z", "url": "https://files.pythonhosted.org/packages/20/0b/c077ca31bba80ed7c1c81a7505e7e339ef82ab3d9ee679c09b3ffb04cdd5/aiohttp-3.8.1-cp38-cp38-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "460de2bc272d9e01a38fe2409b395760", "sha256": "11a67c0d562e07067c4e86bffc1553f2cf5b664d6111c894671b2b8712f3aba5" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "460de2bc272d9e01a38fe2409b395760", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1251676, "upload_time": "2021-11-14T21:25:12", "upload_time_iso_8601": "2021-11-14T21:25:12.301304Z", "url": "https://files.pythonhosted.org/packages/58/54/f4c1bac24b2365c2eb8d5205822b3ea41e40e1c471060c2409b9dbf05be5/aiohttp-3.8.1-cp38-cp38-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e89e0f7c4cd44dd5c45eba7bb49383b", "sha256": "bb01ba6b0d3f6c68b89fce7305080145d4877ad3acaed424bae4d4ee75faa950" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "7e89e0f7c4cd44dd5c45eba7bb49383b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1310171, "upload_time": "2021-11-14T21:25:13", "upload_time_iso_8601": "2021-11-14T21:25:13.785333Z", "url": "https://files.pythonhosted.org/packages/55/a5/2912baebc80570a34a2103a34e3c65b84e93bcf20f6e09fbe335ce27e3cf/aiohttp-3.8.1-cp38-cp38-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af276841fe827495ca5c2d59237f7681", "sha256": "44db35a9e15d6fe5c40d74952e803b1d96e964f683b5a78c3cc64eb177878155" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "af276841fe827495ca5c2d59237f7681", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1357653, "upload_time": "2021-11-14T21:25:15", "upload_time_iso_8601": "2021-11-14T21:25:15.537834Z", "url": "https://files.pythonhosted.org/packages/9f/bc/5928e69637252150176b3604f7c386a9184358fcc7338c0b8c55a7908523/aiohttp-3.8.1-cp38-cp38-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4cd5dffb0e3de2727ae2af8eccdeebba", "sha256": "844a9b460871ee0a0b0b68a64890dae9c415e513db0f4a7e3cab41a0f2fedf33" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "4cd5dffb0e3de2727ae2af8eccdeebba", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1281346, "upload_time": "2021-11-14T21:25:18", "upload_time_iso_8601": "2021-11-14T21:25:18.067759Z", "url": "https://files.pythonhosted.org/packages/81/31/baf1ff4e36da246dc3ff2e0c12f2f7688b4f394ad21e29e3ef4ba864d035/aiohttp-3.8.1-cp38-cp38-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4a9f81726d945032c9d5d92cb57df6d", "sha256": "7d08744e9bae2ca9c382581f7dce1273fe3c9bae94ff572c3626e8da5b193c6a" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "d4a9f81726d945032c9d5d92cb57df6d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 535299, "upload_time": "2021-11-14T21:25:20", "upload_time_iso_8601": "2021-11-14T21:25:20.603917Z", "url": "https://files.pythonhosted.org/packages/f1/ca/603261545a757915fb30446a9d7a394cd934865a8eac3c18ce638df90687/aiohttp-3.8.1-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ac536babeeee9c42f1eca6f139919b4", "sha256": "04d48b8ce6ab3cf2097b1855e1505181bdd05586ca275f2505514a6e274e8e75" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "3ac536babeeee9c42f1eca6f139919b4", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 555982, "upload_time": "2021-11-14T21:25:22", "upload_time_iso_8601": "2021-11-14T21:25:22.368888Z", "url": "https://files.pythonhosted.org/packages/e4/eb/2e5c66f6ab8bf1fa9743552ec49bd8deb9a8ad385545bbd60c8f50529e21/aiohttp-3.8.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c7028497a657dab09bd1cc2a97a80286", "sha256": "f5315a2eb0239185af1bddb1abf472d877fede3cc8d143c6cddad37678293237" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "c7028497a657dab09bd1cc2a97a80286", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 728696, "upload_time": "2021-11-14T21:25:23", "upload_time_iso_8601": "2021-11-14T21:25:23.751704Z", "url": "https://files.pythonhosted.org/packages/a8/0e/068cb215e8709703c497fcd07e8a81e68b3eb8b83083f96e93ef964d4685/aiohttp-3.8.1-cp39-cp39-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a510b21b5161830b87c3c18ccd81939c", "sha256": "a996d01ca39b8dfe77440f3cd600825d05841088fd6bc0144cc6c2ec14cc5f74" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a510b21b5161830b87c3c18ccd81939c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 574987, "upload_time": "2021-11-14T21:25:25", "upload_time_iso_8601": "2021-11-14T21:25:25.381699Z", "url": "https://files.pythonhosted.org/packages/dd/22/9b3e55dd0c8c460a9381c97e9f33cd4d7bc6f322f8c3ae5c9737becda9a3/aiohttp-3.8.1-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f0e1a45cc6b073953fb22ddac6c46cf", "sha256": "13487abd2f761d4be7c8ff9080de2671e53fff69711d46de703c310c4c9317ca" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "1f0e1a45cc6b073953fb22ddac6c46cf", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 552303, "upload_time": "2021-11-14T21:25:26", "upload_time_iso_8601": "2021-11-14T21:25:26.650701Z", "url": "https://files.pythonhosted.org/packages/64/0f/bad91b74658ffea95982794603106c7d751734bb4e8e1f83c654a11ef971/aiohttp-3.8.1-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2e7e8a48f61504e29eccfda731264477", "sha256": "ea302f34477fda3f85560a06d9ebdc7fa41e82420e892fc50b577e35fc6a50b2" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "2e7e8a48f61504e29eccfda731264477", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1235285, "upload_time": "2021-11-14T21:25:28", "upload_time_iso_8601": "2021-11-14T21:25:28.199837Z", "url": "https://files.pythonhosted.org/packages/51/b4/174a2a94aedbad1f92b1a18a2051eba5b8ea915853361949b84e3ee1ac35/aiohttp-3.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c8318ae9f28e5b05f033370078eeb93e", "sha256": "a2f635ce61a89c5732537a7896b6319a8fcfa23ba09bec36e1b1ac0ab31270d2" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "c8318ae9f28e5b05f033370078eeb93e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1248694, "upload_time": "2021-11-14T21:25:30", "upload_time_iso_8601": "2021-11-14T21:25:30.150488Z", "url": "https://files.pythonhosted.org/packages/8d/d7/7121308d1d3b399b1f3b902939e4c59987360ed3fbaacfb291da06cbb924/aiohttp-3.8.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "308d765a5797db465c3bd3edd2ba781c", "sha256": "e999f2d0e12eea01caeecb17b653f3713d758f6dcc770417cf29ef08d3931421" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "308d765a5797db465c3bd3edd2ba781c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1303955, "upload_time": "2021-11-14T21:25:31", "upload_time_iso_8601": "2021-11-14T21:25:31.562265Z", "url": "https://files.pythonhosted.org/packages/df/6d/ef68db15f3bcb29ad4ff7815008f45d44a08dbdbf524bf2f904ce701ffd3/aiohttp-3.8.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "56837428cc78d9d6ba6b3ba48839bf08", "sha256": "0770e2806a30e744b4e21c9d73b7bee18a1cfa3c47991ee2e5a65b887c49d5cf" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "56837428cc78d9d6ba6b3ba48839bf08", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1184230, "upload_time": "2021-11-14T21:25:32", "upload_time_iso_8601": "2021-11-14T21:25:32.998384Z", "url": "https://files.pythonhosted.org/packages/24/f2/961f20184581dd21e181a927e4e264d991f5f6a090778a9b3575a4eac7fb/aiohttp-3.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef2c110b27ffff0466dd889bccbc94db", "sha256": "d15367ce87c8e9e09b0f989bfd72dc641bcd04ba091c68cd305312d00962addd" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ef2c110b27ffff0466dd889bccbc94db", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1202051, "upload_time": "2021-11-14T21:25:34", "upload_time_iso_8601": "2021-11-14T21:25:34.592488Z", "url": "https://files.pythonhosted.org/packages/e9/13/21e7f1d0d1932b321cdeaea01d5008285dac3b088af855c5c3d8714dba7b/aiohttp-3.8.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed08a8fea8c81b659226afa7319789b6", "sha256": "6c7cefb4b0640703eb1069835c02486669312bf2f12b48a748e0a7756d0de33d" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "ed08a8fea8c81b659226afa7319789b6", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1243350, "upload_time": "2021-11-14T21:25:36", "upload_time_iso_8601": "2021-11-14T21:25:36.088711Z", "url": "https://files.pythonhosted.org/packages/8c/25/7454b836072efe67f8b16a4751443c77e0a34f9e909e6bca7247853b9bf4/aiohttp-3.8.1-cp39-cp39-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d345056000a7d9c39edf0e30ad50b0f4", "sha256": "71927042ed6365a09a98a6377501af5c9f0a4d38083652bcd2281a06a5976724" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "d345056000a7d9c39edf0e30ad50b0f4", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1207847, "upload_time": "2021-11-14T21:25:37", "upload_time_iso_8601": "2021-11-14T21:25:37.489059Z", "url": "https://files.pythonhosted.org/packages/32/f6/a68f6f703541ce5cf3bba94c5f5415c732d0384e29d0ab6cdb6e62a6822e/aiohttp-3.8.1-cp39-cp39-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ae72d160c9c77dcfb69d165eb02fe856", "sha256": "28d490af82bc6b7ce53ff31337a18a10498303fe66f701ab65ef27e143c3b0ef" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "ae72d160c9c77dcfb69d165eb02fe856", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1264462, "upload_time": "2021-11-14T21:25:38", "upload_time_iso_8601": "2021-11-14T21:25:38.837562Z", "url": "https://files.pythonhosted.org/packages/f0/8d/cbe09c4e5d9b150a24765af508a5db745ba7049bc68ee6670063e04c2879/aiohttp-3.8.1-cp39-cp39-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50fe8b6eb657348e90c87d98f232128b", "sha256": "b6613280ccedf24354406caf785db748bebbddcf31408b20c0b48cb86af76866" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "50fe8b6eb657348e90c87d98f232128b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1312143, "upload_time": "2021-11-14T21:25:40", "upload_time_iso_8601": "2021-11-14T21:25:40.196257Z", "url": "https://files.pythonhosted.org/packages/6d/a0/bdc0596eb07b328ae97bf54cd1d0c3eed34b8728d1bf6fcab12c296de5a2/aiohttp-3.8.1-cp39-cp39-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2603dc0dbaab1e592b1e882d232f9dbe", "sha256": "81e3d8c34c623ca4e36c46524a3530e99c0bc95ed068fd6e9b55cb721d408fb2" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "2603dc0dbaab1e592b1e882d232f9dbe", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1235550, "upload_time": "2021-11-14T21:25:41", "upload_time_iso_8601": "2021-11-14T21:25:41.969498Z", "url": "https://files.pythonhosted.org/packages/83/98/d84ea011850be422d7db44c668b5d262ab94e0b9bfd54e0d0222cff62d71/aiohttp-3.8.1-cp39-cp39-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "51418432c6dd0676606ad0b18b7c188b", "sha256": "7187a76598bdb895af0adbd2fb7474d7f6025d170bc0a1130242da817ce9e7d1" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "51418432c6dd0676606ad0b18b7c188b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 534482, "upload_time": "2021-11-14T21:25:43", "upload_time_iso_8601": "2021-11-14T21:25:43.428883Z", "url": "https://files.pythonhosted.org/packages/c1/e2/10084a3437c0f3f971c46a9870b574ef6cc00d0480119fd3e193c19fdf66/aiohttp-3.8.1-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "924f3c0a0f17b3b26ea5371661291e7f", "sha256": "1c182cb873bc91b411e184dab7a2b664d4fea2743df0e4d57402f7f3fa644bac" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "924f3c0a0f17b3b26ea5371661291e7f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 554889, "upload_time": "2021-11-14T21:25:44", "upload_time_iso_8601": "2021-11-14T21:25:44.911523Z", "url": "https://files.pythonhosted.org/packages/4b/02/8bcd66c2a44714b3c3d076ff3bf49b3a247338a47f31adb00567841e15a0/aiohttp-3.8.1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "faf7726dc65a940272874c0f441e8ec6", "sha256": "fc5471e1a54de15ef71c1bc6ebe80d4dc681ea600e68bfd1cbce40427f0b7578" }, "downloads": -1, "filename": "aiohttp-3.8.1.tar.gz", "has_sig": false, "md5_digest": "faf7726dc65a940272874c0f441e8ec6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 7324180, "upload_time": "2021-11-14T21:25:46", "upload_time_iso_8601": "2021-11-14T21:25:46.643129Z", "url": "https://files.pythonhosted.org/packages/5a/86/5f63de7a202550269a617a5d57859a2961f3396ecd1739a70b92224766bc/aiohttp-3.8.1.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.0a0": [ { "comment_text": "", "digests": { "md5": "fbd58967abca868a75aa102bcbb481cb", "sha256": "f0c304dcc1494dbc3fc492ebc2e61d0db323be9756a1bb14f407097d8adf82ec" }, "downloads": -1, "filename": "aiohttp-4.0.0a0-cp35-cp35m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "fbd58967abca868a75aa102bcbb481cb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 624394, "upload_time": "2019-01-09T01:25:06", "upload_time_iso_8601": "2019-01-09T01:25:06.842170Z", "url": "https://files.pythonhosted.org/packages/c5/0d/d3da901cfbd2094e4f91827d61391d588098ff3afa9d53cc07468b7c9b19/aiohttp-4.0.0a0-cp35-cp35m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95ab6abee159214e24100948a818c708", "sha256": "b4c6e1f5a591511537d4ccd4c807f6c8bb8d1b8a5043395950ba339086380904" }, "downloads": -1, "filename": "aiohttp-4.0.0a0-cp35-cp35m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "95ab6abee159214e24100948a818c708", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 619804, "upload_time": "2019-01-09T01:42:51", "upload_time_iso_8601": "2019-01-09T01:42:51.708066Z", "url": "https://files.pythonhosted.org/packages/ad/41/703b5c7149ded3a580951e3b9306d55274002c1453126164d551e0eeec9a/aiohttp-4.0.0a0-cp35-cp35m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75bac0888b2ceaf123ab0a27aa8e02ba", "sha256": "36c4e234a85a81e325d8b1d7fdeb696a3d51bb8eb09a8c8e69c7532b421e8a29" }, "downloads": -1, "filename": "aiohttp-4.0.0a0-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "75bac0888b2ceaf123ab0a27aa8e02ba", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 616078, "upload_time": "2019-01-09T01:54:56", "upload_time_iso_8601": "2019-01-09T01:54:56.208486Z", "url": "https://files.pythonhosted.org/packages/4c/e9/d57f4f96978198c060aa47504ee5c51d52ebefb74640147c2529ef6fd6f6/aiohttp-4.0.0a0-cp35-cp35m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "17467ca684f96ef9717fb2e80ee72b78", "sha256": "6b1e99dc838c28f14e45bffef6fb77bf5b54bd2bfb1a475c776da5ba8a9fec2d" }, "downloads": -1, "filename": "aiohttp-4.0.0a0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "17467ca684f96ef9717fb2e80ee72b78", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1098986, "upload_time": "2019-01-09T01:38:09", "upload_time_iso_8601": "2019-01-09T01:38:09.318566Z", "url": "https://files.pythonhosted.org/packages/43/21/2ea6706620c287b7077a890b40c0e099cfdb5ce5b8a605d8dcc9c469be1b/aiohttp-4.0.0a0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5aca7f112c4ed66a995b3f2ca7594ad0", "sha256": "4ede22808195126d55879f1a14aaa3d1004f188c341f92ec3b9ca5ea13e695b9" }, "downloads": -1, "filename": "aiohttp-4.0.0a0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5aca7f112c4ed66a995b3f2ca7594ad0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 1133689, "upload_time": "2019-01-09T01:38:11", "upload_time_iso_8601": "2019-01-09T01:38:11.655359Z", "url": "https://files.pythonhosted.org/packages/4a/9f/c0bfc666ec3295d05139daad63b26f366cb4cd0654e61243be6916e1c231/aiohttp-4.0.0a0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f8a39fad30cd7b185294d828884e14b0", "sha256": "746b73eff86a1618025093b9c86ff4d642cff71a7ac7244f7fd8a186967cee22" }, "downloads": -1, "filename": "aiohttp-4.0.0a0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "f8a39fad30cd7b185294d828884e14b0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 577293, "upload_time": "2019-01-09T01:08:05", "upload_time_iso_8601": "2019-01-09T01:08:05.114526Z", "url": "https://files.pythonhosted.org/packages/b1/98/7410e7ee22fd76dafba53a349f929a9cd6bf12cf34b4714811dd3088d396/aiohttp-4.0.0a0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fde7c1d61fb9221577e9ca5526ab158f", "sha256": "bee80820a8ef5f6bddd58d762fc9f981ef1041a464d382d7d9a992bb94cd23c6" }, "downloads": -1, "filename": "aiohttp-4.0.0a0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "fde7c1d61fb9221577e9ca5526ab158f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3.5.3", "size": 605058, "upload_time": "2019-01-09T01:15:06", "upload_time_iso_8601": "2019-01-09T01:15:06.207000Z", "url": "https://files.pythonhosted.org/packages/f2/5d/d0170507c42d5ede061927fb65bfc9e34280fb45b4ffbb34713f780b6687/aiohttp-4.0.0a0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "768a36748ffc1375ce43a8375ad594bb", "sha256": "53228028648b40f59fc941c0cd67b7899bce52f35eb66aeb9e33b75bac0aac0a" }, "downloads": -1, "filename": "aiohttp-4.0.0a0-cp36-cp36m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "768a36748ffc1375ce43a8375ad594bb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 641204, "upload_time": "2019-01-09T01:24:48", "upload_time_iso_8601": "2019-01-09T01:24:48.198518Z", "url": "https://files.pythonhosted.org/packages/aa/0e/fc1fb21b224ef1d0a5984e6b342a04ed95c6b6e01207326c0f37537e251f/aiohttp-4.0.0a0-cp36-cp36m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "61f008e27a293ffc98a64c6a29282515", "sha256": "67cb8e71c043686f806cfdb4189774c57ef929d32890024c3775d72b54381797" }, "downloads": -1, "filename": "aiohttp-4.0.0a0-cp36-cp36m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "61f008e27a293ffc98a64c6a29282515", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 633460, "upload_time": "2019-01-09T01:56:07", "upload_time_iso_8601": "2019-01-09T01:56:07.837423Z", "url": "https://files.pythonhosted.org/packages/e4/06/6c258d420304ad36437d3f7f04b6b7c97518e3b7736df560ccc79a846e0f/aiohttp-4.0.0a0-cp36-cp36m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42abaf2020c395ae2235a3c3905edc76", "sha256": "3f5a30f67e4152d4075063ae9f2286313af2e39b950869edba76232569e08793" }, "downloads": -1, "filename": "aiohttp-4.0.0a0-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "42abaf2020c395ae2235a3c3905edc76", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 633177, "upload_time": "2019-01-09T02:06:36", "upload_time_iso_8601": "2019-01-09T02:06:36.406285Z", "url": "https://files.pythonhosted.org/packages/5a/6b/4b857c8d35dcff7742fecf4dacbb86f3beb9c8452bc4b99d1941862ef59c/aiohttp-4.0.0a0-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e2c0b69264dd48a97d465a355dffa2a6", "sha256": "0f448b5d5cd45e642b9fcf4798e48cca4149ae479022f59bd67a47caed44657e" }, "downloads": -1, "filename": "aiohttp-4.0.0a0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e2c0b69264dd48a97d465a355dffa2a6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1120472, "upload_time": "2019-01-09T01:38:14", "upload_time_iso_8601": "2019-01-09T01:38:14.220124Z", "url": "https://files.pythonhosted.org/packages/47/3d/6c23a267ab99835ffd098331f8398544238721dc4698624e191c42e77c57/aiohttp-4.0.0a0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0a30fc78d7723768a189e86563c1271b", "sha256": "abc43651f2c6d70b812cb874fc8caa00eb69fac11930cd2640d32a11ee7beef0" }, "downloads": -1, "filename": "aiohttp-4.0.0a0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0a30fc78d7723768a189e86563c1271b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 1153824, "upload_time": "2019-01-09T01:38:16", "upload_time_iso_8601": "2019-01-09T01:38:16.510231Z", "url": "https://files.pythonhosted.org/packages/02/d0/95aa6e81c978fe436d41a1a0511dfb66598888c7fc7d93ade5fee9483d7a/aiohttp-4.0.0a0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5fa9bdf5ab54eeedf5b616617dd23987", "sha256": "6c30eca95e7d60fbf13e6ebcaf62b7c0f3f93ec5de8862919aa5ede3720b1c86" }, "downloads": -1, "filename": "aiohttp-4.0.0a0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "5fa9bdf5ab54eeedf5b616617dd23987", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 582979, "upload_time": "2019-01-09T01:20:46", "upload_time_iso_8601": "2019-01-09T01:20:46.998769Z", "url": "https://files.pythonhosted.org/packages/5f/3a/f1855591da81066203282207085be693568c6b33ccfb1e1cd0a397b6cc92/aiohttp-4.0.0a0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd50374fb1f0a64642fd4253e942e0bb", "sha256": "9efc80ced0936f3fb2774e1bc981006324c74d1e58fc7f7164ecd98ede727c7d" }, "downloads": -1, "filename": "aiohttp-4.0.0a0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "bd50374fb1f0a64642fd4253e942e0bb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.5.3", "size": 610874, "upload_time": "2019-01-09T01:28:05", "upload_time_iso_8601": "2019-01-09T01:28:05.245204Z", "url": "https://files.pythonhosted.org/packages/b5/2f/47e14bf2bdf53a6e87daa7f777210fe4e23eed719de4df1c24aab13dac1e/aiohttp-4.0.0a0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e26a25f82c36c19d82e1cdd9433a87f", "sha256": "02396865118790ebb0bd14d6935e9e4fa80d87683240618894e585048a8b83ec" }, "downloads": -1, "filename": "aiohttp-4.0.0a0-cp37-cp37m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "0e26a25f82c36c19d82e1cdd9433a87f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 641170, "upload_time": "2019-01-09T01:43:09", "upload_time_iso_8601": "2019-01-09T01:43:09.940765Z", "url": "https://files.pythonhosted.org/packages/50/7a/20a174ce0ab8c65ddee27d886e95b334f9338a34db9c7e711a55f1d23810/aiohttp-4.0.0a0-cp37-cp37m-macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2080c7d45e0b04b3b263c29a7a4739d2", "sha256": "fb9c2f27d2db6d709a02421733bb6ad22e16104beb2cf403e1120c24f3cc8668" }, "downloads": -1, "filename": "aiohttp-4.0.0a0-cp37-cp37m-macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "2080c7d45e0b04b3b263c29a7a4739d2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 634244, "upload_time": "2019-01-09T02:01:15", "upload_time_iso_8601": "2019-01-09T02:01:15.208129Z", "url": "https://files.pythonhosted.org/packages/2e/b7/18eb453a8dad77fa26be0c4e459bd30f59c694a25429618d9f6a1d349c92/aiohttp-4.0.0a0-cp37-cp37m-macosx_10_11_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a07abe47374f6cb86af6b20b7c454067", "sha256": "6f2c905ab82aa0ee8a06210d5a6c1359c79f3f2088cc1b53c8758cae1dbc0d55" }, "downloads": -1, "filename": "aiohttp-4.0.0a0-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "a07abe47374f6cb86af6b20b7c454067", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 630364, "upload_time": "2019-01-09T02:08:35", "upload_time_iso_8601": "2019-01-09T02:08:35.758119Z", "url": "https://files.pythonhosted.org/packages/35/6c/4291d4a5df67cfc6b30926331c688c0d0806c3e82b6994e8fc6d37e0e8e8/aiohttp-4.0.0a0-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f4ad234a3b06a82c98e23d38938ed1ff", "sha256": "9ebf518c7bc08e65b5396f80e8155c7bb1380b921b84b510570e62196c9fca56" }, "downloads": -1, "filename": "aiohttp-4.0.0a0-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f4ad234a3b06a82c98e23d38938ed1ff", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1120069, "upload_time": "2019-01-09T01:38:18", "upload_time_iso_8601": "2019-01-09T01:38:18.960929Z", "url": "https://files.pythonhosted.org/packages/56/49/d33ce192f876034d6b41108a1c0bf089ed95228f3a95e81ddfc215f25b4a/aiohttp-4.0.0a0-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4f6b0394d32be84b9f887001d2bb0465", "sha256": "32eeef64a5bcf6dc652f19e020b16f36ec66d291957f62ffad18ecfc58695966" }, "downloads": -1, "filename": "aiohttp-4.0.0a0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4f6b0394d32be84b9f887001d2bb0465", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 1151210, "upload_time": "2019-01-09T01:38:21", "upload_time_iso_8601": "2019-01-09T01:38:21.527902Z", "url": "https://files.pythonhosted.org/packages/32/74/652b3103e10c036eefbaadba5a4d7cfc146fbf352f132fd4ef33dc29ea2d/aiohttp-4.0.0a0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a973b6f04554a85c556476e07242623d", "sha256": "48c65d65d0de79f1a4391bc29c8c8ec7655671a03ad7902d5e66fd735531893e" }, "downloads": -1, "filename": "aiohttp-4.0.0a0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "a973b6f04554a85c556476e07242623d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 583073, "upload_time": "2019-01-09T01:34:32", "upload_time_iso_8601": "2019-01-09T01:34:32.617153Z", "url": "https://files.pythonhosted.org/packages/c5/b0/95f47a79cab51300af846e8e83da149336d1f7e639b7c90091836d04322b/aiohttp-4.0.0a0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6b7939f5dafda5b105ff6bd0f016198", "sha256": "1af72f53ccead6d161296e576aa2b5d0c6c7403a389601dd7aa7a7a30a9f41c3" }, "downloads": -1, "filename": "aiohttp-4.0.0a0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "f6b7939f5dafda5b105ff6bd0f016198", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.5.3", "size": 610758, "upload_time": "2019-01-09T01:41:24", "upload_time_iso_8601": "2019-01-09T01:41:24.705471Z", "url": "https://files.pythonhosted.org/packages/d7/ce/54337d8270600f214b293e763fded18352e19b3c1ee65ddbe83548a33558/aiohttp-4.0.0a0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68fb4c234faba7fc98cf1e2bb8c5c2e4", "sha256": "371a5f1bb604fc262ba32893931f5aad3bb3e797dbebcf2b5b2c36f97603e4c7" }, "downloads": -1, "filename": "aiohttp-4.0.0a0.tar.gz", "has_sig": false, "md5_digest": "68fb4c234faba7fc98cf1e2bb8c5c2e4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5.3", "size": 1100323, "upload_time": "2019-01-09T01:08:07", "upload_time_iso_8601": "2019-01-09T01:08:07.554785Z", "url": "https://files.pythonhosted.org/packages/ef/54/8926aef41c43f9126c65359eab8b0260fd53da29102ceeffe654e88215cc/aiohttp-4.0.0a0.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.0a1": [ { "comment_text": "", "digests": { "md5": "0f5f8fb74de33f6caaa6397aa583eda9", "sha256": "93c3b14747413f38f094a60e98f55e73831f0c9a23ae7faa3dc97d8963e13021" }, "downloads": -1, "filename": "aiohttp-4.0.0a1-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "0f5f8fb74de33f6caaa6397aa583eda9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 644561, "upload_time": "2019-10-09T11:29:30", "upload_time_iso_8601": "2019-10-09T11:29:30.939016Z", "url": "https://files.pythonhosted.org/packages/68/b3/5bf381221c0008774ea127152ac22aaefd8c0d23c5b56c7d545bba7fa3e2/aiohttp-4.0.0a1-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "00f51dbef707105f9c604e50ed5ae33b", "sha256": "438f1f1555c02c50894604d94944cff188fe138b46467b7fa99fdceb51ab5842" }, "downloads": -1, "filename": "aiohttp-4.0.0a1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "00f51dbef707105f9c604e50ed5ae33b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1161244, "upload_time": "2019-10-09T11:29:34", "upload_time_iso_8601": "2019-10-09T11:29:34.419907Z", "url": "https://files.pythonhosted.org/packages/cb/58/adf4457076102c02060eed24d46abc549b3a37b5268000d6d018fe6baaf2/aiohttp-4.0.0a1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "98f5d2de716c087b5d95ce119c55133e", "sha256": "90bed250d1435aef33a1f8c439c5056d5d25a44fe6caf33fcafafed805bad4dc" }, "downloads": -1, "filename": "aiohttp-4.0.0a1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "98f5d2de716c087b5d95ce119c55133e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 622405, "upload_time": "2019-10-09T11:29:38", "upload_time_iso_8601": "2019-10-09T11:29:38.105736Z", "url": "https://files.pythonhosted.org/packages/c8/d9/6bebdff96c5aa414790306a83efc30c4878e8deedc82fbc0a959815aa291/aiohttp-4.0.0a1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "be4e64bc099c7881a130a46c541015bb", "sha256": "a6e70a38d883185b1921d8122759661c39ade54949770394412a9e713fec6fa7" }, "downloads": -1, "filename": "aiohttp-4.0.0a1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "be4e64bc099c7881a130a46c541015bb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 647161, "upload_time": "2019-10-09T11:29:41", "upload_time_iso_8601": "2019-10-09T11:29:41.038779Z", "url": "https://files.pythonhosted.org/packages/02/7c/dbff9702300827856658780ad885610d8ac573f34535809fd9d16d7c923c/aiohttp-4.0.0a1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a9a9a4197426ecffae2600b02e89fd05", "sha256": "173267050501e1537293df06723bc5e719990889e2820ba3932969983892e960" }, "downloads": -1, "filename": "aiohttp-4.0.0a1-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "a9a9a4197426ecffae2600b02e89fd05", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 640818, "upload_time": "2019-10-09T11:29:44", "upload_time_iso_8601": "2019-10-09T11:29:44.268098Z", "url": "https://files.pythonhosted.org/packages/47/dd/a007fa4b959680d437f58033f56d63595eca1b8a082eabe6971a81a2f774/aiohttp-4.0.0a1-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e647dde7ae620d3d6345a0e5d9199117", "sha256": "ea26536ae06df6dac021303a0df72c79e55512070e6a304ba93ad468a3a754dc" }, "downloads": -1, "filename": "aiohttp-4.0.0a1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e647dde7ae620d3d6345a0e5d9199117", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1159341, "upload_time": "2019-10-09T11:29:48", "upload_time_iso_8601": "2019-10-09T11:29:48.092019Z", "url": "https://files.pythonhosted.org/packages/f9/ab/00a073841b7c0b869b0c5c9939fa6aa2e1aac60e0d5ef3e1bc4549c4dd74/aiohttp-4.0.0a1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "675dfb2d6b78c7c12023f24dc7cb47d4", "sha256": "c138451a82cdbf65cddf952941d5c7a1a2cac8ce3bc618dee8d889e5251ec7a5" }, "downloads": -1, "filename": "aiohttp-4.0.0a1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "675dfb2d6b78c7c12023f24dc7cb47d4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 622558, "upload_time": "2019-10-09T11:29:51", "upload_time_iso_8601": "2019-10-09T11:29:51.709262Z", "url": "https://files.pythonhosted.org/packages/c0/1b/c7015a30c8a54e9b44446c176e4162b365b7e7fbb2591b27a2651944bbc1/aiohttp-4.0.0a1-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7b3ea7d5823455d44c88294f631fc4d8", "sha256": "c94770383e49f9cc5912b926364ad022a6c8a5dbf5498933ca3a5713c6daf738" }, "downloads": -1, "filename": "aiohttp-4.0.0a1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "7b3ea7d5823455d44c88294f631fc4d8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 647464, "upload_time": "2019-10-09T11:29:56", "upload_time_iso_8601": "2019-10-09T11:29:56.146324Z", "url": "https://files.pythonhosted.org/packages/8a/fb/7ba4c3fdafa052fe5f2d389261f282ac2190d1a09b25a61621eb6e41c430/aiohttp-4.0.0a1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "853c25e8d5c499db5a17aee62837eb1b", "sha256": "b5036133c1ba77ed5a70208d2a021a90b76fdf8bf523ae33dae46d4f4380d86f" }, "downloads": -1, "filename": "aiohttp-4.0.0a1.tar.gz", "has_sig": false, "md5_digest": "853c25e8d5c499db5a17aee62837eb1b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1075812, "upload_time": "2019-10-09T11:29:59", "upload_time_iso_8601": "2019-10-09T11:29:59.154838Z", "url": "https://files.pythonhosted.org/packages/f0/f2/703dba52c7620199ea0ec8ea9a4a2f06203b4893b94f60240c2c10225043/aiohttp-4.0.0a1.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f8a95117f5d18c76c3d7628335075932", "sha256": "1ed0b6477896559f17b9eaeb6d38e07f7f9ffe40b9f0f9627ae8b9926ae260a8" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "f8a95117f5d18c76c3d7628335075932", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 729142, "upload_time": "2021-11-14T21:23:48", "upload_time_iso_8601": "2021-11-14T21:23:48.899241Z", "url": "https://files.pythonhosted.org/packages/e3/3a/720635a98bb0eef9179d12ee3ccca659d1fcccfbafaacdf42ed5536a0861/aiohttp-3.8.1-cp310-cp310-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d77a2835334677fdfcc65eb2a552942", "sha256": "7dadf3c307b31e0e61689cbf9e06be7a867c563d5a63ce9dca578f956609abf8" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "1d77a2835334677fdfcc65eb2a552942", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 575262, "upload_time": "2021-11-14T21:23:50", "upload_time_iso_8601": "2021-11-14T21:23:50.264490Z", "url": "https://files.pythonhosted.org/packages/7e/9f/3cd2502f3cab61eccd7c20f5ab67447cf891ad8613282141955df1b7fb98/aiohttp-3.8.1-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95b326022cd719396248358db1d08536", "sha256": "a79004bb58748f31ae1cbe9fa891054baaa46fb106c2dc7af9f8e3304dc30316" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "95b326022cd719396248358db1d08536", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 552486, "upload_time": "2021-11-14T21:23:51", "upload_time_iso_8601": "2021-11-14T21:23:51.529674Z", "url": "https://files.pythonhosted.org/packages/a6/7f/4c202b0fd3c33029e45bb0d06eaac2886be4427763cc9589774fb39b5da7/aiohttp-3.8.1-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b7182c5cd15d05b4d3628d73d525b853", "sha256": "12de6add4038df8f72fac606dff775791a60f113a725c960f2bab01d8b8e6b15" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "b7182c5cd15d05b4d3628d73d525b853", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1236262, "upload_time": "2021-11-14T21:23:53", "upload_time_iso_8601": "2021-11-14T21:23:53.099646Z", "url": "https://files.pythonhosted.org/packages/48/08/c3efb449dea5f38292804e4fbf8eaef1b3f168535a4163cc3fce3f9b4915/aiohttp-3.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e962a37ea2086af3ff490f4fcfe1988", "sha256": "6f0d5f33feb5f69ddd57a4a4bd3d56c719a141080b445cbf18f238973c5c9923" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "9e962a37ea2086af3ff490f4fcfe1988", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1250191, "upload_time": "2021-11-14T21:23:54", "upload_time_iso_8601": "2021-11-14T21:23:54.789182Z", "url": "https://files.pythonhosted.org/packages/b1/bd/e412cb6cd12b7a86966239a97ed0391e1ad5ac6f8a749caddc49e18264ec/aiohttp-3.8.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b0d9c8b36040d25d35dd0d001abef443", "sha256": "eaba923151d9deea315be1f3e2b31cc39a6d1d2f682f942905951f4e40200922" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "b0d9c8b36040d25d35dd0d001abef443", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1305403, "upload_time": "2021-11-14T21:23:56", "upload_time_iso_8601": "2021-11-14T21:23:56.392887Z", "url": "https://files.pythonhosted.org/packages/85/e6/d52a342bf22b5b5c759a94af340836490bcbffd288d4a65494234d8298f7/aiohttp-3.8.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b42d35c5fc7879a9ae6f05bc84a2bfe6", "sha256": "099ebd2c37ac74cce10a3527d2b49af80243e2a4fa39e7bce41617fbc35fa3c1" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "b42d35c5fc7879a9ae6f05bc84a2bfe6", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1186614, "upload_time": "2021-11-14T21:23:58", "upload_time_iso_8601": "2021-11-14T21:23:58.138259Z", "url": "https://files.pythonhosted.org/packages/80/a3/9403173d3a6ba5893a4e0a1816b211da7ba0cb7c00c9ac0279ec2dbbf576/aiohttp-3.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6372d45f9c82554b60ccf83b62a8e8c", "sha256": "2e5d962cf7e1d426aa0e528a7e198658cdc8aa4fe87f781d039ad75dcd52c516" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "f6372d45f9c82554b60ccf83b62a8e8c", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1206094, "upload_time": "2021-11-14T21:23:59", "upload_time_iso_8601": "2021-11-14T21:23:59.393368Z", "url": "https://files.pythonhosted.org/packages/f4/2d/07e3ba718571e79509f88a791611a3e156e8915ed9a19116547806bce8fa/aiohttp-3.8.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1ed2b0987190ec168c4971c83d9094a", "sha256": "fa0ffcace9b3aa34d205d8130f7873fcfefcb6a4dd3dd705b0dab69af6712642" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "f1ed2b0987190ec168c4971c83d9094a", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1247409, "upload_time": "2021-11-14T21:24:00", "upload_time_iso_8601": "2021-11-14T21:24:00.591673Z", "url": "https://files.pythonhosted.org/packages/c0/6d/f5423a7c899c538e2cff2e713f9eb2c51b02fad909ec8e8b1c3ed713049a/aiohttp-3.8.1-cp310-cp310-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f80cce155b39d2c59c3b99163e5080d8", "sha256": "61bfc23df345d8c9716d03717c2ed5e27374e0fe6f659ea64edcd27b4b044cf7" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "f80cce155b39d2c59c3b99163e5080d8", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1212770, "upload_time": "2021-11-14T21:24:02", "upload_time_iso_8601": "2021-11-14T21:24:02.252450Z", "url": "https://files.pythonhosted.org/packages/76/3d/8f64ed6d429f9feeefc52b551f4ba5554d2f7a6f46d92c080f4ae48e0478/aiohttp-3.8.1-cp310-cp310-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8ebfd2d5085341b499693039b16a9d6b", "sha256": "31560d268ff62143e92423ef183680b9829b1b482c011713ae941997921eebc8" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "8ebfd2d5085341b499693039b16a9d6b", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1267346, "upload_time": "2021-11-14T21:24:03", "upload_time_iso_8601": "2021-11-14T21:24:03.521985Z", "url": "https://files.pythonhosted.org/packages/f3/0d/a035862f8a11b6cba4220b0c1201443fa6f5151137889e2dfe1cc983e58e/aiohttp-3.8.1-cp310-cp310-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed498b96bd9a089f2bfb45726fda3c3d", "sha256": "01d7bdb774a9acc838e6b8f1d114f45303841b89b95984cbb7d80ea41172a9e3" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "ed498b96bd9a089f2bfb45726fda3c3d", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1313944, "upload_time": "2021-11-14T21:24:04", "upload_time_iso_8601": "2021-11-14T21:24:04.851534Z", "url": "https://files.pythonhosted.org/packages/cc/28/c95a0694da3082cb76808799017b02db6c10ec8687ee1ac5edad091ab070/aiohttp-3.8.1-cp310-cp310-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bedffeac8388756f52fdd261714aab09", "sha256": "97ef77eb6b044134c0b3a96e16abcb05ecce892965a2124c566af0fd60f717e2" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "bedffeac8388756f52fdd261714aab09", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1239720, "upload_time": "2021-11-14T21:24:05", "upload_time_iso_8601": "2021-11-14T21:24:05.992886Z", "url": "https://files.pythonhosted.org/packages/4f/c6/a8ce9fc6bbf9c0dbdaa631bcb8f9da5b532fd22ead50ef7390976fc9bf0d/aiohttp-3.8.1-cp310-cp310-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b690e579b42d8981f93c5dd403501b4", "sha256": "c2aef4703f1f2ddc6df17519885dbfa3514929149d3ff900b73f45998f2532fa" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-win32.whl", "has_sig": false, "md5_digest": "6b690e579b42d8981f93c5dd403501b4", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 534424, "upload_time": "2021-11-14T21:24:07", "upload_time_iso_8601": "2021-11-14T21:24:07.483659Z", "url": "https://files.pythonhosted.org/packages/75/86/c55c7b6b9d0d9e25b1d721e204424f154bd72bb172d2056f0f9f06c50254/aiohttp-3.8.1-cp310-cp310-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7ac3e2decac14f12dc5fcaf80f35ea8b", "sha256": "713ac174a629d39b7c6a3aa757b337599798da4c1157114a314e4e391cd28e32" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "7ac3e2decac14f12dc5fcaf80f35ea8b", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 555051, "upload_time": "2021-11-14T21:24:09", "upload_time_iso_8601": "2021-11-14T21:24:09.136738Z", "url": "https://files.pythonhosted.org/packages/2e/4f/119a8efad036d1f766ad736864a6dbfc8db9596e74ce9820f8c1282a240b/aiohttp-3.8.1-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a88b5f5f29cee88c89aa013c447a94fc", "sha256": "473d93d4450880fe278696549f2e7aed8cd23708c3c1997981464475f32137db" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a88b5f5f29cee88c89aa013c447a94fc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 571013, "upload_time": "2021-11-14T21:24:10", "upload_time_iso_8601": "2021-11-14T21:24:10.367865Z", "url": "https://files.pythonhosted.org/packages/66/70/1668029f303a33e5508de6825efec00854b0a3afbe3b11b4e3c970e03e88/aiohttp-3.8.1-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c4e5ec177eea4c60d5da91bf8044f48", "sha256": "99b5eeae8e019e7aad8af8bb314fb908dd2e028b3cdaad87ec05095394cce632" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "8c4e5ec177eea4c60d5da91bf8044f48", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1157474, "upload_time": "2021-11-14T21:24:11", "upload_time_iso_8601": "2021-11-14T21:24:11.695463Z", "url": "https://files.pythonhosted.org/packages/b6/5d/2107ef289ddf5a7648ba98a0d4f5137c156f95d67fa1a81253d0f904f308/aiohttp-3.8.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c48e0f92ae85ac2da22445668bfbf2fa", "sha256": "3af642b43ce56c24d063325dd2cf20ee012d2b9ba4c3c008755a301aaea720ad" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "c48e0f92ae85ac2da22445668bfbf2fa", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1172437, "upload_time": "2021-11-14T21:24:13", "upload_time_iso_8601": "2021-11-14T21:24:13.020262Z", "url": "https://files.pythonhosted.org/packages/cc/c5/58e46921955887814c7ca57569d695a45d9471aa48f09089999d9723e639/aiohttp-3.8.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3c41e8ce58a2a4514ae4cfaa13fe86db", "sha256": "c3630c3ef435c0a7c549ba170a0633a56e92629aeed0e707fec832dee313fb7a" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "3c41e8ce58a2a4514ae4cfaa13fe86db", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1231142, "upload_time": "2021-11-14T21:24:14", "upload_time_iso_8601": "2021-11-14T21:24:14.271027Z", "url": "https://files.pythonhosted.org/packages/f6/c4/a32e3d81e716696c1d8149febb73b0d772eb12b3f9f1c039c94b7445a388/aiohttp-3.8.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "edf15faa9f3386189196fa177889e466", "sha256": "4a4a4e30bf1edcad13fb0804300557aedd07a92cabc74382fdd0ba6ca2661091" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "edf15faa9f3386189196fa177889e466", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1102646, "upload_time": "2021-11-14T21:24:15", "upload_time_iso_8601": "2021-11-14T21:24:15.777059Z", "url": "https://files.pythonhosted.org/packages/a4/6e/212f857f9a400dbbedcaca13b99c8bb821a17a25b69e2286881f23e62554/aiohttp-3.8.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ff4a26f583031ec7daa6ff73bc8ab318", "sha256": "6f8b01295e26c68b3a1b90efb7a89029110d3a4139270b24fda961893216c440" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ff4a26f583031ec7daa6ff73bc8ab318", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1120060, "upload_time": "2021-11-14T21:24:17", "upload_time_iso_8601": "2021-11-14T21:24:17.300498Z", "url": "https://files.pythonhosted.org/packages/f6/3b/2e3b8a5b19cdceb532c61d83077a09afe1f120cb876fb771b0ce577cc0ea/aiohttp-3.8.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb755e6eefd51ddeeb58df32329efa9d", "sha256": "a25fa703a527158aaf10dafd956f7d42ac6d30ec80e9a70846253dd13e2f067b" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "bb755e6eefd51ddeeb58df32329efa9d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1165266, "upload_time": "2021-11-14T21:24:19", "upload_time_iso_8601": "2021-11-14T21:24:19.111879Z", "url": "https://files.pythonhosted.org/packages/60/e2/ffc6f4fb33a0f83b506d9b310a6b3028e868f67daf318f2ba50c625ed018/aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cd5f2795767be9f1d80b695b77731b5f", "sha256": "5bfde62d1d2641a1f5173b8c8c2d96ceb4854f54a44c23102e2ccc7e02f003ec" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "cd5f2795767be9f1d80b695b77731b5f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1139665, "upload_time": "2021-11-14T21:24:20", "upload_time_iso_8601": "2021-11-14T21:24:20.644889Z", "url": "https://files.pythonhosted.org/packages/15/f0/cd8e6c2a28a3857c9ee71188d0f4b111847a37ab1c277ece61bcd5374ab4/aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee8c7cf1e5fb750b1b13afd8e6f0f225", "sha256": "51467000f3647d519272392f484126aa716f747859794ac9924a7aafa86cd411" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "ee8c7cf1e5fb750b1b13afd8e6f0f225", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1185804, "upload_time": "2021-11-14T21:24:22", "upload_time_iso_8601": "2021-11-14T21:24:22.664880Z", "url": "https://files.pythonhosted.org/packages/c8/11/94c3ca5ed8b811962de6f4f675adf9dbab28b3cb9e51b9823a5d655fcc9a/aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a00d8280918969384162b7a1e935e160", "sha256": "03a6d5349c9ee8f79ab3ff3694d6ce1cfc3ced1c9d36200cb8f08ba06bd3b782" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "a00d8280918969384162b7a1e935e160", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1234552, "upload_time": "2021-11-14T21:24:24", "upload_time_iso_8601": "2021-11-14T21:24:24.151678Z", "url": "https://files.pythonhosted.org/packages/07/8b/211d1fef10ed6f9e6fc0a70bc6e5658a8fdcdc6440fa5350663b4a2ee101/aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a95c58bc6280a21abb538bcb7244cc25", "sha256": "102e487eeb82afac440581e5d7f8f44560b36cf0bdd11abc51a46c1cd88914d4" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "a95c58bc6280a21abb538bcb7244cc25", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1157999, "upload_time": "2021-11-14T21:24:26", "upload_time_iso_8601": "2021-11-14T21:24:26.032572Z", "url": "https://files.pythonhosted.org/packages/9e/7a/4af63e9951393397691e25aaf742044c66bae700c943d4f7c599da99ce26/aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a66ce072e0d772a919ebe3bbdf60134", "sha256": "4aed991a28ea3ce320dc8ce655875e1e00a11bdd29fe9444dd4f88c30d558602" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "5a66ce072e0d772a919ebe3bbdf60134", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 531475, "upload_time": "2021-11-14T21:24:28", "upload_time_iso_8601": "2021-11-14T21:24:28.433710Z", "url": "https://files.pythonhosted.org/packages/4d/4a/8b095c58f8f8a3732c939fc00190761fb44a95cd601f18fbbf7a4acaf9d6/aiohttp-3.8.1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e8f7f56d67bbc57b3a31afcbbb0041c8", "sha256": "b0e20cddbd676ab8a64c774fefa0ad787cc506afd844de95da56060348021e96" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "e8f7f56d67bbc57b3a31afcbbb0041c8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 551070, "upload_time": "2021-11-14T21:24:31", "upload_time_iso_8601": "2021-11-14T21:24:31.024609Z", "url": "https://files.pythonhosted.org/packages/9f/06/c64cec12f3480433e44d7a65b4087fad73b5409c8eee719a1cc48efddb36/aiohttp-3.8.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75d8902c59d37f052d9fcb2777c113fd", "sha256": "37951ad2f4a6df6506750a23f7cbabad24c73c65f23f72e95897bb2cecbae676" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "75d8902c59d37f052d9fcb2777c113fd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 570929, "upload_time": "2021-11-14T21:24:32", "upload_time_iso_8601": "2021-11-14T21:24:32.510756Z", "url": "https://files.pythonhosted.org/packages/f2/94/af16a3f5baeaefe480271b852b8a18d063859a439183aff0492ed866619d/aiohttp-3.8.1-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c27a8d20a7c1730ee08d7a827c146b1", "sha256": "5c23b1ad869653bc818e972b7a3a79852d0e494e9ab7e1a701a3decc49c20d51" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "8c27a8d20a7c1730ee08d7a827c146b1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1158043, "upload_time": "2021-11-14T21:24:33", "upload_time_iso_8601": "2021-11-14T21:24:33.937530Z", "url": "https://files.pythonhosted.org/packages/59/0b/b1773a7aa69763c336bc3be714c30246a5c4d2acb723e9f679f5566c9afe/aiohttp-3.8.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad6519d2485ae7500c03e3041c75850c", "sha256": "15b09b06dae900777833fe7fc4b4aa426556ce95847a3e8d7548e2d19e34edb8" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "ad6519d2485ae7500c03e3041c75850c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1171964, "upload_time": "2021-11-14T21:24:36", "upload_time_iso_8601": "2021-11-14T21:24:36.056891Z", "url": "https://files.pythonhosted.org/packages/37/38/9f7ad00368f218f5f6b367a72d85f7a1ffce421f22c7c88787e11c87d985/aiohttp-3.8.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3671eb3c4dc499c1ef5c1d0fe0a7133a", "sha256": "477c3ea0ba410b2b56b7efb072c36fa91b1e6fc331761798fa3f28bb224830dd" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "3671eb3c4dc499c1ef5c1d0fe0a7133a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1231545, "upload_time": "2021-11-14T21:24:37", "upload_time_iso_8601": "2021-11-14T21:24:37.992952Z", "url": "https://files.pythonhosted.org/packages/07/2b/ef0ea5695809b1d5e485e136fcf9c1e00c3d8e7806f4bba9af3e77cb7a7d/aiohttp-3.8.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b991dc9b9d95952ec5857d63ffba22e7", "sha256": "2f2f69dca064926e79997f45b2f34e202b320fd3782f17a91941f7eb85502ee2" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "b991dc9b9d95952ec5857d63ffba22e7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1107004, "upload_time": "2021-11-14T21:24:40", "upload_time_iso_8601": "2021-11-14T21:24:40.013320Z", "url": "https://files.pythonhosted.org/packages/ca/b5/af043404814805fc2b74b9b0ce166cc79cbdfed720253777b928c85138c0/aiohttp-3.8.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d47052ae7e707908e5c9b93acba7b58", "sha256": "ef9612483cb35171d51d9173647eed5d0069eaa2ee812793a75373447d487aa4" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0d47052ae7e707908e5c9b93acba7b58", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1125785, "upload_time": "2021-11-14T21:24:41", "upload_time_iso_8601": "2021-11-14T21:24:41.628887Z", "url": "https://files.pythonhosted.org/packages/dd/fe/80c594d62a7ff07730fd2cfc3a058498087436d8c938243e0610d1928f0e/aiohttp-3.8.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9931908edae540ea01632362a7ca6c51", "sha256": "6d69f36d445c45cda7b3b26afef2fc34ef5ac0cdc75584a87ef307ee3c8c6d00" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "9931908edae540ea01632362a7ca6c51", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1175320, "upload_time": "2021-11-14T21:24:43", "upload_time_iso_8601": "2021-11-14T21:24:43.266956Z", "url": "https://files.pythonhosted.org/packages/75/56/e0e5f6a59bd6053d61d7d8d1448100eacfc6f3d47cf39c4448351dd22e72/aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa688128123ed34562d1d8c1091f8850", "sha256": "55c3d1072704d27401c92339144d199d9de7b52627f724a949fc7d5fc56d8b93" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "fa688128123ed34562d1d8c1091f8850", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1147047, "upload_time": "2021-11-14T21:24:46", "upload_time_iso_8601": "2021-11-14T21:24:46.646454Z", "url": "https://files.pythonhosted.org/packages/39/97/1acbab256523838e37b895d70e39f45e7feb82801a18368fba323d598e80/aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "57e88f090e255f0d1e0340317e44d68e", "sha256": "b9d00268fcb9f66fbcc7cd9fe423741d90c75ee029a1d15c09b22d23253c0a44" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "57e88f090e255f0d1e0340317e44d68e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1190713, "upload_time": "2021-11-14T21:24:48", "upload_time_iso_8601": "2021-11-14T21:24:48.219845Z", "url": "https://files.pythonhosted.org/packages/42/8d/8d85c84baa731de1f3a7fbb3bb85632f82534fc0b618abc51c6569440cdf/aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "409066e2a5f31e370f4b2318e6cc5480", "sha256": "07b05cd3305e8a73112103c834e91cd27ce5b4bd07850c4b4dbd1877d3f45be7" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "409066e2a5f31e370f4b2318e6cc5480", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1239751, "upload_time": "2021-11-14T21:24:49", "upload_time_iso_8601": "2021-11-14T21:24:49.839818Z", "url": "https://files.pythonhosted.org/packages/50/dc/9b1fd678730d7e9c8fa125ef0a0102c1783c0a80cffb2159e2a63ab0f569/aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b0dcec956e66a85792772c67ea129f2d", "sha256": "c34dc4958b232ef6188c4318cb7b2c2d80521c9a56c52449f8f93ab7bc2a8a1c" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "b0dcec956e66a85792772c67ea129f2d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1168503, "upload_time": "2021-11-14T21:24:51", "upload_time_iso_8601": "2021-11-14T21:24:51.387914Z", "url": "https://files.pythonhosted.org/packages/d6/23/1942037534eb4f3671e68801af3af1adfe28add92300291934daa2b5cdec/aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "14c26d21ae5ba331299d00cdc4e4b354", "sha256": "d2f9b69293c33aaa53d923032fe227feac867f81682f002ce33ffae978f0a9a9" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "14c26d21ae5ba331299d00cdc4e4b354", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 531814, "upload_time": "2021-11-14T21:24:52", "upload_time_iso_8601": "2021-11-14T21:24:52.766633Z", "url": "https://files.pythonhosted.org/packages/2d/7a/2809619bd5ca3ab7f27c134f93d52c80a5dfed7d22e426e79415f35233b1/aiohttp-3.8.1-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c911a13b6838cc9a190d96c5d6192c5", "sha256": "6ae828d3a003f03ae31915c31fa684b9890ea44c9c989056fea96e3d12a9fa17" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "0c911a13b6838cc9a190d96c5d6192c5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 551824, "upload_time": "2021-11-14T21:24:54", "upload_time_iso_8601": "2021-11-14T21:24:54.236982Z", "url": "https://files.pythonhosted.org/packages/19/22/7a9ea2992cf7adf534eb51f7b6bfd4642bb15894ac36df4edb0838ee1fdb/aiohttp-3.8.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8ade69b0ca2712d292287eac3265c555", "sha256": "0c7ebbbde809ff4e970824b2b6cb7e4222be6b95a296e46c03cf050878fc1785" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "8ade69b0ca2712d292287eac3265c555", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 727661, "upload_time": "2021-11-14T21:24:55", "upload_time_iso_8601": "2021-11-14T21:24:55.836663Z", "url": "https://files.pythonhosted.org/packages/cf/6a/acf689f13f39700cfa526f6bff2d10dfd29aa21cbc0d3a5cf0f153298a74/aiohttp-3.8.1-cp38-cp38-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bbdba37f3990c83c6bad6a3eb2a76b39", "sha256": "8b7ef7cbd4fec9a1e811a5de813311ed4f7ac7d93e0fda233c9b3e1428f7dd7b" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bbdba37f3990c83c6bad6a3eb2a76b39", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 574213, "upload_time": "2021-11-14T21:24:57", "upload_time_iso_8601": "2021-11-14T21:24:57.343178Z", "url": "https://files.pythonhosted.org/packages/79/5c/573d590ebff44e927aa0820b194a46c15253808725f82f23aa13440808ef/aiohttp-3.8.1-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50dffaea7dcbcf6f33ab6fef11587da2", "sha256": "c3d6a4d0619e09dcd61021debf7059955c2004fa29f48788a3dfaf9c9901a7cd" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "50dffaea7dcbcf6f33ab6fef11587da2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 551904, "upload_time": "2021-11-14T21:25:00", "upload_time_iso_8601": "2021-11-14T21:25:00.516881Z", "url": "https://files.pythonhosted.org/packages/5e/34/a5d2619c062e6fed7224fb920e93b1d8ad055bb3b1b544e754c864c978a0/aiohttp-3.8.1-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dc459efa79003e2f74eb4eb1fa900dbe", "sha256": "718626a174e7e467f0558954f94af117b7d4695d48eb980146016afa4b580b2e" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "dc459efa79003e2f74eb4eb1fa900dbe", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1247534, "upload_time": "2021-11-14T21:25:02", "upload_time_iso_8601": "2021-11-14T21:25:02.104673Z", "url": "https://files.pythonhosted.org/packages/ff/a6/184cd63b06ea05edfcfba946fed3da7afb2f0b7e3237fb1b2c056cce57f6/aiohttp-3.8.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "531303babc342caaa94e89eab136040b", "sha256": "589c72667a5febd36f1315aa6e5f56dd4aa4862df295cb51c769d16142ddd7cd" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "531303babc342caaa94e89eab136040b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1265739, "upload_time": "2021-11-14T21:25:03", "upload_time_iso_8601": "2021-11-14T21:25:03.515694Z", "url": "https://files.pythonhosted.org/packages/54/ab/5e5d0e042b9b149efd867eaaf4a6c94c51ccdf3f955564e0fce1dbfbcb4d/aiohttp-3.8.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "610d910901768697519ac0c7d6cc2876", "sha256": "2ed076098b171573161eb146afcb9129b5ff63308960aeca4b676d9d3c35e700" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "610d910901768697519ac0c7d6cc2876", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1319557, "upload_time": "2021-11-14T21:25:05", "upload_time_iso_8601": "2021-11-14T21:25:05.175880Z", "url": "https://files.pythonhosted.org/packages/17/ab/36da1a4b5d2685acdc84117b32588b1edb4033b40cfbdf27a219bd6a4c6d/aiohttp-3.8.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4db3d7414f243db424fc88dd8f98a799", "sha256": "086f92daf51a032d062ec5f58af5ca6a44d082c35299c96376a41cbb33034675" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "4db3d7414f243db424fc88dd8f98a799", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1230913, "upload_time": "2021-11-14T21:25:07", "upload_time_iso_8601": "2021-11-14T21:25:07.008476Z", "url": "https://files.pythonhosted.org/packages/ed/af/cf551e595af1979ba74c280d94aa0c351e634285608ac70cb6def374f661/aiohttp-3.8.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe45fa0afa9eb644bd603288d74e41ee", "sha256": "11691cf4dc5b94236ccc609b70fec991234e7ef8d4c02dd0c9668d1e486f5abf" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "fe45fa0afa9eb644bd603288d74e41ee", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1254246, "upload_time": "2021-11-14T21:25:08", "upload_time_iso_8601": "2021-11-14T21:25:08.558568Z", "url": "https://files.pythonhosted.org/packages/38/71/e1db3f96fa85f77906ef002a08fa8d02dbdb3292180d41eb1b17ddab72bf/aiohttp-3.8.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "161bf14646ed162edb94bbe806d520b8", "sha256": "31d1e1c0dbf19ebccbfd62eff461518dcb1e307b195e93bba60c965a4dcf1ba0" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "161bf14646ed162edb94bbe806d520b8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1287328, "upload_time": "2021-11-14T21:25:10", "upload_time_iso_8601": "2021-11-14T21:25:10.216784Z", "url": "https://files.pythonhosted.org/packages/20/0b/c077ca31bba80ed7c1c81a7505e7e339ef82ab3d9ee679c09b3ffb04cdd5/aiohttp-3.8.1-cp38-cp38-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "460de2bc272d9e01a38fe2409b395760", "sha256": "11a67c0d562e07067c4e86bffc1553f2cf5b664d6111c894671b2b8712f3aba5" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "460de2bc272d9e01a38fe2409b395760", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1251676, "upload_time": "2021-11-14T21:25:12", "upload_time_iso_8601": "2021-11-14T21:25:12.301304Z", "url": "https://files.pythonhosted.org/packages/58/54/f4c1bac24b2365c2eb8d5205822b3ea41e40e1c471060c2409b9dbf05be5/aiohttp-3.8.1-cp38-cp38-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e89e0f7c4cd44dd5c45eba7bb49383b", "sha256": "bb01ba6b0d3f6c68b89fce7305080145d4877ad3acaed424bae4d4ee75faa950" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "7e89e0f7c4cd44dd5c45eba7bb49383b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1310171, "upload_time": "2021-11-14T21:25:13", "upload_time_iso_8601": "2021-11-14T21:25:13.785333Z", "url": "https://files.pythonhosted.org/packages/55/a5/2912baebc80570a34a2103a34e3c65b84e93bcf20f6e09fbe335ce27e3cf/aiohttp-3.8.1-cp38-cp38-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af276841fe827495ca5c2d59237f7681", "sha256": "44db35a9e15d6fe5c40d74952e803b1d96e964f683b5a78c3cc64eb177878155" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "af276841fe827495ca5c2d59237f7681", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1357653, "upload_time": "2021-11-14T21:25:15", "upload_time_iso_8601": "2021-11-14T21:25:15.537834Z", "url": "https://files.pythonhosted.org/packages/9f/bc/5928e69637252150176b3604f7c386a9184358fcc7338c0b8c55a7908523/aiohttp-3.8.1-cp38-cp38-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4cd5dffb0e3de2727ae2af8eccdeebba", "sha256": "844a9b460871ee0a0b0b68a64890dae9c415e513db0f4a7e3cab41a0f2fedf33" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "4cd5dffb0e3de2727ae2af8eccdeebba", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1281346, "upload_time": "2021-11-14T21:25:18", "upload_time_iso_8601": "2021-11-14T21:25:18.067759Z", "url": "https://files.pythonhosted.org/packages/81/31/baf1ff4e36da246dc3ff2e0c12f2f7688b4f394ad21e29e3ef4ba864d035/aiohttp-3.8.1-cp38-cp38-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4a9f81726d945032c9d5d92cb57df6d", "sha256": "7d08744e9bae2ca9c382581f7dce1273fe3c9bae94ff572c3626e8da5b193c6a" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "d4a9f81726d945032c9d5d92cb57df6d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 535299, "upload_time": "2021-11-14T21:25:20", "upload_time_iso_8601": "2021-11-14T21:25:20.603917Z", "url": "https://files.pythonhosted.org/packages/f1/ca/603261545a757915fb30446a9d7a394cd934865a8eac3c18ce638df90687/aiohttp-3.8.1-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ac536babeeee9c42f1eca6f139919b4", "sha256": "04d48b8ce6ab3cf2097b1855e1505181bdd05586ca275f2505514a6e274e8e75" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "3ac536babeeee9c42f1eca6f139919b4", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 555982, "upload_time": "2021-11-14T21:25:22", "upload_time_iso_8601": "2021-11-14T21:25:22.368888Z", "url": "https://files.pythonhosted.org/packages/e4/eb/2e5c66f6ab8bf1fa9743552ec49bd8deb9a8ad385545bbd60c8f50529e21/aiohttp-3.8.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c7028497a657dab09bd1cc2a97a80286", "sha256": "f5315a2eb0239185af1bddb1abf472d877fede3cc8d143c6cddad37678293237" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "c7028497a657dab09bd1cc2a97a80286", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 728696, "upload_time": "2021-11-14T21:25:23", "upload_time_iso_8601": "2021-11-14T21:25:23.751704Z", "url": "https://files.pythonhosted.org/packages/a8/0e/068cb215e8709703c497fcd07e8a81e68b3eb8b83083f96e93ef964d4685/aiohttp-3.8.1-cp39-cp39-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a510b21b5161830b87c3c18ccd81939c", "sha256": "a996d01ca39b8dfe77440f3cd600825d05841088fd6bc0144cc6c2ec14cc5f74" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a510b21b5161830b87c3c18ccd81939c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 574987, "upload_time": "2021-11-14T21:25:25", "upload_time_iso_8601": "2021-11-14T21:25:25.381699Z", "url": "https://files.pythonhosted.org/packages/dd/22/9b3e55dd0c8c460a9381c97e9f33cd4d7bc6f322f8c3ae5c9737becda9a3/aiohttp-3.8.1-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f0e1a45cc6b073953fb22ddac6c46cf", "sha256": "13487abd2f761d4be7c8ff9080de2671e53fff69711d46de703c310c4c9317ca" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "1f0e1a45cc6b073953fb22ddac6c46cf", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 552303, "upload_time": "2021-11-14T21:25:26", "upload_time_iso_8601": "2021-11-14T21:25:26.650701Z", "url": "https://files.pythonhosted.org/packages/64/0f/bad91b74658ffea95982794603106c7d751734bb4e8e1f83c654a11ef971/aiohttp-3.8.1-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2e7e8a48f61504e29eccfda731264477", "sha256": "ea302f34477fda3f85560a06d9ebdc7fa41e82420e892fc50b577e35fc6a50b2" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "2e7e8a48f61504e29eccfda731264477", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1235285, "upload_time": "2021-11-14T21:25:28", "upload_time_iso_8601": "2021-11-14T21:25:28.199837Z", "url": "https://files.pythonhosted.org/packages/51/b4/174a2a94aedbad1f92b1a18a2051eba5b8ea915853361949b84e3ee1ac35/aiohttp-3.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c8318ae9f28e5b05f033370078eeb93e", "sha256": "a2f635ce61a89c5732537a7896b6319a8fcfa23ba09bec36e1b1ac0ab31270d2" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "has_sig": false, "md5_digest": "c8318ae9f28e5b05f033370078eeb93e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1248694, "upload_time": "2021-11-14T21:25:30", "upload_time_iso_8601": "2021-11-14T21:25:30.150488Z", "url": "https://files.pythonhosted.org/packages/8d/d7/7121308d1d3b399b1f3b902939e4c59987360ed3fbaacfb291da06cbb924/aiohttp-3.8.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "308d765a5797db465c3bd3edd2ba781c", "sha256": "e999f2d0e12eea01caeecb17b653f3713d758f6dcc770417cf29ef08d3931421" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", "has_sig": false, "md5_digest": "308d765a5797db465c3bd3edd2ba781c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1303955, "upload_time": "2021-11-14T21:25:31", "upload_time_iso_8601": "2021-11-14T21:25:31.562265Z", "url": "https://files.pythonhosted.org/packages/df/6d/ef68db15f3bcb29ad4ff7815008f45d44a08dbdbf524bf2f904ce701ffd3/aiohttp-3.8.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "56837428cc78d9d6ba6b3ba48839bf08", "sha256": "0770e2806a30e744b4e21c9d73b7bee18a1cfa3c47991ee2e5a65b887c49d5cf" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "56837428cc78d9d6ba6b3ba48839bf08", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1184230, "upload_time": "2021-11-14T21:25:32", "upload_time_iso_8601": "2021-11-14T21:25:32.998384Z", "url": "https://files.pythonhosted.org/packages/24/f2/961f20184581dd21e181a927e4e264d991f5f6a090778a9b3575a4eac7fb/aiohttp-3.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef2c110b27ffff0466dd889bccbc94db", "sha256": "d15367ce87c8e9e09b0f989bfd72dc641bcd04ba091c68cd305312d00962addd" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ef2c110b27ffff0466dd889bccbc94db", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1202051, "upload_time": "2021-11-14T21:25:34", "upload_time_iso_8601": "2021-11-14T21:25:34.592488Z", "url": "https://files.pythonhosted.org/packages/e9/13/21e7f1d0d1932b321cdeaea01d5008285dac3b088af855c5c3d8714dba7b/aiohttp-3.8.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed08a8fea8c81b659226afa7319789b6", "sha256": "6c7cefb4b0640703eb1069835c02486669312bf2f12b48a748e0a7756d0de33d" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-musllinux_1_1_aarch64.whl", "has_sig": false, "md5_digest": "ed08a8fea8c81b659226afa7319789b6", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1243350, "upload_time": "2021-11-14T21:25:36", "upload_time_iso_8601": "2021-11-14T21:25:36.088711Z", "url": "https://files.pythonhosted.org/packages/8c/25/7454b836072efe67f8b16a4751443c77e0a34f9e909e6bca7247853b9bf4/aiohttp-3.8.1-cp39-cp39-musllinux_1_1_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d345056000a7d9c39edf0e30ad50b0f4", "sha256": "71927042ed6365a09a98a6377501af5c9f0a4d38083652bcd2281a06a5976724" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "d345056000a7d9c39edf0e30ad50b0f4", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1207847, "upload_time": "2021-11-14T21:25:37", "upload_time_iso_8601": "2021-11-14T21:25:37.489059Z", "url": "https://files.pythonhosted.org/packages/32/f6/a68f6f703541ce5cf3bba94c5f5415c732d0384e29d0ab6cdb6e62a6822e/aiohttp-3.8.1-cp39-cp39-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ae72d160c9c77dcfb69d165eb02fe856", "sha256": "28d490af82bc6b7ce53ff31337a18a10498303fe66f701ab65ef27e143c3b0ef" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-musllinux_1_1_ppc64le.whl", "has_sig": false, "md5_digest": "ae72d160c9c77dcfb69d165eb02fe856", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1264462, "upload_time": "2021-11-14T21:25:38", "upload_time_iso_8601": "2021-11-14T21:25:38.837562Z", "url": "https://files.pythonhosted.org/packages/f0/8d/cbe09c4e5d9b150a24765af508a5db745ba7049bc68ee6670063e04c2879/aiohttp-3.8.1-cp39-cp39-musllinux_1_1_ppc64le.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50fe8b6eb657348e90c87d98f232128b", "sha256": "b6613280ccedf24354406caf785db748bebbddcf31408b20c0b48cb86af76866" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-musllinux_1_1_s390x.whl", "has_sig": false, "md5_digest": "50fe8b6eb657348e90c87d98f232128b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1312143, "upload_time": "2021-11-14T21:25:40", "upload_time_iso_8601": "2021-11-14T21:25:40.196257Z", "url": "https://files.pythonhosted.org/packages/6d/a0/bdc0596eb07b328ae97bf54cd1d0c3eed34b8728d1bf6fcab12c296de5a2/aiohttp-3.8.1-cp39-cp39-musllinux_1_1_s390x.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2603dc0dbaab1e592b1e882d232f9dbe", "sha256": "81e3d8c34c623ca4e36c46524a3530e99c0bc95ed068fd6e9b55cb721d408fb2" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "2603dc0dbaab1e592b1e882d232f9dbe", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1235550, "upload_time": "2021-11-14T21:25:41", "upload_time_iso_8601": "2021-11-14T21:25:41.969498Z", "url": "https://files.pythonhosted.org/packages/83/98/d84ea011850be422d7db44c668b5d262ab94e0b9bfd54e0d0222cff62d71/aiohttp-3.8.1-cp39-cp39-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "51418432c6dd0676606ad0b18b7c188b", "sha256": "7187a76598bdb895af0adbd2fb7474d7f6025d170bc0a1130242da817ce9e7d1" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "51418432c6dd0676606ad0b18b7c188b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 534482, "upload_time": "2021-11-14T21:25:43", "upload_time_iso_8601": "2021-11-14T21:25:43.428883Z", "url": "https://files.pythonhosted.org/packages/c1/e2/10084a3437c0f3f971c46a9870b574ef6cc00d0480119fd3e193c19fdf66/aiohttp-3.8.1-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "924f3c0a0f17b3b26ea5371661291e7f", "sha256": "1c182cb873bc91b411e184dab7a2b664d4fea2743df0e4d57402f7f3fa644bac" }, "downloads": -1, "filename": "aiohttp-3.8.1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "924f3c0a0f17b3b26ea5371661291e7f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 554889, "upload_time": "2021-11-14T21:25:44", "upload_time_iso_8601": "2021-11-14T21:25:44.911523Z", "url": "https://files.pythonhosted.org/packages/4b/02/8bcd66c2a44714b3c3d076ff3bf49b3a247338a47f31adb00567841e15a0/aiohttp-3.8.1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "faf7726dc65a940272874c0f441e8ec6", "sha256": "fc5471e1a54de15ef71c1bc6ebe80d4dc681ea600e68bfd1cbce40427f0b7578" }, "downloads": -1, "filename": "aiohttp-3.8.1.tar.gz", "has_sig": false, "md5_digest": "faf7726dc65a940272874c0f441e8ec6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 7324180, "upload_time": "2021-11-14T21:25:46", "upload_time_iso_8601": "2021-11-14T21:25:46.643129Z", "url": "https://files.pythonhosted.org/packages/5a/86/5f63de7a202550269a617a5d57859a2961f3396ecd1739a70b92224766bc/aiohttp-3.8.1.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }