{
"info": {
"author": null,
"author_email": null,
"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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"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/matrix/aio-libs:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat\n :target: https://matrix.to/#/%23aio-libs:matrix.org\n :alt: Matrix Room \u2014 #aio-libs:matrix.org\n\n.. image:: https://img.shields.io/matrix/aio-libs-space:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs-space%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat\n :target: https://matrix.to/#/%23aio-libs-space:matrix.org\n :alt: Matrix Space \u2014 #aio-libs-space:matrix.org\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 middleware and pluggable 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 asyncio.run(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 Discussions*: https://github.com/aio-libs/aiohttp/discussions\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- async-timeout_\n- attrs_\n- multidict_\n- yarl_\n- frozenlist_\n\nOptionally you may install the aiodns_ library (highly recommended for sake of speed).\n\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.. _frozenlist: https://pypi.org/project/frozenlist/\n.. _yarl: https://pypi.python.org/pypi/yarl\n.. _async-timeout: https://pypi.python.org/pypi/async_timeout\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",
"description_content_type": "text/x-rst",
"docs_url": null,
"download_url": null,
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"dynamic": null,
"home_page": "https://github.com/aio-libs/aiohttp",
"keywords": null,
"license": "Apache 2",
"maintainer": "aiohttp team ",
"maintainer_email": "team@aiohttp.org",
"name": "aiohttp",
"package_url": "https://pypi.org/project/aiohttp/",
"platform": null,
"project_url": "https://pypi.org/project/aiohttp/",
"project_urls": {
"CI: GitHub Actions": "https://github.com/aio-libs/aiohttp/actions?query=workflow%3ACI",
"Chat: Matrix": "https://matrix.to/#/#aio-libs:matrix.org",
"Chat: Matrix Space": "https://matrix.to/#/#aio-libs-space:matrix.org",
"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"
},
"provides_extra": null,
"release_url": "https://pypi.org/project/aiohttp/3.9.5/",
"requires_dist": [
"aiosignal>=1.1.2",
"attrs>=17.3.0",
"frozenlist>=1.1.1",
"multidict<7.0,>=4.5",
"yarl<2.0,>=1.0",
"async-timeout<5.0,>=4.0; python_version < \"3.11\"",
"brotlicffi; platform_python_implementation != \"CPython\" and extra == \"speedups\"",
"Brotli; platform_python_implementation == \"CPython\" and extra == \"speedups\"",
"aiodns; (sys_platform == \"linux\" or sys_platform == \"darwin\") and extra == \"speedups\""
],
"requires_python": ">=3.8",
"summary": "Async http client/server framework (asyncio)",
"version": "3.9.5",
"yanked": false,
"yanked_reason": null
},
"last_serial": 24243149,
"releases": {
"0.1": [
{
"comment_text": "",
"digests": {
"blake2b_256": "8a85bbf814947bef72678ed8de96e822a0091696a7c0713d1d844e9ab3c0819e",
"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": {
"blake2b_256": "6799b7e7ae2f746726d0a08d3089f9f043b827317b57a669c828fd009cf51cad",
"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": {
"blake2b_256": "369bbbee0a2a66566b41f8821c913ff569c1ef7cb89cf9f7063772d44a3fccdf",
"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": {
"blake2b_256": "9b8deba05f6e079d7965c2f8d35a8a6cc4488a72e49dd0cd15f8231310e77d6b",
"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": {
"blake2b_256": "4423ed1dfed7a3b69fdfd01ce17bdcae6e0059d5d747d45d9ceda104d8407826",
"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": {
"blake2b_256": "fa43bc6fc55dd3e0dc34ec6ba8d6ecb2ae45eb09063389a4f64654c90f68f018",
"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": {
"blake2b_256": "853db933a0c89ec62391065ad0df7c2d6c3145ce43afa6dbc025f1c875d9c5b6",
"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": {
"blake2b_256": "4bee14dd62aa20b8640273db241e982a442626d065f40cda1a46b1abe730ca00",
"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": {
"blake2b_256": "ec182186de3a4c3fae45ac5f3ae5840e394fd518c02c49da29d10094b7d2c8e2",
"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": {
"blake2b_256": "753bf1c72db48708ab4ae504a69c1d48c4fef29a896f0f68dcb511d72ccd4bd1",
"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": {
"blake2b_256": "be3373931ba4cec891a50bf45de12b8c3f13d7db191c2c4672cac4d4ae3f2946",
"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": {
"blake2b_256": "435b22a44aa15d7cd9a1e1bcf5966948e820609de4f5e970bd8e0996c118e131",
"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": {
"blake2b_256": "d393d528c8d3ea981952825d7a0b0a037df23ddae9ae5e01156ce5a852100593",
"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": {
"blake2b_256": "1639ecfbc51971069674072c583bcd8489264be48a6bef6ca962c6832062d090",
"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": {
"blake2b_256": "4f59e4cf981af46db3eb2f0180030ca9af70bbaf330fa5b456ac9efd61d54e79",
"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": {
"blake2b_256": "192183ee6e754e11b9c43b235da3fad1895ecb6cbf42ff0551d90d66de297fd1",
"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": {
"blake2b_256": "b4e4e15ef6076a94bfe708d5897861d54781d2547f7263fdd54534e791dadce8",
"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": {
"blake2b_256": "57feda94b5b129cecfbee70c711276b4804927a415cc3e20dd4a4c8f8d0825ef",
"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": {
"blake2b_256": "12bf91493f3ee18d0a6bad6d4b40e487bee7e0975a5fe2d04451042ab999d483",
"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": {
"blake2b_256": "700c299203e95813cf79c5023d241c7189e828424cabe288db26f3e84b8a83f8",
"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": {
"blake2b_256": "02ad3a4c8e5c2de9ec8a70cabd5ad1a227166e497a676dca41e92b51ef1e77fc",
"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": {
"blake2b_256": "2d1fc3c4f903851248e7957fba94592e946af560b8d52265e28c6f529c1b0a10",
"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": {
"blake2b_256": "879aed2b008eef13e5432a5be611d554ea6bc630f651bf7bce1a41c966d2b9ba",
"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": {
"blake2b_256": "715bb9e722d36882c01a413a0b33037982255d1e1ec554b1f6302944b2367202",
"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": {
"blake2b_256": "57b0e893277402914f83035fbaff8c2a9d54fc8c45f5afefa06cf2c8a14241aa",
"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": {
"blake2b_256": "ce6c2cf36577fc509c2dd85ecf4bd3f6fcd5e356c6b6ec25f219c32bb13a130b",
"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": {
"blake2b_256": "69f0dc5959f1b2f641c40357e66a516214ef7d2d13a5ce3cdb044d78f7c57f39",
"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": {
"blake2b_256": "4b71bc9a698e85c6d7d555189b8bb1014552d06050b0539406ff858f145cc273",
"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": {
"blake2b_256": "1da4c8089187f31a173703013d9380a3bd799a50a1b2351e4ff20eef9827e721",
"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": {
"blake2b_256": "3e58ed8667c964a27104e9da87d81eecda5f1d0da1fcf25bf7b569c9b0901b6b",
"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": {
"blake2b_256": "42e91ae6df5a6e653f8a7fa5831707853ccb091afc06a8f34fa4c68e6e86aae6",
"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": {
"blake2b_256": "23720f2876708df52dab39386df429dae8874b793943e19041bbf26a5541d21a",
"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": {
"blake2b_256": "fd73bc57f5429464ba4b247193c0b7eaef3f56cbd1244a298bb8cfe93a9f426e",
"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": {
"blake2b_256": "ea7ebccac0801945d7cd274d3f682b1d79e12c5071c989ae3a630a3ccd83060b",
"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": {
"blake2b_256": "49d17fea917db29a8acb47a27f0fd01f149d6808dd1242d628416edaafe58c30",
"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": {
"blake2b_256": "2b906f50ddefcbcf6e7328e256aac71056d70459284020fffe5f1b4fc087534f",
"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": {
"blake2b_256": "ac2c6bf5dacad906546e6bc125017364bb2a2788810818473d276a190bf14c85",
"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": {
"blake2b_256": "6c3653fc2e71783f370c980f47e9f87f42eee1f5850274ca1e753688d14ffe01",
"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": {
"blake2b_256": "11547e2b7314863afe0fb9859afb4d1d68922891ab0cda933b4e8b1aab74d970",
"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": {
"blake2b_256": "e2a67b0980e0acf40e8b9a4cb4b0fe2cb3cbb3b7b23c88d14af2a8df8925392b",
"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": {
"blake2b_256": "e24556a170e6f8fb9627267174d57b5f4dabebf7d17609e9ad432ea1206ec49c",
"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": {
"blake2b_256": "0ffeae738b3146d440c9b108abe6d583814608f51b54a5e245234e281b5e8580",
"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": {
"blake2b_256": "ec80be3b77426b09361fbf9e82b5539eee031406123cc25e45bba30a64e40a0d",
"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": {
"blake2b_256": "f6b293e92e16e96be624ff0e65b716ec0d8f593ed2c55fb1348e58edef5c9dd6",
"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": {
"blake2b_256": "84940c40af1a496e5f4cb0558fd917aa391a99c265477d3efda12d4f2b4f326f",
"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": {
"blake2b_256": "cf6b341fce75aa969d1ede5ab2967a7e46aa59699d0f0655b9c077f4c5c152be",
"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": {
"blake2b_256": "88e74059ae21abbea717e55e1f5879d1b27989c48a7811148a837600ae6035cd",
"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": {
"blake2b_256": "87fc45e9ad4308b14b612b2f19c579bbc8a12f4972129bd71e704cfa14317074",
"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": {
"blake2b_256": "4cce149dbdf8d98f05e5b78c90cd3c0724c0622991f334f26aefabe28278f944",
"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": {
"blake2b_256": "340fee701dd39cd21b1e07ca08158b27bf18d82952d51bd765e7833c85e9425b",
"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": {
"blake2b_256": "64c8800d2ca0202f611390345a424be3f58b9c5532d66acb0fd262adb48f90c7",
"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": {
"blake2b_256": "6044e45f679db59372f9495b3fb48a388adef779d85b6142edb0acbd34bdce3d",
"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": {
"blake2b_256": "a4dc75875116b6a458598fdd21bfe38c260ad29374c68d7dacd13ec82c4b9ab1",
"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": {
"blake2b_256": "f11350778cc8f3bfcb70394c22e08b4483b2a0c88b59ee614c04c6c6c98562ba",
"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": {
"blake2b_256": "03c26af04c29a7856f985e81116b6341612889f2789ed654a1166aa217026a4d",
"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": {
"blake2b_256": "136702af372d70d3b5fd3edfc4a814ea2b2cb4a281886472382e4823c0642bff",
"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": {
"blake2b_256": "2143114ad2451446ac6e743927812295d6b874a432bea047ebe0ae1dc44d230f",
"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": {
"blake2b_256": "567949ffdcfd4334c538d2255841f4656d1c12e9108ad0a485e71923c4490933",
"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": {
"blake2b_256": "4dab0d019f5071e9c3f13d9f208eaa8308ba4e6e4990c7fd4666be066453d003",
"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": {
"blake2b_256": "a692fe3c2028709885105f41778d1828199d5d3db8cd7e6a17280f17964a0fc9",
"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": {
"blake2b_256": "9043aaea251d54a2d2efd6aa9bed4f540a5c3cd77ff802280a77a3a20b9f6fc4",
"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": {
"blake2b_256": "434bc769c72176a7adba26f3e6557e5eaf8a54cca806b6e5e5dfd622dd7f82b8",
"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": {
"blake2b_256": "5048aafcd4bff33dd10a5fca87f21b7011008c7f3fa2fed636778f1d9c22c4bc",
"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": {
"blake2b_256": "4f98ce33b74a544b57975be720d3d87978d686c3e0071f9226780e69a32368ac",
"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": {
"blake2b_256": "706b0b1362de8b2afe8cb38ddb23158eae9f3530063a937b2c9405f4edd99ffa",
"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": {
"blake2b_256": "2106721aa7e0c9de0da9a6d0c45157041a652db1274e17b25f0a124b0c517160",
"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": {
"blake2b_256": "a9b43c1f84829ddc79aa5cca8979306ac8ae380f16e6bf31df4452bdf3c76037",
"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": {
"blake2b_256": "e7a1db9c81d58480bbac6cd264724dc745f1d5a5f181705c7802b2d33fce3599",
"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": {
"blake2b_256": "490cee9136ef577c6e98b6d919785e88318067852ef0c74dc6db9a6722d92830",
"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": {
"blake2b_256": "189bab3d2a435d39cd1e7244527fd3642c625197da548a3a3ae8123abc7e7483",
"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": {
"blake2b_256": "bf5a72bd54859fc00698cc20f82af5584498c2cc675a4aaa19b83d5d578f84ec",
"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": {
"blake2b_256": "a37cb8313428e413a60b70900aadd4ec01ffa05b84f311220c74dcef0056dcb0",
"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": {
"blake2b_256": "decfd87eeb6006fc4ab80a91c66f5aacbd40105f88302efb062155c6f7b96071",
"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": {
"blake2b_256": "de0ae442d8f4cf2919556683098921cfadbc64fc2c25d2e2800c576943faae02",
"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": {
"blake2b_256": "04789faeb8b5b1d53e8c81c99764412c2225d982943e4261bba2c6f725e15fce",
"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": {
"blake2b_256": "f29a3498de463f74c8c2adf97464e558650713f34528d7d560627fc010e35d35",
"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": {
"blake2b_256": "6487aa772573c1a4ee7566dcd8b7737b5b81ab6ea9a7b93297948670d395d296",
"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": {
"blake2b_256": "99670caeb62997a88a1e25694f23042ed0f497c947a07be5c374da5c8848525a",
"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": {
"blake2b_256": "2625821210935278c516dce2d1b9893c1eb6c701c6c5e48232c5816a099b8e30",
"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": {
"blake2b_256": "05de8816f85d8ee9c091dd93952d57b81d1a874d3de9dc4ea3619377faf6b7c4",
"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": {
"blake2b_256": "dae6aab3f96be0883cf3f12edbe4a8e138712c6cf99037390029c8ee3594131b",
"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": {
"blake2b_256": "56837d56e875f3b36baaa34a403de4641d0c65b5388b69085057e774173a216a",
"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": {
"blake2b_256": "9602c767873320b1475e300b7d9c66c8282f75c2feedcc03076f6e07c442edf1",
"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": {
"blake2b_256": "4e72d3cf089212019330003607d875e9adca2c71dbf56a8a14bb414c305534eb",
"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": {
"blake2b_256": "0655641b213304816ffb9fdedc0de9e97d19716d66fe29299fc87aa94b491dc2",
"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": {
"blake2b_256": "e031cfed7ee880d25710b6ccdb50c23c3ad106540925a3edda4c6b18b8953544",
"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": {
"blake2b_256": "cb600a6cbd3547fdea6e1e406d1d6a523d7cff4c9e4d64f08702674ae8285e2c",
"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": {
"blake2b_256": "de7765d02f59114488ffcb934d9d0b2e6305a6731241aae563bde8938060f945",
"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": {
"blake2b_256": "8810ba7c03e3cb827efa05cb57e3969a1de002d61497b5941f691af970f07c48",
"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": {
"blake2b_256": "9435bad6b9a90f934bdb6438c23235268ffe8c6a37a50c20ce097526bb5931ad",
"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": {
"blake2b_256": "30b73217f67ec5b0ef4df52de35a09b5a162e29f0d0ee3ff39eb68dfba083cdf",
"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": {
"blake2b_256": "5f02267560edd7e505f805b1bcaabb5042f6a3cd3d56045d80a9b38dd85405d0",
"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": {
"blake2b_256": "c87a62d6aca8c25f4f53ffd992f2228c256c01f02272537ff5786340491b216c",
"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": {
"blake2b_256": "69b38ada8696fc3fd414610eb120d4a02760334e8377fda2581906904902a15b",
"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": {
"blake2b_256": "a441ab4b94a28413b6651a503bf5e5e390b0cffd014942c7f668c3086253a8d5",
"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": {
"blake2b_256": "ab35274d3466bada71aa8bd6c34985b0db6ac141da720d5c89ab78fcf1bdec47",
"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": {
"blake2b_256": "6005b419c7c4888250f6e8bfb459a07a2318806f29053ff4d1670d02e5b8048a",
"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": {
"blake2b_256": "85529ac83a7f9e03c513a13bb6a7a2ac58e10506f9ee4ebcf1aa1e2e621928bd",
"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": {
"blake2b_256": "a21d5fad66b00db9ee1f0dd452d7eaac7294d2d2c34ee002a806b3dfac9b96fa",
"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": {
"blake2b_256": "570cc99bdf30acec59baed9c2f4648eeebb5e5a174b3c1258ede6543bee915a2",
"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": {
"blake2b_256": "c1fd2b98fff31de834414919b3a951a694054e829e807064174ae51e6b77e925",
"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": {
"blake2b_256": "8516976a938121578268b3a702914928690716ab49afa1ea5e55a5a37e57b79a",
"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": {
"blake2b_256": "940ed74c943af8cdedf9fa6d1056a6a82b557abc3ebe877e35b1cd397a72e5a3",
"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": {
"blake2b_256": "54ead9bd81825e663d5b90909738812457335a35df35da4a52a20401984b4024",
"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": {
"blake2b_256": "bb5241818d7c638041022a775e11374ada8838e86a32682b1e14cb4ceb161b6d",
"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": {
"blake2b_256": "bc73ee3e3212d4c4738285ea51d059d0324240fad5d426bf7f63e472bd2ad4a4",
"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": {
"blake2b_256": "cb41b5e758e0546d1485559e3e4c82fb0f117ce24250e6f2b72614de0cedebe2",
"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": {
"blake2b_256": "f86786e6914c31467efc0f23d713ae736d28955ead90baab8323d8426c96a541",
"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": {
"blake2b_256": "e57811b669916073dd4e3b621025fdd6b30cc2261114e931aa9f9740368612db",
"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": {
"blake2b_256": "52ddc3860a696d4b6845580f6305c54e9eee1b3ed5cd37bb8b4b7fd3d9db76cf",
"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": {
"blake2b_256": "dd16eea750e02fd199d489cdbff1a3ac980e37af9db96ed283be4e3b67f655aa",
"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": {
"blake2b_256": "734d607957f307c54d59da255c880b9342a8cb604361044dc9bc3cbb916d3e1c",
"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": {
"blake2b_256": "7423f12770c538e451b32bdef454dd186858926a82ed23328b958ada43db8b27",
"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": {
"blake2b_256": "a9fa9fa99c3230b14bdd0a7633ee83536282fe99717470ef2435948b03503787",
"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": {
"blake2b_256": "66b8b5d2cd240a8e8014126327047fc0c60524bc03c041dadd00d61d7e76c33f",
"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": {
"blake2b_256": "a17bd5a6bb93dcd8e25ecfcae58bbac1bbe4528231b16a4d8d2728aede87eacd",
"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": {
"blake2b_256": "e2cd9cb496ba79a9e0b560db3ef4c3724fbc4ca7cfddf7532ba4817a5a3210ad",
"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": {
"blake2b_256": "52b060c65803e9bf11461bcf1d5b483614a20328bdbac1d9059bc1e0b65259c1",
"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": {
"blake2b_256": "b2c3e85a7c854962da6750668313449ccba7e2df2d50fd7ce8075fee4c488585",
"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": {
"blake2b_256": "de217d1e9e5d9ea40aae0028e09b6f1c065364b21c602ecd486439e2553a6b17",
"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": {
"blake2b_256": "cb7111fc66b13c6b32f9db6bd3986f6fe0b46fe263f274bf19a47ed9bfb152c5",
"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": {
"blake2b_256": "0622474c54efb92274ba24175682e8589a2eb2564bd0c9ae7c75e82fbfac2ca5",
"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": {
"blake2b_256": "f068d8e67271ac46f34cebc86d7fa97de3dead1fe94e6ab5701fd30025cf70a5",
"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": {
"blake2b_256": "82fc6f869a006d80a847c5f84b0308a685262ddf0ba06e5006d9e5daf90eb16d",
"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": {
"blake2b_256": "5026f4fba968d569e451f98ca2ef6f98fc86b10150d1aec8b8019db203b1d92d",
"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": {
"blake2b_256": "53360a1ffadf0db93acefa5a642f2fd3486c686235b36a3d36cd6c106dc310c6",
"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": {
"blake2b_256": "2dddb164ddce1b576c9c9977f619d5a3c5db731172775e809c796fdcfaf34a81",
"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": {
"blake2b_256": "25ba1a8e7fb6c14c083234687acf3e47bf39ebfdbd53fcd37e8b2703f22840bd",
"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": {
"blake2b_256": "2255dac6fc1276e595b7bddd1843eb19562d043867f06e26eba5f48dcb4e142d",
"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": {
"blake2b_256": "c87162ccf522e5f5b064d9d3533a1364fecfe4c041db1e451942c5fd496eaa79",
"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": {
"blake2b_256": "82bf14a27e427d3736b2364f9df9d7e56e29ced9ea493fbc4f68f0d037995bc8",
"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": {
"blake2b_256": "19987c94c52810c817af40e1d95b509ccdba554e696f7946aec9b07815cebf84",
"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": {
"blake2b_256": "c4e602dde6fce60b1b5b79e6411d972a720be4440dba7bb94285afd9ed2ec6e1",
"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": {
"blake2b_256": "5cbf2a1438145fe3223ac2acc8642fc7499180f19c20b2f4cad2082089efcb81",
"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": {
"blake2b_256": "c7675b5ba568ef9fab6cf5983ed77f395cd5428a0a89e59f2910660065becf34",
"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": {
"blake2b_256": "e5d44baf793799b96598856164a439d0af8e092bede6ec7ac71f7061020c46b3",
"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": {
"blake2b_256": "83e8b17b35adec294ccddfc77b6cbd26bfeae05aaca3858366e0103dbcc61870",
"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": {
"blake2b_256": "2e0c686f5079366de747eb5f4efb8b4ae0a0302f21e0ad90c359f427a1842202",
"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": {
"blake2b_256": "da28de6915c815e432f3cfe51318f08cff8d7cc1797f77c3d12228652fb340d7",
"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": {
"blake2b_256": "196c97f977d97837b275d59befb01fe99423af77c7e565a88f45b882f1575351",
"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": {
"blake2b_256": "0979730180c59e1b87ba873be6c7df376d29f487a39997eae605d15a43681897",
"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": {
"blake2b_256": "7d326b3b5f1451a13fa4f2926e8c7c6c173a89637cfeda35927f94fff35d6827",
"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": {
"blake2b_256": "c5cd935a312909a7ab8cc16ebf2d543cdc4c8cd8f82a023de7a16956137d38a3",
"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": {
"blake2b_256": "2ce7f2468b23824eea20d9cc5d4de97162782382ddd8f74e4720c7173870b9b9",
"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": {
"blake2b_256": "60308f688ba87a5190450e308cd9c150e1f94347a430a56b9eedd3dc47885936",
"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": {
"blake2b_256": "bef825bfc8f97b28c653e007455a3596dc8f7432d6d77d0d2c84b26e3b119c9a",
"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": {
"blake2b_256": "1230ffc4b09faa003bb9c060c1352abd1c712ea5294a801678a958f14100041c",
"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": {
"blake2b_256": "8a4aabe36e3b386f15969ee2581ca99a9037ff2d766fdf0edb31c55726fb07b9",
"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": {
"blake2b_256": "8fc8fa6d827573bd9204b90f1e402ecc15f89bd7bbf247a5bf30fd476c2ba81f",
"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": {
"blake2b_256": "7024d7888256ae59ee0ed187d6670b02085b6b7d6033708a93e6f7e309f708ca",
"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": {
"blake2b_256": "29b7f273c09b120ae84d96c52ec0ebcfd623c5bf7fb1f2469b5d5fdddfe7be41",
"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": {
"blake2b_256": "accd8931ae288fa2c7dfb9b625b9987cc62dea97f0b305579b95bfa9fd8e0fc6",
"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": {
"blake2b_256": "f71658e341b34d4f3081301c0fab68deb782e8e4ad37f1c402a68ad281b1dbdb",
"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": {
"blake2b_256": "91c75585a7ff01b4c745867c3d1eac458c06c7174f4982d52dfce6ab0390ad1e",
"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": {
"blake2b_256": "4c6a912e3af457fed0b5af140a89139f1d62b3afc7590bb77f73d40d74167042",
"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": {
"blake2b_256": "ca045ba7b9ee275b0479531e4ee460f9a8b6daf1a5ebcef49eccbdad08ffb3e4",
"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": {
"blake2b_256": "75c753b297b957c5435a5e9317af5881f74c852fd51643694f2227fda2db3cd7",
"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": {
"blake2b_256": "ac8ff83a3f807da64ed797fa502f939bc20c60cdcdd4f54591edabcdc1be07fb",
"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": {
"blake2b_256": "f4be787ab477c1a8b92d0f773318aa713976ce9efa2cde7750b2a635891026d7",
"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": {
"blake2b_256": "b0dbf9c64d2c7e84fe333cc0360c9f5e3433f202021ed2cd66ae9c700b55c9bc",
"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": {
"blake2b_256": "f07125b7f236a5f699e0e23b0936628633e0ae00938cf374375a2fbc570bf368",
"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": {
"blake2b_256": "6880a8d56abedf8287ae7a8e2b9d62565f4a3b806f85c8080704d896a5a78797",
"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": {
"blake2b_256": "37d3ac9e24481c685e184d7802bc881b17607d59b7f1686b0fe92d05f2787cf6",
"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": {
"blake2b_256": "2e8e1b282e4c7650a205db708e63f6e49bba52d8a7f99132ec86d2ca51b3ebf4",
"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": {
"blake2b_256": "e6d4a53c95098167834578202248341d7135e2b5d5888876827bfc504d69d61a",
"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": {
"blake2b_256": "0915bb873845f1fb89681f25751877c638069620eadcd25015f6c3e0f81789cb",
"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": {
"blake2b_256": "88b8b3d0c4a9f2b6e72e0d8d21242e75bea0108d21e987899e039989a55d3bd5",
"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": {
"blake2b_256": "559d38fb3cb174f4723b50a3f0593e18a51418c9a73a7857fdcaee46b83ff1c4",
"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": {
"blake2b_256": "eed3835176e7388da21ed2a83b2e4caac44af5295db654c157f8e6bafa75e5c5",
"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": {
"blake2b_256": "4ed4a3a04ba3ed37d60122666c2bffc5ea98bde070807229cf4d9877f9217f54",
"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": {
"blake2b_256": "0ae021ddf7e4dfa248559469c99ce2d4d7c84ef2e718c254e166d42bcb673f8c",
"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": {
"blake2b_256": "fcbd08ad20959568d5ce5bf1e6cf3903d42833ed0be225dbe8b70cabf80e44bf",
"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": {
"blake2b_256": "92165c344558c266c9942887582378f78a07cb37e70da0ba8da0ad03858bc23e",
"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": {
"blake2b_256": "f8816fb0568c40fcbda86e9bddc4d897f844ef0190ca7f9b1d0b174b4bb3a2b4",
"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": {
"blake2b_256": "8934ca37bd78166195c1ccf7c2653cb8b4ac18e0379c4c2c71b9b9b42bc1a1ae",
"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": {
"blake2b_256": "a50237b8f76f302696f1f8e98259741b7c66ff30fff67e003ab45895483b7171",
"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": {
"blake2b_256": "cb98e646482b9dd4c6cee0bd52b3641b19bb535ca050c55fdaa05be455ae2890",
"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": {
"blake2b_256": "4d368dccd7fd6630acb02fc5c80bd8d5d15f8da315980800288dba5e2c246d37",
"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": {
"blake2b_256": "448e3ffa98b45e1c626753d57b6816a65dc67b7f88ce508ca442639e8831bed4",
"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": {
"blake2b_256": "6fc6618b849b9764d0cdd224ef76f0cf7351aa9a904396be028b34299c886658",
"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": {
"blake2b_256": "4f269d5e42b084260717689da6766d468e21ea6bc1eb9ff03d49c66695710145",
"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": {
"blake2b_256": "c432271ca16194d6f0ee01c50e86ff10a1036813dd6d62f4d0573bd691ad6eda",
"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": {
"blake2b_256": "1a2d4deecf7291b5b87a420238bcff4ba07067a3537cf3c2e978bcd07e61aa6a",
"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": {
"blake2b_256": "d44528bbcb3e262451aa31deadf675953cb79a08c3b1e43201f180a80a236c29",
"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": {
"blake2b_256": "986e0eb5013ce2a421884861cc184294e223f04eeaec8ea213cc6adab0d6054a",
"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": {
"blake2b_256": "09967aee4e7c315fa4ea6e87ee212d6b092b95cd30823eed9beed4687ad62440",
"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": {
"blake2b_256": "4edd9d727c1a59206553e127e4d662b5c1477fdc25d27523d99f3497cb8a6d93",
"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": {
"blake2b_256": "b252a15563a156552945fd150e3143f178c22a88ddbc62fbbb9c65de739f08f9",
"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": {
"blake2b_256": "d0bb0a4df5a65e063bfbda5a9cc60ef3246b6e9d6f9381bef32fc95ed6f5d0ec",
"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": {
"blake2b_256": "78db9c441aceae4ecd65a002e7df48b629228b2bf3d3b3e576480c99967b4ab3",
"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": {
"blake2b_256": "57d92ee0f988f07aee315ad00176135b709cfdd2fe455c6340b98e8f5cc975a7",
"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": {
"blake2b_256": "bedc6668136b14340d32eeb6787f15cd227b23f1e611ba2d3fff0e89ec6dcac3",
"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": {
"blake2b_256": "50be5ddca1c94b666886d1520f49fc7fdcff7c2d17328a52e1dd4e8ee3d1f1d5",
"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": {
"blake2b_256": "a78294c71f3cadba40ca43c1f97924c23c16743cb5826344662b378e294df11e",
"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": {
"blake2b_256": "e446ee43efe546381c6cd42003a2388d75f88973dff5b82ce1f7d447d2f4e85e",
"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": {
"blake2b_256": "945a1d8cefb7e35757497ef5c07a813f4e0d082e7254405e817fd11a6fdb2b6b",
"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": {
"blake2b_256": "7ec9e89732bdc6a40333e532a2935815e7b88000807c3792e97abc22fcc4c38b",
"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": {
"blake2b_256": "cf92605f8d9420fa136f81ae1eb7000131f4d1d22a300ee0be4055ea63370b9b",
"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": {
"blake2b_256": "08f0232efa1b54cd101d9dd3e524599bb44a111ed8ca34f0613f0c8b139dda2d",
"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": {
"blake2b_256": "de9f91869833a02df0c8fba8f31231ed18045cb0269ada0684e818c50e2a2978",
"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": {
"blake2b_256": "5c7a4fc966c0a24eb7f739257f7116589fdcfc764c53e48d797734484aec0924",
"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": {
"blake2b_256": "1fcb9854f19dc635738f9fd34b4405afee2638a68e0c9f279f3cfc2e35bb6233",
"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": {
"blake2b_256": "05e457559dd9f818a0b832a54c23d90e708b2dfe1d7953d252039fff6ff4a8c2",
"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": {
"blake2b_256": "43c07310952067a2268322312b22462be6ad7791784fbde49cb636013da83272",
"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": {
"blake2b_256": "3c7874152807c83b4689f86133ee47136d6c62301399cd713e21d1d3e6caab26",
"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": {
"blake2b_256": "a8c7c4790043448c555e7ea6841aed5d82959ce115181c7180e2b8eba391ff82",
"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": {
"blake2b_256": "3f2594a2e4d932dc0d0ab40e493d99cee2f8f84610c8399bc856c9da7c1c76bc",
"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": {
"blake2b_256": "b344801b158ad3277416b51fb3c2a3e61bba9d0d86e761ae72e0b17333a58acb",
"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": {
"blake2b_256": "af17cf5dce92e9309c6a3d90c94d90574c7336895e355444905a3248aa3a6e28",
"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": {
"blake2b_256": "ef4fe211021ac8eef7af05f532fc39e0e834082f5d9aa90b8e58548def489c3e",
"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": {
"blake2b_256": "91edb211fb605be5bad36fb00ef5caa89ce15eec416851a93364ccf9210f21a3",
"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": {
"blake2b_256": "3754caa5508b81562d705861b9e5d2867ad63f699b9b607ef73cc0961a3282df",
"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": {
"blake2b_256": "7c53ff009ff67ad8547739a436172aec6d0846a72f47f687ff33a660a3c9d431",
"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": {
"blake2b_256": "f6173111f78d71208424e2f082e682a25eaf75fd9d737123a37b4799392d783b",
"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": {
"blake2b_256": "1684e2d095d31d6371034150b8cc66ad5025822ef1206a850e2055ce3e805590",
"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": {
"blake2b_256": "3d4183e3610c67e28613ae461eb81de5f6bc36da9213bc9fd165844b040b6de2",
"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": {
"blake2b_256": "963858fc90df5a9716d98788f0a4b438198cf2658c51d7a2415a5f79dc214308",
"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": {
"blake2b_256": "70c3c83cb0404c5dbf5087dd8d6c816032e6863e093d0e81fc42431764bf8dda",
"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": {
"blake2b_256": "d8894c6d5899b43cc178060c9f1f6ab9974b87483f6be897d0518a9556008cac",
"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": {
"blake2b_256": "b4b77d75aa70d00c71722441ba8ebe6d53a94f34ea3ddc636ca2f3734afc66a5",
"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": {
"blake2b_256": "e12b5354cf681eb649ea6e93fb1a8117e48dd7c38c311fe8da2ee19c3024e216",
"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": {
"blake2b_256": "f115ab8870e99c5bb18ceafc72060dcc08726caff3a63123eca0fc21316d6e09",
"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": {
"blake2b_256": "7545f81bcce8441a09cb7de7cfe54358452cf9eab6068cde239ea98ccf52c608",
"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": {
"blake2b_256": "7cf7419af141fe306c492456859690c8b6f9d1039c25a1208eb3951c27ceca6b",
"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": {
"blake2b_256": "4f3d48586709e8b28add9bf4a1e2f61157e13ce4c591f813231c593af8d58d6c",
"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": {
"blake2b_256": "e185e2194f49a878bfed6abdaf6a2b797aba1e27ea779b3900212884dff8b83c",
"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": {
"blake2b_256": "55768dfb6b689670d8f2386e8d71380272c9a4b77984009fa34bb3831013c93e",
"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": {
"blake2b_256": "a12fbb6b8f465da7aea2972c0f491d8e1038f42411bf2630c0be5bb3e2237111",
"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": {
"blake2b_256": "39e5d00560c04e0c4e10ad2f0ba0b76f97a6a55acc9661194a06921fdfcefd7c",
"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": {
"blake2b_256": "6c1c6a339f26a79f8bec694ccfaea84f1ce775ca284e1582ca7d7b0922a6003c",
"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": {
"blake2b_256": "5a01bd8f765adccd6c092d3294741c52f05925f0e24dff29e56dd965398219d7",
"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": {
"blake2b_256": "9e98982208caf31a284f020e9bb3b5f7b13dbd1d122d903b39e91620481de70b",
"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": {
"blake2b_256": "0f152c3d937e71d285cd34dfc14f5479753926f29bf7a5816df4b14406ec1dd2",
"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": {
"blake2b_256": "f6b35eebf91e86a32f30edeab6b1fba387d2173ca12bf57fc034fc046ab78bb5",
"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": {
"blake2b_256": "c81b9bf9042cce322790398547a3e62feb0c15d972ef0fb9410a213a9b879ac5",
"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": {
"blake2b_256": "3c271a76748bc91024e9c379d7d7bbada64afca064e03a5e887cd83aff2aa92d",
"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": {
"blake2b_256": "c44b83fc421303f3e8a575d66c7ae035cfc603bb9942b37b7b51bcb3624da32a",
"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": {
"blake2b_256": "635ec89bd7117b235a2f3168afea2b570dbab752d70fdaf7f4f243a80386792d",
"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": {
"blake2b_256": "727eb08a7b86cc7824486a26dc8ae708e58f417c2aa3e08cfc54fe12564fe7d3",
"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": {
"blake2b_256": "11e2a9d6dec7447710b3e7f69b6a0ba79b4adf71e5667654060e138ab94ae3b7",
"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": {
"blake2b_256": "095a7b81ea8729d41f44c6fe6a116e466c8fb884950a0061aa3768dbd6bee2f8",
"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": {
"blake2b_256": "55c964145ad328a11747a59da4b7cc0e48f513921159b0223ad22023c559b99d",
"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": {
"blake2b_256": "418deefa631c900b5d2b0ace40ec101ee4c8f2079d954a1263984cd33ba14224",
"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": {
"blake2b_256": "802b23d819a0fdcad6cd306af3e2d9eeb091f244d48ed0bef362440c06c85b2a",
"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": {
"blake2b_256": "33f3828906ed9005dd965a988f6d94ad2dc13c92977f96c681416eba272e501a",
"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": {
"blake2b_256": "da0dcc605614f69c7369ed27006c3f5944a53c07a57aecae0e7ad826373cb3d2",
"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": {
"blake2b_256": "9f21f7e5005b10443cbb1de87b30235e19ce5e1c7ef5c90baa9d315e03e458c3",
"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": {
"blake2b_256": "a57b73e7b75090fa1aebaf2768330d14775013ddf40fab6b5c244444fae0a4fe",
"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": {
"blake2b_256": "663e549cdc5bdf6d444001b3f9e450226d3e878eb1b392182342f53718d07d99",
"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": {
"blake2b_256": "3f7e7035a96a1d5a68636d47ea48d0abda0e25994ef092167fd5dd12fe380cde",
"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": {
"blake2b_256": "6558696b7f465b4505464b216a6a5ff759b793647a5b7685522d8449eb062490",
"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": {
"blake2b_256": "8be14143a4c783815361c9b1f74f776ee63a8bfe8dea308c788775b22cce061c",
"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": {
"blake2b_256": "435c8a1d5b68b9fcdc3f725c2d7e10571ebe3ae3730b9d2f4a207f69ac9ec2d0",
"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": {
"blake2b_256": "0e3b2518410c4734f69727fb2f9ba82b06465fdf8b1f24b313d9c455e51981c1",
"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": {
"blake2b_256": "fe6e6b2569b1ef078770cd78f6796e69956294f16cce8584132d0294b4170da6",
"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": {
"blake2b_256": "120a0356b35f12aefb262de5b5f2aa1785356d6d250e912abb90bdcd2ce0784d",
"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": {
"blake2b_256": "d837f396473d7cd1a2fe4f8478a0b40fe999a44dcac12bb54f853f3de1ba9ea4",
"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": {
"blake2b_256": "d88fc33dce63672a55daebad36aac897742b29c095fa57b48a69ef6e708dd98d",
"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": {
"blake2b_256": "2e22ecfe0a6620294e6c7554ce9e5c216d68b816aaa9f6ec62e8a0081f3d091c",
"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": {
"blake2b_256": "aaadfc29d9782085e85d94742fd1809e9cac3338269841c583ec0a0ae3a08d2b",
"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": {
"blake2b_256": "cb4f9cb0f69c9125f34b2707709f59f2329089ebe6dc4e9ef4f3c2a5002a8799",
"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": {
"blake2b_256": "c921cd5de104e19d025ddfe31c90fbcc7a8610333b69c3c45d8261fc8bab407d",
"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": {
"blake2b_256": "a10d279975d898d22c5c91d435661417f6d3aaa4af9d7a34a54a5930d3e73e76",
"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": {
"blake2b_256": "261f683c3ad92c0b81034f198874232cfde292aa4d9393aea03910ac2e07da21",
"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": {
"blake2b_256": "be05311570db3f739d16e6029d2a3e386fc5aa68a71b8a2fef35a72cb2ae064a",
"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": {
"blake2b_256": "16f1a3c4830f2d5e1fae2a9e762ed9266703c69c610f5016730e0cb6d8fcc7b3",
"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": {
"blake2b_256": "616dc6aa5cc502e47906e2af3cda75cde17b2309830f0d93a3f02d4fca9202d3",
"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": {
"blake2b_256": "cc5e1eb03bc43c482f0987b2c533488e98e007284d15098f97b326dcb739bcff",
"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": {
"blake2b_256": "20c8051f7c13f3afe6c488e652e742de7fdf84160886b5c562abf34b05de6d24",
"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": {
"blake2b_256": "00ccc78311aad9f5ec91b2b826327477371c7b904e735148793e52b943f506b6",
"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": {
"blake2b_256": "86b0a4e00245abb3e01727b6fcb65f1c0f34a3b90bf496140eb7f4816ad426e2",
"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": {
"blake2b_256": "4f894b4c6ce6afaea260de6d146bde9317d50d9f78f68e58301759fc181f7e79",
"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": {
"blake2b_256": "841cd80f469537765f76d7db1dfa5d51ea4ba695a13506a3966a1705bf2b6226",
"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": {
"blake2b_256": "5752bf0bb2ee68957954d5e5315e7c5955dd08d5353217aff8f3db5fa88662fc",
"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": {
"blake2b_256": "72b807be9e39240cea1240db41349e2334e71df7e248b28502366bbe634bd798",
"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": {
"blake2b_256": "595e0b076a7c2e64d42ec3c1e9a64960778c959c0eee1aa91a1dd5d7c63a887f",
"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": {
"blake2b_256": "6dcf8dee15a66a455507fa3c48099ba95c5a5050daab6357bb0dde09ce5289d3",
"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": {
"blake2b_256": "82589cb238d4720c6d013418b5f70d58c110f057a58ae774aec913eca73eebc7",
"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": {
"blake2b_256": "51ac2c8368207b53157de413bd0a0ad3a77d03a67f40d4d4cd9a0e600d482688",
"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": {
"blake2b_256": "d7e17cbf59d88d710d2323239d891a4cc3c92b3b9b691dcf957079d2ba632b1c",
"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": {
"blake2b_256": "78754d3262e11e9f346d4d0d41004dc66e384b0610fe7f765bdb44234c123b44",
"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": {
"blake2b_256": "f999e61a501867f47033dd1a27c3f507ec087f68d0f669f70b29cff42ea29ee1",
"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": {
"blake2b_256": "976fdf160dd0b217dbede247acf0850cd08d921f5f41199ad5e96876e00aa598",
"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": {
"blake2b_256": "5ea9b95453ce072f19e1893e4b604989deafe904350c117a69ba1f7d2cccaa9a",
"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": {
"blake2b_256": "1b5d9a72b64d36cf9a364cf3303d97e64fd9f2313e07f5da82ca4a280bff86aa",
"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": {
"blake2b_256": "cfbceaf04ca05c42fa2716a46bcac5e4b0dcadf2032f6c6bd3a36418e14aede7",
"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": {
"blake2b_256": "4dedcfd300ec84a0164d30fac7ed9bf409fc247113f6650d4d3fddcec40cb9d2",
"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": {
"blake2b_256": "35ca9a7279d1cd5b442496d078d10db3a9db929d9281e29e374b4bd9801c74de",
"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": {
"blake2b_256": "7e5f2a2ec3d0d2dd4f801091993040421d897afb0004828d67345dcdf7423cee",
"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": {
"blake2b_256": "b6e43dd60792bf4978f1c2af335cd964661f5f19f780a4fd7b640a66b9273bfc",
"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": {
"blake2b_256": "08a5cb7e38f43fa974efcbc6c72291df154b6623d16c27f2037e04cae75dde73",
"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": {
"blake2b_256": "de8dacbdd6862d7a94e08855ad1c18964e6370a4fb8c58fd92e0fbeb152882d1",
"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": {
"blake2b_256": "f6dc34db27e6ff34fede41c08cc6e563dc3b48818c0e2c53eb36b1cfbf8b5e83",
"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": {
"blake2b_256": "5db6deaa802e95f6433a4b61ae2d3aef12f1eb00e2f3200076f491f5d0461279",
"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": {
"blake2b_256": "5f60afb29b5712ade524efdce339e2a6a0cb69c44115804ab5d4e976bf3f1983",
"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": {
"blake2b_256": "e4afb0d6fdf3b55592861addc806f2c5fc7edb6bb60567bb0d51d1dae3824f1e",
"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": {
"blake2b_256": "28545418cafbee5e9d2daf77ec4355d027518b26b1ef5833c19f092a1c765b89",
"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": {
"blake2b_256": "600a4d0dddbcfc20a3f3ee6be18b8fa5d4de9a0f37ecc6b6473f82ce30e8479b",
"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": {
"blake2b_256": "a7ea3299ecebfb68af6e1d383716bec01831490d5166a4919b977cd6df66572c",
"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": {
"blake2b_256": "256c8a7c39ee3a58c0c5e325475a19777142451a79174343d058df8edf57a107",
"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": {
"blake2b_256": "285dd8fc4caf95baf8716f245de95365ac25217836f0c8c4be9caec27972f294",
"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": {
"blake2b_256": "d274a5a6fb122e6fa9c75fd926a501fbd2a1a478ec2f19ac7d5801500e5b05b2",
"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": {
"blake2b_256": "4ae8df4d729db4e431b91af0de2a56f4249a69365b4522d18448b7a1704470b8",
"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": {
"blake2b_256": "e4c5c131fb2c8e42eb8cf0e42d41c8cecfc22e1247307c25a0f77c4565ca690f",
"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": {
"blake2b_256": "f4ca27d486a5a7a1af62ba7ce731b8e5888ad53373ed7a6fdcf41faae1870a8a",
"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": {
"blake2b_256": "0ea2a4d6bc2227206a68f45053f83d4ef69312886ee3feb9e919006675c13db5",
"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": {
"blake2b_256": "b701abe338b164c8e82c663aa7121cc645813ed7f896b8ed9491207d88b0c933",
"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": {
"blake2b_256": "4e4242e3fa31990007ee8b1ed4a0952eb509c50822ec8a51a6b5d32de1c6a00d",
"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": {
"blake2b_256": "d5fe6e9025c03acab96181e0b88ce1fac782de451cc694baab39a1943eb56f47",
"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": {
"blake2b_256": "bb4d8e57306aa8b7386054056957b6c73ffb51ef6aeb3b5d2f83acb1e4f8577a",
"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": {
"blake2b_256": "4482a63cba1261abe636d93d62be8c37bc83a4ca033e2b67b5949e17d61121cd",
"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": {
"blake2b_256": "3a50fed51844e340cb3e5ca52dc07651bad9c8496ef17eca075016fd9f352313",
"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": {
"blake2b_256": "e5a5ade96691f6423c56f7911a42a51ecd5454619efd6d5026df7e08a556a36a",
"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": {
"blake2b_256": "2bfeaf9463cb8405679404c8f090f8da5c0e0a746d72eab42c28b00c564bb64b",
"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": {
"blake2b_256": "c00b4c20a0ff14c643880dc943c76aba5330b2ca91b37ec266ef4e9ba0de3041",
"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": {
"blake2b_256": "e2c034680840c1c65e6ff83fd6a218a0866b9f4e8049c9e403a77a44e1c29b25",
"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": {
"blake2b_256": "6b7b63a2fb07462980b251960f3a145cdd45d3c18c5098484417450f0e5fea7f",
"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": {
"blake2b_256": "dcd0acfe38e781a6ff0fc10c0bdbd8d8b423e7146e35044ee2c40a95bdd2f9f3",
"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": {
"blake2b_256": "e30e13fbba29f19d2541750210541cba4ebb185f9b8084e0315da5826e280414",
"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": {
"blake2b_256": "e726e437d502b0dccb22f47a355e6f015eb0f49b009996deec6eaa2691ce3204",
"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": {
"blake2b_256": "2c2d894f7ffb97ca0c827088c8973e775f1671041a1d4ecc3a7b065211013b5b",
"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": {
"blake2b_256": "23895c703e7a3dfe7796fe24f9c8e82a45f9a544e07b22524c6124e7e67167f7",
"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": {
"blake2b_256": "641e2cdfd081ab3a133dadcdc7cf3dcb6815843314421c059925e362d903e5b5",
"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": {
"blake2b_256": "bdb8f5b7fd5dd7b007be9f7de84fe46608d9e8dc40bd06e1833ef781b5bbb258",
"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": {
"blake2b_256": "5e7d9a8b886a6d0a87afd2858fa88efbf6f50cda26346242776b8e67cccd1a64",
"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": {
"blake2b_256": "31a21b493ebfc4b4a56600a37eb7004cf8ae3bbe69ce781055a41bc0df4cf7ec",
"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": {
"blake2b_256": "fd2443e57d1d5c463c4b7f03b05fde0b85278ca5a186d01ed20fffac723cdc08",
"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": {
"blake2b_256": "c63ba38626ed0bc5514baecf0e8843492720e2974969c877c4e668f4f0936f52",
"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": {
"blake2b_256": "14527780aaeeee1a5adc0a574c706075ded04dded392f22b23536d3451ef5345",
"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": {
"blake2b_256": "0d032336cb25efb4b5171731aa6f02ef4a9048785356a362d3d0eb8fd69a7f55",
"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": {
"blake2b_256": "a401569a73217dc2367e604979eee20f67dd94f929651c4227445ff08712ccf6",
"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": {
"blake2b_256": "3ac149a013795a1369815673263b3c17b26d761c8d4f4cd399d8e0cd22c52775",
"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": {
"blake2b_256": "414276a4cff04488799e78d37c5bb3b607e36d2c4686141621002d2479b54dbe",
"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": {
"blake2b_256": "d2397a8ba6fd57bb114f8724b5f4c3400f5fec1598540bc860d0e409422d905f",
"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": {
"blake2b_256": "e55e5542ec2d6c9afc1848eda5923ad27c55e86097245b19a2343a918391e075",
"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": {
"blake2b_256": "3129230ee5dd4019ea9857a335e0d0de10af8a5594ab3d163c4e58809379155b",
"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": {
"blake2b_256": "aa6ee5e5550a1051850d667394125033a53bebdd8b8680b16f0d0e4394b86fa7",
"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": {
"blake2b_256": "9ff53ea958a6a9ec54aaf274696267273975b5480a8483a51b4b96202ef6b106",
"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": {
"blake2b_256": "6abcc553a0240cbc5a0837d880ecb48f6f2d13a8a67bc49a695085b1aba8fe33",
"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": {
"blake2b_256": "dea890421662d054bfb168e3644e5f79f7fbd3d863493ee558b0fe0a1e831ef4",
"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": {
"blake2b_256": "130825d553129c83e9f2e5bc07d9fd345d43b0fd8a354bbf2f0bdda6dd189eff",
"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": {
"blake2b_256": "310c561b37a7db207aac7677dd4ff1af34df4211dceb4a6d1bad8e7ce207443d",
"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": {
"blake2b_256": "d751d9c607f8af73ae6a47117e74f2b0ab00a12c934ad07121f4793e75af184f",
"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": {
"blake2b_256": "f1cdf4f41cf5c00a272e277c3c59919ca595a87dc1561fec89c31c1c14a0871a",
"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": {
"blake2b_256": "2653eaa657ddbeacf8bffbba00855948fa8c23bfe5e67ff3c15cc5124160cf2f",
"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": {
"blake2b_256": "e6567959b331961b34996c83688ccc3a4a1a0000be2bd10bbdbc4ea750c48d1b",
"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": {
"blake2b_256": "b14a5c73248b6431448141913315237bbb34263fddac925224c05b380ff49939",
"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": {
"blake2b_256": "ae3bc5a5602f98d8f945bd995039e0c15624cfc961a28824c42bdb56cdfa3fff",
"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": {
"blake2b_256": "98c5b3ea1ac3b9f3399daa45be1b9e31ac9a165bd59913e6ab6d02da98792ce4",
"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": {
"blake2b_256": "9d675de6676176944babd7ec952569c307959928caebfd0799bcbd05e84f3692",
"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": {
"blake2b_256": "89181c4b3eab61f6aaf140aa30817f46fa63c1fad703a9b095e9827442b4e9a7",
"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": {
"blake2b_256": "646f817da9651f73536ad6138427617742052e1f8614c3f968467c6ab629cc3f",
"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": {
"blake2b_256": "644131fafd9acd94810eb417112c40789ed04c3594211dd549c218ea01299df6",
"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": {
"blake2b_256": "3ca04cb100b2d642fa1b653a8a39b729ac124a68b7fb6d46a4341155ae27479f",
"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": {
"blake2b_256": "57d16cd29c05edfdd19bf36dfba1d5a4e69e4e5147ebda5091b0a656515dddb4",
"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": {
"blake2b_256": "aa1608172f0a8be97e6b4d81e89afa70ff5f52d98d357c9ea3a1b221e48b3f75",
"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": {
"blake2b_256": "2584bece0fa84522c3058254a0384ba48f6cd35df23ff29385d10a8b8ec54d6f",
"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": {
"blake2b_256": "873a59b1cf8c92506cdad64ff9123e75305848aaba2c74e8af2fcf0d12fc8e56",
"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": {
"blake2b_256": "dac1b95412e44f81622a8aa743bddcd28f8192ccf5db81d228ab7d713d6ec9e8",
"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": {
"blake2b_256": "acb756b1ffbca63fb7e0ea33c0a7da593c5b11cc2668c6ec9f35ce916d4ee45e",
"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": {
"blake2b_256": "a0b14e9a56a7387e03f7b8e13ea1412a8aeab19d5385410770eaa1e2d1c8abdc",
"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": {
"blake2b_256": "13a46941dbbee91db89825603f6449f1928e2047a898052d67449dcf1f553871",
"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": {
"blake2b_256": "c54745e641d56d96bf0b544c76efa9086c1f85af847f55e1daf7e0df4f5c68fc",
"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": {
"blake2b_256": "3208d0bc8541eaf3105a6fa1e7417d24393c5d48397f8cbf41b41412348ce890",
"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": {
"blake2b_256": "0a2334c4dd0a3157ab21d0241205e58370ef4d14e75dc24a9b51066493b83b58",
"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": {
"blake2b_256": "6c3d60db8104272e63af28f48bfabcac58579e20334b4b07d73e22822593a409",
"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": {
"blake2b_256": "8fd8723245a6d04d3d2c592f5aa90342319d8db036712d188b1692c198e28274",
"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": {
"blake2b_256": "c643f14ad6dc9123f4fc9584b6af174e9f11b8ee3f58d5397a1cc25b0027799e",
"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": {
"blake2b_256": "69617c564b1410d397160934fd61856efada2cca4689a734018821e023099d76",
"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": {
"blake2b_256": "7aa9a4829fb463b6472c470af0c7d375b815352f14b41ec04bf721d195e0d098",
"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": {
"blake2b_256": "382d0cd562fbb3b6a3c6c1496fbc64fa4c98a57c1071820bea683d2a14fe69f7",
"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": {
"blake2b_256": "b51b284511923d15b2ea9ef930c100a1c57655f459dd2896dc2a2b6e151065b7",
"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": {
"blake2b_256": "e908721f2e99f4ed694335f533a2910b4c75b1b37a376fe65da07903e0bbe1d2",
"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": {
"blake2b_256": "d0d991a468edd0731136a28fc9f029e55f2a8bcf77116998d324a1b77734124f",
"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": {
"blake2b_256": "8bc0961bdf8dc8795ab1e624c966fcb5411935cfdd4609f85c41514a63f7ed0d",
"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": {
"blake2b_256": "8e0716318cfb42dc787e7905dc2eb2b668f89b32f91c042fa459452a6dc81c6f",
"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": {
"blake2b_256": "aa9735b4882d414e2ff934a58c9ce87e66b2f709d0e4909b4821d3a778ef4ef5",
"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": {
"blake2b_256": "336c36f959ed83f55f0475a18cecad25e0d4fe9608dcd44db214dffdb5a85801",
"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": {
"blake2b_256": "4b6e947276936e520a532e549b96332988fa0ebd20955eecd36f12fb9ce154f6",
"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": {
"blake2b_256": "c984fd40c702a352e1ccf288ad50e2e60331ac45ef92e557141c040bd44875df",
"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": {
"blake2b_256": "9742f1d01a58c5e1c966e7d10b27073f60100d03e54f14a8bfb850970549161e",
"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": {
"blake2b_256": "d0016c835f6200b3c594bd0654f97204a6d773b9b11974357ece024218cfc2f1",
"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": {
"blake2b_256": "87f2d9b35bf7bf6a14e4ef199f79f3673699c02a96a8848f71f121b409b0f2e8",
"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": {
"blake2b_256": "13e3f875358d5fdb4e9922744df49da5f256c32e7b2df23bde5518737fc1b40f",
"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": {
"blake2b_256": "1d32079c6c481df9d5659f1e88dd6c518dab72aaba7a8ce2e74ddddf10683e00",
"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": {
"blake2b_256": "b088712947e5c06479ea27a59ebf2ab78bf4358798c0b472dbd2535815f8a293",
"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": {
"blake2b_256": "dcf4ad77079cbb6e95bd2191f78dc665442277860619b8ac183c05d772111142",
"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": {
"blake2b_256": "5d9848fe25cf568e2b31d52ff90cffcab842d382d8d085f314b5a3d0dfd4732c",
"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": {
"blake2b_256": "d50a52229644ce70fd13d8dd9ae02d2be7576b25c9c86862b4ecac1a31f4f9bf",
"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": {
"blake2b_256": "444b696b58512cab914f07eac002ea9931c7cac4d5e66cbf96c673bf219a46bd",
"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": {
"blake2b_256": "68c5a5b629baedd3fc4bfb70ea5db28342cbee6c8ad11ba607680001d7d48ba9",
"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": {
"blake2b_256": "70670cc5fd3427ae4267c8ffde8c6a485e3f6be5ac81b8b8ae1cf903be8d359f",
"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": {
"blake2b_256": "bdd492f4205b683586a5f475b46eab1699e0c5551c7b1f6c354a3af4f6cf0bfc",
"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": {
"blake2b_256": "d8ee454f799276d44a79bf0fe0cd78c152ae62dcc3755ddd8aa92df06eda544d",
"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": {
"blake2b_256": "b0cee8507d605960869e8f2b5645fd5e9dee766330095101673862989ed548ae",
"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": {
"blake2b_256": "2ee6eca7da8bed3b1260702589fe22d851e4f2b3c32ff36e09f8ddd3f2d64367",
"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": {
"blake2b_256": "61b183bcfeb8c3ba2a44064608ce74c415b65a8ba83561e38906ccfb8a7d0933",
"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": {
"blake2b_256": "738398d752ef6f83f3dba8e306838bb501f786fa0c9989a38127481143ffc30d",
"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": {
"blake2b_256": "878a98cc8e08b32366446647510d3ac56f6c79541507224b576c345c565def0d",
"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": {
"blake2b_256": "c6f1c0633d2b49172dc59e2e204f64f0998ede28a04e753e951c9325796a2bde",
"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": {
"blake2b_256": "19217ad019942741ee48e5ff2ad535df3947bbb375314f9809be7762e837ac75",
"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": {
"blake2b_256": "520f419b9affaf13df660a8da960aab8386ada9c39c19cb141c4dfbbbdee4b61",
"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": {
"blake2b_256": "5047c8c6d05cd6ede205503e1f2e91caf1db540e6366609819b43c32b2e900ec",
"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": {
"blake2b_256": "4078e300d3d8faf35bea4aa834b411ecc88054ad8789ad077b89c6dbadaa79da",
"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": {
"blake2b_256": "c10090eb476784600a4f289c4b447a786b63ebcaaa716e335291723ee0f648cf",
"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": {
"blake2b_256": "830d90a20e45723f4da5c584655692d43076f47911f87e53be26aa76ea705889",
"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": {
"blake2b_256": "86ee52702ddf6af35fea3e5183b8bf8f3b09de41afcd900ab57f5e2af3458706",
"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": {
"blake2b_256": "49d686dc72e57b74c21fdefa1c161b5a7866755e137bcb3699923618ae51e9b7",
"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": {
"blake2b_256": "5913372137b20e89704d88f84e57646cd3725b4f6fb23cc072c869414fcb2a99",
"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": {
"blake2b_256": "879fc5054a3cf1e6a844fb2ed113c2b84acfbe09979fb27ea2661b49dcc4257d",
"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": {
"blake2b_256": "1f3cb7fa5530100ac52921228b1f201c4077966e4f832d3886affe3b61f55f57",
"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": {
"blake2b_256": "9568800da75c498d0cfb9f4fcfb52b5eec2410bba98055b0af7f0554401b1ae0",
"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": {
"blake2b_256": "41b248e21d9fabc9a32c8c25105a7bce3136ecd93fdc328b8532eac31546332d",
"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": {
"blake2b_256": "a6a57fa0ffca6b60b20fb61ed68a169c86080247bc51536b156650345980b59b",
"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": {
"blake2b_256": "9ffde8eeaef5fefa363bfa678baeecf1257b52d4d0f18846d431c1281dc17e6f",
"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": {
"blake2b_256": "f82dde936058e394c7c312ae32a92783977f2177029a9785b7018658dee3437d",
"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": {
"blake2b_256": "7eb1f8a58b28b351415f2db7927d288f46e07feea1ea17d130b971e376e01cc8",
"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": {
"blake2b_256": "38d4c2db825f8a1469adad1fc2f43e88af81c2444c142feb6b32b8ad86ac8f54",
"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": {
"blake2b_256": "982955f9ef5abc9f302a4dfb25903433735da6843717daca100ea73086df5c22",
"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": {
"blake2b_256": "a9f41837ca87f2f45d2cdfe18418f55125308225154858634c799e81d600a08e",
"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": {
"blake2b_256": "bd3bfe8317f27ee2cebb9d50391bb7c685cfcfd8e5886f8db39b6f8ed6ea6ca9",
"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": {
"blake2b_256": "83fafab4a33573c823d0da4b9f85e36d092db750ccb8cab4d9f0618be6a4e424",
"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": {
"blake2b_256": "caf7241235d2e11f1aa1f573c3c1727ff8c2f6cdd3b22f4585c5399f68e90ed1",
"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": {
"blake2b_256": "ecae1f53d9e8d78cf3cbfdea8cdfb4557153ede9a0521046f84ef01458b7de5b",
"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": {
"blake2b_256": "3c0332416b53af47075e99a397fdc737556b12b646502a4dee3c95aee53f853a",
"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": {
"blake2b_256": "6ea864e613780f4c1fe4b6e6594b6562b98e67f1b05a9931d81b63c012cb9952",
"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": {
"blake2b_256": "378cc5f09d22ab193d00e20823e3dcb71590f27bd8a331e76b7da9f37679f7a7",
"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": {
"blake2b_256": "70b234c8f045c36a2822bc79765806218f16d49cedfb9d321867aece54f82e72",
"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": {
"blake2b_256": "a0c94d8e75017e9d109422743adeff61b8776b12dffaabfae5c6a2eeb90e1f42",
"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": {
"blake2b_256": "9f7f705610796155af2e7d76706c7fb54ff29fb59183e9a4912a2a7cf7dbe0f9",
"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": {
"blake2b_256": "428730833cca40e0f46d7ab68d634ac17b33379e50e68c91caa273c8a9eebd78",
"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": {
"blake2b_256": "e4827200bb3f94cf6009b3213a9d170525395fbc2587d97d961034785597b58d",
"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": {
"blake2b_256": "e76e83675cd2b660ceadab384c17766cc90fe0a8cefaefc2f26aecf2d272fd69",
"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": {
"blake2b_256": "7e8f3d2bcbb69d90b89f39ad83100fe83c68848d6fb4e873474cea99f1dabcf5",
"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": {
"blake2b_256": "4902c762eb1e8b7417551c117a104328ad7f7fca0869027aee767efc16abc0b3",
"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": {
"blake2b_256": "8b2a6bd41de03268ed1d2ac85dde3085f100062e4c4134d847098a46c1236d66",
"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": {
"blake2b_256": "0229f393a68cd780c6310ff4a72a883830ae5ef982ddb088de036c7511da9fff",
"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": {
"blake2b_256": "e1956c29b86db596c345d3c088a9abd6b42fa7629c8f652f8b2682642c616c1f",
"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": {
"blake2b_256": "53f6bf25eea49e05d34a694b03cdbe9677a62141f3df4f384d81deb29f6f35fc",
"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": {
"blake2b_256": "967b5f529eda81ab9e78deeb3f5a60c4cbf9f2f138d9029fcb998b1259e50902",
"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": {
"blake2b_256": "14ea47fbd4c2fb2ced99957296825fe72d8cc7212617ea9de4b9b3237db14245",
"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": {
"blake2b_256": "ecc68be6d208a4d65a0f191542850d7068163e76a0ab66a2ed525897bf5b92ad",
"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": {
"blake2b_256": "67bbfa652b554b0ea04f97ca47581101abafb2afd4ac2b23243a76e23532fb6d",
"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": {
"blake2b_256": "f84ec590da806fa04f5ce19ba3e48190805c92ebcbbc5567a25090087d299e40",
"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": {
"blake2b_256": "e96e550f4591bfa358c56e4f8abfdb6d99d747cf20d22af3cd56956165f7be81",
"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": {
"blake2b_256": "e0c1110244b67ba6b2162649eeafc627e90f14237f2ff659091b25e3b6259293",
"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": {
"blake2b_256": "95eb7629df3681ffb6134e5a0540768c9d227b174551c30128a14b517d8dc5c9",
"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": {
"blake2b_256": "d1b942cec32bf218291ffdc5b54645e393b382cd84ceabcbaed9c1c6581b6b7d",
"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": {
"blake2b_256": "004a3a2c616e4d96d232f022a602c57afb44087b7022ca0425a4505ff2a92cac",
"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": {
"blake2b_256": "7327f93d9f94e54358206488f12eeaa244b4534d6e4c2aa1a24c6b1fe7528ca8",
"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": {
"blake2b_256": "0f3c306aa198637cfaa909c7c6b35d6dd06c46492528a8288ee6fcbf48afc95e",
"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": {
"blake2b_256": "743fa27028c78281639e83197e0694f6ac37a818bea2f697dee18e6a1a4caa26",
"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": {
"blake2b_256": "de19ce25aa37c996d7b157aab9b002949d3a2fb42eaee60fd5471db1a057ad47",
"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": {
"blake2b_256": "bccc4145eee8b0149a615375172ca7e34438688a008715d8a1a58c5918693672",
"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": {
"blake2b_256": "b2edf66e1484b4247a21db7851706dd6234fdde69f6a8db2731ccaee498e4ef6",
"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": {
"blake2b_256": "baefc56f418a73681e48683d647480690ca42a91c9091545be7e98ae5f4f43e8",
"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": {
"blake2b_256": "59b7dbad48fb9bab266259f0979f88ad61d028a0b70a16ceeb340ae946b2ac15",
"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": {
"blake2b_256": "baf059bead4038ccc3f42d2dfdcab43bfb6411684bfb0d0764948c778e0f15a8",
"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": {
"blake2b_256": "663feac06f68743e2654915650de34893391ff1006cd144a48655d2f75084e17",
"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": {
"blake2b_256": "c77382bd8ee6b8d9096ecc9c9d700e3404f5656b336379b1664ce7af1df48cf7",
"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": {
"blake2b_256": "a65b6b0de3d930fae2ef3a9af64f6cd7959ecdfecfd14cd6ad3004fac6d662ea",
"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": {
"blake2b_256": "8f706ed1452a0d724886ed188ddd884049136839d3fbcaf36292c245ad7ac290",
"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": {
"blake2b_256": "bc6ce2e9eb6c3d6b6a9adc938af06da0cc86c12bf272c9c9e0691db680f11c76",
"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": {
"blake2b_256": "cc8dd9d720f2de9c90b2776098da1e4eebf8c578171946c28a9ac68dcc9e6551",
"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": {
"blake2b_256": "60abb19d90bed6e4dc932d398b5a1583dbc57e38bc4bd14532cb8b29e46b9212",
"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": {
"blake2b_256": "cf3e0d1129bd6cfe0676fac1b0e6ff97c26f72ae29cd95c7c831770f9352755e",
"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": {
"blake2b_256": "765600db4a12cc5dd49d5eb60e5fe3878bdf5b4b3caa9b5ffc07a0c184b4a6d5",
"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": {
"blake2b_256": "bc0f6fced0461aa12e75731aed06e40c46bc8dbd5170caeaa74fa69d3c395fa0",
"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": {
"blake2b_256": "351ad94737c2170554ce9f1d2189ec4de7d4bad8b5e94b2ad48f77d70f6a122f",
"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": {
"blake2b_256": "71938dc3bf67c6e04a4ccd9cb907be50c1d13060ece0f7bf1217c2d27f3bfafd",
"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": {
"blake2b_256": "f9570b88c54f327ecb6e176a8d25233f03c9907c1679f8248f2e481532e20919",
"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": {
"blake2b_256": "f463ad9ab1e6d151252462ac36191f2a9a728e0e90ed35635a042bd7d4b13515",
"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": {
"blake2b_256": "f149ac07b473443361208ed82e4b6caf5d103161c2c71b01b6f8a4d7c019eb3e",
"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": {
"blake2b_256": "371eefbd0fde15a562b703fa705edec255dc1cc4405c039cd3ab48266a81f8d1",
"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": {
"blake2b_256": "ca4673e90531eb27fc69756910f4cf4294f2631b4e214fadf9b0a0f2c7883746",
"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": {
"blake2b_256": "ebae935f456bcae96d00cd78ba6e1a28580702b30cf1cc14ce1f1067b1945095",
"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": {
"blake2b_256": "366fca9a01827ce5d8689a3d6b127aad8435588032b8d2cb847e980f7741f309",
"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": {
"blake2b_256": "8f31e4f21953634bf4b505d30a415de0df6ccb7ca481e38ebdf8451389903933",
"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": {
"blake2b_256": "f11ae6090179b3c272c6e437cc6e0d78be6220727a7bdc9ee74bef214144c5d3",
"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": {
"blake2b_256": "cba84d90644b60a166c7389b89e16dcb97b3df88a748c419bba5692417fe090a",
"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": {
"blake2b_256": "8d4c08e5b8432f87a2e35e4cf1b947859750d95976f129db335e91c4e2f888f2",
"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": {
"blake2b_256": "ec01cb15675d9bbca54f67cc176bc098d839357bf5053ff737860c4c02083098",
"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": {
"blake2b_256": "804eb6d4a137d706063ba7e91609787f42ab8d0d67e324de7c49cc2680b7de69",
"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": {
"blake2b_256": "bb6e4420a6e254e5957c428d37a27eea3f6510d1a57733362da60041f37d69c5",
"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": {
"blake2b_256": "22ab8bb0a7d214a30238303c6959ae3d8a06fbfa1e2f0047be96a595ff376852",
"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": {
"blake2b_256": "031586ed07661a1436077e9da1f5fc48d5abe4350dc082b8384155ccf3b12935",
"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": {
"blake2b_256": "f3c441dc17ee874f0973096c3aa79c6e9b115820bd707cf1018b6b0b75c11fd6",
"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": {
"blake2b_256": "6159de41ce812acce08b24183f7076764015b721fbc7025c01ae6708c1ae9084",
"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": {
"blake2b_256": "fed7df8b17f2f2ed460ad67a35656c5e62d28ab983bb0f55c136ff58f5ace395",
"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": {
"blake2b_256": "1a62b44f988ed2dd993b803ae9c08a07053333c592eb3fdcafb96c63c6accd47",
"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": {
"blake2b_256": "0f088c19f170797769627a73bcba9914004e84a0ee0bb344029cb34bc003390b",
"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": {
"blake2b_256": "cf4abec3705f07294d9a4057fe5abd93ca89f52149931301674e1e6a9dd66366",
"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": {
"blake2b_256": "05b5881604e573da60cc8c9674a049fea97bb0696cd240a1eca3516327e3966b",
"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": {
"blake2b_256": "6cd141f69670e35b703c9a0c4927197b0b73e2d2f5e863c14dea7ec71a624014",
"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": {
"blake2b_256": "daba9f67e50a9fe0b9a0a9a8eac5cca7a794f7299deacb48e91878bf38cad4bb",
"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": {
"blake2b_256": "137f1722ce2352c7ea1754ffad8a193febd0129231b28508dae583aaba7c55a2",
"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": {
"blake2b_256": "7a29b99c0574abd9f92632164e95d643262b8bc6319a5e78fc6b2b1143defbfe",
"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": {
"blake2b_256": "2bb8f8331846fc582bb8c24c0425cfa32bf5d00446be080316cf2a7296fbd6e0",
"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": {
"blake2b_256": "833b3ddadde2f3b55340315bdfeb1a7287d0cf3030e6f87010b6def4606f63c3",
"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": {
"blake2b_256": "340099528c6d9af5fd7ef53eafb21732b8e32af357dec20d19900b90b2feb9ae",
"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": {
"blake2b_256": "4a81a73812ce6b84d3d3d151333e357575ba3c340df820f853ec534076c66aa4",
"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": {
"blake2b_256": "d6a1588eabb1d227137ffaf5de3b7ab35b603c469d45542c228abe3e70a3abd4",
"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": {
"blake2b_256": "d9e5c44461bb7574feaf40dec59b8c6cee2845ff91b33caa5766bc7ae23e75a5",
"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": {
"blake2b_256": "1cb6445d55221b983c28a21489a626c537810b4bfb9bd8639934571454bbcd21",
"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": {
"blake2b_256": "38db8cff056477179e480142c5c9ed673489f91b7e65945405bcd1449f8c2db6",
"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": {
"blake2b_256": "9092a8d6021aeb69f5a9e11d3a41bbe60dbd1fd0e87df736be53645da458943b",
"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": {
"blake2b_256": "84c0e4c7f005b1b133f8488b63177a6cd4015d68666358e1cef87691bd929440",
"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": {
"blake2b_256": "61fa359731c63e26b1ffe53b15e6923887f77664aac0ebe3c644679da2eff6c7",
"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": {
"blake2b_256": "1541593fa01dd61fe7dbffe38eb66dc0e68753b2b220185beb6b06018e90e8d5",
"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": {
"blake2b_256": "46141a6cf317e8981a50898e7a272181f83071375b9998ba242ad13f39b9455b",
"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": {
"blake2b_256": "5495446abee8a32d82ccda7919ae439d3daa063f7609c6947cd3705116361e22",
"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": {
"blake2b_256": "c86624ca3b6287bebba47fe1d7e492f8386e14f86e8bf5f12a5bcbc41b7576a0",
"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": {
"blake2b_256": "4a489b3259df0f5ad513a845f817a926974b7d0f10c9bf6147626ded893a9e8d",
"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": {
"blake2b_256": "ec54c391da7c17a45b4df90ad3a30876c71746751f86cf444394ebeac0ac7e3a",
"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": {
"blake2b_256": "72ff2eb29a16fec66964816d62d010e1310940116bd6bcd4de5b1de1570739d6",
"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": {
"blake2b_256": "46de47ffe56f3147a6e9e424a229eb5818aca20dcac956dfa062a5659dda2d5f",
"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": {
"blake2b_256": "f6c843cf17b295db321159dabbb96e0eaa601eb68fe7278e2de3ce9a832ec15a",
"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": {
"blake2b_256": "03d6ac965bfde0a2b334cdccaea93df0888ef9484c402a85a6117052552faf2e",
"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": {
"blake2b_256": "ae51867bc01048702be387c0d4d534da261dde9625e9f5fb4b24fccfd63268d1",
"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": {
"blake2b_256": "74418d371cb7c9a367c203dae4cdff8557c75bc073af638848842811818980bd",
"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": {
"blake2b_256": "f843e23bfadd4fe8107c9c26b41ad5d52d7dd494d366985920269c48af7cd104",
"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": {
"blake2b_256": "a3f22077615f05af614cb1b7b2d77ee51c3e9f9ccd2d6329f3d6670b3b2e508c",
"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": {
"blake2b_256": "781e10a4e34a9b940e0a8690d26206ab6bd89f00da1352706a57186aa29fa5e0",
"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": {
"blake2b_256": "189f34806d8a15e20e7ee73d9ae53cef40760f575923c6531d4691b35af3ef80",
"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": {
"blake2b_256": "d8d284f0e40219e772da4ecca4bf700c15822a8aa09e809fc19d3570ece77474",
"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": {
"blake2b_256": "2d11a437d91690ad0e9c8b7d6fcca1a823f8cfd3d03b275c2cf1683d4bde1269",
"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": {
"blake2b_256": "8687f1aba1633f5886638d87c8cd2de4e931a3154979de35f6737c3951ef5747",
"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": {
"blake2b_256": "8729d8d4cc6b165f5e87e21af9fcde59531424d6e2e338260437cb24b95922fd",
"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": {
"blake2b_256": "b1b151380dc56ff3e7ce112706341796a3bd700b86b7a5dff49d52a116e88a11",
"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": {
"blake2b_256": "8cbda4779c719bb6370b93615e3c3e74cce6694d874453096b919938915c0b7b",
"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": {
"blake2b_256": "f1cc828ce95d4d638f54936bbd1f896a75ba937839b17a63a57c1c491db6c26d",
"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": {
"blake2b_256": "c9a3a746df9ad93b522e6abffa4af66e9e253e71456ba87533ceaacb5e08ed54",
"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": {
"blake2b_256": "7c6ac59b08e32a7dae0f1f68c9297eaa9b27e1f37f797fb00c81f50441c7730f",
"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": {
"blake2b_256": "e2f408e4ad924bb891ae322f0113d28f6ba7a291bbb3a55217e2449cc4c44a3e",
"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": {
"blake2b_256": "7462e48b2004443b26f5cf9f1399ff096a92ae52ffa0ba63f6c93cb4d9abdaf4",
"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": {
"blake2b_256": "fef286913ee1b0ad346f2076785f01cb577674ea2e9b1453f61ae7a593c8ff80",
"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": {
"blake2b_256": "8bf993f8393ff83575d1cbfef65ddde523d77c0e54ca7debd0c52bedf30e5a37",
"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": {
"blake2b_256": "64af9c6afd96bcfac0d9983fa741f3c75dfc451f7c142a1bde7c7d9305b902bf",
"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": {
"blake2b_256": "678747442bf8be3e7d493b3020f56c9fc26df2e2e43e540db531b657aa1df19d",
"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": {
"blake2b_256": "10178fe3e63dfef29783588adb2f21e5b2d563b7259b143b80ccda61d6f8ed87",
"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": {
"blake2b_256": "1eaf6b0b1e6da49e570f433b7f9fa9b2e9e7b2c2b39a3b1f48f0f7febd2117e2",
"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": {
"blake2b_256": "d856859ddc5fcf74e315b14587bf6779be367449fc57095e5734792509bbc3d0",
"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": {
"blake2b_256": "b80bfbecba1346d6279aba71418a0dd5dfe08e5bcb9f3926f8f1b7a6c81ac6d1",
"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": {
"blake2b_256": "9b3ab560a411b97203fb20b5eee084c1e292862b3092029d9d9faaa8714797fa",
"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": {
"blake2b_256": "9576d24ddad0cc4514d30a707fc1bce2babcf7c405f8c19f614a92b855845f18",
"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": {
"blake2b_256": "f11a77a25bd39313dcb6694548533fc9a98972ac8817a75dba9f3c8ede4ebebb",
"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": {
"blake2b_256": "2476f9aded6da0fd58c0a2fe3811760c655082d9e639990c85ca641e75136cbe",
"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": {
"blake2b_256": "780a42f677ca34f2b3ab606705c99c352751f78665d6855370f528d675a1376e",
"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": {
"blake2b_256": "5d4c3a84e99fc43813f61ddb1418c6188b0e366d91624d1dd03c10c1ae098d66",
"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": {
"blake2b_256": "c94d690ec8660a0b089b4f8494caa085aa711367bb63d0d12a0d42b9429f4e32",
"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": {
"blake2b_256": "7b1af64d5a09131b569e32eff33f01f1b0f4fe5ae320487b7adac59fd8e559b0",
"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": {
"blake2b_256": "3e0916dfa2ec77662292f813f33babc7b6a3b8ff4d506ba3af66effc1a4796cc",
"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": {
"blake2b_256": "100d21292e262d41539c1bf4bb4b44f1d4fd2cd4a422e7470677d9f82b936900",
"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": {
"blake2b_256": "d52ba99aacf3826ab276a45dc08554dfc6edb38c8d8d727b5964d28ef890c6f4",
"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": {
"blake2b_256": "6bad3965f81e6b9f760291a405d4192c8eadb79d78995a10ab23690b7419cdc8",
"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": {
"blake2b_256": "bd1bc42f332dc3b235a8f37c182404041c6dcd67ab6e18b66a9d9bbebf8120f0",
"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": {
"blake2b_256": "f35d50e45c48f69f80728704689fe4fd58a9cff97a26a2c9451af01510116b8b",
"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": {
"blake2b_256": "84d8acaa76e5652850041c24c080cf5bbc9bf829040996cdc2df02e42199b119",
"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": {
"blake2b_256": "6fa370986a7ca4d15365a1b6421c449b622f396db33823ca34225da0913818bb",
"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": {
"blake2b_256": "2ccf03760d31e1605dd89c91b7336adb553a97d587563d344e148f2ff150eeaf",
"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": {
"blake2b_256": "853fefac030a5e89c0edeb3c7840bb95eb4ddfe2d9fa50fe24fad43d93811a3e",
"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": {
"blake2b_256": "dcfc3fc36f9062ee6af43b265f6c40c2901a8f4163463a5bcf2c4a5998a78f27",
"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": {
"blake2b_256": "dd48308b5f6d3e38e49ceb84c41e1823992e1494ab034bd07caee0d159ae8010",
"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": {
"blake2b_256": "53c5ceddfb96f4e7cc94147e246fdbfbefd1abab57eb38f35b2082d2cb1d8eaa",
"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": {
"blake2b_256": "05bee3e5e24339e6b8e02d636b4d89a37095e387bcc71fed990a9079177ed0b6",
"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": {
"blake2b_256": "cd9528e629e5202a2b6a8bc9183bab40b001a17712529db46ed50f10f357e16c",
"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": {
"blake2b_256": "660e93b5655b21b769aa202b2f2d1bfce126eb0d16553522e0e9b3aa9cd2ea99",
"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": {
"blake2b_256": "e727746878e6d378cd8477c091f27629cc49143e271fd376adc547978d694301",
"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": {
"blake2b_256": "3205c3cd2cc3a38547ea81697cd46c9b504dfe1b4e693187006c930cc7b6dc95",
"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": {
"blake2b_256": "1ed4c1206b016b42a0b223aadb559318966b64ec27e5406bed79c36356e62082",
"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": {
"blake2b_256": "a6d40588aaa25c490229778b604141eac714be32f518fd38bd11324470cbc29f",
"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": {
"blake2b_256": "1a0249f43edee5b9d202adbb17f5c214fb8d8510c89dd7da68cb55109f732f31",
"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": {
"blake2b_256": "a93664d1f892465c269c4592b1adb3f0f783a2f2dc867c1bc26052a6553a17ff",
"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": {
"blake2b_256": "2c94c7a232590fb72d5ee8e77a4d7c1c5df169e2d4662a449f226d5f9ba81c47",
"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": {
"blake2b_256": "f4c34ef68a8897bbf15374d225968536b8b25a99aff265fdbe1a5f5dcf36ca66",
"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": {
"blake2b_256": "cfb0e3f0f7068c521d79b4ef9e28d28d13128b0f5dc64d08cacccba8b44ef074",
"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": {
"blake2b_256": "734ab1dfed480d53fd89d0ffaf629bb30562747000da5e305de7e608ff296833",
"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": {
"blake2b_256": "b6a85b61099f0f589588dfe1df20caea6609d785439ec51f9a923052ab39bca6",
"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": {
"blake2b_256": "856194b005f6830b27593c4a44bdeb6b83f24be4765d6d06b4fd75be4ead2100",
"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": {
"blake2b_256": "fa074a5c80ed52949a09c42bfbc8b1890c03aac9cac8ac140e13f0dbf82b50e6",
"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": {
"blake2b_256": "d88e20a5647132a6327d1fe20eeb2958ee1fabd5ee336b5e8bcc4470eaf066eb",
"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": {
"blake2b_256": "be28020071b0cd5cfd6246c0f369c005e1ff47a4d3db9dddb1b3bec42a76c42e",
"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": {
"blake2b_256": "70d87cb05be60def3db010a1f05127424636df8f460fa572d5bd4943228589e3",
"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": {
"blake2b_256": "8094c559e9d5db60110718e951b3b21ac64b1b325b7b117e77dc4812094855ce",
"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": {
"blake2b_256": "258622d6e20e13cb2a3066533f21b649c8486b5a1d313a49cec43c7e87e1489c",
"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": {
"blake2b_256": "a4e4b3422756dfa5d3827265bd2baa12355daf1fcd45e8a79ce85f1555b6380a",
"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": {
"blake2b_256": "16cbf838c519d58dd2ec0d2d79ec744e7f1e6b7ff8800a2f1f0b3e98b614fc4f",
"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": {
"blake2b_256": "027fc7cebef6a2760a3386b754a37cd9a93a192cbac4b08fe2fc5201c6279480",
"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": {
"blake2b_256": "4df465403f83ff58b383082d61c8bd5dfabedc67fcf144f395643810f952ec40",
"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": {
"blake2b_256": "8c6dbe7bc0905b8ce5ce02d5ede12af1e1cb1144818d0032aeaea8424e6de7e4",
"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": {
"blake2b_256": "acfde7493e4728da658ef04be2dace2f37bf5412fc4cff696c44ac8c009bce07",
"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": {
"blake2b_256": "e7f6a3476bb1eaf57f1a464f2179d2bd96399602b62a8222fee2458e7d7738cd",
"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": {
"blake2b_256": "755abf968018e2198469f830321b8595b09f48526fd276778bdb6d559bdc81ff",
"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": {
"blake2b_256": "bd72d5c5a4fc200c2d5a5aa54b62e4e2b2f7d3f8d0f1816809843fde7d1ced9b",
"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": {
"blake2b_256": "0d1724340ba63ac3d8d06956e36d1a1b0a02317093f35b5385065844db1bf73d",
"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": {
"blake2b_256": "94443676da1fc6b436363210c4fe69f588d3209e1c8f750d8278e176ff426741",
"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": {
"blake2b_256": "88bbba27ab2c7a546317245671180a153b0f7169b20f7b67196a0a71ef452e6c",
"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": {
"blake2b_256": "1076c086eb7bc55710a3304df02961c23c9a9f5064fd0c1a0e4878da73cce055",
"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": {
"blake2b_256": "8b93577274a15d9e836f103e84053a64793e599c2a6f63f1c57daff3d3ef8149",
"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": {
"blake2b_256": "8191fc8d8c5536dce0c89d485deef699b5b2db7aad065f0dd9cbd9e37abc12fb",
"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": {
"blake2b_256": "7aa8813aa677323098af15ffc03edf5ea542b2ff9406443a4f9797c5492e0153",
"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": {
"blake2b_256": "763106c2676c88bf239e20754e7acbe5c77c884a48b4ff0be712e15e38259cdb",
"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": {
"blake2b_256": "b92da9c63185c5f055546ef16b919fb11f33b51e8aaecd964d65c5ddb6a926b2",
"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": {
"blake2b_256": "376545623da61d18c16f4b62fe6e5e686a8b2966c67955d3e99aa25b31381009",
"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": {
"blake2b_256": "4859da0dda1989844b3b545fb1d8f0129be036ef490d9ba100f14d60c63b96de",
"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": {
"blake2b_256": "afc3d3c910d6ee2711e27b00a3e308a339c46b5bf0a6b157e39b85ac1883274a",
"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": {
"blake2b_256": "8feb0d63268466b030717aa0f1884c3644e893be97ad5d6adbc8aa710edb1bf7",
"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": {
"blake2b_256": "be95ba3802792c938f2b69e02ec879d38760d9ce8e83c63db22c57125aa77fd5",
"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": {
"blake2b_256": "02e5b02a290a774d28f54f86c65acad353c4fd3aaa3d242ba647da9ed877d33e",
"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": {
"blake2b_256": "efdae6b42b8869118123105c3eda7f39db62297c0bf4803b576a6b1165ba74a8",
"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": {
"blake2b_256": "faa88185fe6cd589d08043c48e61aac1709175d225db1cabfc47caf92b447cf0",
"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": {
"blake2b_256": "760546372d71f90bf566ef5be58649cf3d511025303c9629b734eada37541d37",
"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": {
"blake2b_256": "9043a431bee0903f36a44c291f32456dff11436ba5271869cee28cba6252924e",
"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": {
"blake2b_256": "d41b5f6262601f842a8a2b697cb0327925c5b4e144cac9599cbc5bd462841a92",
"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": {
"blake2b_256": "5edff9c58d89a4342326ec5f6284156d72974d28b3f09b9d3122594efb75042f",
"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": {
"blake2b_256": "84238aee4c040e77bc542830029fcb77cfdc42e2ae5940f27a2286b7511c112e",
"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": {
"blake2b_256": "8ad85ac7411208a95086208fe2e555b42c30b4f7732064fe882e6dada107fce7",
"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": {
"blake2b_256": "3f212703e125dbabc31b157264720abb19f65568df0c172c5350eec3dde43b9b",
"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": {
"blake2b_256": "26a77bb00f7b1d4ded4b06854278985175dfd0e513e279fcbc415e7a5f32164d",
"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": {
"blake2b_256": "be27ab223df951455218528a1acc73f0c77c69ff46cf719de887c031cdb86a9c",
"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": {
"blake2b_256": "0ee1128acb80d8a1eeb78c237caf81b6424202afe8eb4ad8c8fabc874669386a",
"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": {
"blake2b_256": "22b4565faf69b1f88e3993319d80254634e6365141598ab3e9308f585190d3c6",
"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": {
"blake2b_256": "0e46a0ae472df4335383966d8a660564c6d648505e736adc4ae0dda688533b90",
"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": {
"blake2b_256": "c77d13e7f6fcda938b65a0068ee9861a9a71265656aed30db450401029b20cff",
"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": {
"blake2b_256": "d760af44588ecc281733870b0a91555b69883aab9178d970def69fb57e632247",
"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": {
"blake2b_256": "ccb4e4a16e83e115428869cc58d5e52c4e8f02a1f192a9102906f531b1553a42",
"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": {
"blake2b_256": "04e0edcf66c450f682433a74d7ecec6e8a833fc36ed582c44b499ba5aa10df49",
"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": {
"blake2b_256": "868e5732497ca95f3841d5e5ceecd7a997c5292d331e29948bd612a993e857fe",
"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": {
"blake2b_256": "1fd4a85e28ff689ed3268a258a79a26baae8ffaab38996c683b2e116e6dfa8a3",
"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": {
"blake2b_256": "2e723360442f0d0c93aa9592ac4834db07f9a89deb212a3e227971fb527ce153",
"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": {
"blake2b_256": "d152f058334211e1227ddf1e2e447f9b5f2ca0da1364343edfd7afe436d547dd",
"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": {
"blake2b_256": "94447f5381a6846a3b2267e03f851aa4fd4b3a02cdfc57c1ee9759ca5223f0d2",
"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": {
"blake2b_256": "911ad74d893d14d47a72bc7fe07ec48ed20d823bfd9f9a543f8644eb016aaf47",
"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": {
"blake2b_256": "cc2942e707124c4cd4d6a8645d0b4126c7d545c4b9350c928f62caf1a69524a7",
"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": {
"blake2b_256": "fc5201dc4ae27df3c92128ba051f86852d4156948b88fb90ea9ed14713e32273",
"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": {
"blake2b_256": "1ba6099348350ee3d9c8000647d41554caafbb78860e8b65a1146d4f578dee51",
"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": {
"blake2b_256": "54a20d14b66bb7da046c7a1132744a2a52fb3b6a1c96a05700f83557f2ec9c9d",
"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": {
"blake2b_256": "3deeb4d6bbb581c6d518ab69e47ae086ff23d084423ffb0fa38fb3bed9bee312",
"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": {
"blake2b_256": "3e5c5e4c1b720a0b81cd33cc6cd1333e918845ec7e3bba44efaf5c69fb6f5662",
"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": {
"blake2b_256": "f58bea20b38d6da50245709f5fddda7bc9ababcb1e3a9fe56ae6ff9d5cfbbf6c",
"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": {
"blake2b_256": "b07569d05eb8a8c7d3f8698b5fb3c9b3442f234e9678ecc8b6b9c858b3fc718f",
"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": {
"blake2b_256": "7b63e16fd413a99e30868dc883fa0989d6b9f3b0afee0dd2168792930b04c092",
"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": {
"blake2b_256": "350140ea9ed6037f978601f648f8a89e471f613b33cff7819567e3cb65167702",
"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": {
"blake2b_256": "5fd5e79259187e41e851a238ad150f66d2a433a3a4315c114d70c10ced4d5be2",
"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": {
"blake2b_256": "060d20d3d3abf65638e229c50e639c9b4fc03d0be0d2d7c99d85c3a48b0425ff",
"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": {
"blake2b_256": "12914f6e59c1658c0fcbb491933140842d39bab8bd500add9336813da0e3f046",
"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": {
"blake2b_256": "2ee69175733f42cec4f2cd6834564517f2f6260e27dab5edb75afdaa66f101bb",
"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": {
"blake2b_256": "fc5ba8b6ccfbfa7b1172756e5ff035332e099a8bc84d5e58e217ca0ba536f614",
"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": {
"blake2b_256": "06aa389b76467638d01674c17a545c1101c45a6f17d64997785bf4f076631996",
"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": {
"blake2b_256": "8b73d438f79543da53cf6abd570e7de5da75b12bba3e4a7b7514f049c245bbc7",
"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": {
"blake2b_256": "3cd874e380eac068273391ec1e11eea263fc7747e700d942c7eda268f693794b",
"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": {
"blake2b_256": "0315e910dd67933d39cb45bc94543d546646e36177f3d35795a190f64c5a8225",
"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": {
"blake2b_256": "549a23d9d21fdfd30b0f24900ec8051f4334251fa9214ff4f1fa258284319512",
"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": {
"blake2b_256": "c6af03d71172662c62f5bb34dcb4566cc914d5746fc8499312f89447ae145de0",
"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": {
"blake2b_256": "729d1e4194c08db81d32c56b7462ef32992a2a5c431b69e73982a04810752316",
"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": {
"blake2b_256": "ce988c4f31ccdb2ae16c2de45dc8facf74be3b3f496c67c4a8471991d0ea636d",
"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": {
"blake2b_256": "ec34d5f0fb9b8b435b14f9126f643e17810ab8e10e41c1fec2a03dc4370c22a0",
"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": {
"blake2b_256": "249e9e7e8955fd2db59e96bfe7d9da13b29171772006af0edeb60851788fff86",
"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": {
"blake2b_256": "4faca018334fb3302b69aa1418fc06208a6ebb13af4694cdd706fd43aa80d3fa",
"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": {
"blake2b_256": "5a080a3d40aae8123ddc741b57db747cd620f12bed23411ddc612e4faea58588",
"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": {
"blake2b_256": "1215efda8668ef375a23a524f3260efea0a06ea0ae92a04c9064f8dc6db21911",
"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": {
"blake2b_256": "d2cd3dc56c613082b8bb5c1708ff6e176e74fb517b19c12526f80493a58539a5",
"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": {
"blake2b_256": "a03258f95b8a6f7e3634cddfc2a5a16596bd3d75d6680d3a06d977deede63e85",
"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": {
"blake2b_256": "b82d05e6723bf80bb754724ebfbe240b1fd790da8716814fb05e9254f9aefc4e",
"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": {
"blake2b_256": "06043ce26cd7e86b405f21c0e58c098741f725c30fbcbbdfdf84bd4653c5b84b",
"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": {
"blake2b_256": "7eafb2c6b5939e390e29c5a12e74a344bbc56fc866e3b68c05a7d7737e9006d7",
"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": {
"blake2b_256": "8ba9fefe7ba005f59f08a0b74f6e62638d259e05d376b0fa267f099a3643855e",
"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": {
"blake2b_256": "f830d923097fb66aa59858f530b2525732c13249d36223ff8f22d9d0ff4f58f1",
"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": {
"blake2b_256": "c0b9853b158f5cb5d218daaff0fb0dbc2bd7de45b2c6c5f563dff0ee530ec52a",
"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": {
"blake2b_256": "800a06165dd156dbc9f9085305cf8283d7ca57d8ec53c00666fae601459b1539",
"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": {
"blake2b_256": "48056644bfd65adfc758e324fb9d1c9b4dec615b31eb7931feec770ef707b426",
"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": {
"blake2b_256": "4acce70c4c378fc979846efaa81f6546e6fdf3742bde021fd069a2ed475e28b1",
"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": {
"blake2b_256": "477854753a87fc9e2f3dfb934575a179c78b46b078e465608e434a481fa79dea",
"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": {
"blake2b_256": "e32c12f69cf976cee9b61a5e59c112986caad92a04a9c6524a51990a6f795ceb",
"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": {
"blake2b_256": "ea8130582a4205973fcf1129c2e65c82e0ccea750fd9c901720bb204a2810077",
"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": {
"blake2b_256": "291b46c9e1cf502c27cbed066511a5b54b72e654eea7b7979ea6a33f1b9f686a",
"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": {
"blake2b_256": "988e455d93daf16d51b931af3d9e3b9aa4752778d96c47cfe3c65c2c3f69d178",
"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": {
"blake2b_256": "eef7af12e5ae624265dc74913233c2ed4691b7ba59b9afef8593ccd4594404c1",
"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": {
"blake2b_256": "144ab2a52e453c609f44031cae1c66abd7b51d8098356d441bfd1fbb8ff30c80",
"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": {
"blake2b_256": "796e8a1a25fb6587349eb3225d7605254353377d84228600104575c1fbc44b80",
"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": {
"blake2b_256": "d28197465ea447eb2aec9acfd05bf994ba85bc6e45eab89efc2860c3585a1af9",
"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": {
"blake2b_256": "0246c594325d6d1dbb892fed195cd28bff7d712f64391944eb2991ac5afcaa62",
"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": {
"blake2b_256": "c6715995bf82b8b1726a7c19863ab908228d20e1be57df06f0da9ec662b12d5c",
"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": {
"blake2b_256": "b09cb4725f337cdc93105a06110f20c81f7515fd84e3ad16f63bae1f7ed1d168",
"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": {
"blake2b_256": "77729a645cec0001fc354ee9b9f0c5f407c025544eb007115b883c55d226a2f5",
"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": {
"blake2b_256": "d224dda181f9065e0b9c7844fced245337ad6a1661ec0c36a73a96a161c80141",
"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": {
"blake2b_256": "d7c1928755fae3ddf1749fb3e0978ce61addf17c9be067c9bc5cb103a953f24d",
"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": {
"blake2b_256": "618979682bd114ebb0895f3201687025aa3b3de72bf2e8cb15569e2597034808",
"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": {
"blake2b_256": "e0edbfc0728a0fe82d5fd312a499d54be6e0f7ae407cd63e584a66fcabdfe2ae",
"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": {
"blake2b_256": "3da4bac87e532a2717b39b4e1ef5449d6ed568e1fe997d775b5f19e3fcf46c1d",
"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": {
"blake2b_256": "5dd6d6c5c491bf8faa5e78b2b50ce6c0eb6ec61fbde890578e36eded7df85409",
"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": {
"blake2b_256": "23b77e0d6bb71cc83693ad08f1134208c5e7bbc746eb2abbf32ebbaf4405faca",
"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": {
"blake2b_256": "71b5efe8637ba675385ec1afbb88f7196dd2e64b26e10f1e055087b3618d0d77",
"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": {
"blake2b_256": "a0077ec504b2b8c2885df4b924f755e752334dab53ced095062ec456295f223b",
"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": {
"blake2b_256": "e7ddb038eb1a72d94bbe2a748d37fd1ac94e9ba4f2b65676e89b3deb8d515560",
"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": {
"blake2b_256": "ee7cbda76872c644319b9207830874cce22d2fdc50a22853221a3c7f80e9cd18",
"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": {
"blake2b_256": "0c633824938eaeb734ec4ee31e48e48b6b6b02cc783900bf3488f8635a5fc475",
"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": {
"blake2b_256": "abdfa5f42e1daa675351e5277e993d607309b616c6e9617df8e7093962f3e797",
"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": {
"blake2b_256": "3e48eb899e2fc0a466cf0211bd63afbb37cedfbe8db68eadac6803f1a0623050",
"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": {
"blake2b_256": "e074ab3ed2edd1bde357280048284d37e8e792fdfcd1e6b722a68f4d72ec003f",
"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": {
"blake2b_256": "80839d556b380512826cf06f45436f4ff8aa574266fa3c7111ff1756c4e1799b",
"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": {
"blake2b_256": "e9e9fd8124189715691deeee9fd71cdfa400f7f33da32bd3dc15c92c8dd726db",
"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": {
"blake2b_256": "534abac1f577bb7652dcd3438e66d772d26428d4f6fd5d7b84c7e911692bd79b",
"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": {
"blake2b_256": "d7426cf3c3fd08f55ece0eadfdd4b5fb146503de0a1a383f354c65c4c99cd0ed",
"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": {
"blake2b_256": "f69bcc8a735cf2e1fc13cdd7b3c00f832d66a6bce33e22ae8e0dcdad1726589e",
"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": {
"blake2b_256": "d81b3f7063932388f0a03b2eebd9bfb8fcc9690a2138f79cabc374da80d8faf5",
"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": {
"blake2b_256": "0bbb88d215b3e3fc23709cc451be6ddcc5f3be9b794b2eb1fc55b5484c70100d",
"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": {
"blake2b_256": "d8bfcf0908c4459ccb1b6ff2f5d7e6a3c8032455c10bf84476449b0870fa218a",
"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": {
"blake2b_256": "1c4d267b1be26b4356f39668cda474bf1f2abf242fc02d2a7679e35c7f2bd142",
"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": {
"blake2b_256": "f514696b132fc652605ec5f9c0c04954b5a38a43938e067152ee50869c4d42ba",
"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": {
"blake2b_256": "1517f069f60fa98279bca7745ed2d4ac6eabe0e24254ca1dc9dec9a4af94cb1d",
"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": {
"blake2b_256": "d79a42dae8a8d60943d72384d4763bfe657d9c6010e8da2a128ebcabd88248c0",
"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": {
"blake2b_256": "d683d4b5425c1d9086af7c15f12b5ddfe918052fab7f04aa747f578e4c676dbb",
"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": {
"blake2b_256": "b0064a328021354e56a18df1f40a26b58c76e2b4c03edb1fd8cb68140bb58062",
"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": {
"blake2b_256": "f2c175f6a351573fb7060c4c49d39ce63527e57b6be353ac4f8df10ef1602b78",
"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": {
"blake2b_256": "07c83414a037164c8b86bca97923a2725331b7e8700a841f822a3733dcf47bee",
"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": {
"blake2b_256": "4ab0e3fc72612af3aa2faa1fea541aca1f1dcc0b81110dc608678d5d11ed378d",
"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": {
"blake2b_256": "048199e2d8eebe6427ad80db12d2849bb3ced210e65f2545642d69c2cda1d344",
"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": {
"blake2b_256": "30891b337187b16e2d3d05fa34e49c9099abc5acaaef0baf77d98b7f7c9fdf93",
"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": {
"blake2b_256": "1b707b30fde85f3a9df4b07cf5154ea636d5f5229cd794f29a2586efd466c72b",
"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": {
"blake2b_256": "8c06ac096acbb9909c6c64b682bed5ecb53a467a39b9d0b0762931d64e32e7f6",
"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": {
"blake2b_256": "ea56f55f933424f406e820f431ff9c3d48f8db2d998dc6dfb5b42abc5b09574b",
"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": {
"blake2b_256": "3fe6fb5152ec8a80147e1520a130a199f05df129a34560655be50bb7458b4e2c",
"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": {
"blake2b_256": "4122e475c1184a222b65308734f766b9a72310a46c7817d394f2dbc5d8dba7bb",
"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": {
"blake2b_256": "857e209dd20b805eefc4eb5573837df4470a35b2bff0000addc4d93e15d32004",
"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": {
"blake2b_256": "2b8e4fc05bc20a18711065f3269b1ef0491c13ec4c7518cb48e2f1209edac225",
"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": {
"blake2b_256": "2aaff96e0271eca37853c84f14503c8316519f2ae64af045494d65ca07a025ba",
"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": {
"blake2b_256": "677ac61f66a0106c58dd210b7fc4d2431f5d0b820a9d6e665d3b2a14a73d9521",
"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": {
"blake2b_256": "9e00669e9378680d13e2744f4c6bf8463e82f54bf999c536a38622360f987f5a",
"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": {
"blake2b_256": "bf5ce488421f710c352627955644474c279d1ccda07a286555a863c3d257ff48",
"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": {
"blake2b_256": "44ee52b2a31bea7843f0ae8446e07bca9efc9b2c5c3677807502ed4c864b7532",
"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": {
"blake2b_256": "8257782852c4ea3126bc20b7872e7d3767c32b6ba1c5b2ce0fab635c0288d3a7",
"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": {
"blake2b_256": "dc1f6a64aaca95c84b278a4d5296b7464ad0e5d4c4d2ef6abca5ff2f17afd309",
"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": {
"blake2b_256": "a31946467b3eb650782c48ec9d260c044fb4269acc17ac0d8c76c4fba98cd251",
"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": {
"blake2b_256": "22a835d72252c92afd5c9ddbd79be549345e749601ff8051e9ac0c5bcce9b405",
"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": {
"blake2b_256": "bce0b1be5df6735626f4ba1b44c3c46e181ab9c9e86563be67c4df84e070a4f7",
"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": {
"blake2b_256": "8cbe1dfb5198bea71f6f0246d86e3b687bc633f0bc6aba595cd2b293249d80fc",
"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": {
"blake2b_256": "5f9d95a4b69daf70db74c7fd5e4986a45a15eb6aed203e6999ea636b86e6906e",
"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": {
"blake2b_256": "aa55b128e6118e7c38c3bb7fd7bcde65dfa03cb36af19ade7b7feaaac04694d5",
"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": {
"blake2b_256": "8a4fa5f93d89b0bfef083531b1d8fe5bf67c760d9b7cbce4d2f4b4cf74bc511f",
"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": {
"blake2b_256": "bc6391cfbcc53da74fd7c09d8f960e56d678bef629169e1ecc5d99cae7a4a6ee",
"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": {
"blake2b_256": "37c58a7f8572cd36160eb1e8a14a3ef435bce4a6a2e3a39444c9b67bac982b41",
"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": {
"blake2b_256": "a68c9e95ea4cf30e0d19ce82b8cede2aa155047c2191288be494fee4c5c1eae5",
"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": {
"blake2b_256": "72e5f3a962b8ffe5df06172e367bb4c051f67cb6cb17942dbd157b0be6c22e40",
"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": {
"blake2b_256": "296f23dedc5d292f691f422d686af4d82301b48b5bfc545b2a776a1f5ed39dff",
"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": {
"blake2b_256": "9c0f156b3d99cfb5690e54d6a7cb126ee9bb002c80658f94ebb430e7ac9f5c80",
"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": {
"blake2b_256": "38558b628ce2938f52c0e02719c58fce074b96ad7b9fdbb5b4d64c9a2bfe0b54",
"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": {
"blake2b_256": "376836776d8bb943eedd24b8b7aeffa34a8846525004ad519232172690970aa0",
"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": {
"blake2b_256": "979eb28418de33c51bb0b41ac56d43eae323c507b7b51cfec6a27e6c0f5bcfda",
"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": {
"blake2b_256": "899d9d0bae7b0b2724692ed933df88b68969d311301dcf42a5c22ae65cf5ed28",
"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": {
"blake2b_256": "4d231b379a07dd7b0e3862ebc39c12d76cf887c4d2ffb5895ed4b2838072dd1f",
"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": {
"blake2b_256": "13b9d9f5dfae687446f89fc6072d77fb28e5fc16df12b783eb8b9ed3d4d5d33f",
"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": {
"blake2b_256": "d4aa435d89a25490c7fb717f4270ad347cf31ef265b366ade7d4a96542c7ea91",
"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": {
"blake2b_256": "13d6a99b55b1ce56f8628b5c3fae109b4c06b34fc8e054b8068ce11ba78711ae",
"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": {
"blake2b_256": "11add663101a30096556888b8aa2b9d5e08f507efbe190497734563ca9f7fc1c",
"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": {
"blake2b_256": "7e80c7344ebab5113fcadbf36e33a7bde8641bea5a679b4a50c80aad5d391f15",
"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": {
"blake2b_256": "a665c161172c00f29a243ba6a745d7dcbf8b1193b005588f51b70d1be6fb666e",
"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": {
"blake2b_256": "22b56f362cfe44c066a3d65ce525cbe804aeffc1047147b30e3f0dc27c3d5ae9",
"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": {
"blake2b_256": "c865647df759abdd026e16b43409482dd5262ed60b59c9cc3f3d0f56e564f5ec",
"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": {
"blake2b_256": "ae773c72e92ad5cc0c83b7a1a4ed0dcc4a1ce12a866621fa85b3c4bf96e07e40",
"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": {
"blake2b_256": "308e33b56b6b5627d2670bd9f39e9d84c0c1b7cffa1eff145b01a4f9ab81389e",
"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": {
"blake2b_256": "beed5ad6f782858f6c4606672ccff91413696051c12fda73d79646863bc21837",
"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": {
"blake2b_256": "175a32c67103fb5f02e6cec61fe99d419af2a75f32e7c7b4209cbb22702b1cba",
"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": {
"blake2b_256": "c4f2dc336dca10d6eb08a041ddc389d66faf2ac4551e93dbb73bfc6f6157ecd5",
"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": {
"blake2b_256": "dfd54ee31ea70436fa3d847c69743a2e7612719b217f4683443878b95f4d5194",
"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": {
"blake2b_256": "214702e1198ce11c78b041e0580db53a6ebee8865054cc82c5498fdf042e7fb5",
"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": {
"blake2b_256": "cd2e70ef8e551bc450427dcaae811e9df938622041e33474b40b8f111cf76e3d",
"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": {
"blake2b_256": "71529d59884cf19954da38473c45423103e843b548e761b4e5917786a3a0fa44",
"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": {
"blake2b_256": "426bf335d9fdf38e009716c31604228309115f1a4558c5cdb43c86ef55ffe0c3",
"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": {
"blake2b_256": "f8fa1fdae3003d098c43c2cf43afeb50d3bd7b534b2cebbf3a3fe3e63424a004",
"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": {
"blake2b_256": "87753e9ac61c7377ff1b99335ebec4658776a7ccb26bc4f5c7df08baabc83839",
"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": {
"blake2b_256": "e11c90ec5aa2502d84c2feaf23f48ffe517e5b3198e8bc67726b0475a687cd68",
"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": {
"blake2b_256": "e625daf3048facaa873c02b2f6128336ef63b50583a23cc6a357439638c9dac0",
"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": {
"blake2b_256": "fa2376dc79d99fec25f8679b1d6f8d0a13b92968060ee88cc0f33abbd5f743ab",
"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": {
"blake2b_256": "d96041babe2b1d3d2f37e2755119f0e057e014c0af7b387b49dcef55f051ec23",
"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": {
"blake2b_256": "57ec26a0f8180b2650be0c985eec549439a1ee7014914faf42133d54ecff248d",
"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": {
"blake2b_256": "96b909facc1f3e2ff55cb306e8953ad4cfd314c11b15330fd19d59d49c5d5876",
"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": {
"blake2b_256": "bf41c27adfa0d34a522bbad4a9c6930fcb5f24ac61c5380b8f26b861751a8f71",
"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": {
"blake2b_256": "09d72bfd6c69584096992bcf78ca3f00327a893237f33fbd55384642ff187fd9",
"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": {
"blake2b_256": "3945e2504d1f919bbda8f1005efdf67750731dba33fb9c7b1f24bc43711cd359",
"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": {
"blake2b_256": "b9739f64f5e69e1ec55c65256db9c172521cc3f9af3d910d47453952dc61c06f",
"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": {
"blake2b_256": "234ccb7aecf693d22becdfda23219a9d33415498d2456f944ac9afaee726b2c6",
"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": {
"blake2b_256": "2156bc3810132a64f4c59083c8bc4b666d32bcf79a9f8357f99654e9feab2030",
"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": {
"blake2b_256": "7c56c8909319762bb33bda7a1cc28e1fee839a6d09f2fae343edbd52c1ec3894",
"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": {
"blake2b_256": "db5c5e850709b6aee4d6aa84a3954ebb9de52b1546c155fa357c120675d66120",
"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": {
"blake2b_256": "96c537fcf958aea64735cb68d510a56288474d0e73ddcb8c40917f26cd0aef78",
"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": {
"blake2b_256": "c0c7b148c8efd2fe5ccbace00c787a149e0a9b34d0ca6090b43423efacec8241",
"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": {
"blake2b_256": "795c7b6c937a72e3bae9e520ff3f79e3f284639f1dc82409aa023991f332a103",
"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": {
"blake2b_256": "83bae9a4ad341a9819e944d1fa691026961b46872217886b40996a7a76205c5c",
"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": {
"blake2b_256": "e0748864287e06c501a4824c64d62a752cee1305f310da3e84e2cc800e9b1d04",
"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": {
"blake2b_256": "7068c7226456a5e681ee1b308ebc4e352058597716d3cb9f25d4eb1efea190f0",
"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": {
"blake2b_256": "11d64a0348dc56a1222e8705defb3e6e7ff5fef9dc2f8309841cf5aaec8819d6",
"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": {
"blake2b_256": "7cbe3faae4d89e3bdf7e2378287a21b90652c58ae8b6aba67d8667b2bd7d3604",
"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": {
"blake2b_256": "2c97fb39915ea14383305d3daec99b512c34443de6d5bc0e8377aa183df906f4",
"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": {
"blake2b_256": "43ed970f9bdc8b4c3abf2a0ef56df2b90346f7109e3be3e5138d2083b561a499",
"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": {
"blake2b_256": "df7912dd547a65d4b9d66483df7331ec9d31ccf1271dbabc2f62334f1a3cdd0a",
"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": {
"blake2b_256": "e9802fe69c7d1412c2d6952b973fa8c1a8a1d549dd75637f7ae5d95dcb5f504c",
"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": {
"blake2b_256": "d39d92195f0ac147067ce3d88ccb6252a28215c19859b23702e6581e7d7c9315",
"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": {
"blake2b_256": "c4ca20191794212c2495eb07837b6154375a155375d7be24fe098d87ba04247b",
"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": {
"blake2b_256": "48873594f2c8da696eaf000fcc7b2256c9fb0ab3ed78d10541868ab213bd9b41",
"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": {
"blake2b_256": "6f2c0a84048729d9703a155b360664bb1216e111c63a38178c27664c4b61e499",
"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": {
"blake2b_256": "fbec67052c62caecbf3eb77392967300478bfe9afd94464e90bdcc7bf445b34e",
"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": {
"blake2b_256": "515861abf8c83a00538e3e5269bf98854f5c7152301bfe7856a601c2b55f2f8f",
"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": {
"blake2b_256": "ec4e53c67442b20167b580a36108e8440d86fdc3baf6289ba5e798061cafc78d",
"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": {
"blake2b_256": "11f9892c97b30fea283ecfb9f8d1288a8911c9ba40516fb7274672cbd0b099c0",
"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": {
"blake2b_256": "8bfc6857e2748caad478940de59312f8c7efeda6bbbc30394488b88afb2a0a16",
"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": {
"blake2b_256": "c40b5df931d625eb8ca068eacf523dafbc4ee23b7d528fb3eff9b61571b73de9",
"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": {
"blake2b_256": "4642e36f31459b0cc051711fc5e554dcbf240d839c25947b778f8c513839799f",
"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": {
"blake2b_256": "5323430e9446ac8fe311211f73050e085027a23f1c4cf97cb81eeb70e255cd7f",
"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": {
"blake2b_256": "50d4dcda39f89c7d040a4311e1294c99b78188dabc52be14b71c6cbd56e5cb0c",
"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": {
"blake2b_256": "eeb0bc27cc39a833aab5c27cbc81651983e0fa932bbba44a2acee24cf6c6eca0",
"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": {
"blake2b_256": "20dfbda0caeb10f67f9a572483d12e0296a8511743772a010da4830f2f0b8ef9",
"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": {
"blake2b_256": "1e4d4e64755839101288b6599d74459dd639e1359e7d88b5aa3f3ef4d6374488",
"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": {
"blake2b_256": "de2787f7dffe8be2e7fbda81fa4f317cd2a30c0e02a820a597264faa2b7eb481",
"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": {
"blake2b_256": "15a51bd80c78e4bb8dfc69e087d5d9e0005798661049773cbf5821ff0555eb93",
"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": {
"blake2b_256": "53d177e8363a9a3a44f0aa0e6d714fb314eb31cafafd856a9fc4edea01592783",
"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": {
"blake2b_256": "72f6a7480c6707d0ec22a9bc60a6dedf5c80a2340e4eb0ce90c5c65cbd0c0c2d",
"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": {
"blake2b_256": "df26ff98eb7722aa843f29c9f22f7d6fefee9234318bc3ebed1a6c773d6ad0ab",
"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": {
"blake2b_256": "7e450afed9e4e4f2d7d67ece1f909fa5984813e127682cfe72c03b31c9a03be8",
"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": {
"blake2b_256": "5675bbb1fdd6f789384c82bb74310046b7ead585538c1472a1944c8266d5dee8",
"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": {
"blake2b_256": "d557ebec1374f320e4a0d282bec69fdee61dccaf7325f03abf9ccf756e9e0b77",
"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": {
"blake2b_256": "eaa885a9e39f2e6117f92398511a2e1e8fb57f1dd6c53f9b521a51c35ca2b46a",
"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": {
"blake2b_256": "3c1da7479eee24e13ed4cfe543f5c1417972c4db5f24c9adbb87fa52f5e0eb1a",
"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": {
"blake2b_256": "06725cad0193a2ccd5793dca24d85cf9c4b8d2727d656979f50b6e96b7ff03b8",
"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": {
"blake2b_256": "2ae93a51ae7fb4f7c5c3a4742f6421a960986bbe7899e58f2452b7252eda27fe",
"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": {
"blake2b_256": "138de0c59acd7148695a6378b101ce29346b8f72932c16d90edb9366c059553b",
"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": {
"blake2b_256": "3be2ecf8976d5cd5492228725b4192236b656179c9f94d152a340b1ab78c467b",
"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": {
"blake2b_256": "3ec9c9cea7116ded4c6f5b2206f8b5ee3ab9e531d488ddb31f146dc2791833a3",
"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": {
"blake2b_256": "fac86ce10c41688afa179680e7b7d8e1c6aa4a68e38842c5d729296f44146fa7",
"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": {
"blake2b_256": "5c840b1483c2e0ed4459fca35d7beb331bd59a8398ab78da0d293f865f094d42",
"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": {
"blake2b_256": "dc839fcf30c5651e30fda3a09ae4c99bb9dfd057d1c6d2a80c666ec7783dec2a",
"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": {
"blake2b_256": "ff30d34a86bacc2d287113552a91043512de1ceb2f8f2bf9f16b3e1cbaf680bd",
"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": {
"blake2b_256": "652fcd259a2c2a08242ef180c3c822809b19abe6ef682dfdf9cf0bae7e54b03b",
"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": {
"blake2b_256": "06bd436ec74cd5c583bdef372462734d20ba9f8b404c745109986d6dcaeaa5ef",
"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": {
"blake2b_256": "e01ca93ea452298033b8b57d7a421ceea83bde9ea6a984cfee7eeafedf106676",
"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": {
"blake2b_256": "6672df15d890b3dfe86f572571586347bec1952df060f9b699ee2d051910bf1e",
"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": {
"blake2b_256": "f4fd9dd10959c823d32c7d98e2326649b9c4b9d44dcc3d71c5b548cc83eeb333",
"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": {
"blake2b_256": "0f7853ace70219fd7107b8a2342ea18d6494a24485120e99703c073570b004e1",
"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": {
"blake2b_256": "d6a821ebca796e25f22697b1688249c166e4d6b55c7693acbc79275f5e0be6c9",
"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": {
"blake2b_256": "b3b6a0d0f08aa77b5055598a53f20f085814bbf8f3d6107fa662fe01113d9d08",
"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": {
"blake2b_256": "54968fafc238b4f454052d2227336071f322c42324a2ff03884f70a946a34ea5",
"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": {
"blake2b_256": "c3eebaef3c6704a7082ffa8486539e4c16a53266febb6b4e93c1aa05470a99cb",
"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": {
"blake2b_256": "df73bd0e09d5da5cd05d0aa89bd444fa1da519f978224622eda5eaae7aec9d94",
"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": {
"blake2b_256": "7b35ac6688b0d561c291bfbb00d318fba9be36b38816e308cd6dc7d49bb647b1",
"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": {
"blake2b_256": "5e67c66a608cd61f49f71cedea2bb2e479c9da5bfaf4b83948b2b7a475e8ac8f",
"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": {
"blake2b_256": "11aa1a2b42dcc224dc1642e6885887cb195faa74b975173ec8b5c0e4f5d6288f",
"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": {
"blake2b_256": "64e38fdc54adfae2c296c50da7dfbb81fa0b06876911da02a67b0f2674a944d6",
"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": {
"blake2b_256": "599aa283082211365998b82c3c166d079226ab1910052c396a6f14e97818f592",
"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": {
"blake2b_256": "c76617179d8e70ba9b8814c724ace08c175505cb9a90fa0eeb99ee7dc659e3cf",
"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": {
"blake2b_256": "9bbc0b18203003daebc8deab9c1ef0b0b98692e40d8079f1f73c2d77d5f88139",
"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": {
"blake2b_256": "275b4419df3bacd59fb5011f1aec10322b2c179815279f2c45db168ccc6817ac",
"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": {
"blake2b_256": "17edfa457f3ee27486b92c36498274aea1cbe3561470dfb25e0f86b62ade6431",
"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": {
"blake2b_256": "c49f2ea4ecadae2b1ce61b66753e44e91d37c72e548313d8c67978659019bb92",
"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": {
"blake2b_256": "a0e563e5ff7371f9bc2bd707aa3b5d4aec90bd462dcc653de4c0028c8264fc68",
"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": {
"blake2b_256": "1887d6ad34ea99b464f0424f8b34756b6b10c3429ff7ce4b7150a16f9122cf4a",
"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": {
"blake2b_256": "6d61ab6f9ebddc917858871d3783c59dcf26d8ec8b3acd98394d579f0c216562",
"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": {
"blake2b_256": "d0971a829c44b0bd495c1e021c799f3af5f2e70f7c1f7b74779441d51c5f6e45",
"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": {
"blake2b_256": "e5a08fc4e98cfacacfdef70259ac638c5967cd721657ac24638362b0faac5e16",
"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": {
"blake2b_256": "f10eca4343561c613d151cee731d83ec0433beb8ebb38ffb3da900d887049a72",
"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": {
"blake2b_256": "c23a04a2c2a0e5d4327f8ee4a29ee0e6d592b29af1413d1217868f0e4ee87c80",
"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": {
"blake2b_256": "87c4931c462d08ecfad47a65cec8e9ca9699b4d1f920dd456b197a56fdec2944",
"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": {
"blake2b_256": "8e0478bc4f9ac015a43f9322e691c28664d54f859591b746fdca2a681547148e",
"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": {
"blake2b_256": "6785203447aed578af8fc76223988e154666c9033985551bf8eda0c0ef957ae3",
"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": {
"blake2b_256": "32b9f3ab8ae48fa30dd3766a31b6cc47da04eb5a5c2a623f4efbcc52b7279faf",
"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": {
"blake2b_256": "e84b5e9aff6df31fae436f806260c96a5a252cfee6b81457e14be6c26975050d",
"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": {
"blake2b_256": "fd1eefa78adff0c2ff44553274340fb6680c12b7f83573c4a2d9e4cf6838e2c1",
"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": {
"blake2b_256": "377c51a9e1874d42ad76dc7fe17bf05044e3af78c7233e63a524418a371149a4",
"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": {
"blake2b_256": "a5095c785e6933e5dd5158dc674cd33355a332c9c47cc8aa42e160a140039026",
"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": {
"blake2b_256": "ce8bab05b20c9a7d7777479e56c841233d37235ab62f02985aa948117aa4b2e8",
"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": {
"blake2b_256": "6c5222f7c4359a35a9c627bd456da20f4d7b6e40c371cad7ec84bd53d7f3bdbb",
"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": {
"blake2b_256": "ee7736147725817e1b4339f0888c85aa96fce5d9b35b25530b15d846c4a96307",
"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": {
"blake2b_256": "d9a6c3e40924fe1f3e3c6c8fe465d50ed3a41395d473a2dfb9e4b6a049e5abd2",
"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": {
"blake2b_256": "a2ef52080a02e56843da22e051fb1d09ff35ca217d823ff8f24ec0d4f0d4586d",
"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": {
"blake2b_256": "6e2df3edab3725b7bfb10cd8c669f46e0219d89fa81c15a5a23212bb16031c05",
"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": {
"blake2b_256": "dfd583b27e181b3f414fd780136bf4fbd5d40e21eafd40823e870a10194c1a67",
"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": {
"blake2b_256": "789045dfb8993b87089d8559461f14daf255980341822f3af0f80599ef2d208b",
"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": {
"blake2b_256": "2301f8cb3476fdba9016b54cc10197dbea01ae81ece231998d89d5189ff353cb",
"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": {
"blake2b_256": "e7537ba8e07eccbf1a83bea96ca28b5f1240a6741f702678e9830c2cb1635b7f",
"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": {
"blake2b_256": "f0f8dbf1e8bbc96da4567ccd8376835b637fa42d2878815f14ae5d61865388b3",
"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": {
"blake2b_256": "17f7eae6439368fcfbcc9f07d66d131e460fde6a24d44eeaee1337669082ec8c",
"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": {
"blake2b_256": "dd2dd30646e87ce9cdbc9f56de08b336c03d32256b2f9700df39d7f98fec0ea1",
"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": {
"blake2b_256": "2b33c09ba026ff81357f9f7ccd5c53972383ea47e53328a916916818efcca0e7",
"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": {
"blake2b_256": "4762a585758ab12466a40ef70be232336dfad17dafdfe6a7e3f67cfeededd528",
"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": {
"blake2b_256": "e73a1a8055a1ca0fa8ba4ab8797ff4d2003310ee908cdabfcc122a75466b16f1",
"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": {
"blake2b_256": "f7a835ff262e491daf2a7f81f56d400d01d95b5792515867e6694e12d1998856",
"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": {
"blake2b_256": "1cf587d501a8e0a5717b9812353b17ed193aefcd5580f8824d92130efefa23de",
"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": {
"blake2b_256": "78b4fc92b2ea275e594753fca0021c1593cc75fcf866e57abe1b0936f3bd0964",
"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": {
"blake2b_256": "c64464f7669c65a35b7f339e28ce2419fec4bd7791d2ae5ac9df76f1341fa959",
"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": {
"blake2b_256": "d5d7ef32b98b5fc62c109050854dfd6f3295737a0cb75568365157a326023d08",
"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": {
"blake2b_256": "03d2eb66044f12c9e2921e718f16f88e6bdf7d0dbe564f13fccb226f2519a56d",
"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": {
"blake2b_256": "a194d8a21f951710e33fe87e9eb064ca3000523d03f9ac43b24b64ffd70a3ef7",
"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": {
"blake2b_256": "4967656e42ecaa90ebe28d82ee1472b006d0eff4d6f0d7c794456ed960daf8be",
"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": {
"blake2b_256": "1d2813e85c9c6970cef8cea4b1c76620afe4aa768c38157485ee5fd97e9aedef",
"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": {
"blake2b_256": "fe111c500584a05d118f169f6ec3fa4befd8244dc11f06cea63c3aa50954c9ef",
"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": {
"blake2b_256": "71f1fa843e6804d481a1bbe5e204d641492df3e89dc36307104e0889e614a680",
"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": {
"blake2b_256": "84e0ceba728e6f55c99d7d692836e9c1cdf2b41bfc2925e36e73ad97cfd6ef45",
"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": {
"blake2b_256": "4c5b6f2109e18f495ade97a940da24bae179d695f8ec0a6e873b10a7c5c20a2e",
"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": {
"blake2b_256": "fd2e6f2e16669d4b39c6cd0ecc7e1552379eb35299aba7d75a6f44b1a9f01f5c",
"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": {
"blake2b_256": "dc39f3c589192bd59bb7be342255ae75cf4e5abee4e64d3e899f27d6b1581b25",
"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": {
"blake2b_256": "6d2ea5dcc955d3d8e71de151c9507f50e54cd8b33de5b6948b9f3c0ebbbde0b2",
"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": {
"blake2b_256": "60e2fad24f74c5ef85d4ed357c03eef7b411b49f4fb63f46ae791feb89eb2bf6",
"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": {
"blake2b_256": "2641929b8586f7b48ed04e4698d44dd26df25ba965d26838245282c975102d1d",
"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": {
"blake2b_256": "8b76a187ad59a08e9828d1dba9cd0e6ce42b764b4ade50e52f4c813ba9204832",
"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": {
"blake2b_256": "a6bbeaf12bc63355f0d54db4e0378d5aa77c489c638db7882a961456ad8cf173",
"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": {
"blake2b_256": "dfd09c12c47451cbae9c96d1615793c1a2cc6cc113a07bb2f0115e537b1f4cdb",
"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": {
"blake2b_256": "84e4e32b53cb61c385eff2a3ce24763edb1dc1c1cc3db11a916e3df8baca5409",
"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": {
"blake2b_256": "9690a00edbf0a54fe9395c5368ec5b5f147593b35409ea8fb6022136b50415b2",
"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": {
"blake2b_256": "2964d506540ecb9dd00a85fa1a61700ac4dbb47e55464083ab2ca26d66f19bb7",
"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": {
"blake2b_256": "d5e5cc3f018d021fa975f0510b1c79f3082b9caf4ff5dffe221e4f28e24d5037",
"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": {
"blake2b_256": "0a7cdd5122680d07872b4b7bf1c6635694bfafae0bc134fbadeab9b648df90fe",
"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": {
"blake2b_256": "37e58333271d55890aa83c09b6a01cd4565359fc6c808e5efcb13d55f6b6f594",
"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": {
"blake2b_256": "c6e5d2d8311776c0673cac47ade86a8696811c993b4f0d9f06106a0145052df0",
"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": {
"blake2b_256": "2a12f4391eab1fcfa1699088b0a27445beb2169d162967449c3f5571faa4ca56",
"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": {
"blake2b_256": "45df9f9baec195afca4cfc55c229cf2ce3302f5b3bf880cede994084fc555fd6",
"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": {
"blake2b_256": "fa12c4eaa14f9e6586e9c4461a66820fcf75a8b2354a4fa60fe340b068e0ac68",
"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": {
"blake2b_256": "9edde557619c54903b94794dd89ada5a648ce148c845cc1b991c6ed13e94b59a",
"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": {
"blake2b_256": "5185862d1b42ac3434eaab7901386e261c72d9c72956925272dcdd4c7dc9bda2",
"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": {
"blake2b_256": "7f431fa3e74edeeffbc0a3cb4271d17f98edea72ed6b2b47377476b34321fcda",
"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": {
"blake2b_256": "c72bf109043d8119b19d395be143a351367daaf020103e6b41b31b7c76fd8f93",
"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": {
"blake2b_256": "9d96899c598064de8b5cf713fcc1a25c8ccaad02e233a2e22796098dfa551bd0",
"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": {
"blake2b_256": "2f0717605377e8b913338e11b79dfebbba5a6511cfd3c736ea746834ea60c6d3",
"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": {
"blake2b_256": "dce577e1050e0fbd71549fd1ceb42c6326364766d1f606585bb60b6cb037a0cb",
"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": {
"blake2b_256": "6a4b612fdfaed52881e3ae2aab6cb3a2171d0c1145dc2f233eb8222b4fe31091",
"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": {
"blake2b_256": "c6bddfb267ec7f3c1e6d801f84573ffdae2ea6e86646cba854df3d2d3967025a",
"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": {
"blake2b_256": "3e9a7b54e3680ae1d57e27c3eb363b556e70dbfe29154a27ec54ce379fe0e445",
"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": {
"blake2b_256": "5f4a75ec982b0c8f8f7a32e5a62f76228f653befe5f5439c53583fc377473402",
"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": {
"blake2b_256": "8a33bc7e5edcbc85d8474c6a789fed7bc5ab4401196e23ecc7d6aab64c5ea446",
"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": {
"blake2b_256": "d4332f3c180f079afd3fd7906a91cb389791db0946fa600c52e33963a595a00d",
"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": {
"blake2b_256": "9fcfff93ef5b8b6f8992656ff92cbba77e903c6420398ba1bca5bc340307e706",
"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": {
"blake2b_256": "870910f1c7afb927692c0334e8488023f3ae0b4eccd9de7e74ea358fd0ce6836",
"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": {
"blake2b_256": "0b70def26b5de7bafd7738c3aae9e7f3720322361006ba2551225756d9d1047e",
"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": {
"blake2b_256": "d3f8d47a98901b3755274845f33598f85a7e77fe3fd92ab2d5fe6a67b09fb4ef",
"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": {
"blake2b_256": "bffc0563e50def7ac58c0126d3848dbeabd8ea35131fa67d6b9941105ab5f59c",
"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": {
"blake2b_256": "fb80ec3e5e9bc19cd1064694c06ddcbe3e92f697adc811a8e56dc41bba2c687d",
"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": {
"blake2b_256": "c3a93a6be4b72a38722d7d14f6ddd538b9fc1957970b5e9e0f96a509bb92158b",
"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": {
"blake2b_256": "0bb5d662a7b670d1bc6ba2954394d2b9f2b7c0cef39006effb1a9d7cbc48bbca",
"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": {
"blake2b_256": "375e3241be559a93063833cb18ce5997e77ed32aa1b6eb5ca09ad3fdf4b0943b",
"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": {
"blake2b_256": "cb7c5204fc95e9797e282575408478a2c536d34b40378026e4d153d337455788",
"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": {
"blake2b_256": "a14d387d821905e86c6c1454985e0e135b9a4910f160428344ac9d176b5f917a",
"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": {
"blake2b_256": "ef2156dfc7bc2d6afd039e6ce580b0e10bb88b488a18a1ff2565931ebfa80d5b",
"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": {
"blake2b_256": "588144ff07404b2f572e5be7d1060b7161a1b7e47e0cd513f7ee77056312bde7",
"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": {
"blake2b_256": "13db2b6c3abb7e91978219900a2e4355cbbd71b260c0f05acdc526ccf2d150f5",
"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": {
"blake2b_256": "05ed8d875dbc2793783560b21a8aaba0d1c39313f566c9a708e944ab2bd6bcf6",
"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": {
"blake2b_256": "719fd0e9d7c77ea0b494c0bba4cb72d0190d7e13400df54ba71745c24240aa34",
"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": {
"blake2b_256": "09345a062537d4a0dd6dacaa3b6db0299e0b427b1523fc3e117481af712e6bac",
"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": {
"blake2b_256": "faca3cebebcaf19a90ed019dac10560f1e87ed5ef6d4a75bdccaf736a2eec10c",
"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": {
"blake2b_256": "de1fc812d5991c88ac7b443c62b3eb9a986b3406e363ce50642e89a3778e842f",
"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": {
"blake2b_256": "4516caa257b1914b3c47eba108669c2c6f03ce0c6e0efe87bdcdea211ad6b15c",
"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": {
"blake2b_256": "3fc18723dc5e7b8c45e141dcfe0fec6d5448ec3d75d4337e0ad4a8ea9072fc0a",
"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": {
"blake2b_256": "f93c5874226a5f1971731f0b619001455f4a3bd3f9f78a10ba01da82339f6ac3",
"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": {
"blake2b_256": "288f59ae8d42b2e5a1f06bdd629396f0c86bb69d2d4dee4ee56f5d6381f16a02",
"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": {
"blake2b_256": "c98962157128930a0ab5e401bc4d089f20ec92ead4461f9f549ed88e8365c631",
"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": {
"blake2b_256": "d379952948e5ca6ba8211933c3133d85e4693dd672e2eba3872c8fc4eb1762e7",
"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": {
"blake2b_256": "561cd7b82fcab9b1b58286c9bee9b5c975bc1b5dd6a81fc42a52f99747af1068",
"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": {
"blake2b_256": "d661d23d986f4db605762edeb8dc72c935a1a032e782c790db70339a58162dfa",
"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": {
"blake2b_256": "e1bd32da36553cfc3a9025a44a8bccd18622aba6339166da4f00bc3e1387d23a",
"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": {
"blake2b_256": "00da0de79fa40230d97daf9a68ca316d02e778168fcd343b43d14e423d60f9a2",
"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": {
"blake2b_256": "79194751d4cd0d9b5c3f79095f2d0a74b2c23bb550619dfdf86cc5ca55e27a49",
"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": {
"blake2b_256": "2763df38ea1e7be500a430b3d25d580ae86444c2e6cfd4b76b07b05cc0a6080d",
"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": {
"blake2b_256": "8e437e139e6b354b2e00df9bc31f7d9c074d5d6ea0b2b52342b6525ad8974e16",
"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": {
"blake2b_256": "0c4cfb7bd50a9b1e15cb513ea7f85d3045e88c8443893542fbd4c74ff1a13902",
"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": {
"blake2b_256": "c911720317cb9bdc05b68a0a1bb5c3b7418b7db1f42b45a79e0d963577eb48ee",
"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": {
"blake2b_256": "2640e15cfd699c7294589b5e4da146ce3c1e787cdb203c734f7f813363334e1e",
"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": {
"blake2b_256": "a1fdbf8299ecd990deabe21a9df46a3d139f70061d6ba56d2b8d8fc66cf06ff8",
"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": {
"blake2b_256": "7a27c9116f07a335afe9fab1b3732e0a4882bdf5085124701314984215b1a806",
"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": {
"blake2b_256": "3f1258d4b6ff8bae007e9c3a4e43cec92e3a905aff536fd28fac6b0a6895260b",
"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": {
"blake2b_256": "bdce25e87affe1f7a159bb0cf911cbddae881b4301597b724d16f4b3823c9179",
"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": {
"blake2b_256": "e0d2241835e8c68e686aa029fc2f6f5aabda9b581f8ae8c02faee838f82755c5",
"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": {
"blake2b_256": "357a70343704e05c4b26506c9c8cd210135874345d18fbd8924d4935972a286d",
"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": {
"blake2b_256": "95f05201e579139ebfe85c2b93d68c4e0906d730712312145b842a6217566f0c",
"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": {
"blake2b_256": "f323ddc3156c8806bfa5efaa40c6807cc5b9f011f24f9e52a6d9b0f51af14458",
"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": {
"blake2b_256": "6d6c4308a1d2ec1ba43587178de0cfb5c5a91550ab52fb621a183f6c8858f94f",
"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": {
"blake2b_256": "3388f8ec0a7a6d26d91c4b042428b0bb32e002d28fdee523c04afde9f98afb3c",
"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": {
"blake2b_256": "b59afb12273144be97f1cc714152c17618b7c57a1c9a2281a1a0edd060f36a06",
"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": {
"blake2b_256": "18a95c5a5d0b385a522dc6a75347432b953be63aa0536eb7a0659ff97bcf988e",
"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": {
"blake2b_256": "98b1d54d4f16e209e1d236c62510722c2798dbcfca266e8a42d59dbcb13a0110",
"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": {
"blake2b_256": "0a4e64cb729a705287ea05965e98a575b944b55d5cecc9edeeb4fffcfdec30ee",
"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": {
"blake2b_256": "d4e779b87be5f6fd7e4c355d8510649782dee313055fe8840f776dcebe5b8e71",
"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": {
"blake2b_256": "c4c2e1fbc528ab8982756703caaf30fc35ec1c80faa029f6b2e99a227f467775",
"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": {
"blake2b_256": "8cc58fa829fa5fccc2037bbfae07afc9a60dad35e1702b85364ff8661aded768",
"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": {
"blake2b_256": "5240c1b1d51963db440ab730aaf1095d9a05fc07f943c8050b33ce28637a90a2",
"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": {
"blake2b_256": "cde1c3ab2877447ead850fdbe3ced20a7b67302e3c89d080c61b42bbf90e1a26",
"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": {
"blake2b_256": "618cc469a0bbd50e582a076f327e81a9a5acbf12568891e16cce46f9c287bdcc",
"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": {
"blake2b_256": "20a4186cd3a264ac5f3eb4fb7637c7ae0597bcae289c2ff19d1371f6bdd85719",
"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": {
"blake2b_256": "ae4621202173519caf4d48fc040c21e20c82da44260d9fa756d35fb1b55bdf25",
"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": {
"blake2b_256": "a6929d7cd2dbeb589e41b899053296a3a4f90c731636849a0965a8a2cd5d7e6f",
"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": {
"blake2b_256": "0189201c0a25d30165994aa5f855a892d5674081db7c39f797c53b5560c81be3",
"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": {
"blake2b_256": "d7f70fe0dff5b70d43038f6b36a7068f03af6cc4381d8d65aed355759bd8dd7a",
"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": {
"blake2b_256": "c33adc3415eab46f1cd85f4f0ca0885321bca5b569221f8d859f493796ce1f6b",
"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": {
"blake2b_256": "a2ba547f6a74dbf15a913d6171ce64db11e563121057e1e415d35c645626313e",
"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": {
"blake2b_256": "e570aa6b92787a560f4e44366664c0357b9fc027d3a6b56eb1f84400b594fb65",
"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": {
"blake2b_256": "59564684922826f03d52b6dabe1702651b3cbd49bf4081649fdcc5eaa0107ab6",
"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": {
"blake2b_256": "46e5a12df28956be57f642cf1ee0abed49fffe1deb55b222081c576c97835be3",
"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": {
"blake2b_256": "2fb42df08750ec523b296e0d00375e3a971ee6ac2ff89d0ddd7920eb04845b11",
"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": {
"blake2b_256": "fa728141ff8edc3909cf86a49ffce2298704cea6378436b1894c3bf28b3c4d30",
"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": {
"blake2b_256": "f50de19609868a234695b31a8ee3f5dbfbadde1d9efde6b9150b5e31e1687ae6",
"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": {
"blake2b_256": "819ea33dc22d92298d4bcb543b6129121af15f3d18db73d14af61af0315c1b5d",
"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": {
"blake2b_256": "d52291515f0cbbd1d3d78371b558fd079f6129aac645c48905d64201827d6da6",
"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": {
"blake2b_256": "1741e3e7e36f1b747fd7b08887d8007fedd5931a7f56d3feb90a9fab83de8bfb",
"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": {
"blake2b_256": "4c431b27249db3ed7523f15c46ca6c0414dc0a254ad57cd21b30d4469fecd134",
"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": {
"blake2b_256": "29a2265dc2ee147208a9367783d97bb5c9edd68f3d2fccc2527fc32dcf7636fa",
"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": {
"blake2b_256": "f75cfdb8ecf3047a9b1066a67d02febdfed6917e3a2d9bc861dc3c91e338883c",
"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": {
"blake2b_256": "75b91762b524e3957d716367179277680eb7e5ef168b2548b58813048f690834",
"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": {
"blake2b_256": "73511eb8f9e78939e4bb028782fa934573de5eebb72d833341da38f49da04bdc",
"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": {
"blake2b_256": "129422a3ec1d4bcd2a752c0bd3ce34a012771188e37d8e0ae2fcf58ec3ab3c1d",
"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": {
"blake2b_256": "e4e1b98df3c7bdd1079c7963a9a9e6bf0679abf6d6effaada21c6d7786da3ee2",
"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": {
"blake2b_256": "9de2e6dd1046b11b21eee942b9d2e025d2a097e2615e4cff11f7df0e4802baa6",
"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": {
"blake2b_256": "d384181addffd241823bac97d58619fc2f936dd0265d1624d5346b7e6071722a",
"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": {
"blake2b_256": "d521d73493899e8e7eba9b6acdc73245be3226e0633fa1b3e0e43947901259f7",
"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": {
"blake2b_256": "b9e3c02932b4e7ab262564b19fc3f19eb9eda5f0b992c2caa33c3546bacfa52e",
"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": {
"blake2b_256": "56f876b02134bd3f8812526c4fe86360c7671a3da29d41a2915764c551761825",
"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": {
"blake2b_256": "36c89402f434d556981cde37f93da0d3ca61612da4e1304976b292d71a940040",
"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": {
"blake2b_256": "232394a97fc531c0f0594f010e8b0537fc6ff06689aaefaa440fcefec403695c",
"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": {
"blake2b_256": "b526d2f4ab06a880d968ee1b209824e5ae6bb344394298cdd9df14c66d9ea988",
"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": {
"blake2b_256": "30d34f6eab29b2a85d0d823a49a3e11b68f3ab6ec401d43c81d0440792fbb277",
"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": {
"blake2b_256": "8b6f527283bf898328b1edadf1931658d2791195c2ee8439de6d25d5dc95ff6c",
"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": {
"blake2b_256": "7171f5f9d7a9f00912e20edced048f4706a8dc63ad198eec1b75cf1365f3613e",
"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": {
"blake2b_256": "08b8ffdba5edcfd21b1b027d7b743bd9bf0cc10d9704f823fe2ab5cc9793e822",
"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": {
"blake2b_256": "3bc5cc73529502016201348f2b79ad5f769600a4a5301ebcadbc6db15b954145",
"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": {
"blake2b_256": "7be0c020e28668c08e370e65e6a6bd6b46f5678aada226a940d1de7ee7a2dd91",
"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": {
"blake2b_256": "5cf2ade3782b5a9c1d997b48d1eebae366ed98c8e72d4507b1964b24da0a1556",
"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": {
"blake2b_256": "885e57640755dde02bb50bc474cd25fbff7b158c85ac0efd58ccc256477f0d89",
"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": {
"blake2b_256": "c97058c4d510c2efa78cfb7cdbdf9214ba708f352fed77b32c2fe3705e12fbba",
"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": {
"blake2b_256": "ca6a0e792315e67575960479e50b7b3058d2fd6a0e4708dac0b80392a516d46c",
"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": {
"blake2b_256": "9a004501247999434ac070abd8b92f109ca717f5681d37f933defca12d15aa5a",
"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": {
"blake2b_256": "cc59f7cee429b1566f2071888893bb16e880f619fa629068a799aae050544b57",
"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": {
"blake2b_256": "bfb271c9be79d6fc33b1c8e81a9ce07a2f64ea094e6d44f86621d002a1569228",
"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": {
"blake2b_256": "8083450c8076c81d3cc3d7b80d58eacf64c733d4ec1980db007d43992a91469e",
"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": {
"blake2b_256": "ce09a45bb58e70a5fa77de1562a1cc0ed49f7915e0f65329d9ab5427f1905024",
"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": {
"blake2b_256": "319e1207b9304b116b791b5f8324a7b3ff57d6bc002fb21b2a1bb27fbf588b41",
"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": {
"blake2b_256": "408c7aa25b1f067b45a87bba2eee2db2c57ee5c23b94abccd924f948755e3af8",
"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": {
"blake2b_256": "527d4a13e2a5fd917d364e1b79cefa8003ad008a0347aeaf5f743f656aa0c7e1",
"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": {
"blake2b_256": "27d9105912861896a42cac73c9c9d65d9feff60bfca342d7cf21839456092600",
"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": {
"blake2b_256": "3c0c8d1f0e5a29376802d0f5cf634ea3b3b05c841ed1e6c6ed565891c9b3c1ec",
"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": {
"blake2b_256": "c5c8bfa77f7efb9f96a16d57f549555a66d9229d2675fcb47fb91c750697b679",
"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": {
"blake2b_256": "3c07bd10ef9f75016f51315d059a5616ff7c80eea5752219b82146b48ee5fb62",
"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": {
"blake2b_256": "7c1bc555e62874ffb9db45df25249a81e1f478c6370bea8edeadcc3fefe19958",
"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": {
"blake2b_256": "04d5a63b0aec6a7f31b792f43ce1111220fe8ce7ef9d67b886802c36e1a2b15d",
"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": {
"blake2b_256": "ed4b4cc675ec37f0f371e41ce8a155b968a6c458068f8fccf85580f66ae257b5",
"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": {
"blake2b_256": "5d0703ff033a45eb611fe2d2e5165620786ff8106e74d62e1207dbff85ca5e32",
"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": {
"blake2b_256": "32393a2bb54a1061b32cb4b0ba585c873227e39c58754052c46c9493a0bf655e",
"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": {
"blake2b_256": "1cc12a940a807a071261c6cf27a58c7beb22ae24a66328fb7411de50b8c902ac",
"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": {
"blake2b_256": "83aea155a0ebab8fa71eece082765a6c3b3ac7d079c85b67131c20b154aa105f",
"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": {
"blake2b_256": "7c7ee6ae29a2d92fdd5d4c455216f40a69d331f03bb25b3fbd2dc9319580412b",
"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": {
"blake2b_256": "87755285b26f379ec10ec5bb86de40f9ad6edc6798f3b588d48d633fcbf9a75e",
"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": {
"blake2b_256": "611e8311436b09a75b8c45583d147e7e73075baf2ba3c36dfe47ea23dd384b57",
"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": {
"blake2b_256": "e62ce589645db1c734f11611394c4d04372fbba84619943bb56bd9ddde9c8277",
"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": {
"blake2b_256": "a3e2f6e473a1d71505e4206f1c668bac6e5136d7781574fb4038cb4cea6c3952",
"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": {
"blake2b_256": "8bbb1164f94f90d3d91de5b938250e8a462b2be9cd2dc0d987eefe410318fb03",
"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": {
"blake2b_256": "f6da0a79428cb7d7fcaf264782027bbfb36cf86ae73a1df1897376e32b133be1",
"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": {
"blake2b_256": "d1cbb649cb41c4d213c9d8b2b7afcfd0bd34ec6fdeb298592f0c6d9664c96a53",
"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": {
"blake2b_256": "783c11446e88b2e3b3daab56504c831e6b77d109650628d6bc23980647aa6188",
"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": {
"blake2b_256": "88212b7ab3cc5c87c6710d65ffde66ba9fbd9759282fb55d7afc4ccd117cd931",
"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": {
"blake2b_256": "2f555b42b5ad3a7a7d7d37f9c1b3ce73857c87a33060f7f5b8c4e113c51616b3",
"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": {
"blake2b_256": "cb22fc3524524ae1e2495de44fc69b1b110a96d7dcaee7a516c16d605f6d99fe",
"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": {
"blake2b_256": "fbdd8679bd581f5809886f061fa7701712f88b41f55dcfc11d6c11e666bed3c0",
"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": {
"blake2b_256": "df2e418441c0c14aa8f30b3d2d6d88fb1fbb1704ad66c71af2d15143b5db3b50",
"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": {
"blake2b_256": "cf44118d86f6d46266cfe691a16790165eb117e3390ecd98e892bd16d753e54e",
"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": {
"blake2b_256": "2c9d12e5aa2055b9b6135df470571ad7119613ae7f67eff3c510acf7c649ff80",
"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": {
"blake2b_256": "66b96821bbb626f6002ded6cdf864da6cca850d6ff9bc5c4972a1499cb7badaa",
"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": {
"blake2b_256": "eca5eb8d88b8e53271d3c526de2f46fd7613564e7b35e16528cefbb8989a5509",
"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": {
"blake2b_256": "b385d5ee14b7186b66e4ec4eb8b5588c9f346286ebaf72fe21b8e75137aa7ea1",
"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": {
"blake2b_256": "3b4ed2a08858243bbf290b0d51c9063ad757cf2524a1896109e2f5cf43d53535",
"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": {
"blake2b_256": "31b8675c7332c1d8d6aa4c3d8dd13e4b4ee1866005ce1e346f796300e0c6c476",
"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": {
"blake2b_256": "5e6ccf27e7970923ec3f579d5482ef3525c280d97b5bd0642dfe4191e4a4114d",
"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": {
"blake2b_256": "c95b11cd4157b95a64b912fedf8ebe2cbda9b8b21c6a4b65f6656e63de2360c2",
"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": {
"blake2b_256": "5b43ee163b01121d6f57e61596a6c6b815a97b8cd45f923a6c0888b542693cef",
"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": {
"blake2b_256": "9ad12fcf8b7f99d0d978d4d126b72f9d22b4bca0316da41a8004350d328f08a2",
"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": {
"blake2b_256": "1bb5457e67a41854783ad2d5f2592ad033c5e4d60d5b0c402917e99821900546",
"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": {
"blake2b_256": "0fbce47110e9938c748f6a837823b74ab729c53ca2d54b93fa0f31295fff6f13",
"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": {
"blake2b_256": "f56e384e5ed5711d5b5b67a1a9c6568aa19168cd9d414b071eb18eceb5f849cc",
"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": {
"blake2b_256": "d86b9e8abfe859eba1cbfa10818675a3fcd5444299832d6a274509bca1e00649",
"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": {
"blake2b_256": "dc3150536ee2cf0acacac76ca2aae4946faad85d1fcecda9a2a7d2b9e8b9e9af",
"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": {
"blake2b_256": "a7cee19b3435f898c5702c5570ede22dbb5630b743c6c7b80f22636e70eb2bbc",
"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": {
"blake2b_256": "4e059c84f5e5d6ad67769e35561239d2e4d87782d70bd75d79b48aabed2e905e",
"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": {
"blake2b_256": "e7c444a482934176f65273e85a59ca0139c6e869e4a08a4a20184fd56060fd47",
"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": {
"blake2b_256": "b16fca2accc5bb744691279a664076102c005af94d6b9f1b58aeb45ac546c567",
"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": {
"blake2b_256": "48f02270fa8267174a3f38d306425ae20f94b99f70ed3ea39791248b7c53f238",
"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": {
"blake2b_256": "389258119bad5b4f903962bee577e490f92ea7540b8399278fd0152ecb148556",
"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": {
"blake2b_256": "735b94fb4bae44ae31c717c93bfdbbbe3244469069760921b02c34d8389ae53d",
"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": {
"blake2b_256": "aa071e6a237d0847ae355eb5a5511aad5adcf8dac8e5fb42656bb14d063580d6",
"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": {
"blake2b_256": "bca7024776d9f7e756eced07b64cab49a1f7ce7ae1e9c0cbaea7ad8c4d59b543",
"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": {
"blake2b_256": "228fc93d35493fb58cf058d774ae41611ef3fb242136bb244afe8c5c411a0136",
"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": {
"blake2b_256": "4b066722b1a0a9bcac743012cf92379268111930e0f89834d2db52bdb9d32330",
"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": {
"blake2b_256": "971fe537cf73ff41835404d53624f9b749cab766f1ee54a0d2d8f5d75b19d8c4",
"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": {
"blake2b_256": "ca725b9516d2d94b0a28c465c84b098d7febcac1b446f5ded68d71a9845aad3a",
"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": {
"blake2b_256": "cfe8a6ccd2b844e214dec1a269d8167ccc84b8dc8bc3a3aeb849ed6b8f05cbf0",
"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": {
"blake2b_256": "ed584f6b2beada2b9b6536ad9bb3b35f18b5f6083c5dea9714e01b841d2ebbc3",
"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": {
"blake2b_256": "d2602f637741b112b03560e98c236e00f3afba943b19871272652bd1c5f7d06e",
"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": {
"blake2b_256": "30ce2c0810038fe33040dc666196989cac65f9d7fa56120169ce2707e1167f37",
"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": {
"blake2b_256": "5e18e0db803fc886e31a2c5e94bdb3072235cb626f5f14da8d20dba279b7fc33",
"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": {
"blake2b_256": "8e58cd0748b9a8e645d9af905254dc1729289b869a82137ddab592b0192ebc55",
"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": {
"blake2b_256": "eff4cbca4466fcabd8c8e41c00a0d135288ce59ebfa35707614e4e7f1eefbcc0",
"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": {
"blake2b_256": "f2f9ae4d4239d64ecfeadc453ad62f3d5a79d72b41f3e8bb1d60cc176bae7381",
"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": {
"blake2b_256": "27a5c40c5f65f737dc643d329047445217ecde65ee755dfe12d89b298adb3f50",
"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": {
"blake2b_256": "00d85eec05dda8c20d49dadb893f1e9fa5ad78d1feec6d575c53af9f8688130b",
"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": {
"blake2b_256": "a25117aad7f3ee870c907dd43e515ea5a6e2bdfc384025363b9d5b80e5cd9004",
"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": {
"blake2b_256": "c70f7d8aa954e5bce26226231947eb3daf8b37980b674a7c2fe778f7f4ce1a29",
"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": {
"blake2b_256": "986e8f09fb2c237798e87af1ac777613f7f658f6974effd219694e565df0d878",
"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": {
"blake2b_256": "b0b63014ff33e0b8cf8b39cc302341f630eafad40c173ca77c5751320ba7c14f",
"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": {
"blake2b_256": "a4153d71590909708cb111f910c6329649b1f57f9f7bc3a35d03c499467f385e",
"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": {
"blake2b_256": "5beccd3cca40c55cf9b50fc3ed146a7eb262fad16a8d55f46917ced87b93e603",
"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": {
"blake2b_256": "e25182ecf0fbff2859478c4ff59b2ecce7ffe531b02b772b9ca1afbd30307ce4",
"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": {
"blake2b_256": "09194cf220072452cf7d3b3f6c9564c406c5852bb4ca9e79db14f3bda1427d53",
"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": {
"blake2b_256": "16641e9011e1765b7aa0c86e4335f87f427ee4e66fa2aa5dd59efb62068e17a3",
"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": {
"blake2b_256": "4937a11e81314442e1c6045d0851deb2c8684795ac02f03845a993ef624d9a53",
"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": {
"blake2b_256": "a7d22dc567aa193ad2f5beb3caa60538ec4912efa828062a4eaedd684c20c7cd",
"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": {
"blake2b_256": "1787b8ac32d5bdda906236bbf7a543d3910a240cbc1cb9dd7ce75c979ada5735",
"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": {
"blake2b_256": "e9e6336dda9264fe5fed2c1dfefced4c83b4efd241e5cf146da87488685b2669",
"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": {
"blake2b_256": "623919c93c453494d9f28e5a5540068106d4e009d0e0b2ca3d411dedefe99581",
"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": {
"blake2b_256": "538ac93662973020eaad14c9695b80fcbf9d0e23f9a557474089f2dc526650f5",
"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": {
"blake2b_256": "f38d5f8e5a58a4487e119b2ccc8be4ca2ed4b81a8ee381c77303a7f908eed95e",
"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": {
"blake2b_256": "d88b2d7e5a2b825b76d5d22550d98ac23ac64ec36f08b407994f2ad908dc1186",
"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": {
"blake2b_256": "c94db7cd21286ed3f38f77233a91a8ae347c916324922c031a14d9eefd044e38",
"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": {
"blake2b_256": "0970834a39aee571e726d68ea2c01d880bb958a5ff4aa2899cf45bc80993a6b0",
"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": {
"blake2b_256": "449ae3d05a901ac14f317c63ac8a719038617ca6c723ea3a5855a38b278fd7a2",
"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": {
"blake2b_256": "6d105b1633e5cd849ee87e1fd79e64e1af031c0e6a96d9eddd922072d0ebf93e",
"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": {
"blake2b_256": "0d5521c55d7aa95559bc3f790cf31b761761c4cc2763ec22acb01a5940a638ba",
"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": {
"blake2b_256": "8bf596800ecd82d08f1150ff05f5f4881106106eb551008ea1442d4ba6c5755f",
"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": {
"blake2b_256": "28e3dfc74f37ffb7f1adf7f747f14421b783a2730b71a5b4467ef5ea6ef931a5",
"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": {
"blake2b_256": "bbb96d67b7137ee2959de62b91c70b8124b6bc7e15b4e07508a3063d5b9851d8",
"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": {
"blake2b_256": "60265404e25dab239eb7c76c8dcaad4cc73ce7b9fb0a46f86efe24119fec68fc",
"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": {
"blake2b_256": "a1425fb97cb28ed4e1d38a4c4f78a39c3bc8bcdfa6e274949c9cf7bd9a65de32",
"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": {
"blake2b_256": "3abf2a8947b53c0a90a401a53abd97a8553bc2d72de74bc9b8c9325687869c46",
"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": {
"blake2b_256": "d3fd722f191a44de94711dec538f08c063f0e3b7565cbc3235d7c4da19cdcda5",
"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": {
"blake2b_256": "fa248f03b4d839730bf621b57f51d70c5602b9ea6598c01d6aafe786f41fecff",
"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": {
"blake2b_256": "9b0976e671f271a886e16c6361f1bb41ec5a8033fd8fa7c87110d90a51e0af80",
"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": {
"blake2b_256": "19e28cba3438caaab3060557550b54e77f42abbabf80b00623ac897dad506842",
"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": {
"blake2b_256": "f4cf7a068026c7dfd7f963fce6cbcd923b54acb7e4d1adf0a15bf4178002b19d",
"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": {
"blake2b_256": "756efa14df8e2ba3135143ad2e7e4a7138d7b331e50009bd2600ddb2af30a5bb",
"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": {
"blake2b_256": "1285863f2697ab633bd83587c99a306a14a2e87ce48e60d31c66d836672fe644",
"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": {
"blake2b_256": "0f33cf831fd0b731ee859b2b49ad6b78072b90c89f97601f96e7f6d79d17590d",
"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": {
"blake2b_256": "5cd4457807f84af32135bd6c351ba14258a7b6fb7cbbaba9550965db16672fc4",
"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": {
"blake2b_256": "297cd34d416947409d07a890cced069964d06042964d578b65fc3321d5fe388b",
"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": {
"blake2b_256": "0823650cc311586ea40082d7e8e55d338abdebb4e927563ef1ed66dbbf87794d",
"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": {
"blake2b_256": "a4d7e7bce7efe8500f7ea3692fb1b73aa0a6f640b3729f950887aea0f2a4e723",
"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": {
"blake2b_256": "90dd8fd2feaa123dccc547affa54d73f15eb464ef8bdebbe3ad21bdfbce7daaa",
"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": {
"blake2b_256": "097f95e1f38eb778c76b1d5f008efc9f3d648dadd22275497a038ee0844dcd62",
"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": {
"blake2b_256": "96cb3d83e3dea4b937729645f8390d78d7b71c57a4d7afaf4939641453949435",
"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": {
"blake2b_256": "94043d80ada0a48cd7985a4a00ea273e6a0af6f221c764edeac442f11b1bf8f1",
"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": {
"blake2b_256": "d10170773afaf252a17a4fceb6a3ac815d2a490d67226832b05eaf0f49d6ac50",
"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.10.0b1": [
{
"comment_text": "",
"digests": {
"blake2b_256": "61255b7a1fedca569044997d51de386f4c40ca2acf8b365e58d962c01d934b4b",
"md5": "545287886083dd8d27ca4308a90a3ff3",
"sha256": "79288f79ee540339293b12074e4d0881ab3c24429ac2805ceb71a6f8bd765c47"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "545287886083dd8d27ca4308a90a3ff3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 583713,
"upload_time": "2024-07-22T18:25:21",
"upload_time_iso_8601": "2024-07-22T18:25:21.864947Z",
"url": "https://files.pythonhosted.org/packages/61/25/5b7a1fedca569044997d51de386f4c40ca2acf8b365e58d962c01d934b4b/aiohttp-3.10.0b1-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f12e06e0f9c527d14ba976d59c1db48c0759b41e0fc40979dc5e4262cce36a10",
"md5": "8154c3421f7c0efc091abaef4869780c",
"sha256": "e8929ffe01b9a79d7c2b37e91f23a150838666c74742dfae885f88ed66fbe5e9"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "8154c3421f7c0efc091abaef4869780c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 395105,
"upload_time": "2024-07-22T18:25:25",
"upload_time_iso_8601": "2024-07-22T18:25:25.992843Z",
"url": "https://files.pythonhosted.org/packages/f1/2e/06e0f9c527d14ba976d59c1db48c0759b41e0fc40979dc5e4262cce36a10/aiohttp-3.10.0b1-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "33f3f9788c529f8cfce2f85c28917690b22d5c4059dbb4f3c22dca0130611995",
"md5": "bca924983ad69bc3c5a0cf5ed7df6f57",
"sha256": "11c027b9be8d6cddac34ec5fd44a5975e77dfce13cbee6827f35ecc88731906e"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "bca924983ad69bc3c5a0cf5ed7df6f57",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 384915,
"upload_time": "2024-07-22T18:25:28",
"upload_time_iso_8601": "2024-07-22T18:25:28.694311Z",
"url": "https://files.pythonhosted.org/packages/33/f3/f9788c529f8cfce2f85c28917690b22d5c4059dbb4f3c22dca0130611995/aiohttp-3.10.0b1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bc7c047783ff6b63dbe744d7a9dfa02921f7ed27f39828d0f7a228e8a2dc0b64",
"md5": "8ed75b7081ed8aee18f2518f7a4f25b7",
"sha256": "040259c83db3e16f8c76c98c5121844791e593ebfa9c1c627261f351b0a83fd8"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8ed75b7081ed8aee18f2518f7a4f25b7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1242304,
"upload_time": "2024-07-22T18:25:31",
"upload_time_iso_8601": "2024-07-22T18:25:31.168546Z",
"url": "https://files.pythonhosted.org/packages/bc/7c/047783ff6b63dbe744d7a9dfa02921f7ed27f39828d0f7a228e8a2dc0b64/aiohttp-3.10.0b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6e5951f26fd61af69e9417b0fec0d4bf1d1b8eb14c57d27c857baf8a1f393167",
"md5": "3eaa2e74a5e1b716bb26a4f8fe53a6c7",
"sha256": "8d8fb2f4754fe481338e142cf7041983f2009ffe0f2f59259842ce258883a7a0"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "3eaa2e74a5e1b716bb26a4f8fe53a6c7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1272624,
"upload_time": "2024-07-22T18:25:34",
"upload_time_iso_8601": "2024-07-22T18:25:34.536548Z",
"url": "https://files.pythonhosted.org/packages/6e/59/51f26fd61af69e9417b0fec0d4bf1d1b8eb14c57d27c857baf8a1f393167/aiohttp-3.10.0b1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dccb07e0f527aef410f3f2e230aee84e46947f29260d5bb4fe428bb41e48bcbc",
"md5": "9025f2493ca2bd0f791df19a36eaf72c",
"sha256": "c8a224460661f394bb96babb9284146bad9d2bca0e896e6cdf55a59f63ff2a02"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "9025f2493ca2bd0f791df19a36eaf72c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1307780,
"upload_time": "2024-07-22T18:25:36",
"upload_time_iso_8601": "2024-07-22T18:25:36.924885Z",
"url": "https://files.pythonhosted.org/packages/dc/cb/07e0f527aef410f3f2e230aee84e46947f29260d5bb4fe428bb41e48bcbc/aiohttp-3.10.0b1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "761c67e57d3e111a4a15f16bb7ecab05b8024bc8eed3bf7c225a0a4f260b14a1",
"md5": "89e9fb959c541a216eab50b05121eba8",
"sha256": "054af53b9cf75673d147e920a74e73328e9062c33653dab0bd1b38a3d5f9b9a8"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "89e9fb959c541a216eab50b05121eba8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1232459,
"upload_time": "2024-07-22T18:25:39",
"upload_time_iso_8601": "2024-07-22T18:25:39.312683Z",
"url": "https://files.pythonhosted.org/packages/76/1c/67e57d3e111a4a15f16bb7ecab05b8024bc8eed3bf7c225a0a4f260b14a1/aiohttp-3.10.0b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "81832e6a45b5d919d4fa27d34e948a51a7049d1aca75cdd25d5b5586874bd57e",
"md5": "6f6747e1d95348f8f43c8a97427228e9",
"sha256": "864db4bf257abcc4c95c4a324cde54310b15bffa4969e9a7d320a3ef99941d8e"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "6f6747e1d95348f8f43c8a97427228e9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1205991,
"upload_time": "2024-07-22T18:25:42",
"upload_time_iso_8601": "2024-07-22T18:25:42.530438Z",
"url": "https://files.pythonhosted.org/packages/81/83/2e6a45b5d919d4fa27d34e948a51a7049d1aca75cdd25d5b5586874bd57e/aiohttp-3.10.0b1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "28615374690544e8719a297347275825f9960d34223606331228b493f216c14b",
"md5": "e111c22ec9c3c1a83d030b8a23b60dc2",
"sha256": "c088e15f9e8485f992245cb17ab8a1a52b51378e58b3ac77984718c530788b82"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "e111c22ec9c3c1a83d030b8a23b60dc2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1203557,
"upload_time": "2024-07-22T18:25:45",
"upload_time_iso_8601": "2024-07-22T18:25:45.081007Z",
"url": "https://files.pythonhosted.org/packages/28/61/5374690544e8719a297347275825f9960d34223606331228b493f216c14b/aiohttp-3.10.0b1-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a8039a2e4edc5874fa2ba4d9fa4906f6ec07453f0a76939c43957021f065c263",
"md5": "a76b1e8c995f7b29abaae846ae97f559",
"sha256": "a9953572737efad59fe06032c6b9ca639b3372a4947a07df888980bfc7da09cb"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "a76b1e8c995f7b29abaae846ae97f559",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1202164,
"upload_time": "2024-07-22T18:25:47",
"upload_time_iso_8601": "2024-07-22T18:25:47.107543Z",
"url": "https://files.pythonhosted.org/packages/a8/03/9a2e4edc5874fa2ba4d9fa4906f6ec07453f0a76939c43957021f065c263/aiohttp-3.10.0b1-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "197aa93835e6958e4ba71765ef4e40365aa9562d895140e93d2a78b3304e297b",
"md5": "88bd6ed625d5d64732cf51a6164ac859",
"sha256": "8452daa4db5ba4956be51c7caed5681243ce89adc9b998c82a9d1bf261208141"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp310-cp310-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "88bd6ed625d5d64732cf51a6164ac859",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1254099,
"upload_time": "2024-07-22T18:25:50",
"upload_time_iso_8601": "2024-07-22T18:25:50.107964Z",
"url": "https://files.pythonhosted.org/packages/19/7a/a93835e6958e4ba71765ef4e40365aa9562d895140e93d2a78b3304e297b/aiohttp-3.10.0b1-cp310-cp310-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ab794b8359cbc9f30462af39cbd6ff2715729a1d5ba702d254df81fb5ac6e1f2",
"md5": "a04561e9d3ba8751a90cd51e2b7e8d2f",
"sha256": "a586d18de59b48a27399169e751a4c1a54cee47d9c47b063f0ef8088723a2f96"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp310-cp310-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "a04561e9d3ba8751a90cd51e2b7e8d2f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1270531,
"upload_time": "2024-07-22T18:25:52",
"upload_time_iso_8601": "2024-07-22T18:25:52.612978Z",
"url": "https://files.pythonhosted.org/packages/ab/79/4b8359cbc9f30462af39cbd6ff2715729a1d5ba702d254df81fb5ac6e1f2/aiohttp-3.10.0b1-cp310-cp310-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5ecb9e4a98f7e430a86efdabb751a3889fea70ac65fbe6911d6f4e8aa2e6f2ca",
"md5": "1fdd6e9108751ef434714300f0483c0c",
"sha256": "6ad0273ccb06f09532ab1509d7bfb2cefb5190a56853b0031b5a53cb315df6d2"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "1fdd6e9108751ef434714300f0483c0c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1222581,
"upload_time": "2024-07-22T18:25:55",
"upload_time_iso_8601": "2024-07-22T18:25:55.474446Z",
"url": "https://files.pythonhosted.org/packages/5e/cb/9e4a98f7e430a86efdabb751a3889fea70ac65fbe6911d6f4e8aa2e6f2ca/aiohttp-3.10.0b1-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6d4a1e19b55a15002cbaeda6183c8339bdc0ca5e2aaffdde70970f8c97d1ed96",
"md5": "56e678a47b0022eae5f5e2d422ba7f4f",
"sha256": "cbad82ded03fc480005c3a67db77fb9c80bd666986cd8d9c0bece00d58992da7"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "56e678a47b0022eae5f5e2d422ba7f4f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 356246,
"upload_time": "2024-07-22T18:25:58",
"upload_time_iso_8601": "2024-07-22T18:25:58.299771Z",
"url": "https://files.pythonhosted.org/packages/6d/4a/1e19b55a15002cbaeda6183c8339bdc0ca5e2aaffdde70970f8c97d1ed96/aiohttp-3.10.0b1-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "25c39f896f02dabac18cb22b73a90d33cbbba4064edb768d1920d4029b1b4436",
"md5": "7ac514ec09521d77489e930e470201b8",
"sha256": "ef7e9445af893ec3ade536025274de68a11a191d6392aaeef27937fb78bee2f5"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "7ac514ec09521d77489e930e470201b8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 375202,
"upload_time": "2024-07-22T18:26:00",
"upload_time_iso_8601": "2024-07-22T18:26:00.980540Z",
"url": "https://files.pythonhosted.org/packages/25/c3/9f896f02dabac18cb22b73a90d33cbbba4064edb768d1920d4029b1b4436/aiohttp-3.10.0b1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "16d86d0191193e579c5677a46536963cc46b89b4ee7ba3c28e219fa8ec0132d5",
"md5": "829a73006ab4bf1904e8f85bb290b8d3",
"sha256": "51fa9f2a2b2d554287eaf1d9d5836b4326d2a3ac72206397b07f9d0a98acf4e6"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "829a73006ab4bf1904e8f85bb290b8d3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 583169,
"upload_time": "2024-07-22T18:26:03",
"upload_time_iso_8601": "2024-07-22T18:26:03.351761Z",
"url": "https://files.pythonhosted.org/packages/16/d8/6d0191193e579c5677a46536963cc46b89b4ee7ba3c28e219fa8ec0132d5/aiohttp-3.10.0b1-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "701bb5fc6d50dc12e42f0573469844aeece7abeea26818622efea8e9b8e55d88",
"md5": "151092198cff843aa9f0e934fd8e2602",
"sha256": "8967806e29a3c6a9cd41c4c495f70775339405a4a51339958e5b34c19cbac3f8"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "151092198cff843aa9f0e934fd8e2602",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 394694,
"upload_time": "2024-07-22T18:26:05",
"upload_time_iso_8601": "2024-07-22T18:26:05.815139Z",
"url": "https://files.pythonhosted.org/packages/70/1b/b5fc6d50dc12e42f0573469844aeece7abeea26818622efea8e9b8e55d88/aiohttp-3.10.0b1-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "701c3e29a356dda084a87cf7097d4d6f281e923d1918b0645f9b79a7acdaeb50",
"md5": "6cf3f3f3071d37b6853a07936f471f1d",
"sha256": "2e1f8b021ca8978e990fb20fbb2c6e8c135f5d4cf26b14fab809f0c16f9e5ddc"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6cf3f3f3071d37b6853a07936f471f1d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 384779,
"upload_time": "2024-07-22T18:26:08",
"upload_time_iso_8601": "2024-07-22T18:26:08.110161Z",
"url": "https://files.pythonhosted.org/packages/70/1c/3e29a356dda084a87cf7097d4d6f281e923d1918b0645f9b79a7acdaeb50/aiohttp-3.10.0b1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "72685d30df7e7a7e4c37a16371df6fd1cf942520da047dcf0945233cc0416e81",
"md5": "debf6044af4588bae0c9975fbd0ca547",
"sha256": "135267cb03ef92699d5d15765b0b196611270d704f0f39777e3f7eaaaf8785fd"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "debf6044af4588bae0c9975fbd0ca547",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1316893,
"upload_time": "2024-07-22T18:26:10",
"upload_time_iso_8601": "2024-07-22T18:26:10.700130Z",
"url": "https://files.pythonhosted.org/packages/72/68/5d30df7e7a7e4c37a16371df6fd1cf942520da047dcf0945233cc0416e81/aiohttp-3.10.0b1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1fd88f95ece253302cda2126ad520a2c383104010a27cf95b0a69a6c423a91d8",
"md5": "419dd4f986325b0c008ea09bcf86d141",
"sha256": "83076018258391df81057419d9935309e888120606cef2727af5d55828e17bbe"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "419dd4f986325b0c008ea09bcf86d141",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1353651,
"upload_time": "2024-07-22T18:26:13",
"upload_time_iso_8601": "2024-07-22T18:26:13.472326Z",
"url": "https://files.pythonhosted.org/packages/1f/d8/8f95ece253302cda2126ad520a2c383104010a27cf95b0a69a6c423a91d8/aiohttp-3.10.0b1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b65c4095ef4cf600650f30e0ed2badc1dce62ebeeb92b659b985f6f8ddaee880",
"md5": "492ed257f0c75f78a7a4dca4fb843d2c",
"sha256": "caedc76293d5cb88632e48c59becc2327ccef17a649c16a8400035d5bb229e1e"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "492ed257f0c75f78a7a4dca4fb843d2c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1390980,
"upload_time": "2024-07-22T18:26:15",
"upload_time_iso_8601": "2024-07-22T18:26:15.679527Z",
"url": "https://files.pythonhosted.org/packages/b6/5c/4095ef4cf600650f30e0ed2badc1dce62ebeeb92b659b985f6f8ddaee880/aiohttp-3.10.0b1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e2c04cc7545e3cdfc237017a2ee60c16b564952082bf587ecec4a9b216e69172",
"md5": "a2e0c90dd6ed89655f99e535387b4843",
"sha256": "e8d127a1760c375f674be66798c3f55d46d55faa493c24ec041420186b40c13f"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a2e0c90dd6ed89655f99e535387b4843",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1301795,
"upload_time": "2024-07-22T18:26:18",
"upload_time_iso_8601": "2024-07-22T18:26:18.599527Z",
"url": "https://files.pythonhosted.org/packages/e2/c0/4cc7545e3cdfc237017a2ee60c16b564952082bf587ecec4a9b216e69172/aiohttp-3.10.0b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "25a13843d6f9800e49bc9621ff0948803ac4fcfb6bf5ed3fdb05673cc4797188",
"md5": "b4f0d7dae6f20b268996466dc20a8f6c",
"sha256": "743506ea35b7f8b26211f7d240e519bbb69da4186efbeed80075b701fe84ac54"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "b4f0d7dae6f20b268996466dc20a8f6c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1261465,
"upload_time": "2024-07-22T18:26:20",
"upload_time_iso_8601": "2024-07-22T18:26:20.985480Z",
"url": "https://files.pythonhosted.org/packages/25/a1/3843d6f9800e49bc9621ff0948803ac4fcfb6bf5ed3fdb05673cc4797188/aiohttp-3.10.0b1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a48cf171ef76b18a89e2b376c248a95ce78a2b8e817f90b812009b838e58359e",
"md5": "63fca8582e3e04d002cbd5d6410d5e92",
"sha256": "047a50579d641923240ec20618011885c6e8e3386a93d09818d452023cfeecaa"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "63fca8582e3e04d002cbd5d6410d5e92",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1282496,
"upload_time": "2024-07-22T18:26:23",
"upload_time_iso_8601": "2024-07-22T18:26:23.464613Z",
"url": "https://files.pythonhosted.org/packages/a4/8c/f171ef76b18a89e2b376c248a95ce78a2b8e817f90b812009b838e58359e/aiohttp-3.10.0b1-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "96bf77447b9c6d4db69664e53245162981c9bd56a517d7b764b2c34436354145",
"md5": "d0b45f2b834c5204af80b5ca058b2a23",
"sha256": "3b45b8dc0ad9459d576b18bba48ec50c5303aa75d642c13dace7821935658073"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "d0b45f2b834c5204af80b5ca058b2a23",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1276699,
"upload_time": "2024-07-22T18:26:26",
"upload_time_iso_8601": "2024-07-22T18:26:26.107142Z",
"url": "https://files.pythonhosted.org/packages/96/bf/77447b9c6d4db69664e53245162981c9bd56a517d7b764b2c34436354145/aiohttp-3.10.0b1-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8732e65cecb1bc928c40de7bd5dfc5ff2967b575caa471b23123de172c6e2668",
"md5": "1a0744d5a98beb66b6b066c31e3990a0",
"sha256": "b337c3c5722d32c354bbf882f3dee21ef1e084d27fac0071f9d2e1a24242216c"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp311-cp311-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "1a0744d5a98beb66b6b066c31e3990a0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1329780,
"upload_time": "2024-07-22T18:26:28",
"upload_time_iso_8601": "2024-07-22T18:26:28.764788Z",
"url": "https://files.pythonhosted.org/packages/87/32/e65cecb1bc928c40de7bd5dfc5ff2967b575caa471b23123de172c6e2668/aiohttp-3.10.0b1-cp311-cp311-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "01a1c25a03dffdd80ce1fcde80dd171cb065f6f2a242e9ff605cab98c2b60bd1",
"md5": "a0a2c0d0c0ffbd0b276d52d872d84db4",
"sha256": "6b9c4a53fd3c9a6238e541073e1852955c0bfbe6c30592362c37e0f698b2dbd5"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp311-cp311-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "a0a2c0d0c0ffbd0b276d52d872d84db4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1350112,
"upload_time": "2024-07-22T18:26:31",
"upload_time_iso_8601": "2024-07-22T18:26:31.444674Z",
"url": "https://files.pythonhosted.org/packages/01/a1/c25a03dffdd80ce1fcde80dd171cb065f6f2a242e9ff605cab98c2b60bd1/aiohttp-3.10.0b1-cp311-cp311-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9e430fd3a3ccb36d4cd66fa660b80be12153299a9708cd533ba62a4d5b56eb25",
"md5": "b5601723a7b1b520d22c8f4c68115667",
"sha256": "4643d283daa0b6de1b7e6eb09b4397d3c287a58f71a3c24eeda3849dc4fd6f25"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b5601723a7b1b520d22c8f4c68115667",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1309327,
"upload_time": "2024-07-22T18:26:33",
"upload_time_iso_8601": "2024-07-22T18:26:33.970617Z",
"url": "https://files.pythonhosted.org/packages/9e/43/0fd3a3ccb36d4cd66fa660b80be12153299a9708cd533ba62a4d5b56eb25/aiohttp-3.10.0b1-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "86f9ee9f7689525bc46ab35ec290e179d0084ad2e3ce6e6151b0dee53c0b28b9",
"md5": "fa3ba80023aefea8cd9efe110eab733e",
"sha256": "f5ed120276d68c991e6a4cad95e1cb0ea7ba095c37be2db3fd4cae28c3edc7a6"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "fa3ba80023aefea8cd9efe110eab733e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 355442,
"upload_time": "2024-07-22T18:26:36",
"upload_time_iso_8601": "2024-07-22T18:26:36.925784Z",
"url": "https://files.pythonhosted.org/packages/86/f9/ee9f7689525bc46ab35ec290e179d0084ad2e3ce6e6151b0dee53c0b28b9/aiohttp-3.10.0b1-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "60d29883a8b8f4f47ab9d9ed21006b7e6ac5d4e3fba0e2f8eb09af4f4d6ead7b",
"md5": "4090f9bf6a243b1cc97213b793d3f433",
"sha256": "d6153a1fafe6fba1775dfe0e33246171ae941a19079b86cf6ff78b23c2852368"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "4090f9bf6a243b1cc97213b793d3f433",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 375276,
"upload_time": "2024-07-22T18:26:39",
"upload_time_iso_8601": "2024-07-22T18:26:39.371472Z",
"url": "https://files.pythonhosted.org/packages/60/d2/9883a8b8f4f47ab9d9ed21006b7e6ac5d4e3fba0e2f8eb09af4f4d6ead7b/aiohttp-3.10.0b1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b7ed1d668c39de88144ca0c374f630dbab3c79dbf482b3027754eeafe148ba11",
"md5": "afff4f0a9c5c104405e38f6ae26c40cc",
"sha256": "9c01750c796517598cb751c144bca0a6b7df9ec51885102dbfc345662a2d99a6"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp312-cp312-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "afff4f0a9c5c104405e38f6ae26c40cc",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 579824,
"upload_time": "2024-07-22T18:26:41",
"upload_time_iso_8601": "2024-07-22T18:26:41.856716Z",
"url": "https://files.pythonhosted.org/packages/b7/ed/1d668c39de88144ca0c374f630dbab3c79dbf482b3027754eeafe148ba11/aiohttp-3.10.0b1-cp312-cp312-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "26f203958afafb69852b65b0b2760da1409a0258917fbca3953e2de1c3cab5ff",
"md5": "391af95279bbac5600cd22f023381e90",
"sha256": "4c734616a7540a16e820837b64b5132186a4612628af600084ab018f1759e98d"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "391af95279bbac5600cd22f023381e90",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 391301,
"upload_time": "2024-07-22T18:26:44",
"upload_time_iso_8601": "2024-07-22T18:26:44.404792Z",
"url": "https://files.pythonhosted.org/packages/26/f2/03958afafb69852b65b0b2760da1409a0258917fbca3953e2de1c3cab5ff/aiohttp-3.10.0b1-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "16ea48b72d6eac46c4f3c5c109bd7db402cf6d82a4e067bd093a47e270fd2e01",
"md5": "0dcdd70be459c2d2c9263a8070249264",
"sha256": "35e68c7a5669af71daba80193f77acb81e8e14a2865cba4a929458832a5934c8"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0dcdd70be459c2d2c9263a8070249264",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 385108,
"upload_time": "2024-07-22T18:26:46",
"upload_time_iso_8601": "2024-07-22T18:26:46.896176Z",
"url": "https://files.pythonhosted.org/packages/16/ea/48b72d6eac46c4f3c5c109bd7db402cf6d82a4e067bd093a47e270fd2e01/aiohttp-3.10.0b1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2f417ade2374e32b165a0a169fa7aa89a0ab797ccac4476f27f6c8e34a8c087b",
"md5": "6e756fc0f13f55f0c27e2cd763a0f31d",
"sha256": "279dc5b3a082b98e0b5fcc1137a242b3c3c0b6eadca6e105d73842e83e4620e6"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6e756fc0f13f55f0c27e2cd763a0f31d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1322767,
"upload_time": "2024-07-22T18:26:49",
"upload_time_iso_8601": "2024-07-22T18:26:49.301014Z",
"url": "https://files.pythonhosted.org/packages/2f/41/7ade2374e32b165a0a169fa7aa89a0ab797ccac4476f27f6c8e34a8c087b/aiohttp-3.10.0b1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1ab8546945c6753ade31df0adfa041388b2e5c3589868de013d725dfb8a69394",
"md5": "6fba4aba649ba2890efdb9551e6e2791",
"sha256": "98120e102212c3e2191ded48cc7fe8d13ca95c578ac665237e52f180589be924"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "6fba4aba649ba2890efdb9551e6e2791",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1362425,
"upload_time": "2024-07-22T18:26:51",
"upload_time_iso_8601": "2024-07-22T18:26:51.494522Z",
"url": "https://files.pythonhosted.org/packages/1a/b8/546945c6753ade31df0adfa041388b2e5c3589868de013d725dfb8a69394/aiohttp-3.10.0b1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b8279cb8066df4cd2b89c0203c53ebd96f73e73001bc71a47cc9de45428bc1ac",
"md5": "2b83964a5f3771498eebbc012c7bb37c",
"sha256": "d6c6b59d64f0392d72230a532306cb55a9b2c6a18da968c81eb795f128813243"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "2b83964a5f3771498eebbc012c7bb37c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1404535,
"upload_time": "2024-07-22T18:26:54",
"upload_time_iso_8601": "2024-07-22T18:26:54.316599Z",
"url": "https://files.pythonhosted.org/packages/b8/27/9cb8066df4cd2b89c0203c53ebd96f73e73001bc71a47cc9de45428bc1ac/aiohttp-3.10.0b1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5dc652da0d7c396a16aa5a79f43be55784a0d994b4fe74d178abcc7241ef720b",
"md5": "bb00af09fd7a67af88e486a7c57d6ee2",
"sha256": "80b3a27ce4aece99b9695e625a185dedb7e9cd4307be33247d18e0d951d94512"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bb00af09fd7a67af88e486a7c57d6ee2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1318255,
"upload_time": "2024-07-22T18:26:57",
"upload_time_iso_8601": "2024-07-22T18:26:57.007038Z",
"url": "https://files.pythonhosted.org/packages/5d/c6/52da0d7c396a16aa5a79f43be55784a0d994b4fe74d178abcc7241ef720b/aiohttp-3.10.0b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7b1afc0553b804f7232ac3fd8e48cf418e631375e0ee66a118fba8d3295f7106",
"md5": "3c07ec05fd5a4b9da123398ef7640e8e",
"sha256": "a31103fbb8f3a7861bbb78f1194e47e68f28e49909a5b89fc7ae289f061894b8"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "3c07ec05fd5a4b9da123398ef7640e8e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1270332,
"upload_time": "2024-07-22T18:26:59",
"upload_time_iso_8601": "2024-07-22T18:26:59.234237Z",
"url": "https://files.pythonhosted.org/packages/7b/1a/fc0553b804f7232ac3fd8e48cf418e631375e0ee66a118fba8d3295f7106/aiohttp-3.10.0b1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2696c659052b6b01fdef14da02fa3853ac00a0b6d224435ff090d0b010564adf",
"md5": "d7d100038cc004dc1afdba898e2f6053",
"sha256": "260523b683dbd180fb2e25caf5dc63601f723b3471a645b96a754737c800d975"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "d7d100038cc004dc1afdba898e2f6053",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1285002,
"upload_time": "2024-07-22T18:27:01",
"upload_time_iso_8601": "2024-07-22T18:27:01.883773Z",
"url": "https://files.pythonhosted.org/packages/26/96/c659052b6b01fdef14da02fa3853ac00a0b6d224435ff090d0b010564adf/aiohttp-3.10.0b1-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e31437393531eb3b2fe6db935a2cccf74118fd422304c97fe75c666e4da7b55",
"md5": "c5b96baa3d5cd42bc54c415b8f6ccf37",
"sha256": "b3c385da040e4dbb27592a62c266208e92ad8eb56c3fcd582d73c3cff263b14e"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "c5b96baa3d5cd42bc54c415b8f6ccf37",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1287088,
"upload_time": "2024-07-22T18:27:04",
"upload_time_iso_8601": "2024-07-22T18:27:04.626258Z",
"url": "https://files.pythonhosted.org/packages/8e/31/437393531eb3b2fe6db935a2cccf74118fd422304c97fe75c666e4da7b55/aiohttp-3.10.0b1-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9dae8db56f557aefbc32904ca87e1b3cf8017f68d1cb0191e9b60d133a14d8af",
"md5": "0e119539f305cf357b7d45e7348fc3a9",
"sha256": "63ff091664a9dec430fb47061b9f0613f5ae6f9f33d8e8248787c346e842ae8b"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp312-cp312-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "0e119539f305cf357b7d45e7348fc3a9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1333191,
"upload_time": "2024-07-22T18:27:07",
"upload_time_iso_8601": "2024-07-22T18:27:07.661406Z",
"url": "https://files.pythonhosted.org/packages/9d/ae/8db56f557aefbc32904ca87e1b3cf8017f68d1cb0191e9b60d133a14d8af/aiohttp-3.10.0b1-cp312-cp312-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bde69a919a34d1ac7ddb50e9fcae67d7ccf3741e2a9fdf5af19079fd126f9854",
"md5": "7f8d0d8c3bfd820bd0b4deccb451a77e",
"sha256": "4598585eb889bfdd5cbd624f839af21737ffdc07c2ac7ac1077a5a558e42cb72"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp312-cp312-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "7f8d0d8c3bfd820bd0b4deccb451a77e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1356297,
"upload_time": "2024-07-22T18:27:09",
"upload_time_iso_8601": "2024-07-22T18:27:09.867660Z",
"url": "https://files.pythonhosted.org/packages/bd/e6/9a919a34d1ac7ddb50e9fcae67d7ccf3741e2a9fdf5af19079fd126f9854/aiohttp-3.10.0b1-cp312-cp312-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f9ff732526cb969a15ea91add6d44cbdce44d91bbff2453e42ce0b17199b57e4",
"md5": "9d162c646449626841d42b657aa732ec",
"sha256": "1c5a25a5b737541ff62bef748add46ed768f162c47e0b120a25d2cf96c55905b"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "9d162c646449626841d42b657aa732ec",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1321665,
"upload_time": "2024-07-22T18:27:12",
"upload_time_iso_8601": "2024-07-22T18:27:12.651152Z",
"url": "https://files.pythonhosted.org/packages/f9/ff/732526cb969a15ea91add6d44cbdce44d91bbff2453e42ce0b17199b57e4/aiohttp-3.10.0b1-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8b2215f312955d56373e72044131afb88bfd777bdaf94c5a7ccdf588ec14de8d",
"md5": "c6c403e305940439494730981d77be95",
"sha256": "4a9421e05f8f90ee79483c8e0755e3e74a91a64d3f2bd1087b8b848b9831db79"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "c6c403e305940439494730981d77be95",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 353053,
"upload_time": "2024-07-22T18:27:15",
"upload_time_iso_8601": "2024-07-22T18:27:15.837842Z",
"url": "https://files.pythonhosted.org/packages/8b/22/15f312955d56373e72044131afb88bfd777bdaf94c5a7ccdf588ec14de8d/aiohttp-3.10.0b1-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eee3cdf24eecd3618242b0707193443c589f34ac1020cdefed90477b29f62f30",
"md5": "241dbd0fc2d52a228a6154d13de21b92",
"sha256": "c27c0f51e98b947acc451f6300e23dc6a006bbb0535efe06f06081f28604ca95"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "241dbd0fc2d52a228a6154d13de21b92",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 373771,
"upload_time": "2024-07-22T18:27:18",
"upload_time_iso_8601": "2024-07-22T18:27:18.608154Z",
"url": "https://files.pythonhosted.org/packages/ee/e3/cdf24eecd3618242b0707193443c589f34ac1020cdefed90477b29f62f30/aiohttp-3.10.0b1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "db4ff8d08e0a60c8276b9bb0b0a6ffdcab4f77f328b4e7b28a9325dac3a4a3e3",
"md5": "774c63d73caf7a0fcda899d02dfe85c1",
"sha256": "2ffb534df3afb52223e73d710aa54fe706dc17c03cddf2d2a0eddd062cbbd5bc"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "774c63d73caf7a0fcda899d02dfe85c1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 587780,
"upload_time": "2024-07-22T18:27:21",
"upload_time_iso_8601": "2024-07-22T18:27:21.270858Z",
"url": "https://files.pythonhosted.org/packages/db/4f/f8d08e0a60c8276b9bb0b0a6ffdcab4f77f328b4e7b28a9325dac3a4a3e3/aiohttp-3.10.0b1-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "087b02dc8c32de5e28d656e0b2c48a789b726ab65b7a83df1fdfa78a9ce868d8",
"md5": "5e1aae882a98bf220a6122970f60775a",
"sha256": "adb7760e018e66f8e0627aec09cd7dc1168dc52c6873e22272f02d820a5d9367"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "5e1aae882a98bf220a6122970f60775a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 397175,
"upload_time": "2024-07-22T18:27:24",
"upload_time_iso_8601": "2024-07-22T18:27:24.003129Z",
"url": "https://files.pythonhosted.org/packages/08/7b/02dc8c32de5e28d656e0b2c48a789b726ab65b7a83df1fdfa78a9ce868d8/aiohttp-3.10.0b1-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2928064c8fad5675f55b373cb9d28718a88b4916b2c045e1619492f659175d57",
"md5": "28a4692ba1606f56dbfd6b37dc98e1ff",
"sha256": "24d749c5dbc48a4820c38a75eceb1829bbb3fbf259b8aee0de1a4517b3fe69e5"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "28a4692ba1606f56dbfd6b37dc98e1ff",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 386750,
"upload_time": "2024-07-22T18:27:26",
"upload_time_iso_8601": "2024-07-22T18:27:26.733147Z",
"url": "https://files.pythonhosted.org/packages/29/28/064c8fad5675f55b373cb9d28718a88b4916b2c045e1619492f659175d57/aiohttp-3.10.0b1-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e25128c552e8e833440113ddc3915c01210aa708b43e46f25a788a0440153d6",
"md5": "b42c0fd51fd15eb98fae4a9a901b1fcd",
"sha256": "4394a114bb1d052fc5691946286d2929e5c7c672fa5a2962e994b95d2b15a697"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b42c0fd51fd15eb98fae4a9a901b1fcd",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1267210,
"upload_time": "2024-07-22T18:27:29",
"upload_time_iso_8601": "2024-07-22T18:27:29.222946Z",
"url": "https://files.pythonhosted.org/packages/5e/25/128c552e8e833440113ddc3915c01210aa708b43e46f25a788a0440153d6/aiohttp-3.10.0b1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3a814b9b9ad0963a43532f3f2d0bc416e27f4905d047d1c44645e7149ee1c0f2",
"md5": "241945f7e96484698d66a019c83c6f45",
"sha256": "99d237388e0325810f3236cfec13515214f1caf2d8f9eb6964b0b8c3c45d6b02"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "241945f7e96484698d66a019c83c6f45",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1319394,
"upload_time": "2024-07-22T18:27:31",
"upload_time_iso_8601": "2024-07-22T18:27:31.802879Z",
"url": "https://files.pythonhosted.org/packages/3a/81/4b9b9ad0963a43532f3f2d0bc416e27f4905d047d1c44645e7149ee1c0f2/aiohttp-3.10.0b1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "17b8f1cc17de3ce162419decf5b052315294f39b01276262a62dd6364e07b8e5",
"md5": "9ac067c7352ee5041370c9192c759691",
"sha256": "d38b4bdf30df475882d6fa7e7b6477a55ae847308ff9cb5879de812991be617e"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "9ac067c7352ee5041370c9192c759691",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1353028,
"upload_time": "2024-07-22T18:27:35",
"upload_time_iso_8601": "2024-07-22T18:27:35.804076Z",
"url": "https://files.pythonhosted.org/packages/17/b8/f1cc17de3ce162419decf5b052315294f39b01276262a62dd6364e07b8e5/aiohttp-3.10.0b1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "60d253ebd86e450fada4574d9cccd5bb8f290c6e3b14183818cef4126ac16727",
"md5": "95a5c31ce835c4b86314df8be997e381",
"sha256": "0f869a0b9147a3dd50178ae9854776b147512070c274119e7871d9d0d416a854"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "95a5c31ce835c4b86314df8be997e381",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1257572,
"upload_time": "2024-07-22T18:27:38",
"upload_time_iso_8601": "2024-07-22T18:27:38.374516Z",
"url": "https://files.pythonhosted.org/packages/60/d2/53ebd86e450fada4574d9cccd5bb8f290c6e3b14183818cef4126ac16727/aiohttp-3.10.0b1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9176a9e549fccef6d92119b985bc068466fe829644baa3731f94e7f9b1587df8",
"md5": "dad4f34c1fd9f157d1e656faf04010f1",
"sha256": "5839b63d30c10c10715e006a85ae00e7070c8be34089769b73c905a0efe4ce6a"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "dad4f34c1fd9f157d1e656faf04010f1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1224639,
"upload_time": "2024-07-22T18:27:40",
"upload_time_iso_8601": "2024-07-22T18:27:40.762367Z",
"url": "https://files.pythonhosted.org/packages/91/76/a9e549fccef6d92119b985bc068466fe829644baa3731f94e7f9b1587df8/aiohttp-3.10.0b1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "866ff204c7073575b2e9026ccb37ffea68cbf3e80ae38de090ae165096d16cb6",
"md5": "1a528230ee54318087664747d4f8a1ff",
"sha256": "e59cb3227da55f147eaab79751c6e06eb030d3553679bdb2c7cbe758336e94d7"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "1a528230ee54318087664747d4f8a1ff",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1232253,
"upload_time": "2024-07-22T18:27:43",
"upload_time_iso_8601": "2024-07-22T18:27:43.371042Z",
"url": "https://files.pythonhosted.org/packages/86/6f/f204c7073575b2e9026ccb37ffea68cbf3e80ae38de090ae165096d16cb6/aiohttp-3.10.0b1-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0757403f4f5e67874384c4447ff6285410f232f377e6b7638e3bc5ee9f48df44",
"md5": "59066e182c84413155b791048eec12b1",
"sha256": "b200f41fcdc83d7370ff0f7acd791d67fa3db21121b68e3a72e137612bbb417f"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "59066e182c84413155b791048eec12b1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1228624,
"upload_time": "2024-07-22T18:27:45",
"upload_time_iso_8601": "2024-07-22T18:27:45.624257Z",
"url": "https://files.pythonhosted.org/packages/07/57/403f4f5e67874384c4447ff6285410f232f377e6b7638e3bc5ee9f48df44/aiohttp-3.10.0b1-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "df51c0b5160ac2ce19f252262c255b725a72a8e0c370f645cb4c9f7518b84fa0",
"md5": "ccf813541cba16c29d11770a083a1b5d",
"sha256": "db1aac3fde99450e6cd4679a900200cf19d2b290b9b80f2c40b4cfe5db84b7b0"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp38-cp38-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "ccf813541cba16c29d11770a083a1b5d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1294683,
"upload_time": "2024-07-22T18:27:47",
"upload_time_iso_8601": "2024-07-22T18:27:47.850475Z",
"url": "https://files.pythonhosted.org/packages/df/51/c0b5160ac2ce19f252262c255b725a72a8e0c370f645cb4c9f7518b84fa0/aiohttp-3.10.0b1-cp38-cp38-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e03e343cf1c7617a7f697ce89fcd6a1fc91d37e973688488f3e961f2526d987d",
"md5": "c25397592bf836c69495a780962cd534",
"sha256": "c09661ab2ba32d33f258e10aba72cbb4c77e98909fdfd13d58e3581382b72a19"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp38-cp38-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "c25397592bf836c69495a780962cd534",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1310958,
"upload_time": "2024-07-22T18:27:50",
"upload_time_iso_8601": "2024-07-22T18:27:50.570990Z",
"url": "https://files.pythonhosted.org/packages/e0/3e/343cf1c7617a7f697ce89fcd6a1fc91d37e973688488f3e961f2526d987d/aiohttp-3.10.0b1-cp38-cp38-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "abd2b2af359295fd9c6bc2dcfc8214174a2d062501e07677fe661d6e23081580",
"md5": "7d46fa3503e258cf293d6161bd74128e",
"sha256": "a295531930c4b55f2744c6c3d400e19cb69dc8f0883322f4cfa62af146dbcd48"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "7d46fa3503e258cf293d6161bd74128e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1254694,
"upload_time": "2024-07-22T18:27:52",
"upload_time_iso_8601": "2024-07-22T18:27:52.987177Z",
"url": "https://files.pythonhosted.org/packages/ab/d2/b2af359295fd9c6bc2dcfc8214174a2d062501e07677fe661d6e23081580/aiohttp-3.10.0b1-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1fa571d1b7519079b42112da8c1810523de11c8ad33f03e0d6d1ef109778ecb6",
"md5": "738f0081a3f4e4f175c62c8084b43014",
"sha256": "c849eab2060de00017d77e7768835697cb88108f6a3d4e4995004a1ac2793355"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "738f0081a3f4e4f175c62c8084b43014",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 358032,
"upload_time": "2024-07-22T18:27:55",
"upload_time_iso_8601": "2024-07-22T18:27:55.167256Z",
"url": "https://files.pythonhosted.org/packages/1f/a5/71d1b7519079b42112da8c1810523de11c8ad33f03e0d6d1ef109778ecb6/aiohttp-3.10.0b1-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "906e77ca76b5817afa6176a69db37dae948af2b6e996e32d92895f8ad6210cb4",
"md5": "dfc577b8c519bd80204f0c661f8b8692",
"sha256": "2595a82f5daf51b7531f0e7e1c5f246b87766745f8726b58b8ea59fda669f519"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "dfc577b8c519bd80204f0c661f8b8692",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 377548,
"upload_time": "2024-07-22T18:27:57",
"upload_time_iso_8601": "2024-07-22T18:27:57.334128Z",
"url": "https://files.pythonhosted.org/packages/90/6e/77ca76b5817afa6176a69db37dae948af2b6e996e32d92895f8ad6210cb4/aiohttp-3.10.0b1-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dcd6d874513984c596ac0303e6e3678546918de06b55746ed010fba3c8b10918",
"md5": "306fae6618893213ac4a6b8e41fabe58",
"sha256": "73e9ada2b95bceca1b9764c15fe270587209be3ead20d0efefd59fd3efffe75f"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "306fae6618893213ac4a6b8e41fabe58",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 585422,
"upload_time": "2024-07-22T18:27:59",
"upload_time_iso_8601": "2024-07-22T18:27:59.780691Z",
"url": "https://files.pythonhosted.org/packages/dc/d6/d874513984c596ac0303e6e3678546918de06b55746ed010fba3c8b10918/aiohttp-3.10.0b1-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4097fcb795a0aa1595850041288a61db6b21f496b907afe364b858388f15321b",
"md5": "79f0d4e9578726ea7ebf28de3f69a7d0",
"sha256": "b11402bc79dbddcf417f32397b2be31dec0b62f12d8217e08b5d8eb19b059152"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "79f0d4e9578726ea7ebf28de3f69a7d0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 396005,
"upload_time": "2024-07-22T18:28:01",
"upload_time_iso_8601": "2024-07-22T18:28:01.914459Z",
"url": "https://files.pythonhosted.org/packages/40/97/fcb795a0aa1595850041288a61db6b21f496b907afe364b858388f15321b/aiohttp-3.10.0b1-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e7193bef1fa3ba217a28ce2bf9d4e2e57ffe5e82e37c4554e85802a945b58c1",
"md5": "9c031f884dcb65112d266ca06fdd266b",
"sha256": "0d87d7bd6ed3080982635324dee8122053287b775c6e7f835b77cc8526c46e63"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9c031f884dcb65112d266ca06fdd266b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 385684,
"upload_time": "2024-07-22T18:28:04",
"upload_time_iso_8601": "2024-07-22T18:28:04.713933Z",
"url": "https://files.pythonhosted.org/packages/4e/71/93bef1fa3ba217a28ce2bf9d4e2e57ffe5e82e37c4554e85802a945b58c1/aiohttp-3.10.0b1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "da326e841b46c9af291304139459b7dfcebfd250ed53634d90cd4165181c1b2a",
"md5": "cb5489e05356f9dd27fbd33a0e534dc2",
"sha256": "548700d08cfeb2e0777eae8e7b4494006c2e391dcb78faf8ddcda8b46becae37"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "cb5489e05356f9dd27fbd33a0e534dc2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1245614,
"upload_time": "2024-07-22T18:28:07",
"upload_time_iso_8601": "2024-07-22T18:28:07.742380Z",
"url": "https://files.pythonhosted.org/packages/da/32/6e841b46c9af291304139459b7dfcebfd250ed53634d90cd4165181c1b2a/aiohttp-3.10.0b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9026ddb67be1bba47e7da027d6480cd580d01ce0fd87581f895599b68add5a84",
"md5": "fcf9651035c6ba74811fa971ac33e7cc",
"sha256": "015e6bf621a76b80f104ed35f37d3b8d4bfac525e6b8ac88a2cab3e1c24eeff7"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "fcf9651035c6ba74811fa971ac33e7cc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1279414,
"upload_time": "2024-07-22T18:28:11",
"upload_time_iso_8601": "2024-07-22T18:28:11.381896Z",
"url": "https://files.pythonhosted.org/packages/90/26/ddb67be1bba47e7da027d6480cd580d01ce0fd87581f895599b68add5a84/aiohttp-3.10.0b1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c6983a47918ea8da3d3607a0db1affe9303272b91202dd95293c49750259d992",
"md5": "41aa70b5844af76be657c5c5f0220840",
"sha256": "9f281f29cd0c400c5b31e491116d66f7d7e82aa1603d9acd9371e62922cc8cb4"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "41aa70b5844af76be657c5c5f0220840",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1314807,
"upload_time": "2024-07-22T18:28:13",
"upload_time_iso_8601": "2024-07-22T18:28:13.976036Z",
"url": "https://files.pythonhosted.org/packages/c6/98/3a47918ea8da3d3607a0db1affe9303272b91202dd95293c49750259d992/aiohttp-3.10.0b1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a8138c6c08b46512d1836a6ff5e4d07494fbb129bf5d3dbb70c70ab5bad2466e",
"md5": "49444d03d625ed61cc51669149003fcc",
"sha256": "d262437d75ca25f698a213380ad6e26cf024a15aeacaef71b428d782bf5740f6"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "49444d03d625ed61cc51669149003fcc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1235325,
"upload_time": "2024-07-22T18:28:16",
"upload_time_iso_8601": "2024-07-22T18:28:16.679101Z",
"url": "https://files.pythonhosted.org/packages/a8/13/8c6c08b46512d1836a6ff5e4d07494fbb129bf5d3dbb70c70ab5bad2466e/aiohttp-3.10.0b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "67f11ce282f211b10c04eb19a6cc0097037d346ea57142b5dd63ad46b501314e",
"md5": "b82345b3dfa70e633ef68c1793adf116",
"sha256": "19f0d6fa56dd83e3e19e5acf63fc39abac5c1b479eaa8aa88b5ae7df0c3a5140"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "b82345b3dfa70e633ef68c1793adf116",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1208634,
"upload_time": "2024-07-22T18:28:19",
"upload_time_iso_8601": "2024-07-22T18:28:19.996880Z",
"url": "https://files.pythonhosted.org/packages/67/f1/1ce282f211b10c04eb19a6cc0097037d346ea57142b5dd63ad46b501314e/aiohttp-3.10.0b1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "39438dd83ce2e5740e2f65d87c53fdf56494db80bba3c8268ca1c179f508c9e9",
"md5": "b578d572163311cc7638e716c950b949",
"sha256": "f67fab0bead50296a25e568f8368e390db8253cbfd3b16b3f6d6c5ee475ccfff"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "b578d572163311cc7638e716c950b949",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1207466,
"upload_time": "2024-07-22T18:28:23",
"upload_time_iso_8601": "2024-07-22T18:28:23.382961Z",
"url": "https://files.pythonhosted.org/packages/39/43/8dd83ce2e5740e2f65d87c53fdf56494db80bba3c8268ca1c179f508c9e9/aiohttp-3.10.0b1-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d3f2b120434d9cdae1b7c8645b932e84da590216cd8f1956a24369e555643035",
"md5": "a9820dc22418bb01bc6feb16df105477",
"sha256": "0f105b7ff4607e70701cb4819883843b2dd441004a1251d0452fe249d3a9bc4d"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "a9820dc22418bb01bc6feb16df105477",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1207826,
"upload_time": "2024-07-22T18:28:25",
"upload_time_iso_8601": "2024-07-22T18:28:25.635175Z",
"url": "https://files.pythonhosted.org/packages/d3/f2/b120434d9cdae1b7c8645b932e84da590216cd8f1956a24369e555643035/aiohttp-3.10.0b1-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e6e3676048e4182a9abe7ef25b4c381d4432bb1c2e77d4263183ac3de66d7071",
"md5": "af808d3a6b823fd2c029ef9d3b695913",
"sha256": "2d8c88000a7b66976b8d73a96838bbf1c6bd347f5cd48421a236680fa19ff9f9"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp39-cp39-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "af808d3a6b823fd2c029ef9d3b695913",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1260824,
"upload_time": "2024-07-22T18:28:29",
"upload_time_iso_8601": "2024-07-22T18:28:29.745228Z",
"url": "https://files.pythonhosted.org/packages/e6/e3/676048e4182a9abe7ef25b4c381d4432bb1c2e77d4263183ac3de66d7071/aiohttp-3.10.0b1-cp39-cp39-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7e0c09c9b5b8fcf7d77a40ac87d1103a4a8d80dbeeadec2f06f060feb5225e4e",
"md5": "4d87b1e244cba2446a907d73abb04759",
"sha256": "771769c4785f3d7f18daa5dd664dddad7b941aa54fc63923f10f9f0a3ca6fb34"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp39-cp39-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "4d87b1e244cba2446a907d73abb04759",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1276282,
"upload_time": "2024-07-22T18:28:32",
"upload_time_iso_8601": "2024-07-22T18:28:32.551761Z",
"url": "https://files.pythonhosted.org/packages/7e/0c/09c9b5b8fcf7d77a40ac87d1103a4a8d80dbeeadec2f06f060feb5225e4e/aiohttp-3.10.0b1-cp39-cp39-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "42b188e7e3d2f5c7a79198152f45ffa722a8cd20c67d55d2f6b0c48a47b4b220",
"md5": "c0d1fdbf78df105bd1ce9e42bfd80ecf",
"sha256": "840394c1af5de67d28b5fd9deadd7fd700677f08ce7158d8b57154d06b3b7b64"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "c0d1fdbf78df105bd1ce9e42bfd80ecf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1226233,
"upload_time": "2024-07-22T18:28:35",
"upload_time_iso_8601": "2024-07-22T18:28:35.028595Z",
"url": "https://files.pythonhosted.org/packages/42/b1/88e7e3d2f5c7a79198152f45ffa722a8cd20c67d55d2f6b0c48a47b4b220/aiohttp-3.10.0b1-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ff1d52432d694cb9ec7419eefc4b4ae35893ae0584d218491a53dbecda75a585",
"md5": "abdf492765a7fc7c7cb10db261be0838",
"sha256": "e4c938d1b02c10d3f6e87303db6937ba3855295e226ac4aa699ea8b97937370d"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "abdf492765a7fc7c7cb10db261be0838",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 356934,
"upload_time": "2024-07-22T18:28:37",
"upload_time_iso_8601": "2024-07-22T18:28:37.614802Z",
"url": "https://files.pythonhosted.org/packages/ff/1d/52432d694cb9ec7419eefc4b4ae35893ae0584d218491a53dbecda75a585/aiohttp-3.10.0b1-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a068378f94a60b61ebfa76d3dc423450d101c558d13ec326c4d64537f0955092",
"md5": "f725a66498e7e45c68ac0afde9babc75",
"sha256": "862774706490d2d2f2d32747531dab35610a1bc9db1729dc191bb3420a8ba0d3"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "f725a66498e7e45c68ac0afde9babc75",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 375869,
"upload_time": "2024-07-22T18:28:39",
"upload_time_iso_8601": "2024-07-22T18:28:39.823472Z",
"url": "https://files.pythonhosted.org/packages/a0/68/378f94a60b61ebfa76d3dc423450d101c558d13ec326c4d64537f0955092/aiohttp-3.10.0b1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "96587721b53b11dac2aa6518944239ac8686649533979b141ee5e8097f016156",
"md5": "a6d978a3bdff4615a3967a38ded876a5",
"sha256": "28d0c99fe50d3d16055a34b6a6490efc58a0e70a323a710c55f7cabbe8857474"
},
"downloads": -1,
"filename": "aiohttp-3.10.0b1.tar.gz",
"has_sig": false,
"md5_digest": "a6d978a3bdff4615a3967a38ded876a5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 7515855,
"upload_time": "2024-07-22T18:28:42",
"upload_time_iso_8601": "2024-07-22T18:28:42.924118Z",
"url": "https://files.pythonhosted.org/packages/96/58/7721b53b11dac2aa6518944239ac8686649533979b141ee5e8097f016156/aiohttp-3.10.0b1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.2.0": [
{
"comment_text": "",
"digests": {
"blake2b_256": "4abdf57b6d6bb99df7d82b68f48a1713cf3dd6d5fc3e711e1e5c205ad1a81da0",
"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": {
"blake2b_256": "7f3d357cc50078db44388b1f451fda586a45bb852aaf4cd876808c481cfaa6d6",
"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": {
"blake2b_256": "60e0019b121318c065e26cdae8ecc9e6f40a32a9dcbee9669d3d5f80b98b13a3",
"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": {
"blake2b_256": "929c2bf432249bb57bf87e07842b458fac130d44dd7d8fb536154ac3edf46bc7",
"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": {
"blake2b_256": "059aeded1423b19063c8a06457a0bfd69a070b320f1fba67797449e65dc7ffa2",
"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": {
"blake2b_256": "d247d063068486ae7e096d0160452c0101ce50c4fb2e3b43d4b612eb9994954d",
"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": {
"blake2b_256": "3cd3aff2e50a3233271581963531b6406f2291129b7321faef3d47062d71b048",
"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": {
"blake2b_256": "5dc051a3ac413149913a7dab019e5b5bb464c4e7fc04868515158e59dcc7ba6b",
"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": {
"blake2b_256": "5e4702b2e08e41b25c209051ae1069743395d15bddd7a98ca5a736a7fe1a184c",
"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": {
"blake2b_256": "81db93769be1bc3d1dc58b859f11a1e2eb2d1db0a8927d00ffa626ce0df70f4b",
"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": {
"blake2b_256": "817eaf3ecef7ad5e216efc55111043bfa600127207ea477b0604999e2d6a6b1d",
"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": {
"blake2b_256": "fffb33dd1b634c1aa837afce8aa259a83d6b294581442d727f13a3baf39f608c",
"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": {
"blake2b_256": "9ec556af4b0fcb6473dc0620e513c6b5ece58fc6ce34078573fc021c00b513de",
"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": {
"blake2b_256": "2a17f234a648ee32e5fe8cdd15db893c21b5c7dab302e6d903c8aa13ff310cc6",
"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": {
"blake2b_256": "0e1bfd86244ef0c1c6c18581a7cbd37535f8a59054e73fbd52227c37b1c5a0d4",
"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": {
"blake2b_256": "2a6e60c003bae2fef15124611a3b82f67e954844154147d7c5d3b2a7ec46da16",
"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": {
"blake2b_256": "5f86f876c9050bc3c4785700735627d7a5e83ecb9e1667bdaf106516f90830dd",
"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": {
"blake2b_256": "57aee63d90736b478130715fca4a84b39f5615c103d5146699413558d225dac9",
"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": {
"blake2b_256": "601e2d8bee63a4b5dab578ddb351e86ad8467baff9a1f6f874a7c63ac8e94bd3",
"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": {
"blake2b_256": "15e34a6c7eb7b2be7ff906c45cabf19e3b08dd64e89f2940669f4b4af25434fd",
"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": {
"blake2b_256": "bd0e0682174da40326578f804b848a017f8337f54e9d98fa49a42039ca26b4d6",
"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": {
"blake2b_256": "09aa65f033caa231d96d8a4e2f849a9f4217d4885f689863ad4f3a7139e2c457",
"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": {
"blake2b_256": "9262dc422233c50b42c05b0ae68756c5015f3e8ce6b4df6f7e3bced5e94858dc",
"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": {
"blake2b_256": "1826d1fbcd1cc40094485f8066c7013590e20d0863e8f39b1af53d48fccaddc9",
"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": {
"blake2b_256": "35d8e90985ce9a2e157dffe060fe7090494d3e388b2e4493f6278c096ad0c9cc",
"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": {
"blake2b_256": "a31060c12d16a5c6a87cd11d3df3a1a02f0f8ea8a9592b9dea4b8ba7f13f77df",
"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": {
"blake2b_256": "7527d76236fb1620eba35d6f5c60eaa08de36256a6c8e6516b3e132868b51509",
"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": {
"blake2b_256": "e89517b21b03f408fef260f93816cb427882a289984929612edb8f1801c5f36b",
"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": {
"blake2b_256": "552e3f1d940482e9d4a201b7d457dd2e1cc77a19ea9ff40fc2088410893f0e4b",
"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": {
"blake2b_256": "81fa8915137ac0603112bbb63489de90a75c69da8a138594eb6a24cb8afb14df",
"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": {
"blake2b_256": "b74920acca87bad83201e47b8da21392238de52c933dd44e4bdfb98283fc4c2b",
"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": {
"blake2b_256": "4aaeaf1e0b4a1d64dc1eb7ec283b311a57a64ffefc7752e31496691c5bd71348",
"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": {
"blake2b_256": "3f45ede420c6733d43dcf290131ae7d641359bd3fb374e3adb0ace6bf3dcfb17",
"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": {
"blake2b_256": "36302a02f97e7171d3dbed560e5b3b704d80c42fe7b1b2b9e5dff7fafdcd1e2e",
"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": {
"blake2b_256": "539e7c5b9808adf36ea7d2f0ff3f1dc751838353d2423b5c78d947cb5abdfb6c",
"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": {
"blake2b_256": "0706a2ee8e3c6c7fb3ad8057e7049a8e59a3c9e47efe64dca0ffa1916eb26709",
"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": {
"blake2b_256": "1a53a54689acf9c5cd6c6be9beadcff908cecb692b9a96eb72a2e00eaccf5299",
"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": {
"blake2b_256": "247e6f2cbf89cfaa599ba256ffd3352e3959de2404b5223bfbcf2a9780cc6752",
"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": {
"blake2b_256": "bfafa6f68012ff76916902fda95ca6ec1150386aa6c998eaefca7d5fbc2e8a92",
"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": {
"blake2b_256": "35e8f4383e2e4db6b2854e059d938dc0d45844ada8a8f2f0b149dee127c40ff4",
"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": {
"blake2b_256": "18f94bd664c743dcd29c996dfc70bee9eb31df8c9f7fbbad8be2790748374efc",
"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": {
"blake2b_256": "efc85c5601aea0d63b3889680d8133769656ef78f226e5b4c5d1d6195a13a162",
"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": {
"blake2b_256": "0ba1e68134be65e6b2a55d20d3214309dc9e12fabbef1e1d0833a62e04f07fc0",
"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": {
"blake2b_256": "d2618821d09eb2ba97cb331f2b395139a932bca0455b5091038e91a5038c985d",
"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": {
"blake2b_256": "a7ff10e4cd9d1c7cbdea4155d31881ec47392c699eb49b49293eab01575c9831",
"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": {
"blake2b_256": "b62d8a4a3d91bae8ec8f4344533d4d378f035006571f19feec8d8ccaeb64b65a",
"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": {
"blake2b_256": "db17abedaa9923010381e825853b18f4e077247f068e6977c6e82544d03813be",
"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": {
"blake2b_256": "e0ca1804e24313a80445efad9c7ead32774934b5fd6c2d5c16723d2701c47f35",
"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": {
"blake2b_256": "6119b5a345c82eb44b4fa44c51dcd9dc019b1eefe8bd24442311ebf8d40719fb",
"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": {
"blake2b_256": "dd2494f8871b3a90aecd408b74e95be8b5f7196ee24744628a07a5767ad0fbd4",
"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": {
"blake2b_256": "2f99cca163e157310055fc722f668e1d1e09c20e1d5e63113eaf4625dffdb2be",
"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": {
"blake2b_256": "712f66a46a6fc3494ef57754729c7e6f2780758920e6efc4684459e1e875a7eb",
"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": {
"blake2b_256": "8edf6c2fccc2d0077836f3170b01dc7d8857bf3a2b260f70d1a7e41d31275071",
"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": {
"blake2b_256": "f704b730d08648b2bdb5c6300d9c9fa3fe879ec2caf3d104da37978939c709b1",
"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": {
"blake2b_256": "3ff9a4fc8a186ebcca7f15bbf0cac973a69bac8dd1e92ee2885339fba339a7d1",
"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": {
"blake2b_256": "4d5e02cc05795d8f5af3eadb7662121f705f14c6a43385eacebaa98bdb54ed42",
"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": {
"blake2b_256": "93b3e2fe348633ada4a611108a3699b08dee22554107f7cb7cbaeec7a6f4e2c8",
"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": {
"blake2b_256": "f2e9015300c260c5e2c063bcc0dc8c4ed50df1af898f984318112aac01a8d76e",
"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": {
"blake2b_256": "9a80c2164a46b6d3acd9f0b53ef12db1bc3576973d7cebc37ef96047fdef3c4c",
"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": {
"blake2b_256": "933f8856fa8eec985e64ae3d8b1353acb7edec0d870abd9a5fce3cf39d3c323d",
"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": {
"blake2b_256": "9e47f8cb1d67be373172c574737ce85f536d30f6ae6424760bbf7f441c22eec0",
"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": {
"blake2b_256": "a854b0e61c8a3790dfa5d09e538bdafc2ef0ed7c5bb31308063ac451efd9726a",
"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": {
"blake2b_256": "1561e527f5094e5717d31ab2a92135e67e131659068626d426b95244e9c3aa8d",
"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": {
"blake2b_256": "8ed76c4716413cbaacb1ca371ee142f0edac87e7d8df8bba8f63165a32aa81cd",
"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": {
"blake2b_256": "6fc9340265675d4b553b46e94560eb1d0d1df7c9484a246b873ddc0516a74a74",
"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": {
"blake2b_256": "7401e1653fb30a8d112c0dc4837a93775faca2461b62791494855ee046b7cef3",
"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": {
"blake2b_256": "da7a4c31e0e2884b1e982cae4bd8b066010e76f5e5653037ccd403e9f04f71ec",
"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": {
"blake2b_256": "30e773221dc4f32a5c34fa131d64d18003a8940d4f489607ae7f231e32d9d42c",
"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": {
"blake2b_256": "eab24936aa1db329d27efdec02b4a4fb4e743a1ed19f6daa205b0b9badabbed1",
"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": {
"blake2b_256": "dcc20b6b6cfde08b068e9592cbe309401023a841b99a50b0bed1189ffcfe3725",
"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": {
"blake2b_256": "623908e33c975b4d8149b3806f06344077ec17b78fb0eadafb03563e871e5963",
"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": {
"blake2b_256": "d069d84453c151bf9a06bd7f0f13915cc2d0b4337c7d4124da2f221f68e67575",
"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": {
"blake2b_256": "7b581d258b6853a3ba9b6627933f53f307958932701ffb2318f89d0d077a1de1",
"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": {
"blake2b_256": "e266756ad4b3d0456dcbcc3ab59e297dcdc58a3e8a6fee3f14aa474a97964abf",
"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": {
"blake2b_256": "54f98b47199ceae89a867edc45c43dc908384fd2e1ac22406b60d101d988752b",
"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": {
"blake2b_256": "eee96c1744c7e8bb44a1fb9388fc340bede1aeb3d531462fc975aa14138dacfe",
"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": {
"blake2b_256": "233af9aaa8e67463ad0cef7e3e957d8e17492366328686b2575a1424af177905",
"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": {
"blake2b_256": "726a5bbf3544fe8de525f4521506b372dc9c3b13070fe34e911c976aa95631d7",
"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": {
"blake2b_256": "da259c09c518f49d52adc69165c10d863e23f02a7178af22d0f8c2a3e1066948",
"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": {
"blake2b_256": "690f57468d875a883d481a05ea2b74445ada88c0a7d13a463feab6585cb597ab",
"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": {
"blake2b_256": "b40530d5c962b062f24a12bd827ec6445b02db964a95abfcf50b1dd234762f26",
"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": {
"blake2b_256": "40cfa3bbffd15e2337843b9782bbad2d98ea5db1c336f64ccc7887684da9070c",
"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": {
"blake2b_256": "9e5acfd0f168cc8979955db27b445ba287c7c2d8509ec199bb3f43f94c941e19",
"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": {
"blake2b_256": "a99efbe40a3fb68b49035ec184837ba3f702ab1e2a450c4730a25da4f7286fcc",
"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": {
"blake2b_256": "70ace04b3e86eee99570814a3c58bc139b77e8d7194b389e109a4a2c27fcb003",
"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": {
"blake2b_256": "256e059735274a8155768aade7489395f7c6eea170822da37291817e94fc1a3f",
"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": {
"blake2b_256": "be32edb60877e240b403b6a58f24ab8fd91f00ab73fdf4ae94274c9eded7b8e6",
"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": {
"blake2b_256": "65a5586f669c61701d0166b5f19ae5a1c1130ac3c5d3ed374fe37c8e3b0053b6",
"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": {
"blake2b_256": "314cddc159ef34701882d0dad1b2c48df8b83d728fc73f378b5a7de8681b6662",
"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": {
"blake2b_256": "385268188f35c3a52c019d81d284965f5d733444077b52c57e2d56a7d2e07ce9",
"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": {
"blake2b_256": "78f9f3ba20b2a868c565f6a1dd3bb2e16de7f12f1533de0c2b8092eb4dbf4d1e",
"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": {
"blake2b_256": "4622c51a8896c8c3c562531b0f6781876d915feab7744513d532e13f3dec07df",
"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": {
"blake2b_256": "5d6077a3e66630295b53df84ee61f8e2579a391bd07d485943fdb7412ebbe4de",
"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": {
"blake2b_256": "24f190c210be1db8c988be5620b5f02e1158bc453e205d0bbadeb9d41acc0478",
"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": {
"blake2b_256": "05445de76481fe1c8c3cf04b971ffc0a631fa8485836e7618c68f53e0cfa1cfd",
"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": {
"blake2b_256": "c9931d13174331d845ee2c9ff153c04a602d02d6fa822f15e43630e392d5dd7a",
"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": {
"blake2b_256": "74a5808e1fcfaee8662bc62882c33cec3cf20aa76b445e31e19619c680cb161e",
"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": {
"blake2b_256": "a2a1a59dd805353eb7dcec432ade67308bc3c4c68168a3933c68092d930546b4",
"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": {
"blake2b_256": "f4c5d9a999a085ae623c3ae6826829887af103b3a165cef72a5ccbe4d70e8afc",
"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": {
"blake2b_256": "b67804b118eddb26f8caa53aa466f8817d5d9eb34c21b6b285c406026fd89806",
"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": {
"blake2b_256": "c6ee7ea531447cdf5ca7687a28928fd8b97124f0791992614b804742375e33ac",
"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": {
"blake2b_256": "06830464c2c4313e259dfb5726b82afb5595d2cf1448341ce93ca9404082194a",
"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": {
"blake2b_256": "1e294c1d96c9bf5187310975559f6c5de383e67bd0ba8d8c94278fa44c32ed7b",
"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": {
"blake2b_256": "3030eb8ef6bf7eb5c9104e44e83e1443a59215583cad5ddeec5fd2abb65e1083",
"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": {
"blake2b_256": "acb80110cfcbaaaf4d578b866f547e3d4f8d164ea489abadf9631b8b493bf9de",
"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": {
"blake2b_256": "3d4d944a89cdbf4d2a98196affbf6ee04935558472ab8c80ef1916b2c2ac40c9",
"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": {
"blake2b_256": "f9face62ea4710ccb4b4804e6788637514cf033c75a06c09596d826e8e2b8b36",
"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": {
"blake2b_256": "de43f097895f05c1a2c122f32519fb55cb60919f769222871ddf6e8282db7beb",
"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": {
"blake2b_256": "be99e5ae79499beacc79f24e1a3d44388ef9fe7b1fdd6af6e5e8ceb4f814c0ee",
"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": {
"blake2b_256": "5db5d6349b718eb10f8622939c1ca776fc5354cc62cd17d06842d0b9ef1a5cbb",
"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": {
"blake2b_256": "090122c9b713b195d071b73fdc2f977f8717497b0d30c41c0b4a9cd908b925ec",
"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": {
"blake2b_256": "2b6abb23547b02237dd965ed900d1561bded05bd2c1a2cf1259d6945ab2f24d2",
"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": {
"blake2b_256": "c891dcc588d2e2e60b292ff086b049d63019124207bec191e00ed9c474aaa9dd",
"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": {
"blake2b_256": "15ee59d5209a951a46ea54472a2d7fe93fa4d5cb267ca49238f9ee2e5a4ca461",
"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": {
"blake2b_256": "e6c924e5b31bdf67b00fce7eb1d0c34d8e063b8f205cb4e1fb1fad9ad4ce5e1d",
"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": {
"blake2b_256": "ea17b83bbd725d74db54c2b69ba416390394a0d969395c43b8e00f510915e930",
"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": {
"blake2b_256": "f311646091ec5f036cb7b925766cf3b048559aa29f569a97d3990ff8df806fc0",
"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": {
"blake2b_256": "6a164c9db5718951843bc2df5f336dc5186860d79c3198a56a913960c042f4e4",
"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": {
"blake2b_256": "66b6fd6860e20063d8644ffab2a58326372a3cc116c79e7e86dbfdf127ac4341",
"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": {
"blake2b_256": "43a10c80fde6ec65904959ceae085675b05f758b19cc42abf45c04f31b04bea3",
"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": {
"blake2b_256": "af7b0c5a9fe718f52215b2b49aaf1dee4e5f62a4b6f89c4671e9692c036826b1",
"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": {
"blake2b_256": "2a35ea327a47d96bced48797f19787aeb671ff9758112be5eae2282d9b204254",
"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": {
"blake2b_256": "1df79f71eb91d97ddb048ff436ccd4687e10d8a61e7b3ca247b034ee2f7407a0",
"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": {
"blake2b_256": "57bc0ef5c15d6950405480469d470a8c5508d67f7e50e7aaa1f0a052dbdcda45",
"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": {
"blake2b_256": "f3c0de3f6422464c0f037cae57d0bd2d55329363c26612d636acf3bb3743b8c3",
"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": {
"blake2b_256": "539dbac89b34ddc040b02d579f7e141d55478f166a04d233f1731a73f5c5cbf0",
"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": {
"blake2b_256": "4638459d8f73b70e83548258b763d2f902a84485fb22f0292eb88f75f7d51cd1",
"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": {
"blake2b_256": "71d4c84568feb90025a2df0abb70f3aad02bebb7457f517c7f298e7ebc2c19b0",
"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": {
"blake2b_256": "b1bf53189147c3abaac6b6418d94df0dfde4fe2f2050e9a6484dda2f2f4ff26c",
"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": {
"blake2b_256": "eba8aa3f1b2496c157951dceeab4a2e0ecec8d9f3b8b73305dba5e5e612f2d94",
"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": {
"blake2b_256": "5bd26f96933e9f983ff7794e5220d9d658268ada7e958d0046beac72b36dfd19",
"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": {
"blake2b_256": "67a281ce6bd3519517d95f20e2962b0d01e908d4892ea25df8ee03b9299857cb",
"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": {
"blake2b_256": "d6e91715e4c1f75e4ba599d587dc707755fdb7bd67a9a2bd193f545323e70981",
"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": {
"blake2b_256": "cd0f6475167b34d34a79237d991db4340c6f79106d373ff3b0f6e8f893c2e9a6",
"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": {
"blake2b_256": "94af9629a98b8d591394739e82abe507fceb9dc08d5e80e3eff3805198b499a6",
"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": {
"blake2b_256": "0609def4a5b8f55a8129bb0928bf7cd7673d8d924e8332f359c71de500e4f50e",
"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": {
"blake2b_256": "edbdca3ab080868007c0777856ae5139339e97d3b272954707eb0ac4db4c0513",
"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": {
"blake2b_256": "9b44ed24948fe9491623bf593a58826f69d633789cc6ac2b70304fb17bf81bff",
"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": {
"blake2b_256": "5cd80110de6d6e42cd6fef5d4b40411f0030894d4c118ac168ac16f9ae5d89a7",
"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": {
"blake2b_256": "55df49a04d4ea5d35425e91b5c113f188e07710e7e99abecd9196d43f37ad859",
"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": {
"blake2b_256": "181ff12ad9d656781e164a06757ea32b9c3d58f0911c239c0c47841326cb06cc",
"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": {
"blake2b_256": "2f1f9bfa36f45a7611abf71a3ecade91271ed6bf48a1abeba5fefbf615c0cba6",
"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": {
"blake2b_256": "14b7716ac53ecd2103bdeacb89f4622f5badf6aa86c4155233ba0da314546088",
"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": {
"blake2b_256": "e649aa5af030cc816afc737c4fc7b3553a19658b664ef25b530efc2d05832976",
"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": {
"blake2b_256": "d761baf7c0b704a11820daba11ebadc9f35ceb91382d9ce244ec1b3b1b17bb2b",
"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": {
"blake2b_256": "416c1ba23a35d092c190077af3318a89d49083118cb22a669630a17a873d90b7",
"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": {
"blake2b_256": "25a04fb7ab4e6c36d87291a82e6951e1c123c3a0cf6e5caa24d1e0d67e691091",
"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": {
"blake2b_256": "3dd7c921dcf51e81c0927924075b7dc1162e1917acf27a62e2d477f2461af588",
"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": {
"blake2b_256": "4cb7a7eb476876cdab0b469fe619fc1e35f9296d7e7f1137f29f772ab26f078a",
"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": {
"blake2b_256": "6027f03783e6a6ab135a17f8f7ef95c51e0f70c975a0058271c51e31d211564f",
"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": {
"blake2b_256": "fded0db12b5b2edb1e155322816558fa08ae6655bcf8c5758a24e5af8939169b",
"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": {
"blake2b_256": "ae0d7e2eaed304557d595c02c1ee4533d22bb3bcbfe280d732cbad6b5e61dd2a",
"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": {
"blake2b_256": "a7dca6084c881bc58ee04f05cafedc740c45536fbaa1eb4a032b2be20a69e6b8",
"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": {
"blake2b_256": "e42be4408b7161f41c324056653374a51731a8de794ec933b8bcba6005c9d7a3",
"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": {
"blake2b_256": "ece6c5d97865378f6318f2b6bf4f9d0c238ea5a9015d8da2cbf16d9039e20ae5",
"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": {
"blake2b_256": "54784a369d147f5013246f35b0385a4f2c49bfcbe3a1c3dc2148b9067646baf5",
"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": {
"blake2b_256": "2c95a60ed6b65decd2ca0a057dc73e7aa34c2592f3306bcd3fb608342fd862a6",
"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": {
"blake2b_256": "832ff23026727433e06ba1f88e5f8cb60d125b45100e7db25f75c3fa80c89f79",
"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": {
"blake2b_256": "0267cc7b07a70cd67da14d7aeb91606da4e0cbf9a87c484549542a3a1c30270a",
"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": {
"blake2b_256": "b5ed9a877cee416854851ffec2a02fc6eae352a1ba7b1fd425228606e3c524f6",
"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": {
"blake2b_256": "88190b34894a30784a38336040da2b63524dd2f8d1d31b999d6d2cdb66edb236",
"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": {
"blake2b_256": "808d202a77583d9bf61bec1e24d73581ce07d095d0b6ead1824a6dc6ea247b82",
"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": {
"blake2b_256": "c36fb2a6914be81d9fff714138768317e86a0fba1e69fc9b1b7fca84c8ea5286",
"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": {
"blake2b_256": "5bceebc5c973b88663cefc7898092ebdb241f023628200ad3eccedc62db48a6c",
"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": {
"blake2b_256": "61348ee431470878b78011f6771101039bce6b99ee887cea24792327b3fcc65b",
"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": {
"blake2b_256": "0efec50122cfe977a63a378a4e1ae0fcfb8cd2df64fdcf2e1f169e4c557babd8",
"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": {
"blake2b_256": "8ce0228b602ff11cc17467c3ce3e16a858ea301230b4f983684be78455713beb",
"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": {
"blake2b_256": "8da9fc61494d07442dc30349875b0c4e4b027f83a1b111ccc660d919a8e8084a",
"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": {
"blake2b_256": "a6cd898421c82f2bc5f0d95bd6d248fa57f18c91f8ffc248f4c3ca50514bd343",
"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": {
"blake2b_256": "5f940e6469967b1ccb71090303f43db209937afc0ebc2ac895dee584946b2249",
"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": {
"blake2b_256": "ee820f1f5e57c01de5b9653f5e6d92dfcd1b701c9abda2a16eedc2c1c52cc859",
"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": {
"blake2b_256": "ec3f32b561509cb0cd160beb1cce87d0405de94122ec3f7d13adcffe9d54e341",
"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": {
"blake2b_256": "deb9d37ae912dd59f9727180896b450c3a94a3d3a391d382c51d4d893e5f451a",
"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": {
"blake2b_256": "77b23934412c36ba1901dd35d2c844864fd5f6317b545c4158531d966fb8e52d",
"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": {
"blake2b_256": "683af2e8b5c00a0f4c86743912ffabfffd065b498dd35850be0c6ceb0b8a7c90",
"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": {
"blake2b_256": "d1f0bd2644738b7328c5fba56e4efa9a3c6fdf0198adcdc406fdf619af89b846",
"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": {
"blake2b_256": "ee0fbb80f570b2ac93da4eaa070d6f989df2e09c45fc838abbd32b3ae06c3187",
"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": {
"blake2b_256": "035cdc33833512f013e594bc4f5465287de9e48abe35175cc61d7b7b97c76c6a",
"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": {
"blake2b_256": "12e9ca4c0e1e4172c6f88e49d156605db98e314ef7e354b97381840e55a3548a",
"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": {
"blake2b_256": "138b9142960026728e9a11824bcd74c429251f032314b835606f9f07372db68b",
"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": {
"blake2b_256": "42b39a1bab945c6cd3c2f604fe1ad81f183e33cdadc8600771969b1f0811129e",
"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": {
"blake2b_256": "c23646d2dde5c6d6ec28b2c987f88279f2ebd1104e4f39a854a849cbeda3b8ae",
"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": {
"blake2b_256": "b529f215e861b661efabf8a70cd9bf1cea01656857cdcfbb49bc52a03a925393",
"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": {
"blake2b_256": "ba22a5d095c6b1114e0a64da0bf85634ff80f823f4fc5a3690cc517152fe9151",
"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": {
"blake2b_256": "38fe8f27d44e84afe289802629c7c86061ba8dca4d9a69a3e7870c89f916f582",
"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": {
"blake2b_256": "28d2c55acab30c941a9fc94fe56f50d2886ed0ed381ab7be70e999a97495eeb1",
"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": {
"blake2b_256": "a1e530de37a42caf088b2d74bcf61819b87af949b9299f237a164b87a886ba8f",
"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": {
"blake2b_256": "0c23db91dcad4beaec3805d1c451091ce7888b0e12f429873bd80241dd19f799",
"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": {
"blake2b_256": "47394d8db83d438d4861f0fe4542b115a59af43ab8da25bc08cc47909a09f89c",
"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": {
"blake2b_256": "eba932cfa5d293ac816c32f1c4cdab06ca069909b8081051b781570173b510f8",
"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": {
"blake2b_256": "3c3a9179c624af544f19b545ce5d79f9663b53b0471fab36d9413e810bcfcf98",
"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": {
"blake2b_256": "fc0d786a5b32e551ac72e91256dab3c7747514d0a5a87554d5857f2e681b68da",
"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": {
"blake2b_256": "a05d2663d5dbbad6bf9fa8dacfb4b61051725bb4a2d44c40149a0cc4dd3444ac",
"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": {
"blake2b_256": "2da66fb2d83de0771ee7fc67d800bbf24703d9b83f3e56a5ca2de1ebca1dc62b",
"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": {
"blake2b_256": "aff54992cb4bac8bbf73dd40d1682e6a7e1bbc12fc68a6bdaa7b029d0b3fd13c",
"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": {
"blake2b_256": "c68bf0651ddd9d93c1ca799e87f65580072cd06380c557562e8d933e450c06d4",
"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": {
"blake2b_256": "07fca38911401e5617c16e3ab50be80b85d8cc0cc67a138f386eb45d62cab4d7",
"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": {
"blake2b_256": "8cca9aa62307650416f38fd39114f439485e6a9d7f5eaf081a83a75128750ed6",
"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": {
"blake2b_256": "230cc0d4348c6fab8e5161cbb91c2901d9ea6136b456fdeff70c117ec613d92a",
"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": {
"blake2b_256": "4a34a13fcde2af6f6bd93475963c784fd9f832ce5af88bfc94a794cdb09568b3",
"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": {
"blake2b_256": "6b5b23e55a7681dc8801b3b6ded1d43da470d293cc2047f2f19d350c65fe8600",
"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": {
"blake2b_256": "31d664e612fae323514dac6ddab6092e12d0a4ee674c1b771426a33c31df9926",
"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": {
"blake2b_256": "3a32cc4ec831b79350a4fae961a17f4d739d02e87a47e079caaac15a583369a0",
"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": {
"blake2b_256": "af3626b96058197a8b73984d5816416754874da93009df699cbd5048f0685683",
"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": {
"blake2b_256": "812954c3d135dd8fb894fb8533fee9fe85b75295f76015330b2e6efeb2321489",
"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": {
"blake2b_256": "09c8bcb0a8b2b0174e0fc036c687e0d1a6a52a886bc73a159d5e47755e2d8dc6",
"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": {
"blake2b_256": "540c2a32410fa61b8e66b0f394b44c671d4911bd633a476c993cef4298bb8d62",
"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": {
"blake2b_256": "ecb601c260bec3ce4506470c84dbcd55017cd32a18962ef3b071fe69038a4296",
"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": {
"blake2b_256": "182425c209d9e1ddff80579e2aeeb09c7838725b07c96b0f8b55805cfcb64434",
"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": {
"blake2b_256": "05b18ab7d367801cd51229eaaed5c4ec3c1ba7fbaa87e3b939575c2711f6b1fd",
"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": {
"blake2b_256": "f28dda1b12ad7ab29927ef1a2c3cc174e47327d8d966401900da698c19b24682",
"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": {
"blake2b_256": "3a2e5ec8c0f677731996526f496ab460f0214cecc19e16c9d866a1b1bc2a7d57",
"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": {
"blake2b_256": "9c623e379e43fc5d23f880d7fde089cec578af41f45f25d4c7fb561ed6153ad6",
"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": {
"blake2b_256": "96bbc6cf03e64578002a8b5224f3ffe230bea0c17be3969479fe7d214ccefef5",
"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": {
"blake2b_256": "62b0fdca2aab68e55b89ce43709cfcb7941543cea3701ef3760e0714f39b3adc",
"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": {
"blake2b_256": "b520cb1396877221b1eddccdbb381180e979692ad5d6a89999dcd9c5b4c541e5",
"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": {
"blake2b_256": "342fdff5fbae7aecaebcf987242a3ff0293d114aec515a72aac9562f587f7359",
"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": {
"blake2b_256": "d4270ae48843ad10ebc53c461433063d30c98f29dac6b4a668f8d65e16568234",
"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": {
"blake2b_256": "0879a8da4ac7a9f5f7ffa605c18107c2dd4184e15c9a722030263fc902f8d9b2",
"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": {
"blake2b_256": "c1b86086b26c4df8227e5585b581f6b02a1b74df4527a6952bfb1978bcdcb3bd",
"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": {
"blake2b_256": "6ee43c3a2a8dd28b8eb1c7313b234f7e5c4618cff5b42bb6db4cf6e5e5931268",
"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": {
"blake2b_256": "021088b615e7e2a2b699ed964b5cbb4369482489bbcefb4bec6f69de1e71ecfd",
"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": {
"blake2b_256": "5700620160b975b7a06c34a62d78223be70a6cb743cafe4fef15573c8e1e3d22",
"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": {
"blake2b_256": "373ba01a07c2586cf722b4ee710cb59aeacf0f52caf8aed12bd552571363d486",
"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": {
"blake2b_256": "12ede64e2ead5da080d188b8f7e45ec731d12a8dca3cb97fc470a9fb7a19fd41",
"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": {
"blake2b_256": "e0d5edf92b3c88e0db738816a770f44ba21b90f972cd76481b2d3dbf4dfc186d",
"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": {
"blake2b_256": "a58e9ff528320cda850721efe14f1cf8155983d264f106d2d7e0af40d1dabd46",
"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": {
"blake2b_256": "4df5070e7fe9151077c0cc21951360734cfbb12cb41693988d234fbea4e32d06",
"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": {
"blake2b_256": "93958dc7a15a958a770ad4aa951c0b59e08e901937904dbc7a38e2982c076b1e",
"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": {
"blake2b_256": "a00c5a7f32696f8e37e9909c234e9491f7c9e98547220c2f951d00cda6027575",
"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": {
"blake2b_256": "5c3a52f98b1c481362d5487f8c97792a1ec27ee8658d003e54e764dc0bff97a3",
"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": {
"blake2b_256": "c2272199968361f6e206be64750cdf98ee255341df0e5dcc4aed5d3744de86c0",
"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": {
"blake2b_256": "f25c93824b403bcd8da1332fc197ba8a73677ca06cc62d98cd272b68753770f6",
"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": {
"blake2b_256": "d662ff650c86d1e2b8868d3d38f0d2530199a11afe5692c3637e9dd0cdc2d9b0",
"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": {
"blake2b_256": "7e80a68ebbaad3aa864010cb37f6390f1f2f64c2291e932c806c22ce5b118f00",
"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": {
"blake2b_256": "5b7db6cfde4995445076e4c189488c94c9ba96e204da2cc18b047386f068f4c8",
"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": {
"blake2b_256": "c9c4c679eb6354b50953cf198f469e1f195ebd598cd3321bc3a921eaa2900b0e",
"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": {
"blake2b_256": "4499228eb5555256f01b7536d87315c8d40e52887567541446cad437892526f9",
"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": {
"blake2b_256": "af1efa17e61ab1abd612355ab26f461ab53730076ba6408b594feb84bdadc394",
"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": {
"blake2b_256": "ab769ac03a1c5de2cd13fd3c18bcce8ab028214b4bb97d4144a6b163ac48cca6",
"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": {
"blake2b_256": "f95b4ff6593f812f1c3348dbc8a7fa5c5f2f1443a5c0b84a98c0f83b6a53fa20",
"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": {
"blake2b_256": "ae88c849b3c149775ffbcf42e2cf9de8e46d00a4b92fb7edf4894ccd23187419",
"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": {
"blake2b_256": "89935b2a2e7ae29d38ae0a2a6d689275f182e78389be4174b43fdb80e13a6cef",
"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": {
"blake2b_256": "8d3e429da7dfae29ae5f9b71be59e2f8c6762353bf6b97b4fef1eb4121ed3c77",
"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": {
"blake2b_256": "7cfa88a36ebef9daf927aa045f1a6fbea68c8c967d614e2eeb8a520a74ecf071",
"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": {
"blake2b_256": "36d682fb264acc491309a3765d2da1837fa2084b02dcebc16af527d9643188ff",
"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": {
"blake2b_256": "7c533e517b591b0d5850f24685bdbdb3757d3606a414cc37613d6024197422c5",
"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": {
"blake2b_256": "7ba00b8d796decff2d6475de8994ffe07d50cda3085d9d24bd3d25669c967471",
"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": {
"blake2b_256": "706b4e12343f493e8ce8ecb736a2b56b7493ddc763cd94c49d60d1ff6762cacd",
"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": {
"blake2b_256": "3bdffa3cc2bc2c57d696dd6df5684b5ca740de3ae221059246281ff69b17d346",
"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": {
"blake2b_256": "fe0a46eec879f11a922d99dde03d2563b7afc57d4b826957d591853078ad494c",
"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": {
"blake2b_256": "8f183e7f4a5e2e0e8d4cd412dc12994706255450de006302a173476284803d10",
"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": {
"blake2b_256": "0bcf73eb631f498b9196816a211da1ea0ecd9bf9469a02c17a0fee7ebf8a243b",
"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": {
"blake2b_256": "21f82b6c96f13554550bcde0eba167d3f29854aced97a7557351b24de6920b8a",
"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": {
"blake2b_256": "c64446e2263e0c5880988366209d1fd8601c4f4e4b5143c7cf0d4c14461a7e8a",
"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": {
"blake2b_256": "70c0380f2bd0a6505998e984efd23b692afe662c4e27603f066c632eed7bf3ee",
"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": {
"blake2b_256": "09d7ac50b58fde46b1c2b1c8a88937029a2b85e98da1b9b1a14ca8bfcab6bef1",
"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": {
"blake2b_256": "5555a26fac3482228a0692eb5134cfee16ce89e78e3467a91bd4621cba649506",
"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": {
"blake2b_256": "51148f24e8003ba44ac96b0aa646b603f74f9d75ee06546db8fcc8ab7e04cb26",
"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": {
"blake2b_256": "d5bd70c2d0db6d01d0fc4a2ef2fc5bd24d9e6efde92ee00bccaf36a0e3071179",
"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": {
"blake2b_256": "32001c43f609e5ec2007624de25e323bb0ea302787513e56d13b7089f407a6ad",
"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": {
"blake2b_256": "71e51175274087b6ee5efd5b31ad4f561c4ca2dea1cdfd243cc8d7bea7ab2320",
"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": {
"blake2b_256": "52f9c22977fc95346911d8fe507f90c3c4e4f445fdf339b750be6f03f090498d",
"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": {
"blake2b_256": "a4fde87f63ea0075dcf1f8189eb9c8768dd8e398d37520cec9dcaaf8a3fe0271",
"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": {
"blake2b_256": "385373cf2f1311b8efac732292aafa7f76df27150c6d3ae879e81ad645f46bac",
"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": {
"blake2b_256": "e650e0b8dbb0e061291a2d4eafc6f762aab1399cb883649ac2b55c828a8397cf",
"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": {
"blake2b_256": "75d4c1761d7325979c1d2b124e4bb917f3f515d5537aa5eed4fbd3837dc5a34a",
"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": {
"blake2b_256": "35c59d0f27660ce0b2f921178d8c56493dfb2c5365a42530cccc3531d514b76c",
"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": {
"blake2b_256": "dca772b55cd45702805e47563a36348854ea15be70134f64a9f4bc7113ed7654",
"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": {
"blake2b_256": "97299d1912f2746d171fc2fc0042a9edd117d386d53382a3aa12f7853466d52e",
"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": {
"blake2b_256": "7a584476d96f35cc18a5133330f06c9ff3bc44fa64a9b6d15d2716efa6043b80",
"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": {
"blake2b_256": "8d097127ad0b98322b375587bf93a8ef9764959ea4634d77598b50ff3089b014",
"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": {
"blake2b_256": "70276098b4b60a3302a97f8ec97eb85d42f55a2fa904da4a369235a8e3b84352",
"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": {
"blake2b_256": "f307618b8bcd5ab2a230aed1231d478b2699adf0c9bcc8663339348fb15f389d",
"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": {
"blake2b_256": "048a538ad91579c61e6ccd46a9ae80d25f2d415d9ff28c9f8091af8e5cbe0396",
"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": {
"blake2b_256": "00b71911d99064c83426ed8db07414be8b3283bf09d8a0a33652e783b84bce44",
"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": {
"blake2b_256": "c286e4cc3e9d01dbc7f1aa9247a8184c9dd074244bbcafb9b569082409b821e5",
"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": {
"blake2b_256": "4b09cc5ec44a2da2976f5907ed9bad383de222519e3575f21fb87f14c8233236",
"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": {
"blake2b_256": "3c33fdbb4b910f21e8c32d0c0eca5175c5f0e1371629091dea4881fea36e763b",
"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": {
"blake2b_256": "3a7952e7c852ceabcd99bbe0ac7cc0acaa81969196c7d15e5c4719b1f917cb30",
"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": {
"blake2b_256": "889f0d112e4c95d504728e711b71a7835ea4e12b670aa734e77be4453d840ce8",
"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": {
"blake2b_256": "8ea07f6abff6d49af1bc9af716995e8feae327e2ba3c74d0cbd4bf29d18c203e",
"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": {
"blake2b_256": "a45174adef7d2e258c4af2142468cd950bf1bae56947210d49bd29e998e9b464",
"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": {
"blake2b_256": "a880372c4d7660904c9852f1ae849cab29fd0e2354ed97fc872e936ec6e99eb9",
"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": {
"blake2b_256": "6f109bcfc7d56208529374bd5b8be55932a87d38af9fdd34dd710689cbdfadf1",
"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": {
"blake2b_256": "e69fba33c056ac730855595a305bf4306e571b2197b6ddb1fba66a905045b2c9",
"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": {
"blake2b_256": "840cd6034b35b027dcf19ecc4922ffa6d4c37c8885939dd7cc3d38181184e46b",
"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": {
"blake2b_256": "716a75b063519cec3556f3e0ce1ad4ba11599dd16c2236a0ad3ba837af2d92cf",
"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": {
"blake2b_256": "3ccd2d99c7fcefaa4de0fea38e324e591b207bf1925adaf7e476fc3fba13fc8d",
"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": {
"blake2b_256": "9565a602d0ff04d8a3ce81ccbfc9beb507aa40aadb49c12a6dc4e00573ddccfa",
"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": {
"blake2b_256": "32bcf4cc366bf00f50a1e0247d7288f07681d01dd61b80f74eadad12aabf34b6",
"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": {
"blake2b_256": "38a874ec4b28e1d13acd2a3d4196cc0753d0f50afe9eb571ccda1358c75cdb9a",
"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": {
"blake2b_256": "2cfcf619bd5456755e6b5c66e3a9b7c03ec22ba6cda3fd8b350a46352208110f",
"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": {
"blake2b_256": "46df771c545d1a39c91cd54d7733723b64197048269bd4bcb5ce8dbfcab2c6ae",
"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": {
"blake2b_256": "e4a448e455139e03dc1555f904cf3843c9228c2a922f61512eb4d2482e04135c",
"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": {
"blake2b_256": "d41ec45763dc02cd4e4d3775f11679821ceb6df43fd92f7b5cc8fb1084b3605c",
"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": {
"blake2b_256": "7cbf0c005bfb8b765e593be1b154f3cff69093900e394fc93218c668da79f5c5",
"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": {
"blake2b_256": "00a4f32d4fe56563aa98aa815fa72ffaef26fbf880c42be16dd5196713d3217f",
"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": {
"blake2b_256": "d53289ed11b831daed55e0313f2c95d875bbb4d1ce3930e1a61b382b1fe3d781",
"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": {
"blake2b_256": "2d7c8631518d955724460c9dcfdccea978f0df84f079ef8e088ee4ff1330e935",
"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": {
"blake2b_256": "febb210e64c1750f490eec540151f813728c49e7349bb397f5c964e49329d7b3",
"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": {
"blake2b_256": "c2944b17b41da9a3f0cf8031c607c3ad26dff25d6814714cbf60df74550cd759",
"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": {
"blake2b_256": "129e1ab0decb8a8aa104b291a3ba709ce153fb2f4878e2980fa72a6b4e806dd7",
"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": {
"blake2b_256": "5b4b686a7d55a562d37391b48f8fe974f5d1a72a12e6f0bdc294468d790f2a6c",
"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": {
"blake2b_256": "d0f36d769ee8f4225330f18d320d35e196a95e95efbe7e4ab7557db5ab1f4f78",
"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": {
"blake2b_256": "d5cf6b1e0982a4fbd7c1311ee35b6eaf1827f0976470691f419f5e2315066f4a",
"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": {
"blake2b_256": "4d23542b486a2b131963ba3d5cd6e3c055f1b770e74d0d29385d0a678a2f26a4",
"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": {
"blake2b_256": "856a94034c29ca1a7582594a01ca2059145c693deeb089c00243f45ef2e60488",
"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": {
"blake2b_256": "63ce95dd616a89d693ed680712a88ca4a65ee198fd866d8b583717b4c1768319",
"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": {
"blake2b_256": "1b1eff7ec1a4ec37261addc350f01dab9bb2189dd325c165be63d3aed3684194",
"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": {
"blake2b_256": "ffe642751c2579c25e612dbc655511638dbc6113801f1096458eab93fffb457e",
"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": {
"blake2b_256": "ee185ad85b9a955f62db654f1b51003c358a7f1f3a5a7dacc6c590c5033f9360",
"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": {
"blake2b_256": "7c69da4033f748fdf0a9fc405807fe5655f641ef1e4983f4647ac43f1b8e19cd",
"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": {
"blake2b_256": "9dd6c2962ec4b05487029d83f8d406a6583a15fcdfa2b92d2510a0c77f9d8b8e",
"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": {
"blake2b_256": "98fcab4dcc1f41b11f9ea9c77af3b706470a4c8df050338e500f1a5974149b87",
"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": {
"blake2b_256": "b1099849d50cb9270d43ac9d8002ff5a3f2602a89c42d370846e158caedeab90",
"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": {
"blake2b_256": "bd3087833934dab41f02231f409493dcc79936693ac6d95991a0add1072f145d",
"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": {
"blake2b_256": "51937da02210f8564c892d0089826e553e224e75bc150b77ced82759b4abaddf",
"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": {
"blake2b_256": "245223efd450005c520d8efec461d90f6ff6c53204c31830e3e4fe72bbb5121f",
"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": {
"blake2b_256": "59afe7f9963a0d6e353efc54c950b2084b947a78fdf6f19989a1f1cef04ae35b",
"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": {
"blake2b_256": "8c570c645a6c468d07aa1a24dccb3980c5858d9a0375c8aa329a42882afecf7d",
"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": {
"blake2b_256": "e1f3e16d26538a448fb2a467814ac282acd7b76314cd8ed0f66639408ebeb45e",
"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": {
"blake2b_256": "f4e68619a5a803849431a4d77e70e7a131046d6c9e8d1b968a6655eb09b99391",
"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": {
"blake2b_256": "d98ee338faa288a5ba97eac5233372a9539547b5f9743b1d1d5d9592aba8abb1",
"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": {
"blake2b_256": "b887d3bf86ce4eb0d032f5c8864672fc2149c6c7baf764bab4fd5e73fbfbc18b",
"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": {
"blake2b_256": "ad5ece9a8056b2d7ce3f4e3a1cb7b8075a0f5fe80bc6cacee2659495bcbdcf32",
"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": {
"blake2b_256": "820ff5d80fcd83b11c591860f1c3a7257632016c4b35f7f544d809aa8f383c22",
"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": {
"blake2b_256": "c811395ce3767a2011103d5e0798b1877a9b8196f2136f74c8dceaecb872be7b",
"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": {
"blake2b_256": "22b9379d4af4d1ec666d0aa335d745a3a914b742aae758a9cd28b5e31c1c1bb2",
"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": {
"blake2b_256": "192ecfc92709cb9cf1081147db781ba112bb7c76d384b315916906a117b8f592",
"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": {
"blake2b_256": "d8f56542f0c4530ad21d7cf173c134dc65cbf3d4a16f69efdce004d9b5d95455",
"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": {
"blake2b_256": "1908a58b51f8ad47db7179b5880b1ee1e97aafd0c3b849a45953fe6d6b09b681",
"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": {
"blake2b_256": "c31b7fd948611b8656037e0d7cd84081024ccd4a1e0bc284836c4c53e48b0714",
"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": {
"blake2b_256": "61deddbe99c1471ad0026c56d9a39bb549ea5e3bb81947d854dec3cfa5580584",
"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": {
"blake2b_256": "06cd016845da0a8f45f9a71fff2b7d23f14cc20d7b41780c917f7bc418bc603e",
"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": {
"blake2b_256": "070cc4dd2f3cc9109924889390f4db893e750dfe3beffc34190cd66b3666f478",
"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": {
"blake2b_256": "16ccc0d8741f1a0e56da8d08917217f80af385d77fd41d14c92313fec077596c",
"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": {
"blake2b_256": "c32054df9426d3d72553c9a9f4de4520407d8550dca52cf5073255417221a00b",
"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": {
"blake2b_256": "afc8869285bc4efa8722725851b27a1597ca1a325c571f709fdfbde57d0145d9",
"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": {
"blake2b_256": "69b38f0cb31b5636ec24ef91c6749cc9c36869eb818c4818ceee04bfd9eb1495",
"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": {
"blake2b_256": "986d6fc21078eae8167867e3df54aa9a347050f447f56637e0b0f30f3d415437",
"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": {
"blake2b_256": "33e0cd89f35165626e40116f4bddc50b31436f79941dc710b9bd5f0403521422",
"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": {
"blake2b_256": "19b6b5df573b3c46f8cfbdf14d31633cdcbbedbdccb08ad830206efb942eb3b1",
"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": {
"blake2b_256": "aa0aa5872be6b9ab90647ab2e6f6c755b7d4a2be42eb6a7fb049e62032cdc667",
"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": {
"blake2b_256": "02e2c17f1ec01cd67025c6264c147336361c84fedc6d9fd1e79dbc76f53434a0",
"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": {
"blake2b_256": "3a344d23b0af0a9e0de52e9a3d2553f3a6818131e867d93eef3516cdb5541abc",
"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": {
"blake2b_256": "3a7774b0f2ac3b5e97902d3f04170839a4995ec1ca66c9baed555eaa97179c4d",
"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": {
"blake2b_256": "bd9430ec5031f6f5da2a352fe9276af342fda9e6d176b395274662f553235c77",
"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": {
"blake2b_256": "9a67900ae36b50c1385e9bd214f26a1b18958b65d6aaf47e23b5e378aaf2aad4",
"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": {
"blake2b_256": "e409892ebd7ef55f771fed52d0afd0876bd2e23e153293ada659a64a8741ee79",
"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": {
"blake2b_256": "02a45cad823710eb194d8c73f01df56d20afe86f19165588707d89bc04099a0f",
"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": {
"blake2b_256": "588a7cdd8482193ba40c77c0bcc9b7a06cc003a816c04a6c0039424832434bd8",
"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": {
"blake2b_256": "c93fbe99b859f6f87efec0e3491e89d2219416c18456f0ea91cc928db87c4366",
"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": {
"blake2b_256": "e86adbd96ed41293cfad753c3512ad813d3b16421605724ce4e43fd241fa5e93",
"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": {
"blake2b_256": "b9c088da9f082c11986cd3d1499a235ceaf0dff08a54800667ccefd7da47ea9e",
"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": {
"blake2b_256": "04d05c4f495779fab817e828d11c55037fc031feb326ff487bee16b6696331ff",
"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": {
"blake2b_256": "4e846b32a239f96783f3cd1aef2fe843ae0bb1d322f434c94023fbebe3a037aa",
"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": {
"blake2b_256": "111ec22be7dd71bf3ae77b963c216bb4861bf5b7a7434356b6b4198eecbb504c",
"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": {
"blake2b_256": "ee88efbdc95e2d8210cf40ef58702a5f7c90bfa5a58d670e2310d4425bd46a90",
"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": {
"blake2b_256": "f29275823dc02a1564acba8b205af2dc2856020ad77875ea2d31852b6ca945e9",
"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": {
"blake2b_256": "99733d90dda08378bf147f433d87ba9c73c08912af7617dcc4a51f2b91c5f5b8",
"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": {
"blake2b_256": "cdffc04dda1f7f365643bda60b3dcb7369d33638965e3173e74fcfba84c500b3",
"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": {
"blake2b_256": "6a2ca30ca52d35afe353d9a7ff3a715492ea83898dc3dfaf179d0d019f10d6c5",
"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": {
"blake2b_256": "430365cae015c80500a4797f318122fc7034ad5c7db878622e9c4edf48f542f6",
"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": {
"blake2b_256": "a90af82c961676dd45640b88645047522f587ffa29c66cffe3004bb18c267fc4",
"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": {
"blake2b_256": "1b0f0d31c51c30f3f459c57a1e9db46de0bf54f0cca4886a1a9f88c2ce030452",
"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": {
"blake2b_256": "d0b3c2ddc48ded429a07959e3f224920b9c24342a1ccdf5c64bfa4a4e793c62b",
"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": {
"blake2b_256": "4db72470471ea8b034a03f19b0c428c49ab4aa8fa1145c0b7d34d52969edae2c",
"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": {
"blake2b_256": "9595d7ee3e153f798f780dd9d57299b44e0b22a884c8b2c3dcaab59c13d75e32",
"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": {
"blake2b_256": "01874a48135642149f54ad9dc842993cb2eef95b927d7dcb16e5626c5e0e1981",
"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": {
"blake2b_256": "0da48f938d1fe5ac4897968c8fd0903f54713d944ac36e2ffe76d5444424d0ec",
"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": {
"blake2b_256": "d0f6d60a81640378a9227f74ba2d6049b703b0503250b01ab64ccb046eaf5b88",
"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": {
"blake2b_256": "ec0a7a933efff6a82186ae2b1d9d156acc088f1848a5ce36752e48c9823070c0",
"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": {
"blake2b_256": "b21b77c21d6bc5ce567e12a7fd6a79cca109188baafaa625238cc22bfaffda73",
"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": {
"blake2b_256": "8773ff8aecd740250612a0959ec39e67d1977fb54504346b0adaa67edc468005",
"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": {
"blake2b_256": "265501ea30200d5d50c5772696eb8c7514b59e2d2db5c9b6833eb084fd3fcb5b",
"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": {
"blake2b_256": "16e627d8969e0259fcbc5ed096613a71838c69018a16fd5598924aace5353769",
"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": {
"blake2b_256": "50dea59b10d9f51f2cf9341546bfa4fd2df1f386bf0e4908b1554c74053a34ab",
"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": {
"blake2b_256": "94c55b6bc7bb2ff7a21f1f5c16299ae5cd8c655e7e7647a0230a61b63647e04d",
"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": {
"blake2b_256": "fdb79dd4cff248aa576ab53f300a4a8d7c3cf92ce4852cf125a81126938cea31",
"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": {
"blake2b_256": "af9a2a29d0da3a864cb7fb64a2d6344f0cc1d234b6ec201a6050e91a5b7576fa",
"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": {
"blake2b_256": "96db612309801331f993afe0d59c10e7ddd2dc868d671b4a359e322d41814437",
"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": {
"blake2b_256": "24b7cb6f90b733db21eea886774f576f8e68359c0f7fc419b6751468754f3d75",
"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": {
"blake2b_256": "37a4583b391d58ffa6c981ff8f78161b9fdc1883a1de69d792a602da4a69a349",
"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": {
"blake2b_256": "9d9ec25ba40bf9014b77c33d81456c2d8257b1468f2fb777f6252b7c55800b11",
"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": {
"blake2b_256": "7283884bfbc95c0ad7484a40ffa7b0bb9089c0a1fdedb0c6da890bfd6bd2b072",
"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": {
"blake2b_256": "a9a1046e97ab236e15f98e877aa678751a038f78e5d4d1f797ee6b99aca07d87",
"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": {
"blake2b_256": "a47df91d882459b2fddfd61538f305d5cec93888a97b0fe93e33b43021ae836d",
"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": {
"blake2b_256": "451e948b559e69b20b9b924a0acb1e777e71abc45b061e146cc48adb139fbbb4",
"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": {
"blake2b_256": "a69ac97c63704a480a56c941a3a48798f784db8add4470bfa94a9a2d102c7a6f",
"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": {
"blake2b_256": "11d268cedaabe9b9577076ad90298de2427dd8891d9e6c3c60886abcca255c4d",
"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": {
"blake2b_256": "89e3bf2d53f4ad854b7d837bf1faa49b1a2c11ed45f517b45b1c4f236f72b5bb",
"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": {
"blake2b_256": "8a2a5d0e92fc9ae92e3adddf46474bdfe48d882ff637f18c7a7b5a2984060233",
"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": {
"blake2b_256": "80399a269c7e8be4b9d39bc49c9a374bd17b64e1d610442e3f1fcc200edcd461",
"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": {
"blake2b_256": "c48af8ffb0fe5e8fcfb545f03bc1b93448eaa9bdf0ae5658e35438bec4351dd2",
"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": {
"blake2b_256": "e7b792645b962db0a23c61438e9aa16cab384d27b4ec5ceed46eaccde89b94ef",
"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": {
"blake2b_256": "c155ce987a700fbd997975e1ccf8450789ed645f530c9614dba0f7aea6a0fc28",
"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": {
"blake2b_256": "dc364a535af6aaf5067e772f87de7bb82cc9b8d7386b4fdb6686be08b55cd898",
"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": {
"blake2b_256": "485400a4ce67a3fcc723b2d634ec1ae3bd798e654aaa8e7a30116b7c9b7c7142",
"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": {
"blake2b_256": "abb2cebdde1822389fce7d273e228dd8319c669663378020ca6e876d12904bf6",
"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": {
"blake2b_256": "8edaa17641fdc0f13312cad1b3a9d7c47aee78159c35bedbc8db98aaa5c3b3d9",
"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": {
"blake2b_256": "ddaadc496fcbfb620ed1792da4f0b1abad529d05fd69afefd2c71ce5384e85ee",
"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": {
"blake2b_256": "1a48e9e83c7f786508cc4d1326cb632bb5ea07e8269f7d8cda07a5583f3dca2c",
"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": {
"blake2b_256": "6e4ff6da7811ef211659b3b91725a33a38950e43b4a0f73c9860eff226e791f3",
"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": {
"blake2b_256": "0056989a57878a6869adff576b073611f78da9ba4866403184f04dc5e41e4f12",
"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": {
"blake2b_256": "d44bb49815e0bf2cc7aee8a7dc02326729e01a51bfbbc1c1c38d7543d8e71759",
"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": {
"blake2b_256": "3194edb655ce5914dc45b13e5bef8380f4cdb8773e8a748edde0b7458887d695",
"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": {
"blake2b_256": "b3f31218ee4b1266d0b378061a1b0b4ced17c49bb2fc6ef83b849812b96ce0fe",
"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": {
"blake2b_256": "b73ff842d2747887e75505e4e6afed1f18605a03cc9880c329bdffb266842d1a",
"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": {
"blake2b_256": "cbaf4643468017a504efb7443d97b6a3b07a9da151c09de0e42656580dbfd33d",
"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": {
"blake2b_256": "397c38fbe25b7d6ecd703faeed3acf9f1ab2dbde016667a3a0b706fbb00ba7da",
"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": {
"blake2b_256": "6e5401b63fda9cc825cb91072acd96253cdc1e2f5aba14fcaf67f36c99b8e838",
"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": {
"blake2b_256": "98e0a85723f98074ec791ee13757bd14c7121fc356b1081a5cbcbbcc307c2701",
"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": {
"blake2b_256": "4fe1e93338ab9d2b3765e85aa3bc58bd8c45acf59b00a98ab31b00985bc526f0",
"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": {
"blake2b_256": "00de31c81b2bae86b49098ef5750d79f40964e47cfbc0bbbb1d2235cb090db99",
"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": {
"blake2b_256": "fc2ea130e273a79268e315cb4ae5470215104f0e0c278d29f224b0092bbf8d58",
"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": {
"blake2b_256": "f5e786a9aa960d1b76ad653566d833894609d8ab822f8c5b332bbb529e972a96",
"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": {
"blake2b_256": "b60217f734b43e3abdef663a2a2d2095f462b918febea9dbef2caa51e47a2f22",
"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": {
"blake2b_256": "4e40bfd114bce3db2f2a8788672dd88f52a801f4499634758729a76fceb585c0",
"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": {
"blake2b_256": "97586036ab4cf2b77e50d34c825eb1f3c1c06e86b4cfe0a1d3cdfba844203c30",
"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": {
"blake2b_256": "eddb3da569f5545c54a63982a817b9dbacd5e77b824554c186615b4531071e7e",
"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": {
"blake2b_256": "a94f2ff6cd9053bf2a6b09722a225f6644220ab55c9e155a8e72160db4a6adcf",
"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": {
"blake2b_256": "c46e88ee58bd3a69dcb39b8f14ee56a28421a0d28711c47b6c1282997020a95b",
"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": {
"blake2b_256": "9c4cbc69821c2cc440520a9569e5ad31554b7c35f5c2a26a34ef7b6ee1d07bd5",
"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": {
"blake2b_256": "926385e28605cd8f08a062974db3338c7e77437b662d980ef0dc6705fde167c6",
"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": {
"blake2b_256": "6d1631b2e95c396cf66e606eca5456099bc488a3f1f394f5587d6718f8874479",
"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": {
"blake2b_256": "21e635e3f6b1a0aea0c5567ef7fadc727487cacb7a15a892403213fcee8f9280",
"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": {
"blake2b_256": "2c015d1c5db6435da0c03967502d487bd2fcb87b5592de64e76c76a6f90d8980",
"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": {
"blake2b_256": "4be498a2a1b1015427bff31cc390defaf55d01fd6aceda10c11f0f3c1ad6ffb0",
"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": {
"blake2b_256": "572bd4ddec2e1b5f048e94efa86cf74f7b466dabab7d40f25260e53459047f34",
"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": {
"blake2b_256": "d30b68f2db07c7d2865f0a04b209599c5c59e0de2c121567438aa1e8b9713b72",
"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": {
"blake2b_256": "743083e59bc133a04fb0db67f3bd80558129e2c5f53b12d75980d122162447fe",
"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": {
"blake2b_256": "f4b52997ebf5d44626b8ec9dd00952ea21c3e30d9afd48b3cc511f023affaf33",
"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": {
"blake2b_256": "0d5cf87987f4dc8b2cfcf37c83a814ea4b2aff4d285cbffc0ab08b2b4fa3f584",
"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": {
"blake2b_256": "41a9117a4f0a1791b7f9db0cc1d7d85a05a49b66990dc6302bd9fd635c92ab85",
"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": {
"blake2b_256": "b0b4b5b59a05ac9845712902ea87c6b7945e041a78462c2c6e094b394fca6840",
"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": {
"blake2b_256": "28a6b4b527203dee74918ec008b9c262b2073e0242843118355d82b1cb763972",
"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": {
"blake2b_256": "8026b613d3ddeddfb260c9894a5aae16f01fb94f2e53813f09408288241159d2",
"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": {
"blake2b_256": "1660c6ac986c2caeab6d3bae1e0b3400ab49df3aff23a8e37c543be68780d014",
"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": {
"blake2b_256": "455de792594f40bb6bc306aa85bdfdd266ba1159cb9c67173eb1b4cab578618d",
"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": {
"blake2b_256": "3360c21acb7002110699761d3dec36fad3f5087c2752a4eb495444f877db6553",
"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": {
"blake2b_256": "2b6fa20c36018f2a1804b54bce2377f06ccd173572351f17e1df098be38eba5a",
"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": {
"blake2b_256": "bcbd08f0900d62b4ea1ca10bb2e2a1596ac3b04024c7daf7350debee0bd022fb",
"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": {
"blake2b_256": "0f58c8b83f999da3b13e66249ea32f325be923791c0c10aee6cf16002a3effc1",
"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": {
"blake2b_256": "30876f499d1945d1375c1cd73d93241079ce2fad10ef0d4b6ff91b9e1d111e7e",
"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": {
"blake2b_256": "dc58dc64aebcd4448b93b39ee3675bd16d8347fb2689162f9d2379add464b315",
"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": {
"blake2b_256": "dec96c85af4b1c051855567543330df6cf700ad4edeb3ef8b8e640bab5cad11b",
"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": {
"blake2b_256": "ba74f99d00bc439f2a9788e9357c5d9c0d0aa56c2779e5d4649aeda11590c4e7",
"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": {
"blake2b_256": "db6f6dac934238a8f04fead3607f5c3a3b58ab0c6f6796cbd9c5941a9e657618",
"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": {
"blake2b_256": "203ebde50b8d1f5e7de24ea9119fab9ef33ea333a72bfcdd00345f6ba7c5cea6",
"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": {
"blake2b_256": "d48b9d0b4670697bf1666a67957e1393a64b44db9ba6e1e9657e5cdbc8c3e982",
"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": {
"blake2b_256": "db18620ab7361efd4ebd7a5a1ff1dfbb1caf64200f94e96840549cee98a2d38e",
"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": {
"blake2b_256": "3fb40aa23df1c733e846d1a5e20ca2784e7eff23eb328a1b82676df10819e270",
"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": {
"blake2b_256": "5e86f505d447c97cf57a0224c7e0e3a79b73b8cc3f0eb6eeed856e7fa48f8f64",
"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": {
"blake2b_256": "1bc536504584476bab207f035f73ace683615fb6f347ab4fcc0a075c11917613",
"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": {
"blake2b_256": "a2b6f43ecd9d36bd4e514cdb72a4cd9e4b7afcaeba2840a1864a78e900acc83a",
"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": {
"blake2b_256": "18024b93461b42791a0021ebda53dedaf1cb76b7eafa652c1f025e77bba5951a",
"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": {
"blake2b_256": "26d59de37b49a716b2e9a1f0813aab502ff1b815aa3748dbe98c4e73f1781390",
"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": {
"blake2b_256": "01488e6a39ec100db4f3037c27a4964ba630ebc4fb157b7061b8c9c4e9ba3160",
"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": {
"blake2b_256": "d83810494199b1238a0f123f7757801aa9a7c03e0fceb8ea6997712f50fb4b09",
"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": {
"blake2b_256": "6a2c57f8c7f5efed23bc81541fd2f7bc4d065e1761ff53f694f5068fd23e7880",
"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": {
"blake2b_256": "d61bdcd8a773ca47ea1af514665729105839a75b1f2e78a6056223d5bac01928",
"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": {
"blake2b_256": "2281642ed9ad535cd70577a43a87b5846ff1dfac78d739cfb3f43f1941211ca0",
"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": {
"blake2b_256": "f6966fe030a06e58c3329e81d9e121af4be71440ee55249d95037175d6acd590",
"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": {
"blake2b_256": "38045099955b3e1c9734fcfdb04f659aaf7b4f358828af9257f063447bf1308f",
"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": {
"blake2b_256": "350728b86dfd7ff79eb3ec693b937bd830bd09a06645082d7e5af3cbaa1ba8b2",
"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": {
"blake2b_256": "bcb1c05e22f683bf8eb35d2b3a8cb674bbd84d18ca6f9144a85d86e064e9c14b",
"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": {
"blake2b_256": "f49aa875c1cad9735fd133aac6b7157132cbff5b844aed6e9331aa8c930f3517",
"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": {
"blake2b_256": "53bc195ddb585d8d0ab3a5df70922c8e66f501299cc21213551dd16a37c21b0d",
"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": {
"blake2b_256": "05e7cec8931ab6811ee78853e3c64b1a345f3846566394b172556fc37c0a4065",
"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": {
"blake2b_256": "c8b197f2b5e4f8ed2af61da1e41cdd9e9c873f01e5d86849bd4b2f10bf4888dc",
"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": {
"blake2b_256": "6d0b9e8e74a7249bccd568d29dacf5a97fb70d3ef151833746d361cf83991fa2",
"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": {
"blake2b_256": "16f337886ff02fca91596568440d580344557d9d6de7dd5f772fbfbf17802795",
"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": {
"blake2b_256": "e232666439f4a2a590b4066f595316b8df8e831ea6f2b4225469395a19488ad8",
"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": {
"blake2b_256": "9016955bf253e41088fa630f4d472b03b3cd9b1b8e189cc6c033cfa16ef3268d",
"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": {
"blake2b_256": "a895f32f09cfe4f5421f7962ccf08338c11ccec229fa1a2ea598841b419b30fb",
"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": {
"blake2b_256": "efec5b050fb0e53cb3332970e14b35ec3addc9dd2d22cd950f1697612d4fc381",
"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": {
"blake2b_256": "b75d9352da662e8f7ea9be3c37212057c78d1d49daecb6fbcb7b2caf0aef6466",
"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": {
"blake2b_256": "2c2ae5cd0e2c61e9d6f361378b39c4259ccb4b880d3e9263102c5ad75d976d22",
"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": {
"blake2b_256": "025e1419c5b3b2ef6a36b763d0188eb7297b0ba9e9d38890be293cbd9f6463e0",
"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": {
"blake2b_256": "7d2b7afd31932652a065bbc7bf1d71488c39c0b6fa1aa4017f9c79b0167b1651",
"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": {
"blake2b_256": "de64d7826b20adce278224a730348bd4d521ab7dda55fc9fc29551267f735b48",
"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": {
"blake2b_256": "0e8c42cd82738bf3e906601fe1f9859c0ead62ddb47eb8b7d39456afc6229585",
"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": {
"blake2b_256": "0935c5a2d06dca8e2d6fee00e47dc43a9328a2c1419ff5696a2ff0ad2ff5da21",
"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": {
"blake2b_256": "0f7bd55eb379f4bc7224f414f024b5f2e103663f21ce9b375414d42908de5c05",
"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": {
"blake2b_256": "39f7c61600fd18aac22f9e0cc55f8055957610e2fbdbb671b3e3b8950468ad48",
"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": {
"blake2b_256": "f847dd3e30f4b36ac84a8f197be38671023b929e9d11ea7f510e38ae927e85f0",
"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": {
"blake2b_256": "b5380a1db9f7c5ded27d18570129639d5169668514056a30cb3f7cb88a97fe4a",
"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": {
"blake2b_256": "dfccf8ce97e071688ed0fdbf579de4b7204381792d199cad66de6a013ef1c0ed",
"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": {
"blake2b_256": "7b74784194455be1199e2e0d3bc6f6eae1aed1002ba5ec3ae0ef72cd24529ecd",
"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": {
"blake2b_256": "4f8c5a453c93c2fab5d31b6fd4ac38afe8e5b37886be48e91fbe9d8970a84031",
"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": {
"blake2b_256": "b5f9a03cb17c6d366c83c04afd1484cea88d4d37fd76f605ddcecfa492d9c8ab",
"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": {
"blake2b_256": "63c98620091021b08ca11014d82f39001ab004a80c4a6e8defcdcb3477ed826a",
"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": {
"blake2b_256": "368fc86c9a50280da758ea9d60124b828c1f8515e1de465ddd858c02071c04eb",
"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": {
"blake2b_256": "eb155aa7b56562cd6099e39965c520892af559ef82dabfee58dc03594117a6bb",
"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": {
"blake2b_256": "b827f8b6e9cf66189ac452a66b05aa387370a7c57edb38b7d4459cace126a585",
"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": {
"blake2b_256": "864e1e9864509b8674a0e8b827cc2d61ed7383e9bdab3e8f30efa97e0d81cc00",
"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": {
"blake2b_256": "c2f63b25ca0df5c2ff4c62004b2459fe7b34ea26aa0589ad688e5c7ce35e3f2c",
"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": {
"blake2b_256": "1eb92953b6c3ac04530c7ccc4bc47e694775d6f03e371b80532861d767736f9b",
"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": {
"blake2b_256": "6a8fd2deeeb3f8361aae7f77f2d71984f8cfa32ee16f5b52458db7e0fd863360",
"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": {
"blake2b_256": "eda9fb04456a7d3eaf164f1ae30df18a6149b9b2a64154ac33d072138fda3405",
"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": {
"blake2b_256": "1d2acdcad9e2832271eea58901650b69bc9a45304a2e38ae73c1d9b1cc25be8f",
"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": {
"blake2b_256": "ba2f34d4b099de335a0b8423093575b9d3111e11b3d92343d7969a5fc0132853",
"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": {
"blake2b_256": "518d7fdc69f4db1ea16ec8bf6e1da85f68c7260d16464c74a12a42d8245cee89",
"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": {
"blake2b_256": "8622baadde83175f1ee7f7c680af734b136520297bfbb5f30a51e09643b744c0",
"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": {
"blake2b_256": "040d73a25613760c5aaf283b0f0675bb56baa7df443fdb1dcd3209e7010747c3",
"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": {
"blake2b_256": "3635493497b49701f0c616d0a08e0ae676365fe0527cea98155724fa3ae56c9f",
"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": {
"blake2b_256": "ed647199442def64f40bfba96b64bd5bf0398a56478a72429accf181d4cd44ba",
"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": {
"blake2b_256": "fd6856ebe9b2f58e5d04c62d0cf4e9676693978691ed438f064e8958ed81a741",
"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": {
"blake2b_256": "03fb7fd6db147024190d434f66ae46c40db3c9c5c52d14f4bd2591a07943715d",
"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": {
"blake2b_256": "9b6a12c77e4b9bc0ae7067deaa1b8c8459ce11359a758997cc616eaa73d8e568",
"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": {
"blake2b_256": "d0505bfc962d49c53fad7298cb7447802b2053dc00f7a66919460aff8f370fee",
"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": {
"blake2b_256": "cf9661c64ffa83f125bacf11a839f7ffafff237ee60bd1731ea1e075e763f663",
"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": {
"blake2b_256": "d83bd1278f7769a4cd093f8345ccfa262f0c3631bb2a77a9c73ea4bebff36557",
"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": {
"blake2b_256": "c5f694751b793223e3194074321bb814e9a42b6deb25140c52efaef0bb3d1a1a",
"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": {
"blake2b_256": "d5a3c22d82b7080365f1badd4de41fa522b5d7228813619050e5c201a447bf26",
"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": {
"blake2b_256": "82904038873e1747b2f1eab8ec8d6fd1b5d024569ec13aa72dd1df8605e23dc0",
"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": {
"blake2b_256": "1d5e272346b5b16c8042e510c51c5492fefa59e7e0098e3b92520d7e55d104a2",
"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": {
"blake2b_256": "895eebc77da0e0fa53edc0619f8069fde54838eb5fba8792170914b1fcbb2974",
"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": {
"blake2b_256": "57c0d98f2777051e6d6bda7aea8aa98812ba1b791199e6102a77be8a71f89976",
"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": {
"blake2b_256": "00903a66a2ce0da9ebe01cd3ad3be3d8b3c70ba533b9625aefa06fe51aa178b0",
"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": {
"blake2b_256": "3c61bead9d25bf9f4acfe730eb761bfbb7941c8f63ad7b2900781b1e4b9e5494",
"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": {
"blake2b_256": "784ee03c2bfa7cbbcae61b73780c922c774f599e0795f5a581f6c5f2b3f36bf9",
"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": {
"blake2b_256": "5b743239bf5ce2c31e8bcadcbf5c7a65e7a87b2f578c8da9f8beef1a65eaa78e",
"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": {
"blake2b_256": "9900107ed8fe636423901ac12e3bbf27fa3d570d4095092446f94dbfda832af7",
"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": {
"blake2b_256": "71e9862628eeeb2fa07617b614fba50c38d73c3bb74c28439389db81ee97e83d",
"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": {
"blake2b_256": "9e1eb1e17a16df2c1c591cc8c92a0ebedc7f3ee51356473618b7936eab516964",
"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": {
"blake2b_256": "72a4b68f9fe39502bf8c2aba43732d5a9954ff269349b7398e3d6ca59193fac9",
"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": {
"blake2b_256": "1feb3266e3b3f0c960acbd20092a10ed64e5b404b8aa8faf4830fe917696ebc4",
"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": {
"blake2b_256": "b6755db31c477937115ff2222c411c41ffeed01c826ac917a64bea12e28873a7",
"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": {
"blake2b_256": "d6500bc8c49ed7026f0e783b85556683c8a28c3c8f44841f2bd980e936994930",
"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": {
"blake2b_256": "af098e1748ddb361e4c28bef24b88c81e6c5a1351e7319d2ce1fb4b7a3527128",
"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": {
"blake2b_256": "740e0948eb7fcd41e85f6010cf744c32ff006d2c3d181b6f17d4988eed6a1f65",
"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": {
"blake2b_256": "0cd5c79b2901890fd04d87e47ded63d5055a43bbd3ed7b1bafa9df190c7753f6",
"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": {
"blake2b_256": "0d7afc1a1f3a3ae07717d48f8f586d8e44b7356758c93c32ebd5d88336b2540c",
"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": {
"blake2b_256": "13f1e3497b4804752703b56646aa76318984c8dc1b8e770c10cf515af2beda2e",
"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": {
"blake2b_256": "37e897d4868092e23a6d90f62bd1206c51ffad28ada7583adb6efa102beabf98",
"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": {
"blake2b_256": "95701aaecd0c9ebb0ae2c8f05c3322bbbe4aeb734a46cc389ffb1a0a78f1c862",
"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": {
"blake2b_256": "3ae30dc562110241c5b5ff6025ba1cc9e7ae866a8b59b6b07cd2b1be24aa998d",
"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": {
"blake2b_256": "40865ec4c326ec9ecea4e538955b135a24ea64804d3a97bb3557a6268125d68a",
"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": {
"blake2b_256": "8ab50066cbea830850eef71614a16c68b3d942487471796e6efbf971036b3747",
"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": {
"blake2b_256": "692c1e7bc5a9c44c330dbcae793bb36363076aec6d73a38ed094a6fc5c7eed8a",
"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": {
"blake2b_256": "8fa64f7f5de8c08f732669e3a19bb95479e3fe3acc3d29ba766434b3fdb3c178",
"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": {
"blake2b_256": "c526da8fcf19b72ee063df9fd14efc43a734628b6c3c8e2c2139e0726c914549",
"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": {
"blake2b_256": "48c6ce2085fbfd96245a53068671ad7c1f6f34cab3bf874c567d93856a1d63de",
"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": {
"blake2b_256": "36351b86b3aa401d228ef18c6fd73ff75d3d1fb023db9b08eda66f84db2fb9f3",
"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": {
"blake2b_256": "522677e72665fc1d23d13f6d647ec11ba9ddf36521c87cfc963580c0f04bbeea",
"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": {
"blake2b_256": "c38580d24027fe560c2c99959ed75e9e7048b8d0c2041985ced1e8982b5ff587",
"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": {
"blake2b_256": "d9826a9f458d976b6ec54ad064e85119dfbd15152ca713d0441f70a506e63b94",
"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": {
"blake2b_256": "7b1f22e594deda300e61fdbdac6ae6b8dff7ba7aba80a23e74d9b3cd651c68a7",
"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": {
"blake2b_256": "5a6b86cd2e55900810665703907c35c1bf437a7d35156cdee07c23e6c00cda89",
"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": {
"blake2b_256": "721407d3c059e2d57fbdbca4e307b22f2919bc01010f15e65c531769c83e9d4d",
"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": {
"blake2b_256": "d7ac55596c1823841923ba377563b97bbbac54a46a6e09458afa237bf6b9daaa",
"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": {
"blake2b_256": "2f46f6a30353ed36a2dce41341a4f948679f4cbf4e53fd298b259301406b840f",
"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": {
"blake2b_256": "5df370f2dbcde6cb9244abf0e418d32c8020f91dc5c21ad1258e63471ce3d967",
"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": {
"blake2b_256": "85b72408354cc2cc3a548e52daa1d86fdf946308217703cb088709a835172c0e",
"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": {
"blake2b_256": "508fc769ae2806953226c54bdfb77b3ef43df5091ea7264ada4c87b14fadc04e",
"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": {
"blake2b_256": "83e62477445b3b5da069d5eab548e11b060845615d84146dd0f6706487d05d4e",
"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": {
"blake2b_256": "0b18121b108d192348b690e9cb227273b5a3a360315531a6de362d78a6a054ff",
"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": {
"blake2b_256": "9f63c86f0a8cc03c1110ab650f78b31865fcbdafc5c664e2f111ab7b8b39fe57",
"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": {
"blake2b_256": "8687e4da200ae41eca9ad75b948ed9342c5d55dded06c7a02403bc3ea51b0648",
"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": {
"blake2b_256": "5f9023bac07adffd65edfa9793c7779e02a654d31216e50aba2892936b5ed66d",
"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": {
"blake2b_256": "43b8d28532e0841ec8b2a46ca06c1fe8b4bf6c91df969ddedbecdb8142c694bb",
"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": {
"blake2b_256": "1e2b817285cc8ea344a98ca22231d7c7b2a95524b06f557ef57e1718225cfd6c",
"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": {
"blake2b_256": "3446d7e2bc8a3a3798783e4cb4cd51d40fa26239bfa20609b608cbe12562bd88",
"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": {
"blake2b_256": "4fe0f6a223013473ad3e5a4e61f2050a30b5c0b79a2b6fde17e6add0b2da8a3b",
"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": {
"blake2b_256": "71f8a93f9c79c60baa15faa5e119641af4ba7cac97510bc829aa59c9be7a983f",
"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": {
"blake2b_256": "f3894df51374136fa7fdb0a2644268d5fa30e54992f1fc1ee51c7f315c785637",
"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": {
"blake2b_256": "8597951f7f42247e3ace2fda211ac24de49065e003986ab07cd8567452f9e5c8",
"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": {
"blake2b_256": "b35d5bbf35677f89b8a123548d51a79489da8fd6b68a0b1ccce5c5044549740a",
"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": {
"blake2b_256": "c3f3d760e18e7a3a69c2f961a29b49c1f1f748429f19a32fb43b2ada1342cdb8",
"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": {
"blake2b_256": "2ac21fd4525fe183439f83bf14f009194d1d64254c5e9150974aa603f53d22b0",
"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": {
"blake2b_256": "f6fef733951d6cc0b0cbf5df3277d01dd5a10d0f72b43582b21c86aff78d5a59",
"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": {
"blake2b_256": "bfb300ab8dcab63d293ae598e1140ae94d96cd6b6e23a08cb00131e9333903ea",
"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": {
"blake2b_256": "e84e290e0ee3d4e5d8fd46700fe28a3981bcb4f9f71f5e91f405e48ab322adf2",
"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": {
"blake2b_256": "c2a564734083e6b5204cf035f451f75c0f628301bf3366fbe07c7ec3c9f2a0ec",
"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": {
"blake2b_256": "afb085485dc9a06e0b04be4774a80d60635985eaf58eac737e953dfd52d89dcd",
"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": {
"blake2b_256": "fdfd2c41c2e195059b08765c07cdc81966ab02b42743fad758eaa400183455fc",
"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": {
"blake2b_256": "c2fbd5ddf428aba63935d4d4f7d21b365659df968d6793ae1c072273580cd5a0",
"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": {
"blake2b_256": "e0cb5fa1d7722488995358d6092a7d2ccceb9011ab78842ccd336fbb5ec0d878",
"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": {
"blake2b_256": "18bc64f62a4111483dfa99b838a1008697e1a96eb3c8187b716ca9676fcf81fc",
"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": {
"blake2b_256": "7b5780b90eedc40a87b9348ae6419e838c355b385298b2bbd94a3e1812d17f10",
"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": {
"blake2b_256": "e108fae42ded047f84db27d12d8ef54da4b6c9c4adfa39407587c73e7118e960",
"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": {
"blake2b_256": "76963b0682d7d63d7ffb30d02e8a0d9242d6413affb7af5514eab27974e91585",
"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": {
"blake2b_256": "acd8c50e43565f139a68b358386d84f7a66e5c72e5d885271a002d402ea2062a",
"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": {
"blake2b_256": "4ed011da46e78d7e41e507833d6b441de33dc13fbdac670603fb5cd5dd8c1f97",
"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": {
"blake2b_256": "1028ab9decdf95f0b2babe509f264ca531fd6c910615e0b4be5f240dba500832",
"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": {
"blake2b_256": "bf4f1bbc29623e675b010a825712157589433813badf98d423aa32b743245387",
"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": {
"blake2b_256": "933b22c6bc01b7a3e4da4a96db322120fcc90b64176768f06bb270c6be3793fe",
"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": {
"blake2b_256": "c03d85f2fbd5ac1b92f6994006596d59670f565297f455a049c7e4fba8699f79",
"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": {
"blake2b_256": "90ce31f74f649ba92c646e91cbe67e9a0bf421c403a513cc44f61fc8c5f620ed",
"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": {
"blake2b_256": "c0f2351be9eeb7c7984314c07f17d3cd66744672cf7f4c7575e207c4f2f53a3c",
"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": {
"blake2b_256": "6138b04a8bc7e9535d5b55c007d1454ae161f41c19a9f1a2bb3810aa2a28c99d",
"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": {
"blake2b_256": "5da6371e117cf042b0b4a27272cf7ebb729b677dd705117634ea9f3511ca8a30",
"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": {
"blake2b_256": "9c55596d144e4afc3b4ea2d2cad330ae6d7fbf2c49fb61e9bad5613f436bb9fd",
"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": {
"blake2b_256": "77afee87f0ae229557d94122e1504e08a1be5a9f8ca26f688081d9906c3abf64",
"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": {
"blake2b_256": "67056ef7c24157bd547a2eebc1fe62d85b8a87c7dc1d947e8fff924c5eb1dbc8",
"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": {
"blake2b_256": "769efdeb6a941d0e660e2a008cb46d2b37f04bd0a4bc7ece13e96db40690281a",
"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": {
"blake2b_256": "0cf77e49f0ba193be1b52e72649db1b1661ac0e943a2644fd37c5b96616fd164",
"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": {
"blake2b_256": "97a3074baa502e2a3d48694b089af75230909b58b94fe0ae46d268beeb4d42c4",
"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": {
"blake2b_256": "ffe7ad65f23cafbcf902d232af55ca0bea9ef5f64a5097f7999fc223c1e98b8a",
"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": {
"blake2b_256": "72e979ef5f105589c636d893a618e69776c667eaeb482a514d29de779ca02509",
"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": {
"blake2b_256": "d835f476616612e998087f5342276a3c3443d1f3375b81aeaaf9fdff6b7e72ce",
"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": {
"blake2b_256": "52862771398a81ad46a648646f2e0d38a82d7adf1e713cbc394c678ce7ff4351",
"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": {
"blake2b_256": "0615447b4f81405cffba8971aa64df9ef18bd7557fe4547be689a26c0ed1cf31",
"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": {
"blake2b_256": "befc81bb6a8a751c9c0f4cfd387e3547dbe9f62539e06cc247383cd7ca0e47cf",
"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": {
"blake2b_256": "b962aaa4b3977729c1edd78884fdf73438651472a990e2cf30c9d9732fba4c0f",
"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": {
"blake2b_256": "5a4183b90abe47b8fec141297d794e7652306078baa30a5a42d8c85da2cc847e",
"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": {
"blake2b_256": "a662d27a52f8f01e31593958b33d6bb110bd8dbf60fb0630efae22aeed7da449",
"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": {
"blake2b_256": "09e5557c26841a23b665f10b1ca1e81c4dc04377a3e4a17b93a0cd346cf74d69",
"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": {
"blake2b_256": "ea73e286f46e24eb0cd231f46702b64a4aedfabf18ce5b15a7f21cfaf4caf0e9",
"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": {
"blake2b_256": "e638c4f93396f87c3354d372f8fa0ee4ff88e7c87accd0423cac3df72374e8bb",
"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": {
"blake2b_256": "11997cd08b82a42e152a5c500c2438050e5407ac99bbd6ea5932b4be30d19a51",
"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": {
"blake2b_256": "97d11cc7a1f84097d7abdc6c09ee8d2260366f081f8e82da36ebb22a25cdda9f",
"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": {
"blake2b_256": "609060bf09ad2e8c827e3a71f77c43ff7be17c9d397d33baeae7cdf0435139b2",
"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": {
"blake2b_256": "6cf5d4e0798a6fbbd0c59d0ac2d24a1d29ece7279d9bb7403b01da2c2d2bd841",
"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": {
"blake2b_256": "7c397eb5f98d24904e0f6d3edb505d4aa60e3ef83c0a58d6fe18244a51757247",
"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": {
"blake2b_256": "eafb63a75dde55ec94ced184fe08083714789865c7f23cc471fc55dac5cc0c39",
"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": {
"blake2b_256": "f1511985ad031e804ce75c00059aacb386703a332cc39683752d7608980cf5d6",
"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": {
"blake2b_256": "40fd3a595d6467eb31f7b69eb980778567e764b5d93990b4ceb8ddf6079dd776",
"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": {
"blake2b_256": "e3716000eacb8923d9fd07aa8784a8fab4f022ae697f3c2456d7dca75c743dd6",
"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": {
"blake2b_256": "f2ffe570c6f81fa1e23e64da06dbb2b30c61112f171304a142af5702b4e8034f",
"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": {
"blake2b_256": "0bb3744a16bdaba2e4df90f6ff10b9ade9c2dce3f01d94848f3949aa4ce7868d",
"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": {
"blake2b_256": "c2f7f0ad3dbace4762fef5d80aa4124b41bf218e4c4dd6d387a86cede707d9a4",
"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": {
"blake2b_256": "0094f9fa18e8d7124d7850a5715a0b9c0584f7b9375d331d35e157cee50f27cc",
"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": {
"blake2b_256": "4d0f3b500bc82b51b5bf4d7d552c4d75d5af33c3ae9fa6234ce127ab69c262cc",
"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": {
"blake2b_256": "7155fb78291071fa1e1cb0c470b56d31a71ea5658e181dd523b46459c573d7e7",
"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": {
"blake2b_256": "57877b6f46f7324d01ed7840bd48c14e98dbb15b969b301580183589737ac106",
"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": {
"blake2b_256": "9962f84e6939c35db5aa99ab177bcd1c5eaa61b991fd7fc816e4cdfa1e237901",
"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": {
"blake2b_256": "77077d87679a44596a28d548c3f3c2c757dddf655da6efd93e37ad1df57d01a4",
"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": {
"blake2b_256": "844070c3f3b427df4d76fe53f8f8e54717febfb0222449a5c47d9b365336b5dd",
"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": {
"blake2b_256": "8c9c0a63936f32eda1de02e70e12e3bd720342d89eb966e46fe429adbd3cf785",
"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": {
"blake2b_256": "947582f0d1d50d2ec9e69b721817c4f6e41e558138f4a83fe60ac10b7cd046fd",
"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": {
"blake2b_256": "a1b965384037286fdb72fc76feb647a4f99a4502e41df6e2a7a71e17c58ba607",
"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": {
"blake2b_256": "3619eb9ddf448939308547753ab1613b9004a9051b90da70965f18a1d5fa95fa",
"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": {
"blake2b_256": "bb3013631853019847926b2e5b581b6731d09e4c599375b107a31b74cad3db28",
"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": {
"blake2b_256": "712887d113c1a6e631325fd3f2fc8d026142819a836046a0637bf42fa2b86566",
"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": {
"blake2b_256": "d5387cfeb1f45706f770b33881ed3b78e864e9623c1c1976014a9e3f0ebb4d03",
"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": {
"blake2b_256": "5acec465925d223d3768ee38d763e72ad0e63fafef8715d1d0460c85d7801961",
"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": {
"blake2b_256": "6e413c361c81750bd60418e083b961758512204c3c197349aa008e2d810210ed",
"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": {
"blake2b_256": "ee6c69d29c27dc48b1067419563ac472db775d0c9f689ffe8a57bc405ccb89a3",
"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": {
"blake2b_256": "7115a5f8b3e1931fa7627fc7bef67d1bdbc18bece5cf6b8cad1365a7ce84e696",
"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": {
"blake2b_256": "6695ea60c0d623a630fa3338423d263622019839b693cbc773d377c4b13c2f96",
"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": {
"blake2b_256": "fdbd7c93e94098b6faad0e55cdb91b26cbd79e1486fd5137da6fc5c772863ffa",
"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": {
"blake2b_256": "9367bf2849ae218b03657d2c06cfaf6d6266acbe8a0a11cf1fa1bf462dfe08dc",
"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": {
"blake2b_256": "e946cefbcd955eaacc9cd2f047954e7b3000fb697dadcb236516c1a072053504",
"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": {
"blake2b_256": "351f3575e2f80b4ca1099ed530a2267c7c419a28f2cae021cbb3e0340c4fe2b8",
"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": {
"blake2b_256": "9a8f91da0a27ac57327f9b9608867618f09efe3ac119c3e277e103e424ef82f6",
"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": {
"blake2b_256": "fa50cfde47c7cf4d1d670c274d6f605b99bd40e705ad7cf9e88f31394308404a",
"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": {
"blake2b_256": "2b39ad98c0c8f66afe7ebcb557be23b50d068e717c33c28528769baceeb9e047",
"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": {
"blake2b_256": "65f553248bb780e61a27b11ad6492361a34c4963a5dfebfc53a6a7a4940338fd",
"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": {
"blake2b_256": "3feb73a4f67fa09cec6f1a9c5db82be0c07824d12f80d2c01c32b3d65baee388",
"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": {
"blake2b_256": "84ee5e435867918232dfd5338d826688c86e3ab5ebb36adca918aeba567d17b6",
"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": {
"blake2b_256": "a69a4fe9d20f0b5cd0d5a84890eef34fd635bfb646204bc0c4ad8248be04c2a3",
"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": {
"blake2b_256": "f33f01c8cbb26a846a6c3b5f72d05fc92e3117540ebb60ee84b999fdc55232e0",
"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": {
"blake2b_256": "85c71c1f4c448ee4f2a042b529309b2f5e7a62cd021153098ab93949b3dc57ac",
"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": {
"blake2b_256": "0329ef74bb6f49f4eeaf2979de0e06d7b9d91bd3e883b04ca094a5a2b228d09f",
"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": {
"blake2b_256": "891c603dcf1cfb2ff66e2f3e08cdd594f1a5c10c554fddecfd4065013d720d46",
"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": {
"blake2b_256": "5e3c41dee24fe87cd3f9a92b3ee46e759b36e41c771f703c31ee72cf167a8be6",
"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": {
"blake2b_256": "965ae45cd2054b682ec382650ff5f94c729b343a50747571f15739248c47d340",
"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": {
"blake2b_256": "2e793198c8e0b67a5bfd274429667e14fad95cc6cdc9ccec506ef38d26c47b35",
"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": {
"blake2b_256": "c36dd32c4cd6aee0086732a79d33f8e2bd85ebfb88710848a2558bc613ee9bb2",
"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": {
"blake2b_256": "066d9ad79b1ceb86a035011c7d12e2e2a8000341f09f23ab28f73dc987ba6891",
"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": {
"blake2b_256": "1f7a5bcf2a9daa87877ab23dadec3ba6da307c02c198ee0fa65056bc7663657d",
"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": {
"blake2b_256": "fa29b302ce53c6aff5d63b2ebb47b7b7e315e657ed13593398462ada063cd538",
"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": {
"blake2b_256": "73d43697980b9758541777ffd9a5ee890dea48ce848181a41ba64fdb2dd18c34",
"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": {
"blake2b_256": "78a693acfa8f8b3573c4445ace2f266de62783231923706a4c3ab705e7d43497",
"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": {
"blake2b_256": "92f56a5c031b394e3990c20242e3ce7443ba9449bd15c62df954e5c2cde21954",
"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": {
"blake2b_256": "ade8bca85fee07389eb6f255bba94abfd6cc9bef2cb5113f6258d78dba45e05a",
"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": {
"blake2b_256": "3b222ade4b8958f2b86ce41cdeee33ee9397a3586f21bfa2a2e1d0a23871a52a",
"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": {
"blake2b_256": "12a2ca3ba17c50ebeb3e7473330d8d1ce08fb83506a9bc985bcc0716354d2018",
"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": {
"blake2b_256": "3daf17927b29f0728b884ba1a0fe42220c9681bc5f7e5be1aa4aadda83a49be9",
"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": {
"blake2b_256": "49669572cc48951da97e13e3e2cec2be3feb493c1a88abd3bfc70bde243f1eb5",
"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": {
"blake2b_256": "9d6c429faa2d2f73973189ca0cfe141ff703417a5eebe18d78e6b25b70db0a34",
"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": {
"blake2b_256": "3aee0e7b7a2a6abb1c3a7b957cf21b9a2106f4a955ab8e08b9103f09306dc74f",
"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": {
"blake2b_256": "62d52b6ff2583f75c36475d113abfd7c141e66a2676be165b20d37d78749493b",
"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": {
"blake2b_256": "2ce6b7af1c2f8b8140c34496adcd91f699400bddbe451c9ccf9439f45a413a38",
"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": {
"blake2b_256": "a0a960c0109974ac383383acf3d10cc53be9e7ebe7942877677fddc5e90caa98",
"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": {
"blake2b_256": "535adb743a639f593590bacb74e01c3862d385079d556dcd40f70d750759e111",
"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": {
"blake2b_256": "0fc8b303db94dd1c6db2f001a1f210082db8fb825a4ac8178ca9090f25df1c56",
"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": {
"blake2b_256": "2a362b16b750de61cf54da3d64d0c8631e13b9934100c6ac73c478d1620c86f4",
"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": {
"blake2b_256": "c7e1b46fbd28b4eb995e8866c0cbc35197ae1020a3a5900a30b91c0dcf3b3fb8",
"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": {
"blake2b_256": "1aeb93d1e50349e7552caaf66a00953e249f90477ab007f347b8f65540a5b844",
"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": {
"blake2b_256": "98d37fcfaa99552b1597a97c2af9d299070ec4473da3bcb586c0e80841c23f20",
"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": {
"blake2b_256": "667afaebf41784e479ecac44c8a721cf7a964b71630637b05078ff1bd15566e2",
"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": {
"blake2b_256": "268855e67c13739883c45cc350c819350f1a6d6886059348919c59034875a36e",
"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": {
"blake2b_256": "42005c33e0eb146ff0070b9bfb49ab95c8f11ccf3a09713f550972918cfdbe53",
"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": {
"blake2b_256": "a39c48a8ab1d84687b3e7f187aa9006db0fd24a3adf1c5325d7dd12d28dceaee",
"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": {
"blake2b_256": "84443722592d693a037a0ebb4106c7645c77dd06b062ed8ab2e2bf150580967a",
"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": {
"blake2b_256": "bfcf07d7173838a2e20c46ba8a7d85267ed2187bf6774312c8bbb48820fbcb52",
"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": {
"blake2b_256": "464fff7ea122edfe6cabd9388a2a342594841cf377489b9316bd6151c060dc66",
"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": {
"blake2b_256": "1508cc8d428ecb455e6bbcc93938c60b1e033f9686a378ae37fa6736bf865453",
"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": {
"blake2b_256": "d089a7b840369dde1657ccc92a5ce92d53ddcba4cc79bdcc2b0d85e6893a6270",
"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": {
"blake2b_256": "9f85cbfdd9a2a6355dd786e647aa30ce206872c0b969266f251ca7df43ab5421",
"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": {
"blake2b_256": "efa386ade7b590a43f275eae8a7361f1d73e41ac94b18e9bd5d8f6b5feab0d4c",
"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": {
"blake2b_256": "0893c28e6d1a004ead6226fc459b131ae2b7e0382e75e4d718f34e03bd0b0957",
"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": {
"blake2b_256": "74d47180dbbec4c287f1db3788c4089877efe38c2b304a32cd5246c4bda535b0",
"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": {
"blake2b_256": "07e9f2cc3feee344b470b12fea27b5e5f1f5446fe9b94c79b963085f7fa5c7da",
"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": {
"blake2b_256": "62b601db442957375c7940a3f05b900a0f0fcb16ba0b6e63297be960134e2332",
"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": {
"blake2b_256": "3b71eaade3fb7db21c0d7e5427621fa0a8c7e285d4140dab524043904f921fd3",
"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": {
"blake2b_256": "96a83e43cadc30ece4c497ab15b8240b8035a77b81baf5f59298c3ff423746ce",
"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": {
"blake2b_256": "1f3dfe46ce423f06b199b828bdfcf53dff59bd4119e97d45ee9cab09862a50c2",
"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": {
"blake2b_256": "968c2479682adb32dad7e8e287bfdaf01632588a2389f9b6a4f113a31f9d7b5b",
"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": {
"blake2b_256": "f587fb31606ad1342ea2e48bc249fc0566657c19f6a72f09ec71ecb218e7d705",
"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": {
"blake2b_256": "5f9449015b2e656f33d1b10a8412461e2e3c2f51c2f1024aa8c57abfb32d4bf6",
"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": {
"blake2b_256": "de30e4cc492eb451f5f65f10e44e5da0668fc2a0696b407ccd8848988f99d5b8",
"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": {
"blake2b_256": "de140cac091b4dee22540f5c54a6ff31b56624e71f3a893b8b01485bf2ce2a4f",
"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": {
"blake2b_256": "5029004d3f556441cec37127e542c05e565c9758d1bc82973b08e968c8dbd715",
"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": {
"blake2b_256": "0a406bd1d2c3656c7e028664904c15d5c4bbc221ca81875db747082515e39314",
"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": {
"blake2b_256": "62b5d779d57455327647233d10d9a76ad53bc414ece8081e699b998e73599d1b",
"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": {
"blake2b_256": "b745faeba44c271f1b73df91b955ca4bf2aaf77a132de5410ff172f5222a1969",
"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": {
"blake2b_256": "1ce6d949016ffe319fb57f130b526e8666550e1456ae14563f61e965266e2f5b",
"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": {
"blake2b_256": "552e9a6d69ad2f3e31ac10491e20387ce76c39b4badd82be1fb691c2672e0d23",
"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": {
"blake2b_256": "4cb29c43762fd0e4e2bc53b346bd37cc45c897383ebacc6066f4165fa664e1e8",
"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": {
"blake2b_256": "4e85a4f74b7e1e4548fef4274e1397046fddc29573a49d0b736e703b2c242611",
"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": {
"blake2b_256": "ad662234ef4afb029645dfe41686ab56b610567a4342065194e0fdd322402317",
"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": {
"blake2b_256": "3308f48ef7620fde5044511363d919be69a3a71e62e0375e45bdb3f177caf896",
"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": {
"blake2b_256": "6533e15e06409670ecd65a4c65041229fd31d6f0559d2b8bd9833f5ba307dcfd",
"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": {
"blake2b_256": "f1df1f5e2439cddb697855b8f31d40a29605b65f3e53f35a9c3d53fb8438251f",
"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": {
"blake2b_256": "72c5f5beb36d6c9dd086b47e79bb82ca7c44a1845c435cf4f1977eefdd847c30",
"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": {
"blake2b_256": "e8f462fac35773100263ab374d5944f78bb3542dedc30b5ba9ef029e2416f1b6",
"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": {
"blake2b_256": "d7050e9318a6f650d9700c3f678a6da4ff707d8e2e3e4a797fefb4567f8fed0f",
"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": {
"blake2b_256": "7056dc13e7efbf7f38b1bac8af8d14f4e22463dd3967a97c15da8c9d6c9aeae7",
"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": {
"blake2b_256": "d00f55b42ebefd70008d9b1b002b15429e44b0361010b2bab1783e5f940e960c",
"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": {
"blake2b_256": "37c9cf7428e12b8dda7036b6c6178d9992e048df6249546d1c528f1dbc4a99db",
"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": {
"blake2b_256": "845843f777fca915db79c15a97c8eb329beaa853915beaa074921262f06d3e09",
"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": {
"blake2b_256": "6fb2f941ef601c25ed0f56b8914e6283472af70915b3003297895a8761ea2447",
"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": {
"blake2b_256": "b05721a40a71194dde8e508b06c886d06162e8a1d3318b991573f5b69ef26284",
"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": {
"blake2b_256": "705ae11b673cf55b8ca447d57a55bec319f9b07d206c79a69dd930a1fe5b380f",
"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": {
"blake2b_256": "76dab1aa42eaeb2d689bdbfc8b2cb6fe2dfe0fd3c11c4b3e5460ae466b60fadd",
"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": {
"blake2b_256": "e9b72dd314ac5fd956da9b22739683d1a0ab924238b36de30f4dc77d21a085f4",
"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": {
"blake2b_256": "4dc342c25a3f6a07783e63799c1132e4396ee75336670315e3949294d712a808",
"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": {
"blake2b_256": "c87fe96c6229167c7d14bebf748873e44fee76f1722be4a9c99a81cd84c28827",
"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": {
"blake2b_256": "230cf776ebecac2f42ce899881020e57a3df7585a0127a4d0e38faad07611d4f",
"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": {
"blake2b_256": "67447ac29898fb679102d0347a56161ee8b1cdf601f52951d2dceb17bd74af24",
"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": {
"blake2b_256": "b17a6ae3683a17622a5e0b5d16d078383b484301346bac646a5aef3e5593b2ca",
"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": {
"blake2b_256": "860046c622329e835432c2fda4e8331ff9bde4ce3ad44bef821fff67973960ce",
"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": {
"blake2b_256": "00f2cd77d9fd988e24e6267df7bb44b9e4173aaaa3cc755a2aa79083c3932521",
"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": {
"blake2b_256": "bfc37189b07c4517b89ebed1de340d94690939a7cc6cc9cbb1e6b6acb4a6653e",
"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": {
"blake2b_256": "4d2589f6b871ceb21a5711f32057acfcb7d9988be4af2b0d6d17fa642d64847f",
"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": {
"blake2b_256": "c7e8aa0c7f418d24cf9459ae734af56b5a51f9e9d07cead001b23565168d1015",
"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": {
"blake2b_256": "a99bd7753555dfff8763e5f6e6690c5d6f1d356509cbea0dee6f9494d32d1c88",
"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": {
"blake2b_256": "d98248da99ec44c8be733b3a72382d7bd5dc93a30e3b6de478a0ca0c0a395bb3",
"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": {
"blake2b_256": "c5943155c23d1e05ae9b019d4c6de746cf421c49dfbc491c15b5841c474af2cc",
"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": {
"blake2b_256": "5ca3fd3673bc5fcea686c43b51de2a428593c5b69d0e24914df1f5fa16ad9f69",
"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": {
"blake2b_256": "8a855a2344dafde41ec13fce3e57d0e01659030efb2460d7b3ba09504c830cf7",
"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": {
"blake2b_256": "17fab266bc529a5fa6f86346dd643b024455c9cb3427ed27e48fb39fb71cc7e7",
"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": {
"blake2b_256": "1aaa0b89f3f6503464ce594b5e27bbc1b600845208104888d9ec6809b171f562",
"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": {
"blake2b_256": "73e5126242fef55c794a75df50fa075041282b7b962d1f4d936ebd79e4c7d0df",
"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": {
"blake2b_256": "e66108ecce18082bd0758f8c07f041fd06d4e5a4117a787d6aa2345e0a4b0dd2",
"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": {
"blake2b_256": "880084e967bb8e1ecf3e59153eec4dc6cc7e80816391b16b86e918ffa9287b14",
"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": {
"blake2b_256": "dec188f884a123fad13ed10b8babe2559611b5d4827cc3e8975ba88cd2093caf",
"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": {
"blake2b_256": "665e1f3063c29ea62a98d6050e534e5844886dd7d01c58d1970237b2d2324682",
"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": {
"blake2b_256": "fdf4924358c5dfe8e68dbcaa450a8778e56f82c1b55abcb2856f6fc7da6a73ef",
"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": {
"blake2b_256": "cd208496d2538eea74a4dabc3df7a9a1213bd686f32de22b20af6302853e9bc7",
"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": {
"blake2b_256": "72e68b74f097fe714bf846d8ecfca8acf49a364b296e11c4da414c8fd008bffb",
"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": {
"blake2b_256": "7e6886169d2ecf6662f85faa6e187fc41603046733e777ce3720dbd02ae9812c",
"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": {
"blake2b_256": "9ecc6eab59cad9f22a8731c04d013ff81c337c29c1b814a2e3bc2a327d14324b",
"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": {
"blake2b_256": "f683a64ac214d9ae78ae75e53eef73df5ec8e4f93636e110b19fcd81b777f8e3",
"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": {
"blake2b_256": "3b0212cfed825790d864b33082ba9bfb86b476e712fc5dee41f72cc1e4315e04",
"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": {
"blake2b_256": "838253d2cc698e822857f4afee2873f8625a42c72282b98ea8f2a8fa2624cfb4",
"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": {
"blake2b_256": "229419d6280aa1fffafab38f56864afce4b8564b05862cb7abbc7551b6d7478b",
"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": {
"blake2b_256": "a4adc43c1498306022168b2d49c0928f2842be0ceb7f158110b5abb586fb0ffe",
"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": {
"blake2b_256": "d76a2d763037a34abbabefba9d0cc81bda3b0910a4a8eec960008e402e02fab5",
"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": {
"blake2b_256": "7c5412feb20b253fa21285f6a4b85016069f837429e4d5237991c8e7067fed7a",
"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": {
"blake2b_256": "1bf37c60ebf976bf60c02fae28e3a84fa4812030a8bc1aafb1e069763e39f31e",
"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": {
"blake2b_256": "5ce42db351c98914664ed3621dec228ff75e872f7a3a4a0d10ae1074161da526",
"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": {
"blake2b_256": "7fc1b39f1160c97577a6bf54d26fa827243737d0f6c16bc1be7c81eb5cf47adf",
"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": {
"blake2b_256": "776c4ed7fe15161a141013dd038925187cc9af239524794f76688fd0480e41e3",
"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": {
"blake2b_256": "58aafc983d42a5c5bcb492f7eeec74fd0bbfef20310480ba5e3b2758f9d1499d",
"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": {
"blake2b_256": "6a7b7f98df4fb2e616e844ee52809f137faa76898a639d542f1001b7dfb9e7f6",
"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": {
"blake2b_256": "980db129aa878ab76c70fc504fdf5ac1eb8bf2088ed260240c214b5ffa885327",
"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": {
"blake2b_256": "57439511fda9ccb97087218b5cc55bfabf945799f499dbfb44f6d5b4616bedc0",
"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": {
"blake2b_256": "fa2ba54f5aa6dfcd29426f7d2d8479d163389fbb598e88acdb9166990c0a3cec",
"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": {
"blake2b_256": "4e3e94f07e1d0f873dc731e456a6b3150646817e05f72646b968771bdbbe5f7e",
"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": {
"blake2b_256": "34d9abf138711e09032cb53a0c38482f64e71d74d83d551747683cd53feac1c6",
"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": {
"blake2b_256": "5c96660b443e2476a5446cd26fc122c89a5e9d909b160dc6697de0fd46f05657",
"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": {
"blake2b_256": "71861bbf77f32e1fd6386f0935af95473161a2ffb2589c04754feb46a3a007a7",
"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": {
"blake2b_256": "345593034ac62346eee08436a245e99710a3f93629429f86b73bddaf143aa14a",
"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": {
"blake2b_256": "0c56e8aed71a1da06e0fab18e5e08a3b8cc5ad581f11cde12a420637860d80f9",
"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": {
"blake2b_256": "527a7c9eec757f3306c355d96684533ed65df7b1ffb109ab4fc57f0f429010b2",
"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": {
"blake2b_256": "ae2d163f4e3a1409351f2a7922a45dd9ae1537fa11b0b371c1bf17c08db40e72",
"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": {
"blake2b_256": "0e77fdcae6438c8b3993f0cf566059255db7c06b8f2d68fffaaee1b248570c75",
"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": {
"blake2b_256": "e255000e29ae7d028a32f8d3ee46a6d7ccc045ea4762889983a44c509ccec03b",
"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": {
"blake2b_256": "b0814f11333da05afebd80a9a1fc542be9b92b16acc7adda92fff790aafde10f",
"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": {
"blake2b_256": "a185f8ba80ae65f8895fe0a316aac6c952d9aefbcbe9fb25f2feeb379d08df22",
"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": {
"blake2b_256": "56d7bfe2e9a30c2e2e5382f88ce28e166b77f0da2ea21cc98eac4307ac6c71e5",
"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": {
"blake2b_256": "88e164f35a531e69310313be5f5f296787bb1cd0fa256311932ea181c5699a62",
"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": {
"blake2b_256": "e7971cb811b27ab862ccdea49dd4f6947fc70ec4f1949363272c1d7e65281c48",
"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": {
"blake2b_256": "147bbab4331393bf2dd955ee41fa2c84d3c98949534e9152a1823188d7022ab5",
"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": {
"blake2b_256": "abcf82eff9aeaed0158ece1fc2e60910fa910716686a7b2cf5bac82179e7f88a",
"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": {
"blake2b_256": "1541561a4df9739924a63569bac55bec85f15fc1c3500a2e3c52cec112965812",
"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": {
"blake2b_256": "8cfe98c3d64698b8ed7920069a1121494d12e77eea3ffd8b9708591e87f78010",
"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": {
"blake2b_256": "2e3c39731280ce514f61dd563c9bef60e09a6a56c3e095810d2285e060250af1",
"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": {
"blake2b_256": "f07663b593de89a790db7c8a0dfcf9222231fb1a2ddfde56929bc7097896e628",
"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": {
"blake2b_256": "5ddd185d4871c8369c32329f62eeadad058b032391a05ba1ade02a4fb5a4d912",
"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": {
"blake2b_256": "e81f3344ebe2a063a013714fc31d4d3af209a549f7183371e8ee51ba907274ca",
"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": {
"blake2b_256": "3e40c93b863852de31420b732bdf31915070158d6e221cf452109e73e4b417dd",
"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": {
"blake2b_256": "d07db8ec9be47e04aca460bb88ea3242d383fc3524533e133b942109c2ac5768",
"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": {
"blake2b_256": "a92768b833801b490951c2d101dc86e54c51d117a1197bf8f18b239a19a8a8b4",
"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": {
"blake2b_256": "fa870da7e2cbb082f8fec7bb42d5c5acce42c9701e8a0c3f13d448d94965c944",
"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": {
"blake2b_256": "044025426f956b0c19b89df0dffd87d90a46643c1de3d06899df0db2d9bbf85d",
"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": {
"blake2b_256": "97b45be2011e45a6dbc608d9072dfa1bbaa3bfd967adcf2573fbff3a7c227f83",
"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": {
"blake2b_256": "1bc50a591b2982495930b946d8ae26e46b5508fd9eb59fe0916a17c49fc069d8",
"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": {
"blake2b_256": "9b6c4172830d93167236c488a6c5a55bc8e6c98bb137212d49bb7bc625e33669",
"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": {
"blake2b_256": "4fa44c8827bf59bfa85088518c3ddf5ca20ed9373b002d8039eca9541f7461b9",
"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": {
"blake2b_256": "10c8f85b12590a30210036599e061a7dcf5f83edf57e7487115f34e9c2acd779",
"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": {
"blake2b_256": "1d4b2a6c0e4f72d694e8f6eb7a59dfbc298d53dcf183f0f7ed4e38c8cb7b8361",
"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": {
"blake2b_256": "24d4bb36a0e6e72507957281df20f82ae936dbc96198303a7bd1e9b7d045acf3",
"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": {
"blake2b_256": "295814d6f48ed7b8d329542d6d146b4b1dfaf236203d328ddbc46f80b574e743",
"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": {
"blake2b_256": "19d8d537765e3742ebd5be76e9fe691cf1b93d97a617bfbc731c8eed4d2e2d07",
"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": {
"blake2b_256": "599797bd0c16d50f1c74089ad1a29761483aef975efd8fd3fd02838066b72eb8",
"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": {
"blake2b_256": "9cc6c518b46d9bf1ae08c1936d82eae4190455ab073bddbb70ddf371211d3151",
"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": {
"blake2b_256": "bbd157d6955d30de09213b0c1ce66794bc57d1b9ab90452cee9146915417f4ae",
"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": {
"blake2b_256": "e7f188aefab0721d92f66277d02b61b1efcc2ad064ca53153dd3aafc08a8bf0a",
"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": {
"blake2b_256": "e6851d55331e0308c815dfa8c74b2ea150e60ff933a4624aa4c7ccd0b8fee52f",
"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": {
"blake2b_256": "da04a11bead7039c35f23b07b7bd1d2f6b00a85a677578026735bd15f54591df",
"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": {
"blake2b_256": "83ca47886b91f1be203c7e8c4904121ca3fe40621783e32d4c7f46beccc0e8c2",
"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": {
"blake2b_256": "6916261515778d07cf8dd4c27fdb576c7d3b6f1d98486dc231d8d2d09a70840e",
"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": {
"blake2b_256": "49e47a058d579a5617e3ab1f5e38e6768d8a00ee1afb00a066e160ae5f3aad64",
"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": {
"blake2b_256": "b3c40f6b40c30554557d81a6452d4527107f232f512cba6eb1a5f8adffbb6bb6",
"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": {
"blake2b_256": "e3391fb4b83c1f2c81afbba00e5fde72cc48f5c6495e5a6bc33847a9538e5ccb",
"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": {
"blake2b_256": "3b22e7a8005083b729590058177d05d95147dcdb180603041c1871843301366f",
"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": {
"blake2b_256": "69cef07e6944d65ae7dbec96d5ded3c328d50bcc641c61aeb91005da4b36f2a9",
"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": {
"blake2b_256": "6ce52f6ace3389cf836ad871e683c3fb05dc5496f6a4baa98c88534988d9394d",
"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": {
"blake2b_256": "b4fafbec77f35d0fef0afd81f571b9cab0a2c4d613b921532f7e492a0a57dcc6",
"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": {
"blake2b_256": "8e26b81a90853bf6fbdd14f370f31bf6f77ea731a31610ca7fce2b8db876f4c0",
"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": {
"blake2b_256": "6edebbb5327cfea028f55b8e8885a24a0f3ade0d0313a51c571c64b5c324cf71",
"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": {
"blake2b_256": "63c87c58c9ef4b7ac8f12c83b21e20e6566c48660ae49e403afa025d01df2550",
"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": {
"blake2b_256": "0cc05aad98cb90eb37ebf97577e78f33381e8596d6ce2ec3ce38e53b891ac766",
"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": {
"blake2b_256": "de08e9d8332a8eebe69dd8f6e325c50dd49089612eb99705d09d2b295f39e96a",
"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": {
"blake2b_256": "fff0cd926aafb2b5833ba362544b25263e1a1aee82f4defa556a90125343789f",
"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": {
"blake2b_256": "9e59545755cd47607b18ed07196cf92a52a49727ec61e0259fdecc8b6149952c",
"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": {
"blake2b_256": "e4e177a309e3cc7ef266c3015e8a8c4ad0414ff0efc6ad8b65212405a57cb163",
"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": {
"blake2b_256": "cb6979468707c39349b5b04ae4d9ee737eea05d46d2d3095a12e562109bc211e",
"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": {
"blake2b_256": "4fc12e055ccdfac743dcac7bca1aec47cf77fdc34659853c5096c85a46bde574",
"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": {
"blake2b_256": "000a004a8d02beedb5e029a610c4e4bda7b62e800041434ff9e8f3817f73bdfb",
"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": {
"blake2b_256": "ff5de433c14a894723253dcbf5d86de780878a4053f1f7d0363aeff68e320bc7",
"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": {
"blake2b_256": "4fb7a382cf8440d9edfdf2c0125a1b4ad6954caf1d786225b2dede99b60f5ab2",
"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": {
"blake2b_256": "d088d74771dc1f5bfa03c8b61921a2723a30681b165c09d8ddb8e65c55d51377",
"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": {
"blake2b_256": "ceb91ad0f51406e5d5143dcc1200de15b3bafde85d10d499324d5e03237835cc",
"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": {
"blake2b_256": "50471fe5cb941c11b68f809451250ad52a60aac1f601677f70a5c1af7666e5dc",
"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": {
"blake2b_256": "c439f6207edac8c31bd797a89e9b4a33f714385f09e65b05cab5e32d916805e7",
"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": {
"blake2b_256": "c4e7430f8153142d783bcac8e2ff77082f6087c3d960e3e761b17caed7005359",
"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": {
"blake2b_256": "6cc4bea6cd4b2e1bd9de7b0b7abefd170b3f28539093d25ed3384d39e0cc988e",
"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": {
"blake2b_256": "ade6d4b6235d776c9b33f853e603efede5aac5a34f71ca9d3877adb30492eb4e",
"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": {
"blake2b_256": "5818ed8a1aca97f6d4153649a00c66cbe2c5c0dcb60dca0f68bd9d2ce665ae05",
"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": {
"blake2b_256": "ef02fb63e71c77391a7e4afa37c3c3df1e9b9537bdefb558b4ebb54d654f8b72",
"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": {
"blake2b_256": "881ce218f60640e3eaad172f5e728713752401ee345c516f8b783b9e4d20ef44",
"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": {
"blake2b_256": "50989e327c15495887510319a49d311503c41aeb9b38557fac1f5af38207ce67",
"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": {
"blake2b_256": "ed28782642f2d194a9ca55668fd67c1e6f66356c7e72530026ce379c1e2c9c38",
"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": {
"blake2b_256": "d9446385884e390f6caf229934bfd4ceb10d983e78453314a699da151e06bf30",
"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": {
"blake2b_256": "b4b2d0285038956e9b4c50ad326a06cfc22ea8a73b14d48abbc2b359486ed2a8",
"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": {
"blake2b_256": "8d6cd0c51e18cfc7bfac959105ef6d54380904a46c5e8460fdd8f00f28dfac27",
"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": {
"blake2b_256": "1aa24eea05bac4b04be79d23159c25ddd13b5fd48c1f844fb3a6427cfadbfffd",
"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": {
"blake2b_256": "7cdbe4c2290c7d77b88bac2cd84e642fecae3ebf906dcff46cd23d9031274c6f",
"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": {
"blake2b_256": "684a221ace4d2283cc3d3b15e9621bb040d239dfea1b3da798ca33a88f8acfc8",
"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": {
"blake2b_256": "6878dde17bd86ccbe698e3a1a76697eb9b52fbf0e5b13b703912addee4788c2f",
"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": {
"blake2b_256": "25dc3e1de32d3222a0b678d162e7f801e94c6bf9cc9aab80f2b0898d90c949b9",
"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": {
"blake2b_256": "78f1ece62e40d2a78e50e293b598b44014efea97afa2dc51d674368bcc331817",
"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": {
"blake2b_256": "eff4b9fa633fa9eed64f2cd6ee6527681c5b1f076029748d0ec27ab93af13977",
"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": {
"blake2b_256": "f0cc10158afa323de163dbd6ead1474ceab6c8922825fa108ef80b64dd8f03ea",
"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": {
"blake2b_256": "3c4f629aee11c005408bc85a2cb997e82e13220cd177a533df52618ed68a7ea3",
"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": {
"blake2b_256": "75a24dd57056be3f166e32b6faf43483607cb049fa59580c7741a4dce73f0a85",
"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": {
"blake2b_256": "47f9dead51fd5eca85ebff3d359ede2ec2b547d8cfdfe12e54be8ce9446fd38b",
"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": {
"blake2b_256": "32cd2294c0b1624d79764c2bfce2c0feb7c65a5613b671924f7635664bec65fd",
"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": {
"blake2b_256": "1add2fb82c1aa9e020175d129ed3b887c3ada5f9bf8f5af042a9888857b590df",
"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": {
"blake2b_256": "d0edc3a52c2d44271016a8c2b6549bf2f29f37eff5a4e5ba5160698b1b3a3d2c",
"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": {
"blake2b_256": "2fd644a59928513245d73582efbed3a07224049d1febfe408dca6cf464e861d1",
"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": {
"blake2b_256": "4cb90781b8cf678896f98976a18c2fcfcb13f5fde82d80c244ba7983805647f0",
"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": {
"blake2b_256": "b12b5edfd86b33fb463feae70433b5f8a75965300145e014c91fd99042dd6a5b",
"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": {
"blake2b_256": "8efc2dd6f17be8d7bdd3be7150cf57193e0c4e6c0d8cef1e99c225b9cfc69f5e",
"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": {
"blake2b_256": "07d885c6b0be6e10c4219931498936edc22b11185c260a4af408c55885b8d7bb",
"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": {
"blake2b_256": "726a8c0de9f76dd601cca9336e450598831dd2c45dccd945579d8938f7cfda9b",
"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": {
"blake2b_256": "9c6e17da70ac3a5fa17fec39c877376461066d2914d9a71167c7655c0fde24c9",
"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": {
"blake2b_256": "689640a765d7d68028c5a6d169b2747ea3f4828ec91a358a63818d468380521c",
"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": {
"blake2b_256": "6ca5d1bc300d491ab1f58fbf0291586fc501a81c10518d6c4eadd119a1724f70",
"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": {
"blake2b_256": "5fa0fc385b17d75e36008b0a88d4bca88074ee835e192da9a98fcdc007f2eea1",
"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": {
"blake2b_256": "97edc5e4b0768e7097f949637e54fa978f53302488493c1751c81e913e55e2c4",
"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": {
"blake2b_256": "36fce3886d9f28cac8ce1e66c733fdcadc5f4e297bb1b48aaa030516ba8e9954",
"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": {
"blake2b_256": "9cc0f56fa196af4edc77ed9675ea4d81ea4c9123ce629b4d1647d614679852d6",
"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": {
"blake2b_256": "8af1f616c2c064db0a613407ae967c3d7565ceef8bef31f1faa70b23fc29c424",
"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": {
"blake2b_256": "e5258fa8b4060e83b4300ebdd99d74039a59522d6f8895611cdef9e007bfbd46",
"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": {
"blake2b_256": "abdf68417d35d167a8044eb99ea43f3e2c9b7db41b4ed3e9b51f35d2834c0cdc",
"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": {
"blake2b_256": "55d327786138a092b0c2efe6a3751e564878a60ef333b3438a5bcce4c56a0596",
"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": {
"blake2b_256": "66031635f2395076c15ae2c0826fbd21c70498d2f10ba650726fae900b6e990f",
"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": {
"blake2b_256": "38605dc8dc9838477d5f562f1a085214c14caae2e0ca72dfda794e90ca70f0e3",
"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": {
"blake2b_256": "624a9754351d7d77ef3be31451886c073d962d1522e0e8ef103e404751be1bcf",
"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": {
"blake2b_256": "6876839ecdc91bb5ba9992b787430dbdfc8c43325436549a948217b7763cf4ec",
"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": {
"blake2b_256": "484fb731d7c3410961936b074d2593cb7a276d37bbb686fada2dcfad14fb7698",
"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": {
"blake2b_256": "3cf9c36741a23e52bd3fab88aba7c7c611a47c8eb0dbd6afd4f7e8a732f3af8f",
"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": {
"blake2b_256": "5ba6d36302eba284f4f427dc288f6b3ecd7f89d739cfca206b80311d3158f6d9",
"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": {
"blake2b_256": "fe719777412a73829786139a35d9db9580e6ca094bd28401ccc4b441993e792f",
"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": {
"blake2b_256": "168c41882c0671b842c9d157c5876348b3e9733910f3cbd20315723ab0498529",
"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": {
"blake2b_256": "e747c51482f55465e7e6ee1d9eb8e43324a33246347ea5059ccb8879f01e9ee2",
"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": {
"blake2b_256": "be9e45bc01c4c08a4c3d40445f34e8f22306483f927ab8e96f1eafa5ba30178c",
"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": {
"blake2b_256": "dc4ae999c0a36a6318b2b1ea30bc3434c29f0b6c96f7880957f9a99004fc8bb5",
"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": {
"blake2b_256": "286c4ab30a9e50d8047ca27845dc01f21c9f5dd8a01f23b06f37db1cb329c3c6",
"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": {
"blake2b_256": "dd4b28052bb4ec921347a04fa95ec468b82869d7d77a187d71d2cd92f64cd6cd",
"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": {
"blake2b_256": "fd67aa2984d471aa29f9a2d27cf67c7eb6ce69346c2de7fa4cfc32b1a85cc787",
"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": {
"blake2b_256": "3e3d74f069b633289dd015eaacb71eeb9705990e13f1dd1d76175fce5ad6cd94",
"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": {
"blake2b_256": "258283fdc9c9e6cc58af0dbef5f27b6258805c9f66e427feee3b76e0f8cd0124",
"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": {
"blake2b_256": "879dc4889810df32becc60d30bb6d78714349db54b33ecf94564291e26c171d3",
"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": {
"blake2b_256": "a735f13621cdf78797f2dfa34e3c92d93e4838bd6d355f0521512d24c3f32f9f",
"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": {
"blake2b_256": "8929b67977e3181f1b0cf4dd5fb57ade7bbe7917d2248bab456440932d0a83a0",
"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": {
"blake2b_256": "1c5aa25ed130426369824c2360b1ec0e59dd2b97efb7fba2c6a39a1f2e396d98",
"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": {
"blake2b_256": "0d15bb0d1be24b50bc37cc5ca8b06ee11e3d0e39505258a41295c56582223454",
"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": {
"blake2b_256": "5496167bb952d7baeefc6d2c5fef4bbd1f4e643b919481636d7b8bee1db58f90",
"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": {
"blake2b_256": "7bf311d782235c3c3bea83f43cd6aefca307799bb77bd6038f27d54a34967b2f",
"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": {
"blake2b_256": "85ca2dab75b6961e3bdfa4c0a6ad50a5f439f4ff351a0295f584300b9cec95ca",
"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": {
"blake2b_256": "55f7184114dd7f2982699394c7e4fb8f4a0b67f4e11401fc8d104ad98a87375d",
"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": {
"blake2b_256": "fea8017c33d002a1b8112e718e16e9d1a31eb9b6c67ac8e06d701d19189a8109",
"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": {
"blake2b_256": "7a95eb60aaad7943e18c9d091de93c9b0b5ed40aa67c7d5e3c5ee9b36f100a38",
"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": {
"blake2b_256": "2712972e2da7fd85ace03b37ef35f5a42f53e69ae1ae96d391fd565d047ab2bc",
"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": {
"blake2b_256": "11e93d036dc23aa3d27a439e5167aa379b86eef54d3ac163e2d2be307b318894",
"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": {
"blake2b_256": "e71519b71232cefd5f433d8a1dc4f9a3c560cefd199620bec83ff17dfa5325f1",
"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": {
"blake2b_256": "23765edd678a864ef72c5afd9448c61f564b1a53af470d04e98c66ac4a193a28",
"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": {
"blake2b_256": "2afb6351764c1d81f9f0c993c7a2d25e34b5a4fc9bcff1c77ac99e712e207c4d",
"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": {
"blake2b_256": "95be94734e9659c433bcbde3c18b13472262a86b6c567f533a4469bef0327fda",
"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": {
"blake2b_256": "31287b49246d7825c61e1a14306ab050e8eec48fcf5b009b19c8f6ea4e312467",
"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": {
"blake2b_256": "c5244b5c373a225641e84f68c02412b488f47e7f3fdef5498ecf875220953505",
"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": {
"blake2b_256": "858fe4fb9574630ae3fe385549cd29174f57e2a0b6808b9109be9bdf6d5e8533",
"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": {
"blake2b_256": "5bdf5fddeee4eb5864474c2d4e44e0895a39ef4bd7789782d52848ed5d025461",
"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": {
"blake2b_256": "26aa1b7ca137f7065a7f56ac03f8abfc07382fec3d9f12a38d8a885c5f7d3826",
"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": {
"blake2b_256": "b30ea300924d2d3fcd88a26146716506f73a3a1216c6247c4466ad21346ffd61",
"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": {
"blake2b_256": "a36671719c7fcd6847fa0aa0b0c2c95928c2e30cd1eec0edc919f41a992ab9dc",
"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": {
"blake2b_256": "c4d7ada8fe09cde1ef3579031283ff59e673756f5bd4bdd0f1674f263d86b367",
"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": {
"blake2b_256": "c07df38eb9997f24b6133aa6fb7a9e11d1af24b52d685aea653d723367ff2602",
"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": {
"blake2b_256": "88c05890b4c8b04a79b7360e8fe4490feb0bb3ab179743f199f0e6220cebd568",
"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": {
"blake2b_256": "50635e9096c7f3d7633b394e1e1a4ccdc8dd0124d1de432499edabbbf56a11c4",
"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": {
"blake2b_256": "3097acfee80c69002e6c7eec16a95539c467acb0f9cb686a0d8c17b8d9c6fecb",
"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": {
"blake2b_256": "85368637de18f5b91c84942b36d5d47b74befb8b41af6574520f1ba23fae59c0",
"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": {
"blake2b_256": "339c355a3b7fd23335726b1e84ac87dbe4b6744b664977b56316329e0048d070",
"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": {
"blake2b_256": "c2093c014ef067296cf0d842ef37e89ea771f3e7a6476180b4189a5aab77614c",
"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": {
"blake2b_256": "11a7037b565866667fcf29b960347f7577f5b131815c7ae986c8cd28c82319ec",
"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": {
"blake2b_256": "a07bd317bb70c4161389b4c38579e766d52b6d00fb0a45ef479bdd46aeb2fa4f",
"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": {
"blake2b_256": "4ba0e7a51d38a31df52ae50d42c42e717178ac005c7b3a76764ce2752ed1e376",
"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": {
"blake2b_256": "a676f18138b0ff84fcd939667a2efc2e1b49c871299f9091f84c06bb4c350c01",
"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": {
"blake2b_256": "ad3318c2938872e14c39c6bbfb35015284e1fd3337e9c3b9c18d04eb40a7ce2b",
"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": {
"blake2b_256": "f4a228a7ec428c3f140ead2f3238814743e5eaf8be3c7dbf42a9551b11357691",
"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": {
"blake2b_256": "62c549ce62949ab0381300c718cc3934a91c13d23abe72bbb28daffe169660d7",
"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": {
"blake2b_256": "c56256354d114074e17a288ba89c3897d6e1965239f0e8def510cb78e04ff6fa",
"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": {
"blake2b_256": "8b9e970be81ea38c4fff3e5a77cad58c38dfc94645712ad9125eca4ff50ddb21",
"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": {
"blake2b_256": "ba095412357e129dda648d1ff53a5db292e9a183184855a72eb86f3a516a854a",
"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": {
"blake2b_256": "ff1c5f301a7dd87d667e0b11f6305ff58fcf5910f7a29f23d857c1f9afc56ae4",
"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": {
"blake2b_256": "6c8f24dd62e54153fe2b0838891629ef70f86bfdd774585f2a05c115cc54d3bf",
"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": {
"blake2b_256": "34402b3295eb6f66209d1b2ad6ef34ebdf1cb1675c62f8697a8fe7c4f11d2838",
"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": {
"blake2b_256": "1534c784e8ffb442862a96473c2ac468a42257fea6e7f9a99fac9563ee27a9b7",
"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": {
"blake2b_256": "3aa8f37091116004c0cc362abed2079e1890a3ab784eb3965a3e41f39ba76c1f",
"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": {
"blake2b_256": "99f590ede947a3ce2d6de1614799f5fea4e93c19b6520a59dc5d2f64123b032f",
"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": {
"blake2b_256": "eb15cb131c15aa9a7285f78fd6da09104213c1cedb2f33d86d800a66409d0a9e",
"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": {
"blake2b_256": "3a7f3a1a2ab0875e30a6d3e63f957a552cb266f44e85f1c041d7428ea70b36ef",
"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": {
"blake2b_256": "ba2afa858be8da219e78f3815069e5a01a860513aa11577d681a1781f09799db",
"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": {
"blake2b_256": "606374b4f5652ea5b208fe8089da665a9b1a6317e23d8fbaf35ca515943bdcb0",
"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": {
"blake2b_256": "c39a2e7e5507bd242e564413ac1ef7ad3a6b45e682a2d4863b2e5fde03ceb5f2",
"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": {
"blake2b_256": "da379aeaa6db91cf2db3386c944c24744bca1e59938e55b6260ca06cc81da639",
"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": {
"blake2b_256": "6355267bd18311b290b257c6b365222b33c097b857d651e8569ed5a69ad8a935",
"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": {
"blake2b_256": "b0054dd89db3d1e16930210122c2d4aa7fe2195f4d2462275f37aa90de94b9e4",
"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": {
"blake2b_256": "621920164fd08bc55eb5e5f1c9be861f85fdb302f7bce34ef553840a442cc84b",
"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": {
"blake2b_256": "d991f5c4aa108a5bd632cd7ddcf653dd466440bf265b5902fee4303de4d3eb50",
"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": {
"blake2b_256": "1ac068dee32766d51b4c4fb7a46d8572f2c343f2fdfe1a629820cb3ff52f92e4",
"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": {
"blake2b_256": "f8e37a905f09a1030cba1b12c30cd7c905a19bbcaa95f0aa53688077b9b92748",
"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": {
"blake2b_256": "21744e656ac347118ca0af904c6e2c078f2b56a072b5e66efad3ddb30bb03470",
"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": {
"blake2b_256": "135932eb914d4f458b134748619e866fc67fd8c34739a12e08107ecfcc731dbe",
"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": {
"blake2b_256": "6b08fb0d6895abc66b8b35fc87f68ef22f0252cf495a717a6d0ccf207440a66c",
"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": {
"blake2b_256": "be04f3953c8890c4dac352b29aa3215b4e8f0a2629b3692a05066663669794ee",
"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": {
"blake2b_256": "de04f2faea25fca864d864a4820d4f2a0838a71f43c9781f0a1c68ccb5c894d4",
"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": {
"blake2b_256": "ae525994119a4ecb65439b9257f21fcb3d184ca917d664e623d100ea8a03ff19",
"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": {
"blake2b_256": "7d179d4da3eb947c3a700ce9ba4468c37d1e6f5bc901d52f0811ee6d5f1e524c",
"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": {
"blake2b_256": "40131e7b10197b9ec075b0ae657de835f81ad9b859aa77ed500ac0d54143d3d4",
"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": {
"blake2b_256": "aaffe8190da603fbc908854ac1ba9c70a95269f296ba7ba637b93ada05286299",
"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": {
"blake2b_256": "6d644ffaa36965d1b200ef530178992b1d19a7d891c4f805cd59fb00d2e3bc3f",
"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": {
"blake2b_256": "c1c835f13532b19cca8ad20d69e74e405e8999068e2a7ab158af72933b9b030a",
"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": {
"blake2b_256": "b49869cf7e35071b7a5e484f418bf006faacd07831280aa8e97b69a690a3cdec",
"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": {
"blake2b_256": "42e0425398d7a39c947ee982f514f552eec4cd54e790995719e7c604764072b3",
"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": {
"blake2b_256": "db3d5cae805b3823c44b82eaec9fa0c774cf8d5e7826a562543f261d61fc9322",
"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": {
"blake2b_256": "81dc791377c5278d084adb5c3a02b19b2d2b20d94ee79af3afbfe36b25a0d458",
"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": {
"blake2b_256": "b6c04fd0495864c463b7e0b4097cb40bff2ad7f0a3fdc49124d3b31505d053df",
"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": {
"blake2b_256": "53ec3a124104f9f4b48a096392767e1c3424e48df8ffacad25bd518d2b2dbf7f",
"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": {
"blake2b_256": "504630d0664aa6290341a58849f82dcf0fa16dd16af4af9fcc654cd318396b33",
"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": {
"blake2b_256": "979a9635b5b5b1d6277a1ce992fcab1cd729e432de8f4d7864258f7e19b8c694",
"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": {
"blake2b_256": "161fc667600f4d37cfba64a22120dd343a46746ec5e8b768f0f3ff10eac3463b",
"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": {
"blake2b_256": "e007cc456d85b0cc54822034619afb1c00c5c1f03f50b7e09defe22076b98b10",
"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": {
"blake2b_256": "3a1aa7da3e81dc129358d8ac28fae58d4c4a5fea2e18ae9885721c5c45bac78c",
"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": {
"blake2b_256": "52551d9a7f456989664aa9df8a3c837a05985880f1dd740122901b30ea9093e7",
"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": {
"blake2b_256": "8875b657f918ecb95c50a431fd8c9876f3d581df888c57ab61da36faa45c571a",
"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": {
"blake2b_256": "60eb98de73ae2208ee47887b3692f236dd1b20f796ca5c33234ad94167aebaee",
"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": {
"blake2b_256": "e8206321f08bce1c84a25cef46f9058876277ff3030297b16094cffa52db6fb7",
"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": {
"blake2b_256": "f4bc22d47483b7b535306882bb3509decb88360872cd8ed03868747a6dc91681",
"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": {
"blake2b_256": "aeb9eb87392926772ff72eca74c01eb8ad3b6c951bb9c1c27719e4a572729995",
"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": {
"blake2b_256": "20fb6f223e833128ec8823186f29484b079b90e194e32257ec660604e6fa90e4",
"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": {
"blake2b_256": "45e1261f1d5c4e864fbbd2360ab42cd77bf5266f1294de9f48a74c1fd65de090",
"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": {
"blake2b_256": "204d78a4142cbfced2477ec3e5ebb2125b5e83a562472fab56c3de47b9a18e1b",
"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": {
"blake2b_256": "59e21c21bb3946f2b1f9fd8fc0275137ac40dbd016d92fd95f873a5ac02647d1",
"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": {
"blake2b_256": "676596c05cf2b0df752f0ee67e3d584e55ec6e53aea17170d837fb8ee5113393",
"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": {
"blake2b_256": "1d093050c04ae97a866d17d30d03fec444fb604574d338192b9ad8a306023890",
"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": {
"blake2b_256": "9d066020e433e70c2443ed5cd8241b15a6b8def06bcf6c656f831c80c028fcbc",
"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": {
"blake2b_256": "9aee63400095fc8866315b0683706d5671ec22122cbcbe1b26366c3aa0643bec",
"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": {
"blake2b_256": "586f0106658708dec019b983a2b42ace18cce500983e1cf32f159d6dd84ad244",
"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": {
"blake2b_256": "1e27f7406fd5935bffd2a0684557a67c41472bba94ade7c47e8462921a704d43",
"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": {
"blake2b_256": "75e7b6e8a49b35aba7fe48e65654ac3986bea38ca24e6b74563e798ca085d714",
"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": {
"blake2b_256": "d0f38d17676bf30a6bf0f757057ff50693543b8eb0eba54a4cfa67f824c5b130",
"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": {
"blake2b_256": "67e8395f90c8ad41eedd672f3e2bc1bf0e67646cd9aa12e6d9851e60d76089cc",
"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": {
"blake2b_256": "f6108817cb381208cecf7ca9d765e28ff3ebcb0ea882a9dec9d2d3e46bcbc415",
"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": {
"blake2b_256": "4d8d13d975e0b95a8bb90293751788756bd837b62e4aa49fea348dccf33d1f75",
"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": {
"blake2b_256": "58764db6f57acde60c8ed3f7656959a29eeff1e548ca9d19219a5d0e4e909056",
"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": {
"blake2b_256": "fcef9825eb38d7d5c53bbac989fe22bfd81d5d31793600b8d92d04cbf9ffa450",
"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": {
"blake2b_256": "c005bd90442abfa0af436542d1abe7eef5650f130e2bc57ad9d3241e010b4ab1",
"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": {
"blake2b_256": "337d09aa5c08805281848f08931c3d61562cafe83a5a9d21f2e65e97160fe92c",
"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": {
"blake2b_256": "4a70a832cea219ee70a6dcce1d991507aa5ea796b6bb82992ca4f3962b769acb",
"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": {
"blake2b_256": "ee39c35ac21c3f63176f7b30a3ff44b1571a5a46a8642861f4883806d314151a",
"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": {
"blake2b_256": "ac82b1fdc034c3f3a1a2e1ad2825a607871f0c3e50384df02038819e954b6a10",
"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": {
"blake2b_256": "c083934b6d75f7692285379d8fef38c9c1c4d07e668742021ce8efc7d43c6e36",
"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": {
"blake2b_256": "5b9df9f7df8b1e984736ddb56467d3c054e0cfc0406c9b8d6d0dafd9d75d2b28",
"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": {
"blake2b_256": "27df0b47c7b76259dd325e2da6ee3034678fa866406d0651c52bf0d9d2f9d12f",
"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": {
"blake2b_256": "d7cd87b3948e2fd412a9dcf7b1e8029d49c2f51e96223682b3b43f80aeed9d67",
"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": {
"blake2b_256": "abb33303acf7974e065acacef85d5144826da8a03229098055c806812d28a34c",
"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": {
"blake2b_256": "907a8604b1605325d74761d5fbd479eb22bab30e850916ed9d29db2eb5e7bfea",
"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": {
"blake2b_256": "7167c28677dbea23c3bb6ded7b7828da6a0c1c2008737f34db758731a8021d48",
"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": {
"blake2b_256": "d197ccfc794087159a8716f02aa814d322dfbcf36f2ebc2fcbaa6e2d0207e32b",
"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": {
"blake2b_256": "60cdfff10c7097f9f364a8cff217480217f955d88fde05862038e5e699965212",
"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": {
"blake2b_256": "481aba9542a545aed4b0b6ef128561f68dd3c2812ff5abfa9ed5b96547a728ea",
"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": {
"blake2b_256": "4a47a1bd5bb7e34398b697d72d9593bd5d99cf16a366110e6e4d4f3e52f1c3fc",
"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": {
"blake2b_256": "256da2f8f9bbebc898225c03ce48e46ce52b1062c535206b07152302d12b9cbd",
"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": {
"blake2b_256": "7a67ada5e98de2fd1439461dd4e1c370959b8673549dcbb2bf67c58f9260d465",
"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": {
"blake2b_256": "db8e25409a8804adcc25cc5253214fd9ca3424011403c8061500c682dda7d57a",
"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": {
"blake2b_256": "8f732124f1fda4daa5c2df5b30089395005bc49bc640c26952aa32dc7bd33a46",
"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": {
"blake2b_256": "be6c77bc4354e135790e36166507970dda2b0170ad75e100e84596075a9cd209",
"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": {
"blake2b_256": "c3e007dc946fce4fe943a663713375233e59931c8b17dee37dca562dcb73106f",
"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": {
"blake2b_256": "c135bed0e05bf0576ba0cca3bd623f95e2e579b63edfaa2ee612bba84811bb7f",
"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": {
"blake2b_256": "9a776877beb3740a3a3da8fbbd8f094d563458c00c8d3415b59e1fc6468b1103",
"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": {
"blake2b_256": "2004e35f3338e2918cca4ae21dc12aa88d06b8b343b2bb356dd67ec842ae960c",
"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": {
"blake2b_256": "14983110402e86ef8ab5835b39cf6c5144f1fde76c8cc6eb2d421f244965b4eb",
"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": {
"blake2b_256": "f161d3dcca4b1133168e9ec3014493b80cabc07bb3cc71ab0feabb0877afce84",
"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": {
"blake2b_256": "48c8345a6c180306dee815ae5a98494db2c7e9c1673e525aa2a043ac02ad4130",
"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": {
"blake2b_256": "0bcd27984e41c8d99f0d658a55efe5eb273205397dfe871587c9e028f9453445",
"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": {
"blake2b_256": "e6cc3b385af6bb6430d1345a4d6f38597f53d650ada53b99c11dcd95405c0a10",
"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": {
"blake2b_256": "5514c90028880ccc4e4c4666e939309be84f70fdb9da891016291f928f9d7445",
"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": {
"blake2b_256": "d169a311e595e58950f9d6dee16e66eab38f05577f3e3dacdf4c0f4ff16ce7e4",
"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": {
"blake2b_256": "b959175f7dc2319e543713bee5abb3f92df2e0d1c4aab95a8367cebd63312aee",
"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": {
"blake2b_256": "e619d962a94001f452c720d8751d28de0687a0b19b328be705087bb5a4f1a3d7",
"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": {
"blake2b_256": "feffd0533070009080e66acd67b1fccda73ec85016b940306aea608d0fe91727",
"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": {
"blake2b_256": "fb30ceaa5955c28b5341259244c14325c1ed0bdad8dbf43c3348963ac5c1ecf4",
"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": {
"blake2b_256": "10a495d32db59bf986098d57061d2231b8e26011b7fec1110eb2d53dc39b07f4",
"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": {
"blake2b_256": "f05b45584d060653148bc2ba33472698ccd568770103edf9d2a13ef0d8511b94",
"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": {
"blake2b_256": "41a16b83fac667fc17a5d47c76ee912053bb8c8f48e773a4344b10308ef18c97",
"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": {
"blake2b_256": "c77c24dfaacf7a6db66b67e8b38e4c7bff1f5883559bc37ceb3ecdbd9d8a65ae",
"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": {
"blake2b_256": "bbca74e4fd332fd4bd250872bfc34fea9b6b365f21167169e172382e51d721a9",
"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": {
"blake2b_256": "34db2a25e2de91aa81daec1aec9fc1b44796a73561f1c3946b98873e2349783d",
"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": {
"blake2b_256": "121dabb7a5c45919b1a50940f9a5c8fd75b6ff3617e803769c8a57e696fb49b4",
"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": {
"blake2b_256": "7f49009fc6af01d6354b6ab0561da3d2ccaef749c33686f6712d4cf8eecdec2e",
"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": {
"blake2b_256": "56abf132ea32c9ebbdcd7c224e40095f84227c88a7a999c50954d187b3e52041",
"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": {
"blake2b_256": "a09a677eebd47d3aeedfa1697d1b55e1f19d8fa63cfc6cd2d72df29c779eeb79",
"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": {
"blake2b_256": "c8d024d0fdfcade4a076a24d71eca564dd6e73210cc48d26f01389772f087637",
"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": {
"blake2b_256": "b9f608b8c73f1e20b4226fe069e2e190cb27fbc5a4b623841a665289e2749355",
"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": {
"blake2b_256": "1e8e0454f3bfe652b0e4f7f104dca39734b4c27f25e65b44b7cdcc6788f653d8",
"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": {
"blake2b_256": "5b721e486ef001653a9cb9547ac0631ed1e8f6ba50c1e4706ca74205f0210977",
"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": {
"blake2b_256": "564f96ee72a816a8bf9170377beb409a63a991d32681a78d24bf00e298c7529f",
"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": {
"blake2b_256": "f222ab3432f4f10a7e77790f7a360cf84fe7ccd909d0c0e00d85e70ea37546e6",
"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": {
"blake2b_256": "f8ab21cc0f6845196c8b56265ad0b5a7ed66f9ba4c7b3dde6844dc44eceb2da8",
"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": {
"blake2b_256": "23872dc18a804154d1be3ce48763d3ce0c0bf77af527cf4c4f7e306e31fa9c7b",
"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": {
"blake2b_256": "d899d6f90a3c10a36e6022d7b529d9ea72552ad6416005ddcad2750cf1a511a2",
"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": {
"blake2b_256": "a82976007ff37bc60e818920e6d115032287d161b0f74c7bef9c74eabac05ebf",
"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": {
"blake2b_256": "7d2120dd60aff29789f5ed540b66956d68ff8cf6378d11c431f5cf18fd9c238f",
"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": {
"blake2b_256": "edfa2311f4d912e5a588dc28844cfb98c035d324b440a115e820c87e64cf4b73",
"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": {
"blake2b_256": "96eb526bec2b01700fba007eb6b1377fb8d783cb6cd25f89e101f7c90659feef",
"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": {
"blake2b_256": "e04576033d58fd5544718c49685be140b5c90926d43319a9578bffc1fd7e8f38",
"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": {
"blake2b_256": "cedf92ec59cbe8ce4e80034cbba0617e7932a9df5c8b48a3d8c9574848438b54",
"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": {
"blake2b_256": "0d8205001f11fd57a22d8c065a96afe647545cda56534fc148f4f0d8eb772f54",
"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": {
"blake2b_256": "087efb544a454e87f853512022ffea5d2a25f22507fa3e7544d63e032293c3c5",
"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": {
"blake2b_256": "b0a8adf34034873b1c69aa3aeae3d671596a065a90e9100f3234686210c7e372",
"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": {
"blake2b_256": "72af68d337631aed3f8732b7d60e80d4057e35df5d8d05f99ea698ec6bf643cc",
"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": {
"blake2b_256": "e171c6443e74ad61dcf60f7d4eff882cbe9f3a78b2f2f33fd70eac8360b30418",
"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": {
"blake2b_256": "6ab77dbdaec6e8c5e4edd974266c597c0cb81e4539dfecead961fdaf3964d077",
"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": {
"blake2b_256": "a0e580561f297586c8e1a541b017b3fdb989d56cd2b14871a4445b3936dfbee5",
"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": {
"blake2b_256": "c07554de2ec0495bb720d0570cbdb06462d0b99458076b256e1a26484ce9e44c",
"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": {
"blake2b_256": "e9e14a44f322018457948d7901fa9a0487477c35beaa981e1f97482526256d1c",
"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": {
"blake2b_256": "4c46a738f44447ec8f72511059b9ca885289a3f190383b3b9a7edfa946564818",
"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": {
"blake2b_256": "49e9960c4ddaadeccb4410676aea2e84ee18ab382a2dedc451c150ffd34a3f64",
"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": {
"blake2b_256": "3a24ef38a5b3bc4008f3ab72e99b3cc81b3d2bceb2abc67d5d61ed5a3a52d7e2",
"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": {
"blake2b_256": "ed42ef9eea50a9b9f272cb175cec2d3cf99724949ff949dc5f3b931e86c83dea",
"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": {
"blake2b_256": "72a0ead79fbffe6e23c426d54a8baf99b8be311e24a69400c86105af8eed4ca9",
"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": {
"blake2b_256": "ffdd06834e8d157c6d4c3ee95b75ddbe5a90cf7fa3dee7ef8908fa29bad94b1c",
"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": {
"blake2b_256": "91e643785afd1cab14bf34193c4dce9447cf8c6e6c57b7b4e9849b7d7e6716fb",
"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": {
"blake2b_256": "3378323a375ccc2b63d2b43eb2aa6b6acc333e08d533d01d661614e8d57416fb",
"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": {
"blake2b_256": "2c99da1d05299952766fe32e944b4d452d8456b4d67c304b722b61caef5a6f4c",
"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": {
"blake2b_256": "1da640d6c2ded77279e90ff1245c59a1af762ad067d041ff8801339734fb321d",
"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": {
"blake2b_256": "435b08f7fa968276d2fc2010a2db3b3679eff15712e47237e9973fe718475a84",
"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": {
"blake2b_256": "e086e2f171789e8287274e3ccd584bb50ccf51b56c14459886535298b9b89737",
"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": {
"blake2b_256": "bc98056c86f70eae78d9f026aeb5737e4622b7d8193506083b1cd340811db75b",
"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": {
"blake2b_256": "729bc645d7005ae4a72fc15669481452289a95f71f3fe219f5084d347e41425d",
"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": {
"blake2b_256": "326032d37c92e227095d25ebf72d5946ef96bfaf3f792fb4a87b801fbabb1ff5",
"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": {
"blake2b_256": "994f1671a433da2190630360c474b06ca4de6203aa0fde1a44962f459d9e88c6",
"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": {
"blake2b_256": "3909980dea65ff9a3e156e57712b444a68240d3a0879b3f4c324c0a7dcc183b6",
"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": {
"blake2b_256": "c06454e5d96df9d337ff1f1d587c5340fa9e9dcdf3ae22fe2781d7be18bfc315",
"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": {
"blake2b_256": "6b296189c6df06811d6faf864725d9cf2a2cc9389c7615de07fc3db0175ca098",
"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": {
"blake2b_256": "d09d73957f389c7206b87eeef70df51a7af1ca8de8e6863f220bd0bcc8d62579",
"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": {
"blake2b_256": "981b9e0b34a1c344b236ef57889f3f0be24a149a7fa10deb9b4e5077eff12144",
"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": {
"blake2b_256": "ba9b436bcbdd13628b9130445e7f761b7df9f2294948356fdaac6be4de3baf4b",
"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": {
"blake2b_256": "22f10a6506423601d853b07cf25e91c72f8b3a3f62aecb557507ff0c06a95f11",
"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": {
"blake2b_256": "32494385b1dc1d4ffb06fe56be8ae0e0929f449accbe7303c0ccd304e29381de",
"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": {
"blake2b_256": "0287ecfc981ad2bd001539b13548702e68cfd6b62a6becd0f0d9e9be0a4d650a",
"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": {
"blake2b_256": "024d7f1e07b0b8567d1570bffcc313bfbc2be3f38fd4777e65f08e97bdfc0520",
"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": {
"blake2b_256": "f12a387a0f714ae52f39b8c59545fa6100095f2a45f1caee4777af3e3938f5c8",
"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": {
"blake2b_256": "333e092eed49b2d7703b215ce32ce111c6c57578eb42fbcbd9aa97e0b1a9e69a",
"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": {
"blake2b_256": "40cae3f406317bad07fa64cec24bf0f446bdb1983cbc95678cd980f8fa84bf20",
"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": {
"blake2b_256": "7df8ae14fbdfd221469d810dbfca3d544d2728189e982a6849fc5e69522d7f0f",
"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": {
"blake2b_256": "b8d79c2bb22d144496a6563130ce75a2f41958910784d62a54942a3590406251",
"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": {
"blake2b_256": "8266d9b480193e27b1ebc9f0062795c137ac1c632d267f2da2c538225d1138d5",
"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": {
"blake2b_256": "f8bd211ddc21fddf7fdf391e61876dfd49362ff9141179c606aadcdc60009e6b",
"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": {
"blake2b_256": "2155db1c0bc346b4a40d0ab1b82bf0e4a8710717c93570f9b1d69d023c53591d",
"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": {
"blake2b_256": "855dbd0d12014473848264e1b48605a33417aa2e1cddf4fa2608e116f52d142b",
"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": {
"blake2b_256": "adfef4cd69fa5e297c043e2ad58924faab36d98fea1aa48ac1f668c1e5e4923e",
"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": {
"blake2b_256": "97a66d13fcc31a983e031db9d995d40d1168e15a54a0256378cab549999d082e",
"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": {
"blake2b_256": "a5c7e11e723d2ad63ee70f82f8b33fcf3db0d1ecd64db10c4f611d093a4cd6ff",
"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": {
"blake2b_256": "09a4c9586249cbd8eba23e179e37ba7aebf85bf220d5377779c279a77d31d4b8",
"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": {
"blake2b_256": "6586ce354fcd78e1cede66da9b9d7192d338bea6c63bdd213217bcd5efdacb08",
"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": {
"blake2b_256": "3a58a3e87ac4798f9df8b8754b97844e2deff9e7bb77311c21f55b3faac02255",
"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": {
"blake2b_256": "16184792fe152db1706e247f78dbcb48f0bd5107ea1c50931dbdd733ba68955c",
"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": {
"blake2b_256": "caa05ddb1602d1f3cbf371dbb26b97db1a31a623c54d607d6c5c8459c632e245",
"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": {
"blake2b_256": "a8ca35babce7ff174cc037de4a60bc8c1d634c2fbe0795009a610a6f4f1a6887",
"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": {
"blake2b_256": "65855546684a1a1e811e5f62b9ba5ecb306b2e2fcfa71fea6d423cdd34a103d8",
"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": {
"blake2b_256": "2c1b7c1521449e4aa799ec04da1e35e23e272baeb05fa9fdc63fec073dfa26c6",
"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": {
"blake2b_256": "ca37b32eb1c7c6fd028d667d4f7ba746d46090002da4a16d54f14a759f8e6ee8",
"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": {
"blake2b_256": "6e8f62729760a2d90c6b8fd60b85e9c168a712059d8681e757248db48adb9962",
"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": {
"blake2b_256": "5121e126c22b5e209dee9125db22f11e72caa1893773b45311840f3e4f126615",
"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": {
"blake2b_256": "63f9f5f40bd67adf6f68d91a9ee63ad5f1b660603c45e13a5a823c3ad645591a",
"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": {
"blake2b_256": "4110b488096e495c94adb3a47957851ca31d489cd469417bee8a3b0c3def3b9d",
"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": {
"blake2b_256": "9a4b643b8b31c6eac230add0ce2b34ed905302265caf8412300d20df50f7be79",
"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": {
"blake2b_256": "810a23e9818bf229cbf5aadfa6f9bbd3da21c63524755283c10dd18f3c468459",
"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": {
"blake2b_256": "34971a0223086a4cc775b21d78ea3b990b44a9b13a7ecc1f32977caecc0e02aa",
"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": {
"blake2b_256": "eb79e2580ebe784bf7d2b307f718300a58873a0735c6b6bfaee7cd96bf310698",
"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": {
"blake2b_256": "097f78d17540d5fbd789f9a66af0c763437f613b12716ffdff7af84250150894",
"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": {
"blake2b_256": "a6d9caf613b5e2435bb124c254db353ce847a1ada984f9e6f83a86462959a036",
"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": {
"blake2b_256": "aec0bbb431ab63807e33bfe8b508df2e5ae487cca149ca320dbc05db9ebdc1a0",
"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": {
"blake2b_256": "41a1141e65cb9d8f633e7777576654bf444c592cbea5f1bbce59a16e6e21cc14",
"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": {
"blake2b_256": "afb64bdd3457f8d3db1fc4d7caef792705d1d602633e8143457581bbb43d93ac",
"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": {
"blake2b_256": "73e77f870097e8bfe999b2199bd89a497a0511386f6bb17a441a4e2684f0d789",
"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": {
"blake2b_256": "e6454a354a2552f4f40580c1560ab5a227f2514fe6579851ea18c2995b914190",
"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": {
"blake2b_256": "7c50c941ecb0503f8bafa4e922a1b7862823fcdb8bf366e53f2d4f7978f07c2a",
"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": {
"blake2b_256": "da931ed85560f9271417d3ce861440f9959714d372b087e9f983fbba56b2e776",
"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": {
"blake2b_256": "db4df4c10a45c1c67915038d14ef419b7c05bc54336e80b07ccce0b96af8404c",
"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": {
"blake2b_256": "a71eef36d17ae0f1d3f4c5fd60d755e1c006017d07cc29d53ea567cdb3e9fa6a",
"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": {
"blake2b_256": "92b2fe62f6fb2bd8580127fefd0c591fb58c62dd787413ddbfb6eb6c8b5113a9",
"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": {
"blake2b_256": "f545c93fcf5858dac82275447f1dcfe3ba58b9b18d280b070403b1b47d62b3e2",
"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": {
"blake2b_256": "bd4fcda0267fb68f665c587877bf8c88d39659766103d8eef441b954c982ddbb",
"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": {
"blake2b_256": "e091a4aa891dcf14b16804bed44e1353b920ef2f7b3b47fb846b8383ffcbb3c9",
"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": {
"blake2b_256": "7d61711955836eee4cce054d543f0151b6c21dbde4e73f948d0c82804f036e33",
"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": {
"blake2b_256": "e8e6b1430f1a6d5ce06beb667577a0a262a52eb8f6a8c1aa0e25bf72dae49b1c",
"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": {
"blake2b_256": "f093fabc76155ec3764746e36e2a324b9aa47591a9fc13ee6d9a5dfb6eb925a1",
"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": {
"blake2b_256": "f0ec1257f4767865162eeaaa538519856708ebef9396685cd390b45a31163fa8",
"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": {
"blake2b_256": "073b8cc237f5d841e18b3ca20f4165abf3c150a68c5450c1a53dc33683ce98e3",
"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": {
"blake2b_256": "0a1f23bb2b625616307f31890401d5ca9e13a44a4550ecc668a97251bb5be03a",
"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": {
"blake2b_256": "0e27f9a5dbf562681b1bc60dd09afe5a1fdee78f71eb0d957da79defa092dead",
"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": {
"blake2b_256": "fa3bbac955adab69be6be3d68410366ef76b03c41c3c3d9afc3dc2d13e0bbc8b",
"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": {
"blake2b_256": "da86ecf44707bc81a72f5b82999403a57d21b831464d0dd1edfaba4baee27092",
"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": {
"blake2b_256": "6be9f58ae2896c067aca9bc6dfe6069b1f3038d6da34340c807344f5c9ff1732",
"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": {
"blake2b_256": "4eb6a2c4407d5fcf80176e7cd686fe4e88e86b6d8842a427cd67718e176df511",
"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": {
"blake2b_256": "247199d74c704e411001d2b2335515ac30b25d8d8339ab48231aeb6213a110ad",
"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": {
"blake2b_256": "d7d613bbb3d67d87f85e4b5c60e7f3b1dea38428bba2164fbb300531e35ee77d",
"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": {
"blake2b_256": "e26494b7836e9d2d96555b9b4417cbd6d9c74108c5eb9cb5525778c97fb15a27",
"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": {
"blake2b_256": "becd478c6b6171dbfc2a10a88b835734a411124e7ca08eb1e49ee5f579d0c472",
"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": {
"blake2b_256": "4325cd4ada935f2a0cb7da9ebf1917ce8d13f34648869543b0fe6fd91c9e02a5",
"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": {
"blake2b_256": "fb13317e86f632fb17249c4824109540cba1a0a94c03d9a2203e409b7e0fad80",
"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": {
"blake2b_256": "6b57e095febabc73d33f0ed645609a55eb4de0a5602e7d22c9f1274cb95546a6",
"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": {
"blake2b_256": "4498f2f185361d43e426d0f10580059931c7672f37529381e1ed4145c5c673c1",
"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": {
"blake2b_256": "e33a720635a98bb0eef9179d12ee3ccca659d1fcccfbafaacdf42ed5536a0861",
"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": {
"blake2b_256": "7e9f3cd2502f3cab61eccd7c20f5ab67447cf891ad8613282141955df1b7fb98",
"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": {
"blake2b_256": "a67f4c202b0fd3c33029e45bb0d06eaac2886be4427763cc9589774fb39b5da7",
"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": {
"blake2b_256": "4808c3efb449dea5f38292804e4fbf8eaef1b3f168535a4163cc3fce3f9b4915",
"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": {
"blake2b_256": "b1bde412cb6cd12b7a86966239a97ed0391e1ad5ac6f8a749caddc49e18264ec",
"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": {
"blake2b_256": "85e6d52a342bf22b5b5c759a94af340836490bcbffd288d4a65494234d8298f7",
"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": {
"blake2b_256": "80a39403173d3a6ba5893a4e0a1816b211da7ba0cb7c00c9ac0279ec2dbbf576",
"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": {
"blake2b_256": "f42d07e3ba718571e79509f88a791611a3e156e8915ed9a19116547806bce8fa",
"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": {
"blake2b_256": "c06df5423a7c899c538e2cff2e713f9eb2c51b02fad909ec8e8b1c3ed713049a",
"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": {
"blake2b_256": "763d8f64ed6d429f9feeefc52b551f4ba5554d2f7a6f46d92c080f4ae48e0478",
"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": {
"blake2b_256": "f30da035862f8a11b6cba4220b0c1201443fa6f5151137889e2dfe1cc983e58e",
"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": {
"blake2b_256": "cc28c95a0694da3082cb76808799017b02db6c10ec8687ee1ac5edad091ab070",
"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": {
"blake2b_256": "4fc6a8ce9fc6bbf9c0dbdaa631bcb8f9da5b532fd22ead50ef7390976fc9bf0d",
"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": {
"blake2b_256": "7586c55c7b6b9d0d9e25b1d721e204424f154bd72bb172d2056f0f9f06c50254",
"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": {
"blake2b_256": "2e4f119a8efad036d1f766ad736864a6dbfc8db9596e74ce9820f8c1282a240b",
"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": {
"blake2b_256": "66701668029f303a33e5508de6825efec00854b0a3afbe3b11b4e3c970e03e88",
"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": {
"blake2b_256": "b65d2107ef289ddf5a7648ba98a0d4f5137c156f95d67fa1a81253d0f904f308",
"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": {
"blake2b_256": "ccc558e46921955887814c7ca57569d695a45d9471aa48f09089999d9723e639",
"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": {
"blake2b_256": "f6c4a32e3d81e716696c1d8149febb73b0d772eb12b3f9f1c039c94b7445a388",
"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": {
"blake2b_256": "a46e212f857f9a400dbbedcaca13b99c8bb821a17a25b69e2286881f23e62554",
"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": {
"blake2b_256": "f63b2e3b8a5b19cdceb532c61d83077a09afe1f120cb876fb771b0ce577cc0ea",
"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": {
"blake2b_256": "60e2ffc6f4fb33a0f83b506d9b310a6b3028e868f67daf318f2ba50c625ed018",
"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": {
"blake2b_256": "15f0cd8e6c2a28a3857c9ee71188d0f4b111847a37ab1c277ece61bcd5374ab4",
"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": {
"blake2b_256": "c81194c3ca5ed8b811962de6f4f675adf9dbab28b3cb9e51b9823a5d655fcc9a",
"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": {
"blake2b_256": "078b211d1fef10ed6f9e6fc0a70bc6e5658a8fdcdc6440fa5350663b4a2ee101",
"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": {
"blake2b_256": "9e7a4af63e9951393397691e25aaf742044c66bae700c943d4f7c599da99ce26",
"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": {
"blake2b_256": "4d4a8b095c58f8f8a3732c939fc00190761fb44a95cd601f18fbbf7a4acaf9d6",
"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": {
"blake2b_256": "9f06c64cec12f3480433e44d7a65b4087fad73b5409c8eee719a1cc48efddb36",
"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": {
"blake2b_256": "f294af16a3f5baeaefe480271b852b8a18d063859a439183aff0492ed866619d",
"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": {
"blake2b_256": "590bb1773a7aa69763c336bc3be714c30246a5c4d2acb723e9f679f5566c9afe",
"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": {
"blake2b_256": "37389f7ad00368f218f5f6b367a72d85f7a1ffce421f22c7c88787e11c87d985",
"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": {
"blake2b_256": "072bef0ea5695809b1d5e485e136fcf9c1e00c3d8e7806f4bba9af3e77cb7a7d",
"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": {
"blake2b_256": "cab5af043404814805fc2b74b9b0ce166cc79cbdfed720253777b928c85138c0",
"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": {
"blake2b_256": "ddfe80c594d62a7ff07730fd2cfc3a058498087436d8c938243e0610d1928f0e",
"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": {
"blake2b_256": "7556e0e5f6a59bd6053d61d7d8d1448100eacfc6f3d47cf39c4448351dd22e72",
"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": {
"blake2b_256": "39971acbab256523838e37b895d70e39f45e7feb82801a18368fba323d598e80",
"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": {
"blake2b_256": "428d8d85c84baa731de1f3a7fbb3bb85632f82534fc0b618abc51c6569440cdf",
"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": {
"blake2b_256": "50dc9b1fd678730d7e9c8fa125ef0a0102c1783c0a80cffb2159e2a63ab0f569",
"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": {
"blake2b_256": "d6231942037534eb4f3671e68801af3af1adfe28add92300291934daa2b5cdec",
"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": {
"blake2b_256": "2d7a2809619bd5ca3ab7f27c134f93d52c80a5dfed7d22e426e79415f35233b1",
"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": {
"blake2b_256": "19227a9ea2992cf7adf534eb51f7b6bfd4642bb15894ac36df4edb0838ee1fdb",
"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": {
"blake2b_256": "cf6aacf689f13f39700cfa526f6bff2d10dfd29aa21cbc0d3a5cf0f153298a74",
"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": {
"blake2b_256": "795c573d590ebff44e927aa0820b194a46c15253808725f82f23aa13440808ef",
"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": {
"blake2b_256": "5e34a5d2619c062e6fed7224fb920e93b1d8ad055bb3b1b544e754c864c978a0",
"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": {
"blake2b_256": "ffa6184cd63b06ea05edfcfba946fed3da7afb2f0b7e3237fb1b2c056cce57f6",
"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": {
"blake2b_256": "54ab5e5d0e042b9b149efd867eaaf4a6c94c51ccdf3f955564e0fce1dbfbcb4d",
"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": {
"blake2b_256": "17ab36da1a4b5d2685acdc84117b32588b1edb4033b40cfbdf27a219bd6a4c6d",
"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": {
"blake2b_256": "edafcf551e595af1979ba74c280d94aa0c351e634285608ac70cb6def374f661",
"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": {
"blake2b_256": "3871e1db3f96fa85f77906ef002a08fa8d02dbdb3292180d41eb1b17ddab72bf",
"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": {
"blake2b_256": "200bc077ca31bba80ed7c1c81a7505e7e339ef82ab3d9ee679c09b3ffb04cdd5",
"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": {
"blake2b_256": "5854f4c1bac24b2365c2eb8d5205822b3ea41e40e1c471060c2409b9dbf05be5",
"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": {
"blake2b_256": "55a52912baebc80570a34a2103a34e3c65b84e93bcf20f6e09fbe335ce27e3cf",
"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": {
"blake2b_256": "9fbc5928e69637252150176b3604f7c386a9184358fcc7338c0b8c55a7908523",
"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": {
"blake2b_256": "8131baf1ff4e36da246dc3ff2e0c12f2f7688b4f394ad21e29e3ef4ba864d035",
"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": {
"blake2b_256": "f1ca603261545a757915fb30446a9d7a394cd934865a8eac3c18ce638df90687",
"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": {
"blake2b_256": "e4eb2e5c66f6ab8bf1fa9743552ec49bd8deb9a8ad385545bbd60c8f50529e21",
"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": {
"blake2b_256": "a80e068cb215e8709703c497fcd07e8a81e68b3eb8b83083f96e93ef964d4685",
"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": {
"blake2b_256": "dd229b3e55dd0c8c460a9381c97e9f33cd4d7bc6f322f8c3ae5c9737becda9a3",
"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": {
"blake2b_256": "640fbad91b74658ffea95982794603106c7d751734bb4e8e1f83c654a11ef971",
"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": {
"blake2b_256": "51b4174a2a94aedbad1f92b1a18a2051eba5b8ea915853361949b84e3ee1ac35",
"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": {
"blake2b_256": "8dd77121308d1d3b399b1f3b902939e4c59987360ed3fbaacfb291da06cbb924",
"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": {
"blake2b_256": "df6def68db15f3bcb29ad4ff7815008f45d44a08dbdbf524bf2f904ce701ffd3",
"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": {
"blake2b_256": "24f2961f20184581dd21e181a927e4e264d991f5f6a090778a9b3575a4eac7fb",
"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": {
"blake2b_256": "e91321e7f1d0d1932b321cdeaea01d5008285dac3b088af855c5c3d8714dba7b",
"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": {
"blake2b_256": "8c257454b836072efe67f8b16a4751443c77e0a34f9e909e6bca7247853b9bf4",
"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": {
"blake2b_256": "32f6a68f6f703541ce5cf3bba94c5f5415c732d0384e29d0ab6cdb6e62a6822e",
"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": {
"blake2b_256": "f08dcbe09c4e5d9b150a24765af508a5db745ba7049bc68ee6670063e04c2879",
"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": {
"blake2b_256": "6da0bdc0596eb07b328ae97bf54cd1d0c3eed34b8728d1bf6fcab12c296de5a2",
"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": {
"blake2b_256": "8398d84ea011850be422d7db44c668b5d262ab94e0b9bfd54e0d0222cff62d71",
"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": {
"blake2b_256": "c1e210084a3437c0f3f971c46a9870b574ef6cc00d0480119fd3e193c19fdf66",
"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": {
"blake2b_256": "4b028bcd66c2a44714b3c3d076ff3bf49b3a247338a47f31adb00567841e15a0",
"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": {
"blake2b_256": "5a865f63de7a202550269a617a5d57859a2961f3396ecd1739a70b92224766bc",
"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
}
],
"3.8.2": [
{
"comment_text": "",
"digests": {
"blake2b_256": "3561b15ebc8bc7c274a1b090cf0b638e4140a971bc52ec20bf0cfb00793ee65f",
"md5": "8d18611a88ec4cc5c1f57c2dfdd70830",
"sha256": "2f077cc6cfbf05c2e8ef817dbbceb754a578db5aa449763f328cc6816b639632"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "8d18611a88ec4cc5c1f57c2dfdd70830",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 512548,
"upload_time": "2022-09-21T00:34:02",
"upload_time_iso_8601": "2022-09-21T00:34:02.623590Z",
"url": "https://files.pythonhosted.org/packages/35/61/b15ebc8bc7c274a1b090cf0b638e4140a971bc52ec20bf0cfb00793ee65f/aiohttp-3.8.2-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ff8722884454e451f085d09bcff40e3109ea2c71d55e29996f9806b30f1faa47",
"md5": "838c71f8231d8f11b14e7801857ec479",
"sha256": "66da9965d78206444640fb34364677564b77286463d6aa461a9ae67e09479366"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "838c71f8231d8f11b14e7801857ec479",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 358375,
"upload_time": "2022-09-21T00:34:05",
"upload_time_iso_8601": "2022-09-21T00:34:05.346781Z",
"url": "https://files.pythonhosted.org/packages/ff/87/22884454e451f085d09bcff40e3109ea2c71d55e29996f9806b30f1faa47/aiohttp-3.8.2-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "53507435755ec870c15ebe989d8da07cbefd55ac17f883f342fdf06b28ea7790",
"md5": "bbed02c96ebb8ccfceeebd918f75792e",
"sha256": "a0aa70f48dc5e9adfa38a1a5c8e3aac20efca7370143ac94f3cef7c068c6cf27"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "bbed02c96ebb8ccfceeebd918f75792e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 336463,
"upload_time": "2022-09-21T00:34:07",
"upload_time_iso_8601": "2022-09-21T00:34:07.638617Z",
"url": "https://files.pythonhosted.org/packages/53/50/7435755ec870c15ebe989d8da07cbefd55ac17f883f342fdf06b28ea7790/aiohttp-3.8.2-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "89ebb9e91bce42c11ee1574f300abfa500ab20b6953ffb7d8d51bd97d290ed81",
"md5": "9543c44f0398b55edd8957af60ebd836",
"sha256": "811a0d8ecf4053224cd54765654f5952e59983cfb07f8f6ee913330a2b4196b0"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9543c44f0398b55edd8957af60ebd836",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1004021,
"upload_time": "2022-09-21T00:34:09",
"upload_time_iso_8601": "2022-09-21T00:34:09.019372Z",
"url": "https://files.pythonhosted.org/packages/89/eb/b9e91bce42c11ee1574f300abfa500ab20b6953ffb7d8d51bd97d290ed81/aiohttp-3.8.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8a0f7c03c3c42076c9eb53bdd4ceab25053f7d2c18ebea9a29b1a593c5271900",
"md5": "c75c5dcd81b5ed9c3311e3f9162188b0",
"sha256": "756ad558853e637237490f2d203dccc9f93779fd2708b66a5948a7d785aacce3"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "c75c5dcd81b5ed9c3311e3f9162188b0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1019094,
"upload_time": "2022-09-21T00:34:10",
"upload_time_iso_8601": "2022-09-21T00:34:10.572211Z",
"url": "https://files.pythonhosted.org/packages/8a/0f/7c03c3c42076c9eb53bdd4ceab25053f7d2c18ebea9a29b1a593c5271900/aiohttp-3.8.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cd8aa76f79aef1359824c65332f2a448dfa2da42e6ea3c41751fed17dcc97799",
"md5": "4ea826e0df2a362b8ca203b9612f7f97",
"sha256": "64004b0f1174c80674de4660b4655cf47333c9bb70ef64fbe5f5befbe75a83de"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "4ea826e0df2a362b8ca203b9612f7f97",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1073527,
"upload_time": "2022-09-21T00:34:12",
"upload_time_iso_8601": "2022-09-21T00:34:12.772303Z",
"url": "https://files.pythonhosted.org/packages/cd/8a/a76f79aef1359824c65332f2a448dfa2da42e6ea3c41751fed17dcc97799/aiohttp-3.8.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8f52ea1e5eac3e748a94fdaafba5ab68adfb833f0cbdb68cc8149fbba5574176",
"md5": "d73b48267e36926e352a7e955288118f",
"sha256": "42fff01edf90358ef4e0a6edd235759e4f9344a6a6ba60b0d948e95d4aa5adf5"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d73b48267e36926e352a7e955288118f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1000574,
"upload_time": "2022-09-21T00:34:14",
"upload_time_iso_8601": "2022-09-21T00:34:14.499965Z",
"url": "https://files.pythonhosted.org/packages/8f/52/ea1e5eac3e748a94fdaafba5ab68adfb833f0cbdb68cc8149fbba5574176/aiohttp-3.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "70b3a81d642127c79092d5a642498899e557271e7609f217afb984c6f94fbfdb",
"md5": "122b50f8d66f2aa242902ed73a61bd7d",
"sha256": "6f70c2bb17ec72839dffd7b023450a0ed17f73426e2f1f0833f024d78a64c6d7"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "122b50f8d66f2aa242902ed73a61bd7d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 971114,
"upload_time": "2022-09-21T00:34:16",
"upload_time_iso_8601": "2022-09-21T00:34:16.809667Z",
"url": "https://files.pythonhosted.org/packages/70/b3/a81d642127c79092d5a642498899e557271e7609f217afb984c6f94fbfdb/aiohttp-3.8.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e1cfb232b0e65f8121ac5ea17540ea927916eafa8ef84a1f630524194689794f",
"md5": "10f0321c094a5bdabed365d1cf45a632",
"sha256": "46a649d6c8cc0d59d9d8afc8aa6328d349f0cf6e579006523ef97fea03f72b8a"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "10f0321c094a5bdabed365d1cf45a632",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1017911,
"upload_time": "2022-09-21T00:34:18",
"upload_time_iso_8601": "2022-09-21T00:34:18.349078Z",
"url": "https://files.pythonhosted.org/packages/e1/cf/b232b0e65f8121ac5ea17540ea927916eafa8ef84a1f630524194689794f/aiohttp-3.8.2-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "785831e149ab28461dfec0926763dcfc613a3577f25aebfde053855cc16cda8d",
"md5": "845fc0a0117805e11a7f23618074a576",
"sha256": "d9dcf718c36dbec176a3c9f3d829ddbfe5aa4a405d7fc45be6a339319ff1bd90"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "845fc0a0117805e11a7f23618074a576",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 985746,
"upload_time": "2022-09-21T00:34:19",
"upload_time_iso_8601": "2022-09-21T00:34:19.807429Z",
"url": "https://files.pythonhosted.org/packages/78/58/31e149ab28461dfec0926763dcfc613a3577f25aebfde053855cc16cda8d/aiohttp-3.8.2-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7bbf799e9f23b957689b903ea516ee5813f925bdad83f2090390118fb7152003",
"md5": "42e24fd78f64d8badf811e0b83968fff",
"sha256": "4eb2befcf4e57c5e2218ff3e50b73b4b1bd56685ce275c45905d4687653dad90"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp310-cp310-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "42e24fd78f64d8badf811e0b83968fff",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1036083,
"upload_time": "2022-09-21T00:34:21",
"upload_time_iso_8601": "2022-09-21T00:34:21.723311Z",
"url": "https://files.pythonhosted.org/packages/7b/bf/799e9f23b957689b903ea516ee5813f925bdad83f2090390118fb7152003/aiohttp-3.8.2-cp310-cp310-musllinux_1_1_ppc64le.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "14d9a7ea6019dd11ef55ef401066fc988eb8127ac07297ed96fe8b603e9b09f7",
"md5": "ba2c318ec7c4378fcfbb9613e6f8efd5",
"sha256": "f82f0110136281bdd1886529ad9cd9e76c6e03a2841ed923a3db94e9a19ad710"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp310-cp310-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "ba2c318ec7c4378fcfbb9613e6f8efd5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1084592,
"upload_time": "2022-09-21T00:34:23",
"upload_time_iso_8601": "2022-09-21T00:34:23.329271Z",
"url": "https://files.pythonhosted.org/packages/14/d9/a7ea6019dd11ef55ef401066fc988eb8127ac07297ed96fe8b603e9b09f7/aiohttp-3.8.2-cp310-cp310-musllinux_1_1_s390x.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2a069cabf5204c7b59536c77aa493d76d53a0914c07c390c84e615ec5cf429a7",
"md5": "10ed389e55fca2e7b085c4b6e4e97065",
"sha256": "25703823f9f96c85a7f97a6fd487beec576395c9447a4146feb08e422fcfc9c2"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "10ed389e55fca2e7b085c4b6e4e97065",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1013179,
"upload_time": "2022-09-21T00:34:25",
"upload_time_iso_8601": "2022-09-21T00:34:25.440100Z",
"url": "https://files.pythonhosted.org/packages/2a/06/9cabf5204c7b59536c77aa493d76d53a0914c07c390c84e615ec5cf429a7/aiohttp-3.8.2-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "845e58d9cc9b022bc6820cf0089d94ce644ec2a1f158674ea26337ca43863eb2",
"md5": "d8759bdb7dac5bba2a150f093a5ae22d",
"sha256": "2f2ecb6a3dd0cf78da60750ef521cd5f16e72e599232b7d11e7e14182f674f53"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "d8759bdb7dac5bba2a150f093a5ae22d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 304555,
"upload_time": "2022-09-21T00:34:27",
"upload_time_iso_8601": "2022-09-21T00:34:27.157090Z",
"url": "https://files.pythonhosted.org/packages/84/5e/58d9cc9b022bc6820cf0089d94ce644ec2a1f158674ea26337ca43863eb2/aiohttp-3.8.2-cp310-cp310-win32.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "91be9a1eb0525c3216b08d9ba5ec23d7a5fdaec665316121d8c364934f7899d7",
"md5": "e7bece7f98d9f6a7637c1ce25ceeeb52",
"sha256": "0303a95d2fda431d80b24b6c8e1e588e4625806304d805527788094decc902df"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "e7bece7f98d9f6a7637c1ce25ceeeb52",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 319739,
"upload_time": "2022-09-21T00:34:28",
"upload_time_iso_8601": "2022-09-21T00:34:28.561069Z",
"url": "https://files.pythonhosted.org/packages/91/be/9a1eb0525c3216b08d9ba5ec23d7a5fdaec665316121d8c364934f7899d7/aiohttp-3.8.2-cp310-cp310-win_amd64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dc496fb6ac22ac9bf68daa69495b07ca9047a42b0267d9a1dd7a46e7afe386be",
"md5": "ef868fa1c04bb6eb87dfd7e8c84d8032",
"sha256": "0cf569a3eb1f74553623867526d59969a5f3f66c759f4acf0b3530c985095e77"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "ef868fa1c04bb6eb87dfd7e8c84d8032",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 505311,
"upload_time": "2022-09-21T00:34:30",
"upload_time_iso_8601": "2022-09-21T00:34:30.309263Z",
"url": "https://files.pythonhosted.org/packages/dc/49/6fb6ac22ac9bf68daa69495b07ca9047a42b0267d9a1dd7a46e7afe386be/aiohttp-3.8.2-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2c8d857b427aea7ba49a13a8f3ce66b5ccd622a50b1f9dc08e823b0910b5842f",
"md5": "80b99916c532e47a792ae9889b7e034b",
"sha256": "2775ed7b86e47084b5df0e7e64f79fc9900ef6c3d7e247a8ea2c8a7e0763b68a"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "80b99916c532e47a792ae9889b7e034b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 355137,
"upload_time": "2022-09-21T00:34:32",
"upload_time_iso_8601": "2022-09-21T00:34:32.349288Z",
"url": "https://files.pythonhosted.org/packages/2c/8d/857b427aea7ba49a13a8f3ce66b5ccd622a50b1f9dc08e823b0910b5842f/aiohttp-3.8.2-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0e74bdf9a1b9be07604b201dbcaa13683a2d6d780adde33c7de2d3051a95ed7a",
"md5": "e7ce1def5f60b28c850142bf467f4a07",
"sha256": "12c9b8d5e4c410bc9c5d781491a695b07857671d631ca921f0effa53dbbe9082"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e7ce1def5f60b28c850142bf467f4a07",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 332621,
"upload_time": "2022-09-21T00:34:34",
"upload_time_iso_8601": "2022-09-21T00:34:34.281149Z",
"url": "https://files.pythonhosted.org/packages/0e/74/bdf9a1b9be07604b201dbcaa13683a2d6d780adde33c7de2d3051a95ed7a/aiohttp-3.8.2-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f482d1df28b2e5f643a1723985b7d7800a7778c27f0f6ccb79d7be1419f66d79",
"md5": "3c346bba1dc264cdc4501b109a68f6a8",
"sha256": "7d9f33cbe36eda9ae33e169c27b33dcfd3791972809018309ead35e0997024b7"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3c346bba1dc264cdc4501b109a68f6a8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1035337,
"upload_time": "2022-09-21T00:34:36",
"upload_time_iso_8601": "2022-09-21T00:34:36.237263Z",
"url": "https://files.pythonhosted.org/packages/f4/82/d1df28b2e5f643a1723985b7d7800a7778c27f0f6ccb79d7be1419f66d79/aiohttp-3.8.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e61a63c36cca1015bfd16a5363629294982b7cd77f2847b7f4a5db9051c6fd00",
"md5": "99aec08b0968e724ecef9c42fc3f71f0",
"sha256": "baa71fddadf208c2dae2092c229d928cb4d3fc12c769876a54b8ed53e081fe06"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "99aec08b0968e724ecef9c42fc3f71f0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1045401,
"upload_time": "2022-09-21T00:34:37",
"upload_time_iso_8601": "2022-09-21T00:34:37.992756Z",
"url": "https://files.pythonhosted.org/packages/e6/1a/63c36cca1015bfd16a5363629294982b7cd77f2847b7f4a5db9051c6fd00/aiohttp-3.8.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d58f3b2605c6c3411a12c12799f1a48f64c899f17a088f87469528fa2df03b72",
"md5": "0ae1ef34ce0c5a127fe8b078f375d2d2",
"sha256": "9cb8203740284d385869381a461fb1ae487c166cb669fd3002f44fd44bb7f187"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "0ae1ef34ce0c5a127fe8b078f375d2d2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1102508,
"upload_time": "2022-09-21T00:34:39",
"upload_time_iso_8601": "2022-09-21T00:34:39.415768Z",
"url": "https://files.pythonhosted.org/packages/d5/8f/3b2605c6c3411a12c12799f1a48f64c899f17a088f87469528fa2df03b72/aiohttp-3.8.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9dab1c74f5e791e1df25694963250c964cad8732853372fcdbdd1f0802fd1d86",
"md5": "c252e2acf85dbe75f63ac4d3b85995e7",
"sha256": "5e94500d9653e85bfce5d604e99f71407e4104ad4943caddef379b6cc4d6e07e"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c252e2acf85dbe75f63ac4d3b85995e7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1026777,
"upload_time": "2022-09-21T00:34:40",
"upload_time_iso_8601": "2022-09-21T00:34:40.863843Z",
"url": "https://files.pythonhosted.org/packages/9d/ab/1c74f5e791e1df25694963250c964cad8732853372fcdbdd1f0802fd1d86/aiohttp-3.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "388b82dfe63b639ed9dde160755b88a926f56a52d14731c760aa05c0234434dd",
"md5": "abca2638ae7ecc9d4a91b2e69f4032d6",
"sha256": "48cf475d3c621f9437220571acfca1317899868412d27760b54a3a7ae7c84530"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "abca2638ae7ecc9d4a91b2e69f4032d6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 985447,
"upload_time": "2022-09-21T00:34:42",
"upload_time_iso_8601": "2022-09-21T00:34:42.535450Z",
"url": "https://files.pythonhosted.org/packages/38/8b/82dfe63b639ed9dde160755b88a926f56a52d14731c760aa05c0234434dd/aiohttp-3.8.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "16d362b9ee05780a944d30c8e31e87385440a8dd420a1bb3f52be6c7821696c1",
"md5": "05c85a7f6ad7de7c6b4ef032cae9a1cf",
"sha256": "dde54b9d20376f132020726156e4d8a2054714edd86709608d710f950e169621"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "05c85a7f6ad7de7c6b4ef032cae9a1cf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1046348,
"upload_time": "2022-09-21T00:34:44",
"upload_time_iso_8601": "2022-09-21T00:34:44.070538Z",
"url": "https://files.pythonhosted.org/packages/16/d3/62b9ee05780a944d30c8e31e87385440a8dd420a1bb3f52be6c7821696c1/aiohttp-3.8.2-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a914e9aec0a94e44534d85e6a58e7e0a3d5d46a9693f36a4ebe3744a9c05a5a9",
"md5": "064b4b0be0a9ca40d696ba1109890036",
"sha256": "6a25d945fc6225b1bf7628229a40b1cf00f0a122843dafafdd09c9a921f6e5f4"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "064b4b0be0a9ca40d696ba1109890036",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1004346,
"upload_time": "2022-09-21T00:34:45",
"upload_time_iso_8601": "2022-09-21T00:34:45.651802Z",
"url": "https://files.pythonhosted.org/packages/a9/14/e9aec0a94e44534d85e6a58e7e0a3d5d46a9693f36a4ebe3744a9c05a5a9/aiohttp-3.8.2-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1be8f3f6b11e3c1ef4df3987fbc7aaa2e6a2d99b723d200dd216e19a05833c4d",
"md5": "c14e0d6db9af5b3145354806bde33df2",
"sha256": "92f5f3e78a6014b3060112be7253b3baefbbccf2147e5f8df1b3fa163a74d9d6"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp311-cp311-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "c14e0d6db9af5b3145354806bde33df2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1065318,
"upload_time": "2022-09-21T00:34:47",
"upload_time_iso_8601": "2022-09-21T00:34:47.327702Z",
"url": "https://files.pythonhosted.org/packages/1b/e8/f3f6b11e3c1ef4df3987fbc7aaa2e6a2d99b723d200dd216e19a05833c4d/aiohttp-3.8.2-cp311-cp311-musllinux_1_1_ppc64le.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9078b328064ff78adda29ced70792fcd3b10601986c0a753b3c77f6a74df1227",
"md5": "090f157e087cf06786eaf32da1255755",
"sha256": "793a0bcbc3ea851fda46d72245d2f53f59c9a38bba480b83788b61afbb803725"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp311-cp311-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "090f157e087cf06786eaf32da1255755",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1112316,
"upload_time": "2022-09-21T00:34:48",
"upload_time_iso_8601": "2022-09-21T00:34:48.834470Z",
"url": "https://files.pythonhosted.org/packages/90/78/b328064ff78adda29ced70792fcd3b10601986c0a753b3c77f6a74df1227/aiohttp-3.8.2-cp311-cp311-musllinux_1_1_s390x.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ffb819414223d4b11640f5ab47f4bee42c39c74471bbe43b2f7b4a8dbc3fb1b3",
"md5": "9e209d514eb8c3ada1449be2acdd2b4b",
"sha256": "07f4acf59e3d88c229c8d726cd3ac8d92457f20c8b2ac25afad22c9d9e0a198d"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "9e209d514eb8c3ada1449be2acdd2b4b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1038358,
"upload_time": "2022-09-21T00:34:50",
"upload_time_iso_8601": "2022-09-21T00:34:50.534206Z",
"url": "https://files.pythonhosted.org/packages/ff/b8/19414223d4b11640f5ab47f4bee42c39c74471bbe43b2f7b4a8dbc3fb1b3/aiohttp-3.8.2-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1e40b94234d769b2e10ebdf8f8fce67b73020f37afb273e0ee328cdc8465cba5",
"md5": "3b61e8d9024fdbab18df34cccb53f802",
"sha256": "efdf06265e2b560b1202626c83b35eed5bd30ed81a4493f73d30ebb1bc04ce8d"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "3b61e8d9024fdbab18df34cccb53f802",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 303930,
"upload_time": "2022-09-21T00:34:51",
"upload_time_iso_8601": "2022-09-21T00:34:51.950176Z",
"url": "https://files.pythonhosted.org/packages/1e/40/b94234d769b2e10ebdf8f8fce67b73020f37afb273e0ee328cdc8465cba5/aiohttp-3.8.2-cp311-cp311-win32.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3416ea67093e7b37385e4bc0fe06e57315cf04db7d1b64aa3e40483183f1fc84",
"md5": "979ce7cbee026d1ca95d61fc7e64f660",
"sha256": "6c987fc1646c8272c4d76b0361fdec957b3e4082ed8fc9f5143ebdfda4f265c3"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "979ce7cbee026d1ca95d61fc7e64f660",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 317137,
"upload_time": "2022-09-21T00:34:53",
"upload_time_iso_8601": "2022-09-21T00:34:53.478928Z",
"url": "https://files.pythonhosted.org/packages/34/16/ea67093e7b37385e4bc0fe06e57315cf04db7d1b64aa3e40483183f1fc84/aiohttp-3.8.2-cp311-cp311-win_amd64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6a4ece67665866a4066dbb9c6149dfb00be6492d0d22330f5a29857f77eefffb",
"md5": "4e54689f2a31bcaf527ed4ba9f468c76",
"sha256": "b66b45409b7014ba1c4f0d23cf2d7a93ca8045be35660dc04828a1615fd805c6"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp36-cp36m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "4e54689f2a31bcaf527ed4ba9f468c76",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 355841,
"upload_time": "2022-09-21T00:34:55",
"upload_time_iso_8601": "2022-09-21T00:34:55.002510Z",
"url": "https://files.pythonhosted.org/packages/6a/4e/ce67665866a4066dbb9c6149dfb00be6492d0d22330f5a29857f77eefffb/aiohttp-3.8.2-cp36-cp36m-macosx_10_9_x86_64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e3fc561bc1131c256c0397296aedf78a19b417bb5b320f7ffb8c3b44df8c45bc",
"md5": "a5d65f7f81b0503871adfe00e8df8cbb",
"sha256": "b797d5ca7ae816f3b7020fae479573efaed4b5be730dfa6c0b8f1d25d4ec6207"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a5d65f7f81b0503871adfe00e8df8cbb",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 951925,
"upload_time": "2022-09-21T00:34:56",
"upload_time_iso_8601": "2022-09-21T00:34:56.815570Z",
"url": "https://files.pythonhosted.org/packages/e3/fc/561bc1131c256c0397296aedf78a19b417bb5b320f7ffb8c3b44df8c45bc/aiohttp-3.8.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "15ec40c4a5842e354cdbbf10017b48d8f6f93df5b424111acdba7ccdf2ac5844",
"md5": "9ab96ea58ef6b3c3c01f8dbb495b5e2d",
"sha256": "d38df4ac8a8d1bd2c1b77ea3de8645091d669ccf8a3f327f586b0f868c409800"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "9ab96ea58ef6b3c3c01f8dbb495b5e2d",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 965726,
"upload_time": "2022-09-21T00:34:58",
"upload_time_iso_8601": "2022-09-21T00:34:58.482818Z",
"url": "https://files.pythonhosted.org/packages/15/ec/40c4a5842e354cdbbf10017b48d8f6f93df5b424111acdba7ccdf2ac5844/aiohttp-3.8.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e4feb3d41244f16da02eda14368c43c5207224d4b8a40ad201f450c58a717f6e",
"md5": "10b963c1a84c3544c210c5394d7f397e",
"sha256": "8ebb1274e8e5950eea209cb3b674612442aa68daac57c97872865bdf63449286"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "10b963c1a84c3544c210c5394d7f397e",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 1022888,
"upload_time": "2022-09-21T00:35:00",
"upload_time_iso_8601": "2022-09-21T00:35:00.219354Z",
"url": "https://files.pythonhosted.org/packages/e4/fe/b3d41244f16da02eda14368c43c5207224d4b8a40ad201f450c58a717f6e/aiohttp-3.8.2-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d3319781f3e9d843a2a3c1875d564f4001c37714a5f9d3816f4e9b538765eafd",
"md5": "a14cd644b831760c915f659849b67e36",
"sha256": "1ea45264d399f82da4048e724afdf5f10318d62ad89fb9dc911eafd66e3d79b3"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a14cd644b831760c915f659849b67e36",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 945986,
"upload_time": "2022-09-21T00:35:01",
"upload_time_iso_8601": "2022-09-21T00:35:01.746245Z",
"url": "https://files.pythonhosted.org/packages/d3/31/9781f3e9d843a2a3c1875d564f4001c37714a5f9d3816f4e9b538765eafd/aiohttp-3.8.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ca4a7fd2a6e3eae44552f2afe82c33bda55d9ed0209d4248373a1627c3e2490e",
"md5": "970ed1f3e28f0a83d90cde984bcdb718",
"sha256": "e99cc2845ad4a88ddc44473d6222ef624c0424383f4d7369b37c94f93fee8004"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "970ed1f3e28f0a83d90cde984bcdb718",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 922553,
"upload_time": "2022-09-21T00:35:03",
"upload_time_iso_8601": "2022-09-21T00:35:03.630521Z",
"url": "https://files.pythonhosted.org/packages/ca/4a/7fd2a6e3eae44552f2afe82c33bda55d9ed0209d4248373a1627c3e2490e/aiohttp-3.8.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "69505b6c16f4f89c5328168ff9dfbe4bf1f51395a39b668cac13d07f72a65009",
"md5": "5bdd3bdb518ab84d7acf6556e3a2dceb",
"sha256": "6bbc14a195fb1cf2da16017d2201edf770ab66b806537ef95101ca31a2141230"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp36-cp36m-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "5bdd3bdb518ab84d7acf6556e3a2dceb",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 960636,
"upload_time": "2022-09-21T00:35:06",
"upload_time_iso_8601": "2022-09-21T00:35:06.145432Z",
"url": "https://files.pythonhosted.org/packages/69/50/5b6c16f4f89c5328168ff9dfbe4bf1f51395a39b668cac13d07f72a65009/aiohttp-3.8.2-cp36-cp36m-musllinux_1_1_aarch64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c6609fb4f02fb3e1b17e1c330cbf55be8e55a3fe9f42293471788720a088164b",
"md5": "8848118cd1148b1da7268a75cb34f909",
"sha256": "244c4d488eb3a2abe008bc614de4ce3a34abd027e518a595f8e794747f23d516"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp36-cp36m-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "8848118cd1148b1da7268a75cb34f909",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 933704,
"upload_time": "2022-09-21T00:35:08",
"upload_time_iso_8601": "2022-09-21T00:35:08.614965Z",
"url": "https://files.pythonhosted.org/packages/c6/60/9fb4f02fb3e1b17e1c330cbf55be8e55a3fe9f42293471788720a088164b/aiohttp-3.8.2-cp36-cp36m-musllinux_1_1_i686.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e907731b9b8c4a826f219692c63c35356c77efa694cf72e334dd108ada8258f3",
"md5": "4eda35009d39ae2a85a3e2751383e703",
"sha256": "3dbe4ebcc68a7a7e841f187b08e67d49af5535065c67ecb9ee2c82a186cb40c3"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp36-cp36m-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "4eda35009d39ae2a85a3e2751383e703",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 979849,
"upload_time": "2022-09-21T00:35:10",
"upload_time_iso_8601": "2022-09-21T00:35:10.516759Z",
"url": "https://files.pythonhosted.org/packages/e9/07/731b9b8c4a826f219692c63c35356c77efa694cf72e334dd108ada8258f3/aiohttp-3.8.2-cp36-cp36m-musllinux_1_1_ppc64le.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d7b4430417e583d93711b9df8e3e2eb6207efd62da20eb9c5e0b9764cc616a89",
"md5": "1aebce2a0d06f942782aec4482f6515f",
"sha256": "d831eec202a3a6b976195235b68e3f8a5f9a8e36dc329b7dd864da236ff3c434"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp36-cp36m-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "1aebce2a0d06f942782aec4482f6515f",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 1029490,
"upload_time": "2022-09-21T00:35:12",
"upload_time_iso_8601": "2022-09-21T00:35:12.094045Z",
"url": "https://files.pythonhosted.org/packages/d7/b4/430417e583d93711b9df8e3e2eb6207efd62da20eb9c5e0b9764cc616a89/aiohttp-3.8.2-cp36-cp36m-musllinux_1_1_s390x.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6b9ff5fa08cc7311c6be4ff511028bd12f666e927808f4340f1129e344077312",
"md5": "757f6c871388371fbd27f0e2b5233127",
"sha256": "e8d51a0d9c85819085b614e81da980bec5ef95cb5fae934ff0cd480d9f1ad954"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp36-cp36m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "757f6c871388371fbd27f0e2b5233127",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 954923,
"upload_time": "2022-09-21T00:35:13",
"upload_time_iso_8601": "2022-09-21T00:35:13.939447Z",
"url": "https://files.pythonhosted.org/packages/6b/9f/f5fa08cc7311c6be4ff511028bd12f666e927808f4340f1129e344077312/aiohttp-3.8.2-cp36-cp36m-musllinux_1_1_x86_64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a49f7a974985a1da1e9614c30b526257e6e6beb8a93bda56916d654a951819b3",
"md5": "0ec4d4fd42df4a32752244f473dd9380",
"sha256": "00c92fcfc255bcc3f831df6210358b8e179153353feadf060e8264eb62ce458c"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp36-cp36m-win32.whl",
"has_sig": false,
"md5_digest": "0ec4d4fd42df4a32752244f473dd9380",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 316740,
"upload_time": "2022-09-21T00:35:15",
"upload_time_iso_8601": "2022-09-21T00:35:15.557724Z",
"url": "https://files.pythonhosted.org/packages/a4/9f/7a974985a1da1e9614c30b526257e6e6beb8a93bda56916d654a951819b3/aiohttp-3.8.2-cp36-cp36m-win32.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e36704d2e1b263461bafd1496ae3510a2186e63057a8e2e036e6db673bdd715c",
"md5": "8cf16dfd9967942da565529602f9f282",
"sha256": "4b0a6f5bcbe580cb156ef9bc2d59821889b141d894cbad2e7e352b2e75fb4bcc"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "8cf16dfd9967942da565529602f9f282",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 337419,
"upload_time": "2022-09-21T00:35:17",
"upload_time_iso_8601": "2022-09-21T00:35:17.043451Z",
"url": "https://files.pythonhosted.org/packages/e3/67/04d2e1b263461bafd1496ae3510a2186e63057a8e2e036e6db673bdd715c/aiohttp-3.8.2-cp36-cp36m-win_amd64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b7063ee0410381ddb12d1da233b6e11c36c0727714530ec66bc88f5451fbaf05",
"md5": "320affd120353dfe3432d48ce97b341b",
"sha256": "9d09035bbc722f9ac8057c53f0d984f5b3bd4f3fb9ff74f7603fc3bbd783489a"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "320affd120353dfe3432d48ce97b341b",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 355859,
"upload_time": "2022-09-21T00:35:18",
"upload_time_iso_8601": "2022-09-21T00:35:18.945934Z",
"url": "https://files.pythonhosted.org/packages/b7/06/3ee0410381ddb12d1da233b6e11c36c0727714530ec66bc88f5451fbaf05/aiohttp-3.8.2-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a80b277b07922d889ba08bb1faf9a908632a6a0a00cb743069f0e0f233339434",
"md5": "9be9028fc436110019a98d2d849422c2",
"sha256": "4036577d5226a98c68292d6a7aab08c7143e0a827ed0a0beba769c3340305bff"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9be9028fc436110019a98d2d849422c2",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 952938,
"upload_time": "2022-09-21T00:35:21",
"upload_time_iso_8601": "2022-09-21T00:35:21.221810Z",
"url": "https://files.pythonhosted.org/packages/a8/0b/277b07922d889ba08bb1faf9a908632a6a0a00cb743069f0e0f233339434/aiohttp-3.8.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "351997591b6d2a47115ddf5208a5cccc9b2721140a41bdccdb8eae2516057587",
"md5": "5f94427221b5f14a1950586805165ac3",
"sha256": "8a70e88ca8d890056e52a0b41bef755e232df3a0800ff9fdcefea1755cf23dc3"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "5f94427221b5f14a1950586805165ac3",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 968757,
"upload_time": "2022-09-21T00:35:22",
"upload_time_iso_8601": "2022-09-21T00:35:22.803466Z",
"url": "https://files.pythonhosted.org/packages/35/19/97591b6d2a47115ddf5208a5cccc9b2721140a41bdccdb8eae2516057587/aiohttp-3.8.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "40572f5cf8469283eb0367cd5082a48e0818add42ca14fcf44b93a7471110823",
"md5": "cbbe8d2d23e537bdeccf9422269bdff7",
"sha256": "37307e2177a286482a1e9c86626c333e2b0f434d6afeef4d12e48be582f476ce"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "cbbe8d2d23e537bdeccf9422269bdff7",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 1023577,
"upload_time": "2022-09-21T00:35:24",
"upload_time_iso_8601": "2022-09-21T00:35:24.743309Z",
"url": "https://files.pythonhosted.org/packages/40/57/2f5cf8469283eb0367cd5082a48e0818add42ca14fcf44b93a7471110823/aiohttp-3.8.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "df80100e9cac3ad90da5ef5cd0537041cbee1feda549290307d2541800c6aa1a",
"md5": "38a1d918f5acebdbc9f69c15dc48175d",
"sha256": "3893de9760c03032d2e5593e23fcc34a8be995a8311f64435d8413f08248929c"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "38a1d918f5acebdbc9f69c15dc48175d",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 948055,
"upload_time": "2022-09-21T00:35:26",
"upload_time_iso_8601": "2022-09-21T00:35:26.304791Z",
"url": "https://files.pythonhosted.org/packages/df/80/100e9cac3ad90da5ef5cd0537041cbee1feda549290307d2541800c6aa1a/aiohttp-3.8.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "11eb23c00bc4155a207eca0a6c783c08f961044adcda5c04727349cb7302814a",
"md5": "04b529c84b9d97bf1efe57ec5431672f",
"sha256": "9bbcac98836b6393b1ed568845335bd3a1106077c8e32a615e3259a73665f449"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "04b529c84b9d97bf1efe57ec5431672f",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 922844,
"upload_time": "2022-09-21T00:35:28",
"upload_time_iso_8601": "2022-09-21T00:35:28.063300Z",
"url": "https://files.pythonhosted.org/packages/11/eb/23c00bc4155a207eca0a6c783c08f961044adcda5c04727349cb7302814a/aiohttp-3.8.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0ccd01170bffbd55e874d448a9e42038b33bf45d5f917bc601b8e803fcfd6653",
"md5": "7e0e55f43ae7a384051e4fef43b148ad",
"sha256": "866fe95c3c4f82ae155271b4fb6a7a9352fcaf6d6f7e02e05074a3c08a1dbd25"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp37-cp37m-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "7e0e55f43ae7a384051e4fef43b148ad",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 968041,
"upload_time": "2022-09-21T00:35:30",
"upload_time_iso_8601": "2022-09-21T00:35:30.269034Z",
"url": "https://files.pythonhosted.org/packages/0c/cd/01170bffbd55e874d448a9e42038b33bf45d5f917bc601b8e803fcfd6653/aiohttp-3.8.2-cp37-cp37m-musllinux_1_1_aarch64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c6fe688800d7dc1bf0a280257a5347673a8149c9f8ea03cd51b145f448090805",
"md5": "681daf2b90c1723b2fca6971d62ae0f7",
"sha256": "d31e9422387b77a49fc01e966e128ea06688ef23495f6a999843f75ee2f481be"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp37-cp37m-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "681daf2b90c1723b2fca6971d62ae0f7",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 941788,
"upload_time": "2022-09-21T00:35:32",
"upload_time_iso_8601": "2022-09-21T00:35:32.547865Z",
"url": "https://files.pythonhosted.org/packages/c6/fe/688800d7dc1bf0a280257a5347673a8149c9f8ea03cd51b145f448090805/aiohttp-3.8.2-cp37-cp37m-musllinux_1_1_i686.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6256cb1c6e5c2d9a576336dd75879947bbe743d5bc59d849a2735b9bad9f7cec",
"md5": "3546d7dcf578519945901387147c1d8c",
"sha256": "6aca9a0f7444c79f517cd1e089942885833bd00509e8ee2b1431d05e2080b781"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp37-cp37m-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "3546d7dcf578519945901387147c1d8c",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 984118,
"upload_time": "2022-09-21T00:35:34",
"upload_time_iso_8601": "2022-09-21T00:35:34.320598Z",
"url": "https://files.pythonhosted.org/packages/62/56/cb1c6e5c2d9a576336dd75879947bbe743d5bc59d849a2735b9bad9f7cec/aiohttp-3.8.2-cp37-cp37m-musllinux_1_1_ppc64le.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3021c7615597f0c4cb425f0c047001207a2e7ca5fba33282df52e8bff9058473",
"md5": "b83d7dbbf8ec05d223a3a8be7449e58b",
"sha256": "b94ec6e2389a0bce9e1393322f6efc928fa9f6f138656f8333eaa625ac62077a"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp37-cp37m-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "b83d7dbbf8ec05d223a3a8be7449e58b",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 1034139,
"upload_time": "2022-09-21T00:35:36",
"upload_time_iso_8601": "2022-09-21T00:35:36.181479Z",
"url": "https://files.pythonhosted.org/packages/30/21/c7615597f0c4cb425f0c047001207a2e7ca5fba33282df52e8bff9058473/aiohttp-3.8.2-cp37-cp37m-musllinux_1_1_s390x.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ed95088003463201e9bad4c71d46470c064c5c7af35a5644f107b993490c860d",
"md5": "fff863acb8062c665ab0c9043d037e7f",
"sha256": "8eea173d8fe9f04f86f1f8d711dd23c0310cf55f979b1e7b949fe15ba776e018"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "fff863acb8062c665ab0c9043d037e7f",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 963780,
"upload_time": "2022-09-21T00:35:37",
"upload_time_iso_8601": "2022-09-21T00:35:37.900605Z",
"url": "https://files.pythonhosted.org/packages/ed/95/088003463201e9bad4c71d46470c064c5c7af35a5644f107b993490c860d/aiohttp-3.8.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d7850437385442317e8b4954eb7d5353cd084bfcdeaefad2e56e4ce5bea42c60",
"md5": "5f85ab699d70d32dea8e92793e54a01d",
"sha256": "ae3a20fc2f3cccdd2d2f319d0198040a778fbda51ff6cece9a1dbaa67cdd11ab"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "5f85ab699d70d32dea8e92793e54a01d",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 306621,
"upload_time": "2022-09-21T00:35:39",
"upload_time_iso_8601": "2022-09-21T00:35:39.676334Z",
"url": "https://files.pythonhosted.org/packages/d7/85/0437385442317e8b4954eb7d5353cd084bfcdeaefad2e56e4ce5bea42c60/aiohttp-3.8.2-cp37-cp37m-win32.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9da9f1d761c6ba591de0df44afcd78966e9cf2c97fef179c7e171dfebe2ab9ef",
"md5": "cfdd87adff224b8d54f60a83a6944fef",
"sha256": "f7dcf4f9bc71b4ebac120a569bfe1604f1664da59cfa0abd85e15fabc4c3e7dc"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "cfdd87adff224b8d54f60a83a6944fef",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 322078,
"upload_time": "2022-09-21T00:35:41",
"upload_time_iso_8601": "2022-09-21T00:35:41.273950Z",
"url": "https://files.pythonhosted.org/packages/9d/a9/f1d761c6ba591de0df44afcd78966e9cf2c97fef179c7e171dfebe2ab9ef/aiohttp-3.8.2-cp37-cp37m-win_amd64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1016797dd762cf5e09ae0b5ebce424c4c84a83eba57666e26a115ec2db1c87eb",
"md5": "4b34f56315affd478703e3bd93573a67",
"sha256": "9ebe11ebaf1b44e841bb6f0cf79f16c5c8b2d98e0df7c8d5ecb4bdb77faa9d60"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "4b34f56315affd478703e3bd93573a67",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 514725,
"upload_time": "2022-09-21T00:35:42",
"upload_time_iso_8601": "2022-09-21T00:35:42.854306Z",
"url": "https://files.pythonhosted.org/packages/10/16/797dd762cf5e09ae0b5ebce424c4c84a83eba57666e26a115ec2db1c87eb/aiohttp-3.8.2-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "60ff10f7636c2706617a89844c0747c95e9ae45f7a65d496652817d8b0304d57",
"md5": "9fd020c80fd2cd29025038af212fabd3",
"sha256": "d17bdab6cbfca083c386da5a580c6650221024fcfed6bcccf5cce7d8219f2d49"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "9fd020c80fd2cd29025038af212fabd3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 359668,
"upload_time": "2022-09-21T00:35:44",
"upload_time_iso_8601": "2022-09-21T00:35:44.403889Z",
"url": "https://files.pythonhosted.org/packages/60/ff/10f7636c2706617a89844c0747c95e9ae45f7a65d496652817d8b0304d57/aiohttp-3.8.2-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c7533057204eeca078788626eebfeaadbf05982d0a49edf0faae7c958e65fe3e",
"md5": "a92375d6dd3d794c75a3607e1e3ff4f5",
"sha256": "aec83bdeb4b0a2f90b4bc07b9b7339b37c39535b8dd01397e0d2a22baae86b42"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a92375d6dd3d794c75a3607e1e3ff4f5",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 337437,
"upload_time": "2022-09-21T00:35:46",
"upload_time_iso_8601": "2022-09-21T00:35:46.852824Z",
"url": "https://files.pythonhosted.org/packages/c7/53/3057204eeca078788626eebfeaadbf05982d0a49edf0faae7c958e65fe3e/aiohttp-3.8.2-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "92edd23da3eb0d5ae43336ef9e0f9255ad29709a03fdb3b2e92dd2bff673360f",
"md5": "bc358ef98247cc51dc0848d19dddd94c",
"sha256": "dd90aa4ba84ceef1031e468b561ff53b68ecb5bea0f44f13ff930a29037ce880"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "bc358ef98247cc51dc0848d19dddd94c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1041808,
"upload_time": "2022-09-21T00:35:48",
"upload_time_iso_8601": "2022-09-21T00:35:48.665975Z",
"url": "https://files.pythonhosted.org/packages/92/ed/d23da3eb0d5ae43336ef9e0f9255ad29709a03fdb3b2e92dd2bff673360f/aiohttp-3.8.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ff88b823bffa21661d7322c3d647a8a87bfe882ada779337f2520b7ee01418eb",
"md5": "c9cfcbc77755d5e941528937f1555927",
"sha256": "79c1924b54c44a7dc6b7e866363d06faa6f03f490275d572b76536491004ea1a"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "c9cfcbc77755d5e941528937f1555927",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1060902,
"upload_time": "2022-09-21T00:35:50",
"upload_time_iso_8601": "2022-09-21T00:35:50.202098Z",
"url": "https://files.pythonhosted.org/packages/ff/88/b823bffa21661d7322c3d647a8a87bfe882ada779337f2520b7ee01418eb/aiohttp-3.8.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "51eed8dd0796bfc78e1c2217d412a78e83d74cdd832ace20f8504d54ca6c8c75",
"md5": "a84fa8dc41e195e87bb4c84ca0498635",
"sha256": "542eb584021cc99057b1f39f4b8bd5d25ae554ca21afdfc098bd60f91509640c"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a84fa8dc41e195e87bb4c84ca0498635",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1113862,
"upload_time": "2022-09-21T00:35:51",
"upload_time_iso_8601": "2022-09-21T00:35:51.751285Z",
"url": "https://files.pythonhosted.org/packages/51/ee/d8dd0796bfc78e1c2217d412a78e83d74cdd832ace20f8504d54ca6c8c75/aiohttp-3.8.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5b4e2c43f2e742ea7a0c032fe3fd9f9dc4154642614b6c255662c62f772b8716",
"md5": "6e2a8d786047196010483e28f14fcfb3",
"sha256": "198a22d959f969bdcf92145f25c07bb5a7f65dc05c3735047447aa53d38142df"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6e2a8d786047196010483e28f14fcfb3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1038122,
"upload_time": "2022-09-21T00:35:53",
"upload_time_iso_8601": "2022-09-21T00:35:53.258003Z",
"url": "https://files.pythonhosted.org/packages/5b/4e/2c43f2e742ea7a0c032fe3fd9f9dc4154642614b6c255662c62f772b8716/aiohttp-3.8.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f44da2a4ca1eda847f1eb09ad5cda8815fa77b90b69b85478b89f45094cd31f6",
"md5": "5e5b9e42837814546180b97d60e369c2",
"sha256": "ddf9a5eaaae83db1b9ad8c147833c1b9e9c17fd2886c0d7fd58b92212c1d73a7"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "5e5b9e42837814546180b97d60e369c2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1006419,
"upload_time": "2022-09-21T00:35:55",
"upload_time_iso_8601": "2022-09-21T00:35:55.274091Z",
"url": "https://files.pythonhosted.org/packages/f4/4d/a2a4ca1eda847f1eb09ad5cda8815fa77b90b69b85478b89f45094cd31f6/aiohttp-3.8.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4c2834919261768a6999ce63afdce1dc93111b1c06507842e7a91757975dbad6",
"md5": "2f14f82f98dec29d02ec6976fb0aa8b0",
"sha256": "1909936256b296505bae30e092c8487e4b14c89748612d87fc301bd1b08401c3"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "2f14f82f98dec29d02ec6976fb0aa8b0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1082495,
"upload_time": "2022-09-21T00:35:57",
"upload_time_iso_8601": "2022-09-21T00:35:57.560598Z",
"url": "https://files.pythonhosted.org/packages/4c/28/34919261768a6999ce63afdce1dc93111b1c06507842e7a91757975dbad6/aiohttp-3.8.2-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "653346fb3d857d4013b5a44cb8409e55e8bc1c578bb8007b25d20d657a3a849f",
"md5": "1cfd24c824800a9d8ee08e44da6e1c1f",
"sha256": "498e62d934f80dab3384abfc1003013229e4c82d9eb904c51e5f6cea26ec56b7"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "1cfd24c824800a9d8ee08e44da6e1c1f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1050540,
"upload_time": "2022-09-21T00:35:59",
"upload_time_iso_8601": "2022-09-21T00:35:59.515999Z",
"url": "https://files.pythonhosted.org/packages/65/33/46fb3d857d4013b5a44cb8409e55e8bc1c578bb8007b25d20d657a3a849f/aiohttp-3.8.2-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d3b53288904270bc113cc2d050aa2922f977e084db1e1740f166aa980358bdaa",
"md5": "4def878687c8358e3ce91a8804541011",
"sha256": "d3cc1a1b215b8efa3cfe45aedb8afc6b46476df2f37a089894b0fd3f82262f8f"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp38-cp38-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "4def878687c8358e3ce91a8804541011",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1106002,
"upload_time": "2022-09-21T00:36:01",
"upload_time_iso_8601": "2022-09-21T00:36:01.352736Z",
"url": "https://files.pythonhosted.org/packages/d3/b5/3288904270bc113cc2d050aa2922f977e084db1e1740f166aa980358bdaa/aiohttp-3.8.2-cp38-cp38-musllinux_1_1_ppc64le.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "51a1721a115bc6a03eaa5f829afabdb2e9e727aaa923ad099be8b711de45e97e",
"md5": "b0ec6b5a81f9aa85a1e10c36f7039560",
"sha256": "0f15ca09841d43c32577d47e458370c94c7b123bc746722d7bf738132f929f5d"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp38-cp38-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "b0ec6b5a81f9aa85a1e10c36f7039560",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1155036,
"upload_time": "2022-09-21T00:36:02",
"upload_time_iso_8601": "2022-09-21T00:36:02.968310Z",
"url": "https://files.pythonhosted.org/packages/51/a1/721a115bc6a03eaa5f829afabdb2e9e727aaa923ad099be8b711de45e97e/aiohttp-3.8.2-cp38-cp38-musllinux_1_1_s390x.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a2b8ca58005b60bb7c195803284a72473849d18d0e5f7845130852fb742770e0",
"md5": "c3cb57e4be7841a5082ed3b7e46bc627",
"sha256": "938c6f4236f053802c7b862ca95ea8c516052a08a4f369de7d4a06fd6a38d6fb"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "c3cb57e4be7841a5082ed3b7e46bc627",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1079006,
"upload_time": "2022-09-21T00:36:04",
"upload_time_iso_8601": "2022-09-21T00:36:04.558429Z",
"url": "https://files.pythonhosted.org/packages/a2/b8/ca58005b60bb7c195803284a72473849d18d0e5f7845130852fb742770e0/aiohttp-3.8.2-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6d8a4fee6783f72e674652f2a18c2ac1f5878d68c212a734a926425ce72efe20",
"md5": "8a65a98534678c2983b81e84b798a10b",
"sha256": "51e962768a4111fb06dfa58f1a16e9ff299465df11756c416cd75ab4c9b42962"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "8a65a98534678c2983b81e84b798a10b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 308014,
"upload_time": "2022-09-21T00:36:06",
"upload_time_iso_8601": "2022-09-21T00:36:06.124295Z",
"url": "https://files.pythonhosted.org/packages/6d/8a/4fee6783f72e674652f2a18c2ac1f5878d68c212a734a926425ce72efe20/aiohttp-3.8.2-cp38-cp38-win32.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "df0b85ed12584ce08939b704597a5c43b2bd2c0bc39482d2312d7a6dd10b40ed",
"md5": "10a87a4eb0b310c325eed323c0c09149",
"sha256": "9d04aa8efff6ce4b22ec526cb63091f610a3f1823e22cf60b5fef88ac8177db0"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "10a87a4eb0b310c325eed323c0c09149",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 324348,
"upload_time": "2022-09-21T00:36:08",
"upload_time_iso_8601": "2022-09-21T00:36:08.329388Z",
"url": "https://files.pythonhosted.org/packages/df/0b/85ed12584ce08939b704597a5c43b2bd2c0bc39482d2312d7a6dd10b40ed/aiohttp-3.8.2-cp38-cp38-win_amd64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2732f4adadc7c6cece69188da4d423c3c4880f0f128e91f9ded5d05ea980abe9",
"md5": "0e3261591b83e2ed10938912b41847e2",
"sha256": "7138f023e38cd108084b1ee8455be14a8e88a51f50510b482624bf204eb6ac44"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "0e3261591b83e2ed10938912b41847e2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 516117,
"upload_time": "2022-09-21T00:36:10",
"upload_time_iso_8601": "2022-09-21T00:36:10.477360Z",
"url": "https://files.pythonhosted.org/packages/27/32/f4adadc7c6cece69188da4d423c3c4880f0f128e91f9ded5d05ea980abe9/aiohttp-3.8.2-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2b51b77c58122bcecae8b754704ce47b70b8fd5826cfc029107c231e548187f8",
"md5": "9c1b018176d89676f6fe5f09612b0124",
"sha256": "fbb89011e236e15899df0b49432bb50c7f3d89c9f1875c0c2b5bafaf9d5c2daa"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "9c1b018176d89676f6fe5f09612b0124",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 360722,
"upload_time": "2022-09-21T00:36:12",
"upload_time_iso_8601": "2022-09-21T00:36:12.145348Z",
"url": "https://files.pythonhosted.org/packages/2b/51/b77c58122bcecae8b754704ce47b70b8fd5826cfc029107c231e548187f8/aiohttp-3.8.2-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "186cd5aea9b6a4377b08b90b7c9a33d3fc7e395c8e5e472420cab22d0ce24496",
"md5": "a671920ea5c5e9604da310ea787ee943",
"sha256": "e9e6c0ed1378cf0a6d77cd60f550eb8d57e21c13edb5e1f44b9707fd9937c2ce"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a671920ea5c5e9604da310ea787ee943",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 337851,
"upload_time": "2022-09-21T00:36:13",
"upload_time_iso_8601": "2022-09-21T00:36:13.716622Z",
"url": "https://files.pythonhosted.org/packages/18/6c/d5aea9b6a4377b08b90b7c9a33d3fc7e395c8e5e472420cab22d0ce24496/aiohttp-3.8.2-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "63408747811ae1d0b3a2088706d8a548e745c625aec9aa78a801ed4acbee7271",
"md5": "6b4e870a3561803bbc8021d420ac43fe",
"sha256": "61fe1eb4156edd858d2a45a76472b67d82629d4eee0770b30aaf6f9bccfc664f"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6b4e870a3561803bbc8021d420ac43fe",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1027572,
"upload_time": "2022-09-21T00:36:15",
"upload_time_iso_8601": "2022-09-21T00:36:15.973616Z",
"url": "https://files.pythonhosted.org/packages/63/40/8747811ae1d0b3a2088706d8a548e745c625aec9aa78a801ed4acbee7271/aiohttp-3.8.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5465bd99beab501f84348252f9b929c173a935e1dcc7b5d6b630660bc5b7e4ea",
"md5": "b08bb759d47417ee65d3dac31303a4c4",
"sha256": "8e3cec205409e011ae872cbedd19891135ffdc1832ed353c8af4cef4b1947054"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b08bb759d47417ee65d3dac31303a4c4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1046216,
"upload_time": "2022-09-21T00:36:17",
"upload_time_iso_8601": "2022-09-21T00:36:17.736161Z",
"url": "https://files.pythonhosted.org/packages/54/65/bd99beab501f84348252f9b929c173a935e1dcc7b5d6b630660bc5b7e4ea/aiohttp-3.8.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a979a4366712dd35d2378ed054dec6e58dd8b2f3a6c1e58e120e7ebbbd25533a",
"md5": "5151c5fabc2d1d5a6b7a3be8671c5ebf",
"sha256": "1743e84dd0c04cefce8df0866780eae991a2cfe36ac4bef1e04aef640c3dfb8a"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "5151c5fabc2d1d5a6b7a3be8671c5ebf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1102283,
"upload_time": "2022-09-21T00:36:19",
"upload_time_iso_8601": "2022-09-21T00:36:19.927244Z",
"url": "https://files.pythonhosted.org/packages/a9/79/a4366712dd35d2378ed054dec6e58dd8b2f3a6c1e58e120e7ebbbd25533a/aiohttp-3.8.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ab49a9943df3f8214bbdb9a243f01f9e34cb892b7ffc8836fe5d1ca42f38764e",
"md5": "c09dd1557203c1cdb785960226847cfa",
"sha256": "c0563bf4e2069da4d3a6183acdb2f8f69e6d3d2cc794afb6b001f47d89b10618"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c09dd1557203c1cdb785960226847cfa",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1021976,
"upload_time": "2022-09-21T00:36:22",
"upload_time_iso_8601": "2022-09-21T00:36:22.057369Z",
"url": "https://files.pythonhosted.org/packages/ab/49/a9943df3f8214bbdb9a243f01f9e34cb892b7ffc8836fe5d1ca42f38764e/aiohttp-3.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e25928519013f07f156cd545810bb3faa4c92442605a8906b1ee0aaafee279f3",
"md5": "27c7b04402c298fc3d8806483eb702db",
"sha256": "772e948d02592bca1f551878b68b7e6cedaad471d2887701d524d390b56a01af"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "27c7b04402c298fc3d8806483eb702db",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 990337,
"upload_time": "2022-09-21T00:36:24",
"upload_time_iso_8601": "2022-09-21T00:36:24.226690Z",
"url": "https://files.pythonhosted.org/packages/e2/59/28519013f07f156cd545810bb3faa4c92442605a8906b1ee0aaafee279f3/aiohttp-3.8.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cb3704b4004a3f094e0c103d2976939bebf5f2d480732173eba5de8fc1b97fdd",
"md5": "dfe74be95ed0caf1055739ff48ec62e3",
"sha256": "88bb9378ff3ff76a8fef3714976827ddb66fe397cadb64ba9bee5d954bfdf887"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "dfe74be95ed0caf1055739ff48ec62e3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1040239,
"upload_time": "2022-09-21T00:36:26",
"upload_time_iso_8601": "2022-09-21T00:36:26.560740Z",
"url": "https://files.pythonhosted.org/packages/cb/37/04b4004a3f094e0c103d2976939bebf5f2d480732173eba5de8fc1b97fdd/aiohttp-3.8.2-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ca0b20a41cc33c2f06520979cca612362750c1baee115a532ad84e3c7ed82b39",
"md5": "6c79ec5ed2bba6bd1f0a23e64e982c89",
"sha256": "e989dca3eeaf28e15e80084bd55b7872b8c9c79b59748a332a6d32026783bb93"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "6c79ec5ed2bba6bd1f0a23e64e982c89",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1002724,
"upload_time": "2022-09-21T00:36:28",
"upload_time_iso_8601": "2022-09-21T00:36:28.162446Z",
"url": "https://files.pythonhosted.org/packages/ca/0b/20a41cc33c2f06520979cca612362750c1baee115a532ad84e3c7ed82b39/aiohttp-3.8.2-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "adfae49cc2d76f32970a16d3254ed9f367773fcb94b3c722d347626943c983dc",
"md5": "3b3e87332ec748adcde86c4f4b748502",
"sha256": "6660b33e100b4efbc2ed1b0765b97d126c80c56f5b82bd9865d938cc4a29f4a1"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp39-cp39-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "3b3e87332ec748adcde86c4f4b748502",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1056753,
"upload_time": "2022-09-21T00:36:30",
"upload_time_iso_8601": "2022-09-21T00:36:30.005898Z",
"url": "https://files.pythonhosted.org/packages/ad/fa/e49cc2d76f32970a16d3254ed9f367773fcb94b3c722d347626943c983dc/aiohttp-3.8.2-cp39-cp39-musllinux_1_1_ppc64le.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "821b3cbfd76d552d388db1ede368519044ac43558689062d1ab63affb9d071d3",
"md5": "48349c2df0e8517d65c3f2c7860b461d",
"sha256": "a33758b5dbff2eb56270d441222e527d6e0e96b3886a4d42c9cfcdccc6730baa"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp39-cp39-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "48349c2df0e8517d65c3f2c7860b461d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1108621,
"upload_time": "2022-09-21T00:36:31",
"upload_time_iso_8601": "2022-09-21T00:36:31.865626Z",
"url": "https://files.pythonhosted.org/packages/82/1b/3cbfd76d552d388db1ede368519044ac43558689062d1ab63affb9d071d3/aiohttp-3.8.2-cp39-cp39-musllinux_1_1_s390x.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4f24bf0035880292ece892ab841d36bc5ba4d92cc48d3b8f3e543ab7bff4da85",
"md5": "3d9a9c6121c00a2ddda71819628d20ef",
"sha256": "1815bd39628afa7085bad883b8cad84dbdab84a273ba1a5bf571177ae267011d"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "3d9a9c6121c00a2ddda71819628d20ef",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1033318,
"upload_time": "2022-09-21T00:36:33",
"upload_time_iso_8601": "2022-09-21T00:36:33.933277Z",
"url": "https://files.pythonhosted.org/packages/4f/24/bf0035880292ece892ab841d36bc5ba4d92cc48d3b8f3e543ab7bff4da85/aiohttp-3.8.2-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3b3eae6219819c902e2c72cb359e98215a53b10e5cd2e32b58059653ace3cc88",
"md5": "a8d7d1e42961d8c08f8c2e6b82257509",
"sha256": "409b43ceed9dcc52150813cb695130519dc2876d98f941ce6d30a5bc4ff80451"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "a8d7d1e42961d8c08f8c2e6b82257509",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 307298,
"upload_time": "2022-09-21T00:36:36",
"upload_time_iso_8601": "2022-09-21T00:36:36.039401Z",
"url": "https://files.pythonhosted.org/packages/3b/3e/ae6219819c902e2c72cb359e98215a53b10e5cd2e32b58059653ace3cc88/aiohttp-3.8.2-cp39-cp39-win32.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "59e0fe2e6a4bdf106791a910ffe65d35356ce568657cbd9ead583cdfac1c07fe",
"md5": "3a23a2be392412f4b368fcd2b7f75807",
"sha256": "8151006ae30614e5c75e2ff05cdb51242214aadda0ae28c7c449007e28362651"
},
"downloads": -1,
"filename": "aiohttp-3.8.2-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "3a23a2be392412f4b368fcd2b7f75807",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 323541,
"upload_time": "2022-09-21T00:36:37",
"upload_time_iso_8601": "2022-09-21T00:36:37.780020Z",
"url": "https://files.pythonhosted.org/packages/59/e0/fe2e6a4bdf106791a910ffe65d35356ce568657cbd9ead583cdfac1c07fe/aiohttp-3.8.2-cp39-cp39-win_amd64.whl",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1a0ccaa046ebcaa23d655ec0dce108ef25348dd6b7c63aaedc8cb182658e6947",
"md5": "8899caf16356255c3ad29aad7997a7c0",
"sha256": "599aa2ce967bea2580588833bf08d2df5930cd2ccb618e8d96dd67dbe063b692"
},
"downloads": -1,
"filename": "aiohttp-3.8.2.tar.gz",
"has_sig": false,
"md5_digest": "8899caf16356255c3ad29aad7997a7c0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 7337019,
"upload_time": "2022-09-21T00:36:39",
"upload_time_iso_8601": "2022-09-21T00:36:39.828478Z",
"url": "https://files.pythonhosted.org/packages/1a/0c/caa046ebcaa23d655ec0dce108ef25348dd6b7c63aaedc8cb182658e6947/aiohttp-3.8.2.tar.gz",
"yanked": true,
"yanked_reason": "This version includes overly restrictive multidict upper boundary disallowing multidict v6+. The previous patch version didn't have that and this is now causing dependency resolution problems for the users who have an \"incompatible\" version pinned. This is not really necessary anymore and will be addressed in the next release v3.8.3\r\n\r\nhttps://github.com/aio-libs/aiohttp/pull/6950"
}
],
"3.8.3": [
{
"comment_text": "",
"digests": {
"blake2b_256": "8090e7d60427dfa15b0f3748d6fbb50cc6b0f29112f4f04d8354ac02f65683e1",
"md5": "ff5d9f454603ff45d85478a202132c50",
"sha256": "ba71c9b4dcbb16212f334126cc3d8beb6af377f6703d9dc2d9fb3874fd667ee9"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "ff5d9f454603ff45d85478a202132c50",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 512532,
"upload_time": "2022-09-21T14:40:05",
"upload_time_iso_8601": "2022-09-21T14:40:05.000152Z",
"url": "https://files.pythonhosted.org/packages/80/90/e7d60427dfa15b0f3748d6fbb50cc6b0f29112f4f04d8354ac02f65683e1/aiohttp-3.8.3-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9b4cd87f8d80a8f05a3b78dffa0fec7d103f0747140375ec02a846867119c349",
"md5": "e5e8f2818bf85ec07dbc9541745272fd",
"sha256": "d24b8bb40d5c61ef2d9b6a8f4528c2f17f1c5d2d31fed62ec860f6006142e83e"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e5e8f2818bf85ec07dbc9541745272fd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 358348,
"upload_time": "2022-09-21T14:40:08",
"upload_time_iso_8601": "2022-09-21T14:40:08.000429Z",
"url": "https://files.pythonhosted.org/packages/9b/4c/d87f8d80a8f05a3b78dffa0fec7d103f0747140375ec02a846867119c349/aiohttp-3.8.3-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "44b02c7f5419ee0002b20e68438c0cdfa2cc5e76352e0ae6b823f7dd79aa07bd",
"md5": "c7bcd10b4106573b7b157c1cc85a3f81",
"sha256": "f88df3a83cf9df566f171adba39d5bd52814ac0b94778d2448652fc77f9eb491"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c7bcd10b4106573b7b157c1cc85a3f81",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 336435,
"upload_time": "2022-09-21T14:40:10",
"upload_time_iso_8601": "2022-09-21T14:40:10.495454Z",
"url": "https://files.pythonhosted.org/packages/44/b0/2c7f5419ee0002b20e68438c0cdfa2cc5e76352e0ae6b823f7dd79aa07bd/aiohttp-3.8.3-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3c946c70504a210d917b3e17eb779f8b4c6be655197747a5674ed3662532956e",
"md5": "9b7027b499504dad3c4d0f1f38e3b23d",
"sha256": "b97decbb3372d4b69e4d4c8117f44632551c692bb1361b356a02b97b69e18a62"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9b7027b499504dad3c4d0f1f38e3b23d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1003997,
"upload_time": "2022-09-21T14:40:12",
"upload_time_iso_8601": "2022-09-21T14:40:12.428997Z",
"url": "https://files.pythonhosted.org/packages/3c/94/6c70504a210d917b3e17eb779f8b4c6be655197747a5674ed3662532956e/aiohttp-3.8.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fa46346c37346b7e9a67bf33864184154a06cce8f44c74ca6c3697784ce92cb4",
"md5": "62369ff8848cf62d03879cb0a553caa7",
"sha256": "309aa21c1d54b8ef0723181d430347d7452daaff93e8e2363db8e75c72c2fb2d"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "62369ff8848cf62d03879cb0a553caa7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1019069,
"upload_time": "2022-09-21T14:40:13",
"upload_time_iso_8601": "2022-09-21T14:40:13.817972Z",
"url": "https://files.pythonhosted.org/packages/fa/46/346c37346b7e9a67bf33864184154a06cce8f44c74ca6c3697784ce92cb4/aiohttp-3.8.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "50b83944dde41cc860509b5cfbaaca0b4bc011c1a78e12add4f09fb1dc0de87e",
"md5": "a7f013e9cdfccfc863111bf14f3ac6c6",
"sha256": "ad5383a67514e8e76906a06741febd9126fc7c7ff0f599d6fcce3e82b80d026f"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a7f013e9cdfccfc863111bf14f3ac6c6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1073502,
"upload_time": "2022-09-21T14:40:16",
"upload_time_iso_8601": "2022-09-21T14:40:16.729479Z",
"url": "https://files.pythonhosted.org/packages/50/b8/3944dde41cc860509b5cfbaaca0b4bc011c1a78e12add4f09fb1dc0de87e/aiohttp-3.8.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f002071500ac4da91f762dc35c9e22438b73158077da4e851a8e4741fa05ab4a",
"md5": "21d666900a7d6a3a74dd99e495db8a6a",
"sha256": "20acae4f268317bb975671e375493dbdbc67cddb5f6c71eebdb85b34444ac46b"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "21d666900a7d6a3a74dd99e495db8a6a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1000550,
"upload_time": "2022-09-21T14:40:18",
"upload_time_iso_8601": "2022-09-21T14:40:18.538298Z",
"url": "https://files.pythonhosted.org/packages/f0/02/071500ac4da91f762dc35c9e22438b73158077da4e851a8e4741fa05ab4a/aiohttp-3.8.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "219e883392cf323de7fc400e739fdfc83a7f9c1a9beb9e96537cbe34d7d39a58",
"md5": "52537432b1b489a4f4b4d3c09e3ada0c",
"sha256": "05a3c31c6d7cd08c149e50dc7aa2568317f5844acd745621983380597f027a18"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "52537432b1b489a4f4b4d3c09e3ada0c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 971090,
"upload_time": "2022-09-21T14:40:20",
"upload_time_iso_8601": "2022-09-21T14:40:20.813472Z",
"url": "https://files.pythonhosted.org/packages/21/9e/883392cf323de7fc400e739fdfc83a7f9c1a9beb9e96537cbe34d7d39a58/aiohttp-3.8.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f6505d8acb08ce0dfd2a799bdef140d105e436ebdfda36ed8c8e43ddf7e15c4c",
"md5": "4eb1105cb8db819da45a45033b3a0a55",
"sha256": "d6f76310355e9fae637c3162936e9504b4767d5c52ca268331e2756e54fd4ca5"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "4eb1105cb8db819da45a45033b3a0a55",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1017888,
"upload_time": "2022-09-21T14:40:23",
"upload_time_iso_8601": "2022-09-21T14:40:23.293366Z",
"url": "https://files.pythonhosted.org/packages/f6/50/5d8acb08ce0dfd2a799bdef140d105e436ebdfda36ed8c8e43ddf7e15c4c/aiohttp-3.8.3-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a55c2f13a2835cbf7e05c10071857c88fc265c94fa06362f8940964fb60fe5e5",
"md5": "516bb6a34f755229b5e6c75811bdf3fa",
"sha256": "256deb4b29fe5e47893fa32e1de2d73c3afe7407738bd3c63829874661d4822d"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "516bb6a34f755229b5e6c75811bdf3fa",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 985721,
"upload_time": "2022-09-21T14:40:24",
"upload_time_iso_8601": "2022-09-21T14:40:24.738063Z",
"url": "https://files.pythonhosted.org/packages/a5/5c/2f13a2835cbf7e05c10071857c88fc265c94fa06362f8940964fb60fe5e5/aiohttp-3.8.3-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d8aa30b9bd13fd95eaaa8eb3467c2a35bc5085c93f32bb9fba4552043c4ee44b",
"md5": "f57e507c9ce08bc18d55bba1ffc14bd7",
"sha256": "5c59fcd80b9049b49acd29bd3598cada4afc8d8d69bd4160cd613246912535d7"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp310-cp310-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "f57e507c9ce08bc18d55bba1ffc14bd7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1036058,
"upload_time": "2022-09-21T14:40:26",
"upload_time_iso_8601": "2022-09-21T14:40:26.574458Z",
"url": "https://files.pythonhosted.org/packages/d8/aa/30b9bd13fd95eaaa8eb3467c2a35bc5085c93f32bb9fba4552043c4ee44b/aiohttp-3.8.3-cp310-cp310-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2dd50e3eeccc106c537d1450abdd94b135dbd6e037e45279ae2c1da65aa81a2d",
"md5": "e52c87252615d60cb91d0068170933e8",
"sha256": "059a91e88f2c00fe40aed9031b3606c3f311414f86a90d696dd982e7aec48142"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp310-cp310-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "e52c87252615d60cb91d0068170933e8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1084567,
"upload_time": "2022-09-21T14:40:28",
"upload_time_iso_8601": "2022-09-21T14:40:28.520113Z",
"url": "https://files.pythonhosted.org/packages/2d/d5/0e3eeccc106c537d1450abdd94b135dbd6e037e45279ae2c1da65aa81a2d/aiohttp-3.8.3-cp310-cp310-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "81143fecd65b2ec159f3bb4211e6d08030cf7a29be46f82f66b475ed7f6f23b5",
"md5": "11836c0d7845a41343d23efb1417303c",
"sha256": "2feebbb6074cdbd1ac276dbd737b40e890a1361b3cc30b74ac2f5e24aab41f7b"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "11836c0d7845a41343d23efb1417303c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1013154,
"upload_time": "2022-09-21T14:40:29",
"upload_time_iso_8601": "2022-09-21T14:40:29.897403Z",
"url": "https://files.pythonhosted.org/packages/81/14/3fecd65b2ec159f3bb4211e6d08030cf7a29be46f82f66b475ed7f6f23b5/aiohttp-3.8.3-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5807944dcf142ec5cca1f9542169ae78d8eea72bb553418ae2d8acdee2b99512",
"md5": "63c9858cfc36f6a0b840bf74e57efc68",
"sha256": "5bf651afd22d5f0c4be16cf39d0482ea494f5c88f03e75e5fef3a85177fecdeb"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "63c9858cfc36f6a0b840bf74e57efc68",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 304531,
"upload_time": "2022-09-21T14:40:31",
"upload_time_iso_8601": "2022-09-21T14:40:31.248051Z",
"url": "https://files.pythonhosted.org/packages/58/07/944dcf142ec5cca1f9542169ae78d8eea72bb553418ae2d8acdee2b99512/aiohttp-3.8.3-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aa5e6dc373508c2c05d6533ea8b1cd198bf02e55196fe223e2401534190c9d68",
"md5": "8f411ea09e0f1bb7ab5d21bae5221117",
"sha256": "653acc3880459f82a65e27bd6526e47ddf19e643457d36a2250b85b41a564715"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "8f411ea09e0f1bb7ab5d21bae5221117",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 319714,
"upload_time": "2022-09-21T14:40:32",
"upload_time_iso_8601": "2022-09-21T14:40:32.632656Z",
"url": "https://files.pythonhosted.org/packages/aa/5e/6dc373508c2c05d6533ea8b1cd198bf02e55196fe223e2401534190c9d68/aiohttp-3.8.3-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b84cef4a7980a4bad849f5a3633ab8fc32baac6426f32caa90de7f27ab5dd682",
"md5": "5dafadde2acf2bd9efff884522f1965f",
"sha256": "86fc24e58ecb32aee09f864cb11bb91bc4c1086615001647dbfc4dc8c32f4008"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "5dafadde2acf2bd9efff884522f1965f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 505291,
"upload_time": "2022-09-21T14:40:33",
"upload_time_iso_8601": "2022-09-21T14:40:33.919492Z",
"url": "https://files.pythonhosted.org/packages/b8/4c/ef4a7980a4bad849f5a3633ab8fc32baac6426f32caa90de7f27ab5dd682/aiohttp-3.8.3-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2d2b61dab1e217188a534d553efe578b4b6555f53aeb31aedc3ba75e7d82c8dc",
"md5": "5fb6ba9cd6c47ae58485de2d2da90126",
"sha256": "75e14eac916f024305db517e00a9252714fce0abcb10ad327fb6dcdc0d060f1d"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "5fb6ba9cd6c47ae58485de2d2da90126",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 355117,
"upload_time": "2022-09-21T14:40:35",
"upload_time_iso_8601": "2022-09-21T14:40:35.634810Z",
"url": "https://files.pythonhosted.org/packages/2d/2b/61dab1e217188a534d553efe578b4b6555f53aeb31aedc3ba75e7d82c8dc/aiohttp-3.8.3-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3a130d4aed7f4ba2cf56fc6634c330c8281a304cb178adc6f6acabfa13e77704",
"md5": "539c4b018b0c21751215b047dd9ff4d9",
"sha256": "d1fde0f44029e02d02d3993ad55ce93ead9bb9b15c6b7ccd580f90bd7e3de476"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "539c4b018b0c21751215b047dd9ff4d9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 332604,
"upload_time": "2022-09-21T14:40:37",
"upload_time_iso_8601": "2022-09-21T14:40:37.339474Z",
"url": "https://files.pythonhosted.org/packages/3a/13/0d4aed7f4ba2cf56fc6634c330c8281a304cb178adc6f6acabfa13e77704/aiohttp-3.8.3-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "414450f0156c006f921baba48253f1791728179f76fcade7af1a550e46709c08",
"md5": "0128a3c1e5312b9b151ad34dc708b869",
"sha256": "4ab94426ddb1ecc6a0b601d832d5d9d421820989b8caa929114811369673235c"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0128a3c1e5312b9b151ad34dc708b869",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1035313,
"upload_time": "2022-09-21T14:40:38",
"upload_time_iso_8601": "2022-09-21T14:40:38.947941Z",
"url": "https://files.pythonhosted.org/packages/41/44/50f0156c006f921baba48253f1791728179f76fcade7af1a550e46709c08/aiohttp-3.8.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "667e6f43b2144f8389d79732d44a578fe502399e24597a6b6dbfcbadac6378be",
"md5": "bf7f8ebaae88de10f50fc3ccd04fde43",
"sha256": "89d2e02167fa95172c017732ed7725bc8523c598757f08d13c5acca308e1a061"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "bf7f8ebaae88de10f50fc3ccd04fde43",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1045377,
"upload_time": "2022-09-21T14:40:40",
"upload_time_iso_8601": "2022-09-21T14:40:40.757791Z",
"url": "https://files.pythonhosted.org/packages/66/7e/6f43b2144f8389d79732d44a578fe502399e24597a6b6dbfcbadac6378be/aiohttp-3.8.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e11a6ccc4dfcc7d65f557c7fbdfb4809f0e67723bd94a7738d1b543a08b6360",
"md5": "7b7bcd75d098dcc7b1c2473ef0e5f1de",
"sha256": "02f9a2c72fc95d59b881cf38a4b2be9381b9527f9d328771e90f72ac76f31ad8"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "7b7bcd75d098dcc7b1c2473ef0e5f1de",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1102484,
"upload_time": "2022-09-21T14:40:42",
"upload_time_iso_8601": "2022-09-21T14:40:42.953350Z",
"url": "https://files.pythonhosted.org/packages/8e/11/a6ccc4dfcc7d65f557c7fbdfb4809f0e67723bd94a7738d1b543a08b6360/aiohttp-3.8.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "60c05e52266cb9a2903be588eda3fa1ad91de5bd03b5f54c49a8a25c79255748",
"md5": "f86a15c78b503478606e1413e08c5e36",
"sha256": "9c7149272fb5834fc186328e2c1fa01dda3e1fa940ce18fded6d412e8f2cf76d"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f86a15c78b503478606e1413e08c5e36",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1026753,
"upload_time": "2022-09-21T14:40:45",
"upload_time_iso_8601": "2022-09-21T14:40:45.051383Z",
"url": "https://files.pythonhosted.org/packages/60/c0/5e52266cb9a2903be588eda3fa1ad91de5bd03b5f54c49a8a25c79255748/aiohttp-3.8.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fee1401b3fac5bfaa8cef6d7fd541c8a573907565c662f2d5891cc9a0c0124b7",
"md5": "baee176559b352f2a62d15fa1c67db23",
"sha256": "512bd5ab136b8dc0ffe3fdf2dfb0c4b4f49c8577f6cae55dca862cd37a4564e2"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "baee176559b352f2a62d15fa1c67db23",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 985423,
"upload_time": "2022-09-21T14:40:46",
"upload_time_iso_8601": "2022-09-21T14:40:46.666127Z",
"url": "https://files.pythonhosted.org/packages/fe/e1/401b3fac5bfaa8cef6d7fd541c8a573907565c662f2d5891cc9a0c0124b7/aiohttp-3.8.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0cc1914de60be1acef9b24d1fe8691b7665b86e80695ff71d4de14f3830c546d",
"md5": "8f104ab81acceea08269b885e7de5dcd",
"sha256": "7018ecc5fe97027214556afbc7c502fbd718d0740e87eb1217b17efd05b3d276"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "8f104ab81acceea08269b885e7de5dcd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1046324,
"upload_time": "2022-09-21T14:40:48",
"upload_time_iso_8601": "2022-09-21T14:40:48.403147Z",
"url": "https://files.pythonhosted.org/packages/0c/c1/914de60be1acef9b24d1fe8691b7665b86e80695ff71d4de14f3830c546d/aiohttp-3.8.3-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "df6d55b04e71cf12462df824838aa9e0f3f751d419b4e456241838d427b55d2c",
"md5": "975f6d616998f9cb06a0e159d848e8b5",
"sha256": "88c70ed9da9963d5496d38320160e8eb7e5f1886f9290475a881db12f351ab5d"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "975f6d616998f9cb06a0e159d848e8b5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1004322,
"upload_time": "2022-09-21T14:40:50",
"upload_time_iso_8601": "2022-09-21T14:40:50.003616Z",
"url": "https://files.pythonhosted.org/packages/df/6d/55b04e71cf12462df824838aa9e0f3f751d419b4e456241838d427b55d2c/aiohttp-3.8.3-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2f92c4d146e7bea39a38e2ebda09ed9b85946a5d056c89937e34059eda00b6ed",
"md5": "2922531ddd3a577c900007053216195a",
"sha256": "da22885266bbfb3f78218dc40205fed2671909fbd0720aedba39b4515c038091"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp311-cp311-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "2922531ddd3a577c900007053216195a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1065295,
"upload_time": "2022-09-21T14:40:51",
"upload_time_iso_8601": "2022-09-21T14:40:51.663628Z",
"url": "https://files.pythonhosted.org/packages/2f/92/c4d146e7bea39a38e2ebda09ed9b85946a5d056c89937e34059eda00b6ed/aiohttp-3.8.3-cp311-cp311-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "055ef523ba8cdc9818b3fa6487da279f0c4ae5fba05c21d5617f0c33a74af668",
"md5": "0f382a4768e4b07c040d72469a5c0045",
"sha256": "e65bc19919c910127c06759a63747ebe14f386cda573d95bcc62b427ca1afc73"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp311-cp311-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "0f382a4768e4b07c040d72469a5c0045",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1112292,
"upload_time": "2022-09-21T14:40:53",
"upload_time_iso_8601": "2022-09-21T14:40:53.102817Z",
"url": "https://files.pythonhosted.org/packages/05/5e/f523ba8cdc9818b3fa6487da279f0c4ae5fba05c21d5617f0c33a74af668/aiohttp-3.8.3-cp311-cp311-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bf54a2cd883bbbfb77cdae86b3e7b3c204e8532421690111286ad854dfa51144",
"md5": "7dc6c51404bcf03877fea45963023d97",
"sha256": "08c78317e950e0762c2983f4dd58dc5e6c9ff75c8a0efeae299d363d439c8e34"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "7dc6c51404bcf03877fea45963023d97",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1038334,
"upload_time": "2022-09-21T14:40:54",
"upload_time_iso_8601": "2022-09-21T14:40:54.487211Z",
"url": "https://files.pythonhosted.org/packages/bf/54/a2cd883bbbfb77cdae86b3e7b3c204e8532421690111286ad854dfa51144/aiohttp-3.8.3-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fced71128e72e10d7e2e6c111927fc75168804be7527cccc6fc1b2c05eb7cc1f",
"md5": "fa3f389bab58a8bdc1ec30c304e1d447",
"sha256": "45d88b016c849d74ebc6f2b6e8bc17cabf26e7e40c0661ddd8fae4c00f015697"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "fa3f389bab58a8bdc1ec30c304e1d447",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 303908,
"upload_time": "2022-09-21T14:40:55",
"upload_time_iso_8601": "2022-09-21T14:40:55.891493Z",
"url": "https://files.pythonhosted.org/packages/fc/ed/71128e72e10d7e2e6c111927fc75168804be7527cccc6fc1b2c05eb7cc1f/aiohttp-3.8.3-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0a269d26689125161815c6584c21f6aef8c5ed3083d825ddd9afb23c34c1aaa9",
"md5": "f5cd68cc0745ef7f8851fbf888759005",
"sha256": "96372fc29471646b9b106ee918c8eeb4cca423fcbf9a34daa1b93767a88a2290"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "f5cd68cc0745ef7f8851fbf888759005",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 317108,
"upload_time": "2022-09-21T14:40:57",
"upload_time_iso_8601": "2022-09-21T14:40:57.407488Z",
"url": "https://files.pythonhosted.org/packages/0a/26/9d26689125161815c6584c21f6aef8c5ed3083d825ddd9afb23c34c1aaa9/aiohttp-3.8.3-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a58ee61b679320521569e7242048cf9902b6de200a634e10bf1b8e4db3d45760",
"md5": "07cdf977cd591b0a86c39f1eaa63618a",
"sha256": "c971bf3786b5fad82ce5ad570dc6ee420f5b12527157929e830f51c55dc8af77"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp36-cp36m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "07cdf977cd591b0a86c39f1eaa63618a",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 355816,
"upload_time": "2022-09-21T14:40:58",
"upload_time_iso_8601": "2022-09-21T14:40:58.839451Z",
"url": "https://files.pythonhosted.org/packages/a5/8e/e61b679320521569e7242048cf9902b6de200a634e10bf1b8e4db3d45760/aiohttp-3.8.3-cp36-cp36m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9af3bef68d04c7d571bc3c99a9a55281bd3e0d572da396ed8769329d4b477126",
"md5": "4b845b9ce70ba1d20618cb36b8c90660",
"sha256": "ff25f48fc8e623d95eca0670b8cc1469a83783c924a602e0fbd47363bb54aaca"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4b845b9ce70ba1d20618cb36b8c90660",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 951903,
"upload_time": "2022-09-21T14:41:00",
"upload_time_iso_8601": "2022-09-21T14:41:00.912782Z",
"url": "https://files.pythonhosted.org/packages/9a/f3/bef68d04c7d571bc3c99a9a55281bd3e0d572da396ed8769329d4b477126/aiohttp-3.8.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "18e4c00fffc406204be775a725d17dea492500fab3096176a6a806f719546f06",
"md5": "35e8aaa52c90ebf223865079dee8e5b2",
"sha256": "e381581b37db1db7597b62a2e6b8b57c3deec95d93b6d6407c5b61ddc98aca6d"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "35e8aaa52c90ebf223865079dee8e5b2",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 965701,
"upload_time": "2022-09-21T14:41:02",
"upload_time_iso_8601": "2022-09-21T14:41:02.318520Z",
"url": "https://files.pythonhosted.org/packages/18/e4/c00fffc406204be775a725d17dea492500fab3096176a6a806f719546f06/aiohttp-3.8.3-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c5237e8d919243120619f34fbdae9f0843a193594807dc81c6ff28e2857eeae5",
"md5": "794ac55823879880962574cd0116b957",
"sha256": "db19d60d846283ee275d0416e2a23493f4e6b6028825b51290ac05afc87a6f97"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "794ac55823879880962574cd0116b957",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 1022864,
"upload_time": "2022-09-21T14:41:03",
"upload_time_iso_8601": "2022-09-21T14:41:03.877003Z",
"url": "https://files.pythonhosted.org/packages/c5/23/7e8d919243120619f34fbdae9f0843a193594807dc81c6ff28e2857eeae5/aiohttp-3.8.3-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "25a09a4ff3e66e9eac5048c6853c357ca0f2a5d4eed56c3cc8ea2c1831513cfa",
"md5": "ce80ae8a1016501e4f938adbd815da32",
"sha256": "25892c92bee6d9449ffac82c2fe257f3a6f297792cdb18ad784737d61e7a9a85"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ce80ae8a1016501e4f938adbd815da32",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 945961,
"upload_time": "2022-09-21T14:41:05",
"upload_time_iso_8601": "2022-09-21T14:41:05.543165Z",
"url": "https://files.pythonhosted.org/packages/25/a0/9a4ff3e66e9eac5048c6853c357ca0f2a5d4eed56c3cc8ea2c1831513cfa/aiohttp-3.8.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "37f0b28949e00a937f3517b1d43c49edba068a6d5c7bd9450edb8d0203720ecf",
"md5": "8d8faca94b5622e02f4e78f0f79fbab1",
"sha256": "398701865e7a9565d49189f6c90868efaca21be65c725fc87fc305906be915da"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8d8faca94b5622e02f4e78f0f79fbab1",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 922530,
"upload_time": "2022-09-21T14:41:06",
"upload_time_iso_8601": "2022-09-21T14:41:06.966561Z",
"url": "https://files.pythonhosted.org/packages/37/f0/b28949e00a937f3517b1d43c49edba068a6d5c7bd9450edb8d0203720ecf/aiohttp-3.8.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "de3c5211b18bcc69e14822fb63dc2e786501f24ff4244eda61f9bf12aa5f3ab7",
"md5": "68d59570ee86535adc48c00b06d4c178",
"sha256": "4a4fbc769ea9b6bd97f4ad0b430a6807f92f0e5eb020f1e42ece59f3ecfc4585"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp36-cp36m-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "68d59570ee86535adc48c00b06d4c178",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 960612,
"upload_time": "2022-09-21T14:41:08",
"upload_time_iso_8601": "2022-09-21T14:41:08.367709Z",
"url": "https://files.pythonhosted.org/packages/de/3c/5211b18bcc69e14822fb63dc2e786501f24ff4244eda61f9bf12aa5f3ab7/aiohttp-3.8.3-cp36-cp36m-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5b9c363db8116c0f03f78e20c2b7721811826515d0ce97a198c7c4d2f2665219",
"md5": "6a38a4035427877b84363a1ebff5491f",
"sha256": "b29bfd650ed8e148f9c515474a6ef0ba1090b7a8faeee26b74a8ff3b33617502"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp36-cp36m-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "6a38a4035427877b84363a1ebff5491f",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 933680,
"upload_time": "2022-09-21T14:41:09",
"upload_time_iso_8601": "2022-09-21T14:41:09.869362Z",
"url": "https://files.pythonhosted.org/packages/5b/9c/363db8116c0f03f78e20c2b7721811826515d0ce97a198c7c4d2f2665219/aiohttp-3.8.3-cp36-cp36m-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "22047610cd4a889c6927aeb8077002e16c84c018e1b161acafdd29b98630ee87",
"md5": "2e07282af40bef18ac8beb4c54db8242",
"sha256": "1e56b9cafcd6531bab5d9b2e890bb4937f4165109fe98e2b98ef0dcfcb06ee9d"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp36-cp36m-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "2e07282af40bef18ac8beb4c54db8242",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 979824,
"upload_time": "2022-09-21T14:41:11",
"upload_time_iso_8601": "2022-09-21T14:41:11.312508Z",
"url": "https://files.pythonhosted.org/packages/22/04/7610cd4a889c6927aeb8077002e16c84c018e1b161acafdd29b98630ee87/aiohttp-3.8.3-cp36-cp36m-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "df7f2dae7dfd8f12c9f691552795c49ff726df4bc634f05448f140c0e76ab9ed",
"md5": "9aec79f0805ce30f5f018dcbb3fcee7d",
"sha256": "ec40170327d4a404b0d91855d41bfe1fe4b699222b2b93e3d833a27330a87a6d"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp36-cp36m-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "9aec79f0805ce30f5f018dcbb3fcee7d",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 1029465,
"upload_time": "2022-09-21T14:41:13",
"upload_time_iso_8601": "2022-09-21T14:41:13.164683Z",
"url": "https://files.pythonhosted.org/packages/df/7f/2dae7dfd8f12c9f691552795c49ff726df4bc634f05448f140c0e76ab9ed/aiohttp-3.8.3-cp36-cp36m-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0c7f4cdaae15ad841f82a96feeef303042465cf6df5effc068fdfbb0df01dc7c",
"md5": "203a249d8f3c47e60c8df32a5a8348c5",
"sha256": "2df5f139233060578d8c2c975128fb231a89ca0a462b35d4b5fcf7c501ebdbe1"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp36-cp36m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "203a249d8f3c47e60c8df32a5a8348c5",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 954899,
"upload_time": "2022-09-21T14:41:14",
"upload_time_iso_8601": "2022-09-21T14:41:14.895332Z",
"url": "https://files.pythonhosted.org/packages/0c/7f/4cdaae15ad841f82a96feeef303042465cf6df5effc068fdfbb0df01dc7c/aiohttp-3.8.3-cp36-cp36m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bb10927f284cdbf1a5838c8f9190cc862d356f92c872515f603b840f5c1d58a8",
"md5": "e860803e1c78043a37df213f901aee48",
"sha256": "f973157ffeab5459eefe7b97a804987876dd0a55570b8fa56b4e1954bf11329b"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp36-cp36m-win32.whl",
"has_sig": false,
"md5_digest": "e860803e1c78043a37df213f901aee48",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 316717,
"upload_time": "2022-09-21T14:41:16",
"upload_time_iso_8601": "2022-09-21T14:41:16.452428Z",
"url": "https://files.pythonhosted.org/packages/bb/10/927f284cdbf1a5838c8f9190cc862d356f92c872515f603b840f5c1d58a8/aiohttp-3.8.3-cp36-cp36m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bb0cd9c9a283549302d3ea7589b12c8f069a16b2e665e7b8d5782efb8637e535",
"md5": "bed29b80ec54f255742091b7913b89fc",
"sha256": "437399385f2abcd634865705bdc180c8314124b98299d54fe1d4c8990f2f9494"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "bed29b80ec54f255742091b7913b89fc",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 337395,
"upload_time": "2022-09-21T14:41:17",
"upload_time_iso_8601": "2022-09-21T14:41:17.819088Z",
"url": "https://files.pythonhosted.org/packages/bb/0c/d9c9a283549302d3ea7589b12c8f069a16b2e665e7b8d5782efb8637e535/aiohttp-3.8.3-cp36-cp36m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1e14ebd9b8c48532c4e3f6c1821a0fede15176cc80d653e0dfa16526005ad654",
"md5": "93ace74112c1ab60e2802a53cb43618c",
"sha256": "09e28f572b21642128ef31f4e8372adb6888846f32fecb288c8b0457597ba61a"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "93ace74112c1ab60e2802a53cb43618c",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 355831,
"upload_time": "2022-09-21T14:41:19",
"upload_time_iso_8601": "2022-09-21T14:41:19.305628Z",
"url": "https://files.pythonhosted.org/packages/1e/14/ebd9b8c48532c4e3f6c1821a0fede15176cc80d653e0dfa16526005ad654/aiohttp-3.8.3-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5da2090b7e38326d4937da878e18cb35a9c812a12df8cb47f1189608e725b222",
"md5": "8d6d9e35bcceac3d4e382f83347fb3af",
"sha256": "6f3553510abdbec67c043ca85727396ceed1272eef029b050677046d3387be8d"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8d6d9e35bcceac3d4e382f83347fb3af",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 952915,
"upload_time": "2022-09-21T14:41:21",
"upload_time_iso_8601": "2022-09-21T14:41:21.111451Z",
"url": "https://files.pythonhosted.org/packages/5d/a2/090b7e38326d4937da878e18cb35a9c812a12df8cb47f1189608e725b222/aiohttp-3.8.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "15f56ff47f916f6dc315e0ce1ad7f16dd6f2a18ffd4084583ba388f5b0be570f",
"md5": "9014a67407660da470dd54002c082332",
"sha256": "e168a7560b7c61342ae0412997b069753f27ac4862ec7867eff74f0fe4ea2ad9"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "9014a67407660da470dd54002c082332",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 968733,
"upload_time": "2022-09-21T14:41:22",
"upload_time_iso_8601": "2022-09-21T14:41:22.783524Z",
"url": "https://files.pythonhosted.org/packages/15/f5/6ff47f916f6dc315e0ce1ad7f16dd6f2a18ffd4084583ba388f5b0be570f/aiohttp-3.8.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b0f7ce08e6ef33cc6416d974772c566b250fce12b2953a1db2eb3285360f4ae9",
"md5": "95d6641437f5612c3acffe9955c1fdea",
"sha256": "db4c979b0b3e0fa7e9e69ecd11b2b3174c6963cebadeecfb7ad24532ffcdd11a"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "95d6641437f5612c3acffe9955c1fdea",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 1023553,
"upload_time": "2022-09-21T14:41:24",
"upload_time_iso_8601": "2022-09-21T14:41:24.331465Z",
"url": "https://files.pythonhosted.org/packages/b0/f7/ce08e6ef33cc6416d974772c566b250fce12b2953a1db2eb3285360f4ae9/aiohttp-3.8.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7a487882af39221fee58e33eee6c8e516097e2331334a5937f54fe5b5b285d9e",
"md5": "10e1029f62d8fa8bfb321b2857896a93",
"sha256": "e164e0a98e92d06da343d17d4e9c4da4654f4a4588a20d6c73548a29f176abe2"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "10e1029f62d8fa8bfb321b2857896a93",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 948030,
"upload_time": "2022-09-21T14:41:26",
"upload_time_iso_8601": "2022-09-21T14:41:26.087633Z",
"url": "https://files.pythonhosted.org/packages/7a/48/7882af39221fee58e33eee6c8e516097e2331334a5937f54fe5b5b285d9e/aiohttp-3.8.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1923d6484d5fdf47c656d0ec522ae2495d35bd8a484a1592a40b9454943b6b3e",
"md5": "1a5170d50e287fd387874a73e7c143bb",
"sha256": "e8a78079d9a39ca9ca99a8b0ac2fdc0c4d25fc80c8a8a82e5c8211509c523363"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "1a5170d50e287fd387874a73e7c143bb",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 922820,
"upload_time": "2022-09-21T14:41:27",
"upload_time_iso_8601": "2022-09-21T14:41:27.616396Z",
"url": "https://files.pythonhosted.org/packages/19/23/d6484d5fdf47c656d0ec522ae2495d35bd8a484a1592a40b9454943b6b3e/aiohttp-3.8.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "68c1184d7581cb5d52245dfbf6984159404ef75b0db72594bbbe2178f8fd2a08",
"md5": "3e5e6bf8ac7b0abb0d717fa632b73b3f",
"sha256": "21b30885a63c3f4ff5b77a5d6caf008b037cb521a5f33eab445dc566f6d092cc"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp37-cp37m-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "3e5e6bf8ac7b0abb0d717fa632b73b3f",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 968018,
"upload_time": "2022-09-21T14:41:29",
"upload_time_iso_8601": "2022-09-21T14:41:29.142087Z",
"url": "https://files.pythonhosted.org/packages/68/c1/184d7581cb5d52245dfbf6984159404ef75b0db72594bbbe2178f8fd2a08/aiohttp-3.8.3-cp37-cp37m-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "73285a301244e4ec50beb77db9e80e49692c823df3eeb265e47638d1c6468313",
"md5": "df64f00187f16613a2ef3887f4fd9bfd",
"sha256": "4b0f30372cef3fdc262f33d06e7b411cd59058ce9174ef159ad938c4a34a89da"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp37-cp37m-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "df64f00187f16613a2ef3887f4fd9bfd",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 941765,
"upload_time": "2022-09-21T14:41:31",
"upload_time_iso_8601": "2022-09-21T14:41:31.314469Z",
"url": "https://files.pythonhosted.org/packages/73/28/5a301244e4ec50beb77db9e80e49692c823df3eeb265e47638d1c6468313/aiohttp-3.8.3-cp37-cp37m-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5ed5058d798b5250fc18584e6a0468f4f8d7adbacf8f6daec4ff54a88305483c",
"md5": "ca3ef624bf8b513d6602feb5b29eef6f",
"sha256": "8135fa153a20d82ffb64f70a1b5c2738684afa197839b34cc3e3c72fa88d302c"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp37-cp37m-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "ca3ef624bf8b513d6602feb5b29eef6f",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 984093,
"upload_time": "2022-09-21T14:41:33",
"upload_time_iso_8601": "2022-09-21T14:41:33.054775Z",
"url": "https://files.pythonhosted.org/packages/5e/d5/058d798b5250fc18584e6a0468f4f8d7adbacf8f6daec4ff54a88305483c/aiohttp-3.8.3-cp37-cp37m-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "78c10e1e5edf9f93f08cd654a51c4095c7b5d65b6f69e221f9764b234129f9e9",
"md5": "a2d8e666c2bdb219270fa72974c43e8d",
"sha256": "ad61a9639792fd790523ba072c0555cd6be5a0baf03a49a5dd8cfcf20d56df48"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp37-cp37m-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "a2d8e666c2bdb219270fa72974c43e8d",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 1034114,
"upload_time": "2022-09-21T14:41:34",
"upload_time_iso_8601": "2022-09-21T14:41:34.648595Z",
"url": "https://files.pythonhosted.org/packages/78/c1/0e1e5edf9f93f08cd654a51c4095c7b5d65b6f69e221f9764b234129f9e9/aiohttp-3.8.3-cp37-cp37m-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "10993550aa401629e7853868a315afe04afa6b313c372e1cb5e5175126767bb0",
"md5": "4d1d19dfa4f2e69b8ba1359590b9fff3",
"sha256": "978b046ca728073070e9abc074b6299ebf3501e8dee5e26efacb13cec2b2dea0"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp37-cp37m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "4d1d19dfa4f2e69b8ba1359590b9fff3",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 963756,
"upload_time": "2022-09-21T14:41:36",
"upload_time_iso_8601": "2022-09-21T14:41:36.161038Z",
"url": "https://files.pythonhosted.org/packages/10/99/3550aa401629e7853868a315afe04afa6b313c372e1cb5e5175126767bb0/aiohttp-3.8.3-cp37-cp37m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "616813546cbead405b8bfef6a42cbdc3013a03ed1994c3a196af7dec8de041fa",
"md5": "a95c748503489c5e99cdc9d5dac29336",
"sha256": "0d2c6d8c6872df4a6ec37d2ede71eff62395b9e337b4e18efd2177de883a5033"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "a95c748503489c5e99cdc9d5dac29336",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 306602,
"upload_time": "2022-09-21T14:41:37",
"upload_time_iso_8601": "2022-09-21T14:41:37.820685Z",
"url": "https://files.pythonhosted.org/packages/61/68/13546cbead405b8bfef6a42cbdc3013a03ed1994c3a196af7dec8de041fa/aiohttp-3.8.3-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6adb7dd37ac95945fd259b3b6c9ff1a3944129f181a6a1912dcf473df3f505e2",
"md5": "8fc1469de8570fa802f45663cf794992",
"sha256": "21d69797eb951f155026651f7e9362877334508d39c2fc37bd04ff55b2007091"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "8fc1469de8570fa802f45663cf794992",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 322054,
"upload_time": "2022-09-21T14:41:39",
"upload_time_iso_8601": "2022-09-21T14:41:39.333190Z",
"url": "https://files.pythonhosted.org/packages/6a/db/7dd37ac95945fd259b3b6c9ff1a3944129f181a6a1912dcf473df3f505e2/aiohttp-3.8.3-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "91f07636fdf8a1d5872cbc765c3ad8ad1184ddc5493b315123dbc9207dda4f65",
"md5": "3717ca13cb5ad55302866ac5adaa50e4",
"sha256": "2ca9af5f8f5812d475c5259393f52d712f6d5f0d7fdad9acdb1107dd9e3cb7eb"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "3717ca13cb5ad55302866ac5adaa50e4",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 514712,
"upload_time": "2022-09-21T14:41:40",
"upload_time_iso_8601": "2022-09-21T14:41:40.719318Z",
"url": "https://files.pythonhosted.org/packages/91/f0/7636fdf8a1d5872cbc765c3ad8ad1184ddc5493b315123dbc9207dda4f65/aiohttp-3.8.3-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c6bf2ab517add02b8571080c06caa52f707adfbb73a374a18a11a6eb0bb74491",
"md5": "5f8cc16490eb7fdb90d594a1aa904be1",
"sha256": "1d90043c1882067f1bd26196d5d2db9aa6d268def3293ed5fb317e13c9413ea4"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "5f8cc16490eb7fdb90d594a1aa904be1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 359642,
"upload_time": "2022-09-21T14:41:42",
"upload_time_iso_8601": "2022-09-21T14:41:42.716004Z",
"url": "https://files.pythonhosted.org/packages/c6/bf/2ab517add02b8571080c06caa52f707adfbb73a374a18a11a6eb0bb74491/aiohttp-3.8.3-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8b53e064a27347794661d4cc342e0fa75259a3cab1da8c3b2189accea7313cb1",
"md5": "1d2dc09e269a5cef0f59c163c7826da7",
"sha256": "d737fc67b9a970f3234754974531dc9afeea11c70791dcb7db53b0cf81b79784"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1d2dc09e269a5cef0f59c163c7826da7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 337424,
"upload_time": "2022-09-21T14:41:44",
"upload_time_iso_8601": "2022-09-21T14:41:44.208187Z",
"url": "https://files.pythonhosted.org/packages/8b/53/e064a27347794661d4cc342e0fa75259a3cab1da8c3b2189accea7313cb1/aiohttp-3.8.3-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "75762d20c873fe9d5f906147d6b3038c15af38ec70d0733970a850d8d6e0530d",
"md5": "ef3e94babc18a8deb40ad34f77408d2c",
"sha256": "ebf909ea0a3fc9596e40d55d8000702a85e27fd578ff41a5500f68f20fd32e6c"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ef3e94babc18a8deb40ad34f77408d2c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1041785,
"upload_time": "2022-09-21T14:41:46",
"upload_time_iso_8601": "2022-09-21T14:41:46.204448Z",
"url": "https://files.pythonhosted.org/packages/75/76/2d20c873fe9d5f906147d6b3038c15af38ec70d0733970a850d8d6e0530d/aiohttp-3.8.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9750ef4a442ecf77ba9207ff2db8f7a3c59ef349ee4c01df7ba6082bd64c14e5",
"md5": "fc6031532b8400c0d2d6dc40bc501a09",
"sha256": "5835f258ca9f7c455493a57ee707b76d2d9634d84d5d7f62e77be984ea80b849"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "fc6031532b8400c0d2d6dc40bc501a09",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1060877,
"upload_time": "2022-09-21T14:41:47",
"upload_time_iso_8601": "2022-09-21T14:41:47.904232Z",
"url": "https://files.pythonhosted.org/packages/97/50/ef4a442ecf77ba9207ff2db8f7a3c59ef349ee4c01df7ba6082bd64c14e5/aiohttp-3.8.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dcb310e4d1db01f2ee3f261d121a14954777bdf8c152e50de7c24a62b96df2ee",
"md5": "46e431238cfd89f7aba94f6421a0fd88",
"sha256": "da37dcfbf4b7f45d80ee386a5f81122501ec75672f475da34784196690762f4b"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "46e431238cfd89f7aba94f6421a0fd88",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1113838,
"upload_time": "2022-09-21T14:41:49",
"upload_time_iso_8601": "2022-09-21T14:41:49.796526Z",
"url": "https://files.pythonhosted.org/packages/dc/b3/10e4d1db01f2ee3f261d121a14954777bdf8c152e50de7c24a62b96df2ee/aiohttp-3.8.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "afd6248ad502c6049011e7851e1474dd0a58175895388bed15f7f67dcb9187d9",
"md5": "300aa923bbca6ea26356bafd2f36cc8a",
"sha256": "87f44875f2804bc0511a69ce44a9595d5944837a62caecc8490bbdb0e18b1342"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "300aa923bbca6ea26356bafd2f36cc8a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1038098,
"upload_time": "2022-09-21T14:41:51",
"upload_time_iso_8601": "2022-09-21T14:41:51.750988Z",
"url": "https://files.pythonhosted.org/packages/af/d6/248ad502c6049011e7851e1474dd0a58175895388bed15f7f67dcb9187d9/aiohttp-3.8.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ecee5605d20e3e3d24cc709a44e356e1a57d13734592c72f132504d3bfc38e40",
"md5": "09e2e3d51a750d6a01db356e65080fca",
"sha256": "527b3b87b24844ea7865284aabfab08eb0faf599b385b03c2aa91fc6edd6e4b6"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "09e2e3d51a750d6a01db356e65080fca",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1006395,
"upload_time": "2022-09-21T14:41:53",
"upload_time_iso_8601": "2022-09-21T14:41:53.899458Z",
"url": "https://files.pythonhosted.org/packages/ec/ee/5605d20e3e3d24cc709a44e356e1a57d13734592c72f132504d3bfc38e40/aiohttp-3.8.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "96304b624178a5d629db45aff7666af7625709f561d290b3ecc41bd9a032e8c9",
"md5": "1f4bb9e20d114f36a9d3c4621eada6cf",
"sha256": "d5ba88df9aa5e2f806650fcbeedbe4f6e8736e92fc0e73b0400538fd25a4dd96"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "1f4bb9e20d114f36a9d3c4621eada6cf",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1082471,
"upload_time": "2022-09-21T14:41:55",
"upload_time_iso_8601": "2022-09-21T14:41:55.617988Z",
"url": "https://files.pythonhosted.org/packages/96/30/4b624178a5d629db45aff7666af7625709f561d290b3ecc41bd9a032e8c9/aiohttp-3.8.3-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b5874910fcdcc9c8c36354eab795e8108ed7cef7cab2b3c41ba8d19c2e52bf1a",
"md5": "ca80d5e4abee0ca95b1db53c129be14e",
"sha256": "e7b8813be97cab8cb52b1375f41f8e6804f6507fe4660152e8ca5c48f0436017"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "ca80d5e4abee0ca95b1db53c129be14e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1050516,
"upload_time": "2022-09-21T14:41:57",
"upload_time_iso_8601": "2022-09-21T14:41:57.664849Z",
"url": "https://files.pythonhosted.org/packages/b5/87/4910fcdcc9c8c36354eab795e8108ed7cef7cab2b3c41ba8d19c2e52bf1a/aiohttp-3.8.3-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8b5f6f39c3d8b2e6cb1fb898ed46faa41a1a2fca47496561d6291b95a7dbf1ad",
"md5": "82a68200a743bdf7dc118378c51341d9",
"sha256": "2dea10edfa1a54098703cb7acaa665c07b4e7568472a47f4e64e6319d3821ccf"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp38-cp38-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "82a68200a743bdf7dc118378c51341d9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1105976,
"upload_time": "2022-09-21T14:41:59",
"upload_time_iso_8601": "2022-09-21T14:41:59.445061Z",
"url": "https://files.pythonhosted.org/packages/8b/5f/6f39c3d8b2e6cb1fb898ed46faa41a1a2fca47496561d6291b95a7dbf1ad/aiohttp-3.8.3-cp38-cp38-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e6b359b9b10bb83f319fceab2a8b78aea96ae4a0403aced2aab92f28bff7eea8",
"md5": "581c9c7fcfc1039f284a43f49edbbbe0",
"sha256": "713d22cd9643ba9025d33c4af43943c7a1eb8547729228de18d3e02e278472b6"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp38-cp38-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "581c9c7fcfc1039f284a43f49edbbbe0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1155012,
"upload_time": "2022-09-21T14:42:01",
"upload_time_iso_8601": "2022-09-21T14:42:01.863180Z",
"url": "https://files.pythonhosted.org/packages/e6/b3/59b9b10bb83f319fceab2a8b78aea96ae4a0403aced2aab92f28bff7eea8/aiohttp-3.8.3-cp38-cp38-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b4292efc33e17287c9d3ef75d556f44b14a989f3d5a692dbad21656e6232a202",
"md5": "13a985e54ca3035d2e3d72bcf67b66a0",
"sha256": "2d252771fc85e0cf8da0b823157962d70639e63cb9b578b1dec9868dd1f4f937"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "13a985e54ca3035d2e3d72bcf67b66a0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1078983,
"upload_time": "2022-09-21T14:42:03",
"upload_time_iso_8601": "2022-09-21T14:42:03.992931Z",
"url": "https://files.pythonhosted.org/packages/b4/29/2efc33e17287c9d3ef75d556f44b14a989f3d5a692dbad21656e6232a202/aiohttp-3.8.3-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f4853424dc95ec388e70a430138a0baa7d5271a27721ae77c209678c238f0fb3",
"md5": "409adb4a176124563ae06e582cd8c47f",
"sha256": "66bd5f950344fb2b3dbdd421aaa4e84f4411a1a13fca3aeb2bcbe667f80c9f76"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "409adb4a176124563ae06e582cd8c47f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 307989,
"upload_time": "2022-09-21T14:42:05",
"upload_time_iso_8601": "2022-09-21T14:42:05.571174Z",
"url": "https://files.pythonhosted.org/packages/f4/85/3424dc95ec388e70a430138a0baa7d5271a27721ae77c209678c238f0fb3/aiohttp-3.8.3-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b8ba769b1307c2f86f3d6f486f7683a94aa298e5ba4cff974a663b8cd0388985",
"md5": "9b3dc4dd4ec2f07dfbd83a4d3a8894b6",
"sha256": "84b14f36e85295fe69c6b9789b51a0903b774046d5f7df538176516c3e422446"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "9b3dc4dd4ec2f07dfbd83a4d3a8894b6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 324324,
"upload_time": "2022-09-21T14:42:07",
"upload_time_iso_8601": "2022-09-21T14:42:07.053460Z",
"url": "https://files.pythonhosted.org/packages/b8/ba/769b1307c2f86f3d6f486f7683a94aa298e5ba4cff974a663b8cd0388985/aiohttp-3.8.3-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f85953c6bd97632fc54787481a23d5c38241a57db69fc7ccc7bfd42e9fcbecc3",
"md5": "48955205dadf4082c700557c37563609",
"sha256": "16c121ba0b1ec2b44b73e3a8a171c4f999b33929cd2397124a8c7fcfc8cd9e06"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "48955205dadf4082c700557c37563609",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 516091,
"upload_time": "2022-09-21T14:42:08",
"upload_time_iso_8601": "2022-09-21T14:42:08.563387Z",
"url": "https://files.pythonhosted.org/packages/f8/59/53c6bd97632fc54787481a23d5c38241a57db69fc7ccc7bfd42e9fcbecc3/aiohttp-3.8.3-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6dc41b14d71ae94268aa80cb0745bf8727e24bce544154fa8140eb4dbe0a75db",
"md5": "f85f8203545c13f50f65923c19b1722b",
"sha256": "8d6aaa4e7155afaf994d7924eb290abbe81a6905b303d8cb61310a2aba1c68ba"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "f85f8203545c13f50f65923c19b1722b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 360700,
"upload_time": "2022-09-21T14:42:10",
"upload_time_iso_8601": "2022-09-21T14:42:10.665327Z",
"url": "https://files.pythonhosted.org/packages/6d/c4/1b14d71ae94268aa80cb0745bf8727e24bce544154fa8140eb4dbe0a75db/aiohttp-3.8.3-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "13fa317a9f64b47346be0a936837a23f31fb005abfa768dcc15a2974f5bd73fd",
"md5": "92878ff1929d2d61956efe86ea6d6387",
"sha256": "43046a319664a04b146f81b40e1545d4c8ac7b7dd04c47e40bf09f65f2437346"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "92878ff1929d2d61956efe86ea6d6387",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 337825,
"upload_time": "2022-09-21T14:42:12",
"upload_time_iso_8601": "2022-09-21T14:42:12.247455Z",
"url": "https://files.pythonhosted.org/packages/13/fa/317a9f64b47346be0a936837a23f31fb005abfa768dcc15a2974f5bd73fd/aiohttp-3.8.3-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "48c7332f1e74a268b9bee1cda1fa902197b6947ca4631150ea12cb9d4d7c8109",
"md5": "ecb5845b215c0d528e3e7d5112eb7ae4",
"sha256": "599418aaaf88a6d02a8c515e656f6faf3d10618d3dd95866eb4436520096c84b"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ecb5845b215c0d528e3e7d5112eb7ae4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1027548,
"upload_time": "2022-09-21T14:42:14",
"upload_time_iso_8601": "2022-09-21T14:42:14.496924Z",
"url": "https://files.pythonhosted.org/packages/48/c7/332f1e74a268b9bee1cda1fa902197b6947ca4631150ea12cb9d4d7c8109/aiohttp-3.8.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0329f249982899674802226f29bdf63ffa126b77e5080cf3404e649f3d2364aa",
"md5": "521b4188670fd4f995a351e5ffeac5f1",
"sha256": "92a2964319d359f494f16011e23434f6f8ef0434acd3cf154a6b7bec511e2fb7"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "521b4188670fd4f995a351e5ffeac5f1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1046194,
"upload_time": "2022-09-21T14:42:16",
"upload_time_iso_8601": "2022-09-21T14:42:16.500093Z",
"url": "https://files.pythonhosted.org/packages/03/29/f249982899674802226f29bdf63ffa126b77e5080cf3404e649f3d2364aa/aiohttp-3.8.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c6f5f71ee6f6dc2c924639d11b0f82dd3fde8f2895129eb617d45cc2724ab8c1",
"md5": "abca8910408b08b5caac201ae17ac2d0",
"sha256": "73a4131962e6d91109bca6536416aa067cf6c4efb871975df734f8d2fd821b37"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "abca8910408b08b5caac201ae17ac2d0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1102258,
"upload_time": "2022-09-21T14:42:18",
"upload_time_iso_8601": "2022-09-21T14:42:18.587990Z",
"url": "https://files.pythonhosted.org/packages/c6/f5/f71ee6f6dc2c924639d11b0f82dd3fde8f2895129eb617d45cc2724ab8c1/aiohttp-3.8.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "36a1ae1eee1ba03c886bd21e3e25cd6b288cd54032f7f0f48754ad33a4d523b9",
"md5": "e8be2dba48f47bb3edf6247c3ebdb72b",
"sha256": "598adde339d2cf7d67beaccda3f2ce7c57b3b412702f29c946708f69cf8222aa"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e8be2dba48f47bb3edf6247c3ebdb72b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1021951,
"upload_time": "2022-09-21T14:42:20",
"upload_time_iso_8601": "2022-09-21T14:42:20.633046Z",
"url": "https://files.pythonhosted.org/packages/36/a1/ae1eee1ba03c886bd21e3e25cd6b288cd54032f7f0f48754ad33a4d523b9/aiohttp-3.8.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5726767aaea07a80b080ef330a9f9ca1b71cdfbbac0da59a3c9effbc7ee6749a",
"md5": "6f736b548314f53130ada088de8a5ea7",
"sha256": "75880ed07be39beff1881d81e4a907cafb802f306efd6d2d15f2b3c69935f6fb"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "6f736b548314f53130ada088de8a5ea7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 990313,
"upload_time": "2022-09-21T14:42:23",
"upload_time_iso_8601": "2022-09-21T14:42:23.285641Z",
"url": "https://files.pythonhosted.org/packages/57/26/767aaea07a80b080ef330a9f9ca1b71cdfbbac0da59a3c9effbc7ee6749a/aiohttp-3.8.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bcd871ccd190f7c45b035bffe66d76dac2898c1fdad7d823d992deeb3493dc6b",
"md5": "544927784e2b4cf097657c0c670d0dc7",
"sha256": "a0239da9fbafd9ff82fd67c16704a7d1bccf0d107a300e790587ad05547681c8"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "544927784e2b4cf097657c0c670d0dc7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1040215,
"upload_time": "2022-09-21T14:42:25",
"upload_time_iso_8601": "2022-09-21T14:42:25.459643Z",
"url": "https://files.pythonhosted.org/packages/bc/d8/71ccd190f7c45b035bffe66d76dac2898c1fdad7d823d992deeb3493dc6b/aiohttp-3.8.3-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e35ccbcfb81e556218b0a51caa1150862f7c5d8ca130146383827aae8eda8a4f",
"md5": "758988c20669cfa66a0ba3b73b6c6ec6",
"sha256": "4e3a23ec214e95c9fe85a58470b660efe6534b83e6cbe38b3ed52b053d7cb6ad"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "758988c20669cfa66a0ba3b73b6c6ec6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1002700,
"upload_time": "2022-09-21T14:42:27",
"upload_time_iso_8601": "2022-09-21T14:42:27.144760Z",
"url": "https://files.pythonhosted.org/packages/e3/5c/cbcfb81e556218b0a51caa1150862f7c5d8ca130146383827aae8eda8a4f/aiohttp-3.8.3-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ab76ff9c439b1cbb5d9586a7a3b84c0ea41df235c18fd236509bc6556c640b59",
"md5": "77869575c54966c51b8f2b1f2423817b",
"sha256": "47841407cc89a4b80b0c52276f3cc8138bbbfba4b179ee3acbd7d77ae33f7ac4"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp39-cp39-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "77869575c54966c51b8f2b1f2423817b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1056729,
"upload_time": "2022-09-21T14:42:28",
"upload_time_iso_8601": "2022-09-21T14:42:28.802834Z",
"url": "https://files.pythonhosted.org/packages/ab/76/ff9c439b1cbb5d9586a7a3b84c0ea41df235c18fd236509bc6556c640b59/aiohttp-3.8.3-cp39-cp39-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a290951a15ff7c1f0378cdd32d92d2cd6caef0845d64c8ef2dbcd4357efa6f8a",
"md5": "d078bc374fab2bcaf2ec093802bc0dd5",
"sha256": "54d107c89a3ebcd13228278d68f1436d3f33f2dd2af5415e3feaeb1156e1a62c"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp39-cp39-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "d078bc374fab2bcaf2ec093802bc0dd5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1108597,
"upload_time": "2022-09-21T14:42:30",
"upload_time_iso_8601": "2022-09-21T14:42:30.450902Z",
"url": "https://files.pythonhosted.org/packages/a2/90/951a15ff7c1f0378cdd32d92d2cd6caef0845d64c8ef2dbcd4357efa6f8a/aiohttp-3.8.3-cp39-cp39-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cafb0667a5875d3aa334a69c0fe154ced4a3870fa913256d026b0257370b88bd",
"md5": "ba1c241e0c05c5b2c01b86cc4b073d08",
"sha256": "c37c5cce780349d4d51739ae682dec63573847a2a8dcb44381b174c3d9c8d403"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "ba1c241e0c05c5b2c01b86cc4b073d08",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1033295,
"upload_time": "2022-09-21T14:42:32",
"upload_time_iso_8601": "2022-09-21T14:42:32.032691Z",
"url": "https://files.pythonhosted.org/packages/ca/fb/0667a5875d3aa334a69c0fe154ced4a3870fa913256d026b0257370b88bd/aiohttp-3.8.3-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9e643cb1e22630d9b5dc3bf0ed3b46364e99d6577fbb7de4ee982d3f9e4521df",
"md5": "23d6b7aac120a190b03ce5dcd3a02759",
"sha256": "f178d2aadf0166be4df834c4953da2d7eef24719e8aec9a65289483eeea9d618"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "23d6b7aac120a190b03ce5dcd3a02759",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 307278,
"upload_time": "2022-09-21T14:42:33",
"upload_time_iso_8601": "2022-09-21T14:42:33.531119Z",
"url": "https://files.pythonhosted.org/packages/9e/64/3cb1e22630d9b5dc3bf0ed3b46364e99d6577fbb7de4ee982d3f9e4521df/aiohttp-3.8.3-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "908f82fa881601d9f265503361c6cddb98b9687cbfa4442db2537577e6aa7d87",
"md5": "e7b7cbecb81874b4aaf04c28ffca6413",
"sha256": "88e5be56c231981428f4f506c68b6a46fa25c4123a2e86d156c58a8369d31ab7"
},
"downloads": -1,
"filename": "aiohttp-3.8.3-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "e7b7cbecb81874b4aaf04c28ffca6413",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 323521,
"upload_time": "2022-09-21T14:42:35",
"upload_time_iso_8601": "2022-09-21T14:42:35.272600Z",
"url": "https://files.pythonhosted.org/packages/90/8f/82fa881601d9f265503361c6cddb98b9687cbfa4442db2537577e6aa7d87/aiohttp-3.8.3-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ff4f62d9859b7d4e6dc32feda67815c5f5ab4421e6909e48cbc970b6a40d60b7",
"md5": "642653db642be1508e50fcdeafe0f928",
"sha256": "3828fb41b7203176b82fe5d699e0d845435f2374750a44b480ea6b930f6be269"
},
"downloads": -1,
"filename": "aiohttp-3.8.3.tar.gz",
"has_sig": false,
"md5_digest": "642653db642be1508e50fcdeafe0f928",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 7337480,
"upload_time": "2022-09-21T14:42:37",
"upload_time_iso_8601": "2022-09-21T14:42:37.316576Z",
"url": "https://files.pythonhosted.org/packages/ff/4f/62d9859b7d4e6dc32feda67815c5f5ab4421e6909e48cbc970b6a40d60b7/aiohttp-3.8.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.8.4": [
{
"comment_text": "",
"digests": {
"blake2b_256": "ed1843720f71f5496544e69f8723534d8b5fa6de8b1ad2f64a5d7e797c4ee6e7",
"md5": "403837d7cc9625c79b09595bea9b0272",
"sha256": "5ce45967538fb747370308d3145aa68a074bdecb4f3a300869590f725ced69c1"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "403837d7cc9625c79b09595bea9b0272",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 512619,
"upload_time": "2023-02-12T19:06:51",
"upload_time_iso_8601": "2023-02-12T19:06:51.191161Z",
"url": "https://files.pythonhosted.org/packages/ed/18/43720f71f5496544e69f8723534d8b5fa6de8b1ad2f64a5d7e797c4ee6e7/aiohttp-3.8.4-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8a921ce3215bcde9cb1da929bf78742269ed2371e5c22190e2886df4bc0251ca",
"md5": "5641ce329cf6692b0f70034380e12d4e",
"sha256": "b744c33b6f14ca26b7544e8d8aadff6b765a80ad6164fb1a430bbadd593dfb1a"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "5641ce329cf6692b0f70034380e12d4e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 358131,
"upload_time": "2023-02-12T19:06:53",
"upload_time_iso_8601": "2023-02-12T19:06:53.124054Z",
"url": "https://files.pythonhosted.org/packages/8a/92/1ce3215bcde9cb1da929bf78742269ed2371e5c22190e2886df4bc0251ca/aiohttp-3.8.4-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bf9cf2fc160f21fd3ea98f00da1f285bb6b24c53863ee30e67901f92b8a8f6c6",
"md5": "d4f71a294f7359708f20331cf5de7615",
"sha256": "1a45865451439eb320784918617ba54b7a377e3501fb70402ab84d38c2cd891b"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d4f71a294f7359708f20331cf5de7615",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 336858,
"upload_time": "2023-02-12T19:06:54",
"upload_time_iso_8601": "2023-02-12T19:06:54.533880Z",
"url": "https://files.pythonhosted.org/packages/bf/9c/f2fc160f21fd3ea98f00da1f285bb6b24c53863ee30e67901f92b8a8f6c6/aiohttp-3.8.4-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6b3368ba7406db6ea62f34cfacdb86eecbef1e3fc81f5f8335f0c8e11157ddbc",
"md5": "783d616b716e2b06c24b48791651885d",
"sha256": "a86d42d7cba1cec432d47ab13b6637bee393a10f664c425ea7b305d1301ca1a3"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "783d616b716e2b06c24b48791651885d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1004069,
"upload_time": "2023-02-12T19:06:56",
"upload_time_iso_8601": "2023-02-12T19:06:56.275799Z",
"url": "https://files.pythonhosted.org/packages/6b/33/68ba7406db6ea62f34cfacdb86eecbef1e3fc81f5f8335f0c8e11157ddbc/aiohttp-3.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c7b8e886ff5e85698200d8b9667908a6f0e0439dc4fd165c4875b6efbbfeedd1",
"md5": "00f7b59bab3e0e3c09094a54b7e27354",
"sha256": "ee3c36df21b5714d49fc4580247947aa64bcbe2939d1b77b4c8dcb8f6c9faecc"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "00f7b59bab3e0e3c09094a54b7e27354",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1019148,
"upload_time": "2023-02-12T19:06:58",
"upload_time_iso_8601": "2023-02-12T19:06:58.145562Z",
"url": "https://files.pythonhosted.org/packages/c7/b8/e886ff5e85698200d8b9667908a6f0e0439dc4fd165c4875b6efbbfeedd1/aiohttp-3.8.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c96ec68d4618e2f15248deddc992ce35d979b52df9a9b8ecbc00ae9ed83c6316",
"md5": "96d899af2326948c3c9b3782e7f85d4b",
"sha256": "176a64b24c0935869d5bbc4c96e82f89f643bcdf08ec947701b9dbb3c956b7dd"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "96d899af2326948c3c9b3782e7f85d4b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1073573,
"upload_time": "2023-02-12T19:06:59",
"upload_time_iso_8601": "2023-02-12T19:06:59.870332Z",
"url": "https://files.pythonhosted.org/packages/c9/6e/c68d4618e2f15248deddc992ce35d979b52df9a9b8ecbc00ae9ed83c6316/aiohttp-3.8.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "819790debed02e5be15d4e63fb96ba930e35b66d4e518fa7065dd442345a448b",
"md5": "30c402dcd9261a8a74d9ea073b711f37",
"sha256": "c844fd628851c0bc309f3c801b3a3d58ce430b2ce5b359cd918a5a76d0b20cb5"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "30c402dcd9261a8a74d9ea073b711f37",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1000618,
"upload_time": "2023-02-12T19:07:01",
"upload_time_iso_8601": "2023-02-12T19:07:01.120327Z",
"url": "https://files.pythonhosted.org/packages/81/97/90debed02e5be15d4e63fb96ba930e35b66d4e518fa7065dd442345a448b/aiohttp-3.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b1f281258cc72112956bca0bcf9f539cd6f503e1a631f5bf9307ae3cf21e05a5",
"md5": "529cc16644f0e90bbd3925e28350a34a",
"sha256": "5393fb786a9e23e4799fec788e7e735de18052f83682ce2dfcabaf1c00c2c08e"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "529cc16644f0e90bbd3925e28350a34a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 971166,
"upload_time": "2023-02-12T19:07:03",
"upload_time_iso_8601": "2023-02-12T19:07:03.073654Z",
"url": "https://files.pythonhosted.org/packages/b1/f2/81258cc72112956bca0bcf9f539cd6f503e1a631f5bf9307ae3cf21e05a5/aiohttp-3.8.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3a4257dc93de564725208a1ea729a717f2608f0091a11e34ecd2e23863b9ef35",
"md5": "de0af02e514f64d9b5038da3e92c5f3d",
"sha256": "e4b09863aae0dc965c3ef36500d891a3ff495a2ea9ae9171e4519963c12ceefd"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "de0af02e514f64d9b5038da3e92c5f3d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1017966,
"upload_time": "2023-02-12T19:07:04",
"upload_time_iso_8601": "2023-02-12T19:07:04.461569Z",
"url": "https://files.pythonhosted.org/packages/3a/42/57dc93de564725208a1ea729a717f2608f0091a11e34ecd2e23863b9ef35/aiohttp-3.8.4-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "885f4fec6a1238fda86716374910aa5a1a4953eca4cf30b582c94efce9058729",
"md5": "f98ca11a296ce7d540647db5bb0fea94",
"sha256": "adfbc22e87365a6e564c804c58fc44ff7727deea782d175c33602737b7feadb6"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "f98ca11a296ce7d540647db5bb0fea94",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 985792,
"upload_time": "2023-02-12T19:07:05",
"upload_time_iso_8601": "2023-02-12T19:07:05.766316Z",
"url": "https://files.pythonhosted.org/packages/88/5f/4fec6a1238fda86716374910aa5a1a4953eca4cf30b582c94efce9058729/aiohttp-3.8.4-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "25b44373590c8bd438ccca4c916bb6a65dc3366e4f030a17359f4adb0ff605ce",
"md5": "c0292093aacc9c32f2a1a3210f7c2143",
"sha256": "147ae376f14b55f4f3c2b118b95be50a369b89b38a971e80a17c3fd623f280c9"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "c0292093aacc9c32f2a1a3210f7c2143",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1036137,
"upload_time": "2023-02-12T19:07:07",
"upload_time_iso_8601": "2023-02-12T19:07:07.563473Z",
"url": "https://files.pythonhosted.org/packages/25/b4/4373590c8bd438ccca4c916bb6a65dc3366e4f030a17359f4adb0ff605ce/aiohttp-3.8.4-cp310-cp310-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5cc526cd1522e373484b1648da913be6f084ce4d7473ecebe503533a3bb85536",
"md5": "631e79e8a993bab09e940b6f0c0209d5",
"sha256": "eafb3e874816ebe2a92f5e155f17260034c8c341dad1df25672fb710627c6949"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "631e79e8a993bab09e940b6f0c0209d5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1084638,
"upload_time": "2023-02-12T19:07:08",
"upload_time_iso_8601": "2023-02-12T19:07:08.896626Z",
"url": "https://files.pythonhosted.org/packages/5c/c5/26cd1522e373484b1648da913be6f084ce4d7473ecebe503533a3bb85536/aiohttp-3.8.4-cp310-cp310-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "296ea15e39b2ae4305336bfc00540bde991fff73c60e7e8390b9e82a6ec485f2",
"md5": "56c6530423d2ab5fab00040619f25ccb",
"sha256": "c6cc15d58053c76eacac5fa9152d7d84b8d67b3fde92709195cb984cfb3475ea"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "56c6530423d2ab5fab00040619f25ccb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1013223,
"upload_time": "2023-02-12T19:07:10",
"upload_time_iso_8601": "2023-02-12T19:07:10.806036Z",
"url": "https://files.pythonhosted.org/packages/29/6e/a15e39b2ae4305336bfc00540bde991fff73c60e7e8390b9e82a6ec485f2/aiohttp-3.8.4-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "66901c0ff493317bae426c1aec5da9cbcd9baea4a8d526e4beae892896aefa64",
"md5": "d5159cdcfde537fc591ce6a203bfb39a",
"sha256": "59f029a5f6e2d679296db7bee982bb3d20c088e52a2977e3175faf31d6fb75d1"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "d5159cdcfde537fc591ce6a203bfb39a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 304642,
"upload_time": "2023-02-12T19:07:12",
"upload_time_iso_8601": "2023-02-12T19:07:12.391449Z",
"url": "https://files.pythonhosted.org/packages/66/90/1c0ff493317bae426c1aec5da9cbcd9baea4a8d526e4beae892896aefa64/aiohttp-3.8.4-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8ecdf8f8d801fa5c0cd1d6259fa71c9394437c5c14f8936aeff6f6c3233fd596",
"md5": "921cf1f8e52c186da5a4b7fec009f1f7",
"sha256": "fe7ba4a51f33ab275515f66b0a236bcde4fb5561498fe8f898d4e549b2e4509f"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "921cf1f8e52c186da5a4b7fec009f1f7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 319844,
"upload_time": "2023-02-12T19:07:13",
"upload_time_iso_8601": "2023-02-12T19:07:13.615911Z",
"url": "https://files.pythonhosted.org/packages/8e/cd/f8f8d801fa5c0cd1d6259fa71c9394437c5c14f8936aeff6f6c3233fd596/aiohttp-3.8.4-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "841886e01032e305637d991b23b37bb39170ebaf8b8c4d0ea458b75f4302ed86",
"md5": "662b945cc9eb94fc14ba6d525d88e32e",
"sha256": "3d8ef1a630519a26d6760bc695842579cb09e373c5f227a21b67dc3eb16cfea4"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "662b945cc9eb94fc14ba6d525d88e32e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 505614,
"upload_time": "2023-02-12T19:07:15",
"upload_time_iso_8601": "2023-02-12T19:07:15.055317Z",
"url": "https://files.pythonhosted.org/packages/84/18/86e01032e305637d991b23b37bb39170ebaf8b8c4d0ea458b75f4302ed86/aiohttp-3.8.4-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "917199cd9ebe197cbebf46ba1f00573120802ace2869e1f63ff0b00acc5b4982",
"md5": "25664b84fc8d6fa8936c0cfe98b0de99",
"sha256": "5b3f2e06a512e94722886c0827bee9807c86a9f698fac6b3aee841fab49bbfb4"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "25664b84fc8d6fa8936c0cfe98b0de99",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 355149,
"upload_time": "2023-02-12T19:07:16",
"upload_time_iso_8601": "2023-02-12T19:07:16.667745Z",
"url": "https://files.pythonhosted.org/packages/91/71/99cd9ebe197cbebf46ba1f00573120802ace2869e1f63ff0b00acc5b4982/aiohttp-3.8.4-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "08303dafa445e7f6358aa1c5ffde987ca4eba6bd7b9038e07ec01732933312fb",
"md5": "e6384dc5e71c42702175682103e79f01",
"sha256": "3a80464982d41b1fbfe3154e440ba4904b71c1a53e9cd584098cd41efdb188ef"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e6384dc5e71c42702175682103e79f01",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 332872,
"upload_time": "2023-02-12T19:07:17",
"upload_time_iso_8601": "2023-02-12T19:07:17.856177Z",
"url": "https://files.pythonhosted.org/packages/08/30/3dafa445e7f6358aa1c5ffde987ca4eba6bd7b9038e07ec01732933312fb/aiohttp-3.8.4-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "88412a8453255ebb0864d81745d24bee03fff71b7b76ed2f846126a6f5930ee4",
"md5": "6542acb317fab77c0192113bc0885346",
"sha256": "8b631e26df63e52f7cce0cce6507b7a7f1bc9b0c501fcde69742130b32e8782f"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6542acb317fab77c0192113bc0885346",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1035384,
"upload_time": "2023-02-12T19:07:19",
"upload_time_iso_8601": "2023-02-12T19:07:19.151365Z",
"url": "https://files.pythonhosted.org/packages/88/41/2a8453255ebb0864d81745d24bee03fff71b7b76ed2f846126a6f5930ee4/aiohttp-3.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fc51962b938a296eaf08d1cfa80ad5d42670b15aa868f897c0e71ea1cf9d1f0e",
"md5": "a9bf969422307e5b5cf9962fe625c2f8",
"sha256": "3f43255086fe25e36fd5ed8f2ee47477408a73ef00e804cb2b5cba4bf2ac7f5e"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "a9bf969422307e5b5cf9962fe625c2f8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1045448,
"upload_time": "2023-02-12T19:07:20",
"upload_time_iso_8601": "2023-02-12T19:07:20.445630Z",
"url": "https://files.pythonhosted.org/packages/fc/51/962b938a296eaf08d1cfa80ad5d42670b15aa868f897c0e71ea1cf9d1f0e/aiohttp-3.8.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "33a7c2304859f11531f6be5c464e3d8cdd85cbc196f0754e0c450ef76c297c7c",
"md5": "bbee20f0a56c54417691299aa051f453",
"sha256": "4d347a172f866cd1d93126d9b239fcbe682acb39b48ee0873c73c933dd23bd0f"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "bbee20f0a56c54417691299aa051f453",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1102557,
"upload_time": "2023-02-12T19:07:21",
"upload_time_iso_8601": "2023-02-12T19:07:21.732367Z",
"url": "https://files.pythonhosted.org/packages/33/a7/c2304859f11531f6be5c464e3d8cdd85cbc196f0754e0c450ef76c297c7c/aiohttp-3.8.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a0e4a383cb4b68324b39f7d95cdfebdc8a66a88201c3646a87a00140d778c5ba",
"md5": "f814a05a3755551f9d4b1fc6076ada24",
"sha256": "a3fec6a4cb5551721cdd70473eb009d90935b4063acc5f40905d40ecfea23e05"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f814a05a3755551f9d4b1fc6076ada24",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1026820,
"upload_time": "2023-02-12T19:07:23",
"upload_time_iso_8601": "2023-02-12T19:07:23.138388Z",
"url": "https://files.pythonhosted.org/packages/a0/e4/a383cb4b68324b39f7d95cdfebdc8a66a88201c3646a87a00140d778c5ba/aiohttp-3.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6828e46516d7ca64146e50e595e0364530e4080da0d9f7640b43b687836ebd2f",
"md5": "cf68828925282866244a5330d777ef20",
"sha256": "80a37fe8f7c1e6ce8f2d9c411676e4bc633a8462844e38f46156d07a7d401654"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "cf68828925282866244a5330d777ef20",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 985493,
"upload_time": "2023-02-12T19:07:24",
"upload_time_iso_8601": "2023-02-12T19:07:24.449306Z",
"url": "https://files.pythonhosted.org/packages/68/28/e46516d7ca64146e50e595e0364530e4080da0d9f7640b43b687836ebd2f/aiohttp-3.8.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e64aad8fde32ba6bab15c15eaf770f10a10d0bfe8dd575fc96981ad1b615f509",
"md5": "7ef8642ed5da2da4ff68464aa69deb71",
"sha256": "d1e6a862b76f34395a985b3cd39a0d949ca80a70b6ebdea37d3ab39ceea6698a"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "7ef8642ed5da2da4ff68464aa69deb71",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1046399,
"upload_time": "2023-02-12T19:07:25",
"upload_time_iso_8601": "2023-02-12T19:07:25.713751Z",
"url": "https://files.pythonhosted.org/packages/e6/4a/ad8fde32ba6bab15c15eaf770f10a10d0bfe8dd575fc96981ad1b615f509/aiohttp-3.8.4-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d9b85225fbcca70348708eaf939d6821f21cbbfa12290d6314b02608a94cc38c",
"md5": "a623960da300b3d83d4bb1f83f47e597",
"sha256": "cd468460eefef601ece4428d3cf4562459157c0f6523db89365202c31b6daebb"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "a623960da300b3d83d4bb1f83f47e597",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1004400,
"upload_time": "2023-02-12T19:07:26",
"upload_time_iso_8601": "2023-02-12T19:07:26.967559Z",
"url": "https://files.pythonhosted.org/packages/d9/b8/5225fbcca70348708eaf939d6821f21cbbfa12290d6314b02608a94cc38c/aiohttp-3.8.4-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ab9d3bdb23a925d7ba67acc8a6158191fe8874b1dda6745bb67ee40f493480e4",
"md5": "07216637b49a252b0a804cfc756a50b9",
"sha256": "618c901dd3aad4ace71dfa0f5e82e88b46ef57e3239fc7027773cb6d4ed53531"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "07216637b49a252b0a804cfc756a50b9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1065370,
"upload_time": "2023-02-12T19:07:28",
"upload_time_iso_8601": "2023-02-12T19:07:28.259204Z",
"url": "https://files.pythonhosted.org/packages/ab/9d/3bdb23a925d7ba67acc8a6158191fe8874b1dda6745bb67ee40f493480e4/aiohttp-3.8.4-cp311-cp311-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8a06be76e45900b729964a595246b1a9cd7b7d22ca015203b4b74847b4424ee9",
"md5": "ede2a1833835f86f03ad8b66b2989ae8",
"sha256": "652b1bff4f15f6287550b4670546a2947f2a4575b6c6dff7760eafb22eacbf0b"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "ede2a1833835f86f03ad8b66b2989ae8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1112366,
"upload_time": "2023-02-12T19:07:30",
"upload_time_iso_8601": "2023-02-12T19:07:30.343770Z",
"url": "https://files.pythonhosted.org/packages/8a/06/be76e45900b729964a595246b1a9cd7b7d22ca015203b4b74847b4424ee9/aiohttp-3.8.4-cp311-cp311-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "404d49cfd9cd450196601facd6f1f6ea551856dcd41b2061851c06c66885cca2",
"md5": "b41b1e5018273eeaa256eec9b50bfe54",
"sha256": "80575ba9377c5171407a06d0196b2310b679dc752d02a1fcaa2bc20b235dbf24"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "b41b1e5018273eeaa256eec9b50bfe54",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1038406,
"upload_time": "2023-02-12T19:07:31",
"upload_time_iso_8601": "2023-02-12T19:07:31.686761Z",
"url": "https://files.pythonhosted.org/packages/40/4d/49cfd9cd450196601facd6f1f6ea551856dcd41b2061851c06c66885cca2/aiohttp-3.8.4-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c86d96781308f03ad27d849524053f63285cd53dc178b9018e8db148ed46a8c6",
"md5": "58488a82761e396d7d65e0929158f980",
"sha256": "bbcf1a76cf6f6dacf2c7f4d2ebd411438c275faa1dc0c68e46eb84eebd05dd7d"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "58488a82761e396d7d65e0929158f980",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 304029,
"upload_time": "2023-02-12T19:07:33",
"upload_time_iso_8601": "2023-02-12T19:07:33.032913Z",
"url": "https://files.pythonhosted.org/packages/c8/6d/96781308f03ad27d849524053f63285cd53dc178b9018e8db148ed46a8c6/aiohttp-3.8.4-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c5226bd9f9a90807ef11e4c4a3ec19099e24f2b6f4040ee568f71ed0e5fdb6d1",
"md5": "fa4f386809ed12064e58ea693eef148d",
"sha256": "6e74dd54f7239fcffe07913ff8b964e28b712f09846e20de78676ce2a3dc0bfc"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "fa4f386809ed12064e58ea693eef148d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 317232,
"upload_time": "2023-02-12T19:07:34",
"upload_time_iso_8601": "2023-02-12T19:07:34.790217Z",
"url": "https://files.pythonhosted.org/packages/c5/22/6bd9f9a90807ef11e4c4a3ec19099e24f2b6f4040ee568f71ed0e5fdb6d1/aiohttp-3.8.4-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8f38fd5ae9ce7764efce0ffeaa23db2e29d7aacd1fea69ec9959a3a6bbd07541",
"md5": "c1e9a19a7b16cda5b9581bdfd9a45177",
"sha256": "880e15bb6dad90549b43f796b391cfffd7af373f4646784795e20d92606b7a51"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp36-cp36m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "c1e9a19a7b16cda5b9581bdfd9a45177",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 355228,
"upload_time": "2023-02-12T19:07:36",
"upload_time_iso_8601": "2023-02-12T19:07:36.607489Z",
"url": "https://files.pythonhosted.org/packages/8f/38/fd5ae9ce7764efce0ffeaa23db2e29d7aacd1fea69ec9959a3a6bbd07541/aiohttp-3.8.4-cp36-cp36m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "823d47224dfbe502978773d2cbfc683df6d94283a38c0079fa737165b49dbb2c",
"md5": "8d5d34d984198772d333c5080e999882",
"sha256": "bb96fa6b56bb536c42d6a4a87dfca570ff8e52de2d63cabebfd6fb67049c34b6"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8d5d34d984198772d333c5080e999882",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 951968,
"upload_time": "2023-02-12T19:07:38",
"upload_time_iso_8601": "2023-02-12T19:07:38.111402Z",
"url": "https://files.pythonhosted.org/packages/82/3d/47224dfbe502978773d2cbfc683df6d94283a38c0079fa737165b49dbb2c/aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8a216690f576bd0375ddb6418c6215b757cf65c16db727aef40efa5b65dd4f35",
"md5": "6e8c0150ad757b0f01f3001e9cc79910",
"sha256": "4a6cadebe132e90cefa77e45f2d2f1a4b2ce5c6b1bfc1656c1ddafcfe4ba8131"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "6e8c0150ad757b0f01f3001e9cc79910",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 965775,
"upload_time": "2023-02-12T19:07:39",
"upload_time_iso_8601": "2023-02-12T19:07:39.700838Z",
"url": "https://files.pythonhosted.org/packages/8a/21/6690f576bd0375ddb6418c6215b757cf65c16db727aef40efa5b65dd4f35/aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5278a952a0d581d85418ffe9d4a31957968c92c9b94fb7efa57dc40d3d85e1e7",
"md5": "3f8422759dc239f51f922a2ce492e8fc",
"sha256": "f352b62b45dff37b55ddd7b9c0c8672c4dd2eb9c0f9c11d395075a84e2c40f75"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "3f8422759dc239f51f922a2ce492e8fc",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 1022928,
"upload_time": "2023-02-12T19:07:41",
"upload_time_iso_8601": "2023-02-12T19:07:41.140853Z",
"url": "https://files.pythonhosted.org/packages/52/78/a952a0d581d85418ffe9d4a31957968c92c9b94fb7efa57dc40d3d85e1e7/aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5d4bb0864214b587069ce37f25f1e117f72aac589bace98d16ae8cf0b695943c",
"md5": "e930f71ef0bb331d211542ffa1bb6969",
"sha256": "7ab43061a0c81198d88f39aaf90dae9a7744620978f7ef3e3708339b8ed2ef01"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e930f71ef0bb331d211542ffa1bb6969",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 946033,
"upload_time": "2023-02-12T19:07:42",
"upload_time_iso_8601": "2023-02-12T19:07:42.570813Z",
"url": "https://files.pythonhosted.org/packages/5d/4b/b0864214b587069ce37f25f1e117f72aac589bace98d16ae8cf0b695943c/aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c13be57204d1b2721dc66b8c004fd1e93e0e428688959ad7c567392e52ded438",
"md5": "f1eebf9bd5c95b05bebcaf84a5143677",
"sha256": "c9cb1565a7ad52e096a6988e2ee0397f72fe056dadf75d17fa6b5aebaea05622"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "f1eebf9bd5c95b05bebcaf84a5143677",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 922605,
"upload_time": "2023-02-12T19:07:44",
"upload_time_iso_8601": "2023-02-12T19:07:44.084553Z",
"url": "https://files.pythonhosted.org/packages/c1/3b/e57204d1b2721dc66b8c004fd1e93e0e428688959ad7c567392e52ded438/aiohttp-3.8.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "57e503f8a15ed03dd384864c60dd3c1fba12d1968ab52e19b6dbf04b0c88c6eb",
"md5": "f6332c4ff63cd1c352fd63176a86bc96",
"sha256": "1b3ea7edd2d24538959c1c1abf97c744d879d4e541d38305f9bd7d9b10c9ec41"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "f6332c4ff63cd1c352fd63176a86bc96",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 960680,
"upload_time": "2023-02-12T19:07:45",
"upload_time_iso_8601": "2023-02-12T19:07:45.916934Z",
"url": "https://files.pythonhosted.org/packages/57/e5/03f8a15ed03dd384864c60dd3c1fba12d1968ab52e19b6dbf04b0c88c6eb/aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "073c04c65b5873524a415509cbcf21787be32c31f4e729840fab9866dd197030",
"md5": "25851dfb18a0d05170f0cea90eece28c",
"sha256": "7c7837fe8037e96b6dd5cfcf47263c1620a9d332a87ec06a6ca4564e56bd0f36"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "25851dfb18a0d05170f0cea90eece28c",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 933756,
"upload_time": "2023-02-12T19:07:47",
"upload_time_iso_8601": "2023-02-12T19:07:47.291350Z",
"url": "https://files.pythonhosted.org/packages/07/3c/04c65b5873524a415509cbcf21787be32c31f4e729840fab9866dd197030/aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "deddba13b6a99a11ca0500c0fffa9786af2a482125c87944573cf46dddd020d7",
"md5": "a273b6f155ad648c394ffde69f061513",
"sha256": "3b90467ebc3d9fa5b0f9b6489dfb2c304a1db7b9946fa92aa76a831b9d587e99"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "a273b6f155ad648c394ffde69f061513",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 979897,
"upload_time": "2023-02-12T19:07:49",
"upload_time_iso_8601": "2023-02-12T19:07:49.107281Z",
"url": "https://files.pythonhosted.org/packages/de/dd/ba13b6a99a11ca0500c0fffa9786af2a482125c87944573cf46dddd020d7/aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c94b9fd9725b52ce61e6c946ac52e41c1560e94f0907b08d7e9708a8054d9642",
"md5": "97e63a31bb0d96068da9ee16bfd63f51",
"sha256": "cab9401de3ea52b4b4c6971db5fb5c999bd4260898af972bf23de1c6b5dd9d71"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "97e63a31bb0d96068da9ee16bfd63f51",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 1029529,
"upload_time": "2023-02-12T19:07:50",
"upload_time_iso_8601": "2023-02-12T19:07:50.575067Z",
"url": "https://files.pythonhosted.org/packages/c9/4b/9fd9725b52ce61e6c946ac52e41c1560e94f0907b08d7e9708a8054d9642/aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7e13ad03ec24f1ac2e00082106494950d8b34d8cdf6da075339c5005989317a2",
"md5": "872a326f662ff52c150d2a48e299bb14",
"sha256": "d1f9282c5f2b5e241034a009779e7b2a1aa045f667ff521e7948ea9b56e0c5ff"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "872a326f662ff52c150d2a48e299bb14",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 954969,
"upload_time": "2023-02-12T19:07:52",
"upload_time_iso_8601": "2023-02-12T19:07:52.429569Z",
"url": "https://files.pythonhosted.org/packages/7e/13/ad03ec24f1ac2e00082106494950d8b34d8cdf6da075339c5005989317a2/aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d5a02c42e4379a1100f5492dd48f82575bc2f4648c61daeb5fcbd72ad7680925",
"md5": "7823877c8d154b396fd28ecfbb45ab9a",
"sha256": "5e14f25765a578a0a634d5f0cd1e2c3f53964553a00347998dfdf96b8137f777"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp36-cp36m-win32.whl",
"has_sig": false,
"md5_digest": "7823877c8d154b396fd28ecfbb45ab9a",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 316792,
"upload_time": "2023-02-12T19:07:53",
"upload_time_iso_8601": "2023-02-12T19:07:53.863674Z",
"url": "https://files.pythonhosted.org/packages/d5/a0/2c42e4379a1100f5492dd48f82575bc2f4648c61daeb5fcbd72ad7680925/aiohttp-3.8.4-cp36-cp36m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8607ff2670f03b9370a09fdccbb79f1555dd9a55e9a1f6fba360250bf42c1fb1",
"md5": "54bf74aa60330390c77a70c6e2cdb118",
"sha256": "4c745b109057e7e5f1848c689ee4fb3a016c8d4d92da52b312f8a509f83aa05e"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "54bf74aa60330390c77a70c6e2cdb118",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 337456,
"upload_time": "2023-02-12T19:07:55",
"upload_time_iso_8601": "2023-02-12T19:07:55.451751Z",
"url": "https://files.pythonhosted.org/packages/86/07/ff2670f03b9370a09fdccbb79f1555dd9a55e9a1f6fba360250bf42c1fb1/aiohttp-3.8.4-cp36-cp36m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "26a88a7e53fcf159eb838d96810de2b4d05e27b38bf9804275b13ddc952a32f9",
"md5": "9d4cc0c6c3e58b29dd7098b403d7b46d",
"sha256": "aede4df4eeb926c8fa70de46c340a1bc2c6079e1c40ccf7b0eae1313ffd33519"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "9d4cc0c6c3e58b29dd7098b403d7b46d",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 354865,
"upload_time": "2023-02-12T19:07:56",
"upload_time_iso_8601": "2023-02-12T19:07:56.930202Z",
"url": "https://files.pythonhosted.org/packages/26/a8/8a7e53fcf159eb838d96810de2b4d05e27b38bf9804275b13ddc952a32f9/aiohttp-3.8.4-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "680d81ec1a43c46b6ea1ec2ac58c0416a415d8e4b267ddd8e7c8deb27e90a42b",
"md5": "b639b534d661b7af564d807b03c79954",
"sha256": "4ddaae3f3d32fc2cb4c53fab020b69a05c8ab1f02e0e59665c6f7a0d3a5be54f"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b639b534d661b7af564d807b03c79954",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 952994,
"upload_time": "2023-02-12T19:07:58",
"upload_time_iso_8601": "2023-02-12T19:07:58.842247Z",
"url": "https://files.pythonhosted.org/packages/68/0d/81ec1a43c46b6ea1ec2ac58c0416a415d8e4b267ddd8e7c8deb27e90a42b/aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "38445a97d0d7080d3971f8ae00220e045a11b2307de1661f646e8fa90a7db46d",
"md5": "52c7e863ae3540bb42cb6f201531259c",
"sha256": "c4eb3b82ca349cf6fadcdc7abcc8b3a50ab74a62e9113ab7a8ebc268aad35bb9"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "52c7e863ae3540bb42cb6f201531259c",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 968810,
"upload_time": "2023-02-12T19:08:00",
"upload_time_iso_8601": "2023-02-12T19:08:00.312387Z",
"url": "https://files.pythonhosted.org/packages/38/44/5a97d0d7080d3971f8ae00220e045a11b2307de1661f646e8fa90a7db46d/aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a268a87a0fe59a9d4e8f65d85c04731d7b80b96645cad04bd3b6d07e2ed82863",
"md5": "81c3d495b54f0eb9ab1703c68bc91138",
"sha256": "9bcb89336efa095ea21b30f9e686763f2be4478f1b0a616969551982c4ee4c3b"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "81c3d495b54f0eb9ab1703c68bc91138",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 1023629,
"upload_time": "2023-02-12T19:08:01",
"upload_time_iso_8601": "2023-02-12T19:08:01.775378Z",
"url": "https://files.pythonhosted.org/packages/a2/68/a87a0fe59a9d4e8f65d85c04731d7b80b96645cad04bd3b6d07e2ed82863/aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "be2e78d9514437e4267988380482420f4a550be6abdc665c836efe6d6abf7b46",
"md5": "4cc7d0baa398aebcc361d3820e288824",
"sha256": "6c08e8ed6fa3d477e501ec9db169bfac8140e830aa372d77e4a43084d8dd91ab"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4cc7d0baa398aebcc361d3820e288824",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 948106,
"upload_time": "2023-02-12T19:08:03",
"upload_time_iso_8601": "2023-02-12T19:08:03.158007Z",
"url": "https://files.pythonhosted.org/packages/be/2e/78d9514437e4267988380482420f4a550be6abdc665c836efe6d6abf7b46/aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6198bf502ad68b95c12d71d5a499a1730c9759f2b98cde2704bd595cbd462068",
"md5": "419658ae44592c4c7d253be14079118b",
"sha256": "c6cd05ea06daca6ad6a4ca3ba7fe7dc5b5de063ff4daec6170ec0f9979f6c332"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "419658ae44592c4c7d253be14079118b",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 922886,
"upload_time": "2023-02-12T19:08:04",
"upload_time_iso_8601": "2023-02-12T19:08:04.473092Z",
"url": "https://files.pythonhosted.org/packages/61/98/bf502ad68b95c12d71d5a499a1730c9759f2b98cde2704bd595cbd462068/aiohttp-3.8.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "10a6bbd9881658cf821fe36144cce4fd05e1fb84f92c67c6222920317b2a7133",
"md5": "2998f8533aa378e005c75c927d604813",
"sha256": "b7a00a9ed8d6e725b55ef98b1b35c88013245f35f68b1b12c5cd4100dddac333"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "2998f8533aa378e005c75c927d604813",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 968090,
"upload_time": "2023-02-12T19:08:05",
"upload_time_iso_8601": "2023-02-12T19:08:05.934774Z",
"url": "https://files.pythonhosted.org/packages/10/a6/bbd9881658cf821fe36144cce4fd05e1fb84f92c67c6222920317b2a7133/aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c8ac6d94a8bd494450a2e764b32cb9be8ea28054c90733c6c114d27e46687496",
"md5": "b083732fb353b662a48b9ffa137e2a5d",
"sha256": "de04b491d0e5007ee1b63a309956eaed959a49f5bb4e84b26c8f5d49de140fa9"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "b083732fb353b662a48b9ffa137e2a5d",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 941834,
"upload_time": "2023-02-12T19:08:07",
"upload_time_iso_8601": "2023-02-12T19:08:07.219698Z",
"url": "https://files.pythonhosted.org/packages/c8/ac/6d94a8bd494450a2e764b32cb9be8ea28054c90733c6c114d27e46687496/aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "646e5da9e8863807644adc6aa94cd3457aacbc56ea6985e0ddc2144e54568781",
"md5": "521b24320dd5546ac2beb25d21b75c9d",
"sha256": "40653609b3bf50611356e6b6554e3a331f6879fa7116f3959b20e3528783e699"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "521b24320dd5546ac2beb25d21b75c9d",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 984168,
"upload_time": "2023-02-12T19:08:08",
"upload_time_iso_8601": "2023-02-12T19:08:08.501330Z",
"url": "https://files.pythonhosted.org/packages/64/6e/5da9e8863807644adc6aa94cd3457aacbc56ea6985e0ddc2144e54568781/aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d635cbfeff7ca60ee89d4d08f4c3adf20c9e63535fd9e830312006613b142723",
"md5": "e17c5808939ce1c63f58f4ffafc9023a",
"sha256": "dbf3a08a06b3f433013c143ebd72c15cac33d2914b8ea4bea7ac2c23578815d6"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "e17c5808939ce1c63f58f4ffafc9023a",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 1034190,
"upload_time": "2023-02-12T19:08:10",
"upload_time_iso_8601": "2023-02-12T19:08:10.144601Z",
"url": "https://files.pythonhosted.org/packages/d6/35/cbfeff7ca60ee89d4d08f4c3adf20c9e63535fd9e830312006613b142723/aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4909ea931f5d158ec2a735eda6f8e6923945650e6d705c420f0606b332219192",
"md5": "10ec449370b6d4493714a6acd4d3be8f",
"sha256": "854f422ac44af92bfe172d8e73229c270dc09b96535e8a548f99c84f82dde241"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "10ec449370b6d4493714a6acd4d3be8f",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 963833,
"upload_time": "2023-02-12T19:08:11",
"upload_time_iso_8601": "2023-02-12T19:08:11.559653Z",
"url": "https://files.pythonhosted.org/packages/49/09/ea931f5d158ec2a735eda6f8e6923945650e6d705c420f0606b332219192/aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eda248800f019182f280fda78d8d5d5f964a0d41a2eaabfd2868d8eed0baefae",
"md5": "07382b3beb0cd3823ed863ff37b91728",
"sha256": "aeb29c84bb53a84b1a81c6c09d24cf33bb8432cc5c39979021cc0f98c1292a1a"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "07382b3beb0cd3823ed863ff37b91728",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 306708,
"upload_time": "2023-02-12T19:08:13",
"upload_time_iso_8601": "2023-02-12T19:08:13.037326Z",
"url": "https://files.pythonhosted.org/packages/ed/a2/48800f019182f280fda78d8d5d5f964a0d41a2eaabfd2868d8eed0baefae/aiohttp-3.8.4-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9b7935d0c8eea92ec2649cc4ee385f9bc46da975742c23672d3e1925dc29d55a",
"md5": "b81d58f5e6310038a22b0f41412f3457",
"sha256": "db3fc6120bce9f446d13b1b834ea5b15341ca9ff3f335e4a951a6ead31105480"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "b81d58f5e6310038a22b0f41412f3457",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 322162,
"upload_time": "2023-02-12T19:08:14",
"upload_time_iso_8601": "2023-02-12T19:08:14.356148Z",
"url": "https://files.pythonhosted.org/packages/9b/79/35d0c8eea92ec2649cc4ee385f9bc46da975742c23672d3e1925dc29d55a/aiohttp-3.8.4-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7b6c63788c96b9874bc44c565820a41d07777f4207f427b66f028200f0ac34e6",
"md5": "16abdd5b349fa3b55bc12b70cbc01b12",
"sha256": "fabb87dd8850ef0f7fe2b366d44b77d7e6fa2ea87861ab3844da99291e81e60f"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "16abdd5b349fa3b55bc12b70cbc01b12",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 514713,
"upload_time": "2023-02-12T19:08:16",
"upload_time_iso_8601": "2023-02-12T19:08:16.147688Z",
"url": "https://files.pythonhosted.org/packages/7b/6c/63788c96b9874bc44c565820a41d07777f4207f427b66f028200f0ac34e6/aiohttp-3.8.4-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0f30f00e6c3dd65087ad402e1d5e94ddd54758803b88fc3902a8ad14ac970efa",
"md5": "0f460bfd16968a176b0089208a2b7075",
"sha256": "91f6d540163f90bbaef9387e65f18f73ffd7c79f5225ac3d3f61df7b0d01ad15"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "0f460bfd16968a176b0089208a2b7075",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 359348,
"upload_time": "2023-02-12T19:08:17",
"upload_time_iso_8601": "2023-02-12T19:08:17.513097Z",
"url": "https://files.pythonhosted.org/packages/0f/30/f00e6c3dd65087ad402e1d5e94ddd54758803b88fc3902a8ad14ac970efa/aiohttp-3.8.4-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "249e9efb855fd4fe4332ac962d447fb87116550c7e317aee490bda1f7857b07b",
"md5": "75c8ef4939c1a92104442613c5880487",
"sha256": "d265f09a75a79a788237d7f9054f929ced2e69eb0bb79de3798c468d8a90f945"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "75c8ef4939c1a92104442613c5880487",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 337786,
"upload_time": "2023-02-12T19:08:18",
"upload_time_iso_8601": "2023-02-12T19:08:18.757716Z",
"url": "https://files.pythonhosted.org/packages/24/9e/9efb855fd4fe4332ac962d447fb87116550c7e317aee490bda1f7857b07b/aiohttp-3.8.4-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1985e9ed63f5a31e16c2f323993d4cefbd34538eb436c186ab531a9265a1cc1f",
"md5": "48a7b6e587600604a40aa8ae1a15e0c1",
"sha256": "3d89efa095ca7d442a6d0cbc755f9e08190ba40069b235c9886a8763b03785da"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "48a7b6e587600604a40aa8ae1a15e0c1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1041862,
"upload_time": "2023-02-12T19:08:20",
"upload_time_iso_8601": "2023-02-12T19:08:20.730076Z",
"url": "https://files.pythonhosted.org/packages/19/85/e9ed63f5a31e16c2f323993d4cefbd34538eb436c186ab531a9265a1cc1f/aiohttp-3.8.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "374c0110001ca7950a7c4e672b6f3644299d3dabef669689691f5f1d4142e3e8",
"md5": "08f2c0ffc28027d6df273428da135c7c",
"sha256": "4dac314662f4e2aa5009977b652d9b8db7121b46c38f2073bfeed9f4049732cd"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "08f2c0ffc28027d6df273428da135c7c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1060950,
"upload_time": "2023-02-12T19:08:22",
"upload_time_iso_8601": "2023-02-12T19:08:22.269689Z",
"url": "https://files.pythonhosted.org/packages/37/4c/0110001ca7950a7c4e672b6f3644299d3dabef669689691f5f1d4142e3e8/aiohttp-3.8.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "85e8ba9fe9d106cf772a128fadd9c86018534b27aec5010f938aa26d40ca6fef",
"md5": "5c1feaec0e6bd6717fd03f109b36442c",
"sha256": "fe11310ae1e4cd560035598c3f29d86cef39a83d244c7466f95c27ae04850f10"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "5c1feaec0e6bd6717fd03f109b36442c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1113911,
"upload_time": "2023-02-12T19:08:24",
"upload_time_iso_8601": "2023-02-12T19:08:24.279976Z",
"url": "https://files.pythonhosted.org/packages/85/e8/ba9fe9d106cf772a128fadd9c86018534b27aec5010f938aa26d40ca6fef/aiohttp-3.8.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d2e5cef5eeb11d7e8bac830b3bee1c8311b19bf8e8a1c45fe14b876c70adcd06",
"md5": "b92404433e9d9bc4fe51d849abff2c1f",
"sha256": "6ddb2a2026c3f6a68c3998a6c47ab6795e4127315d2e35a09997da21865757f8"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b92404433e9d9bc4fe51d849abff2c1f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1038176,
"upload_time": "2023-02-12T19:08:25",
"upload_time_iso_8601": "2023-02-12T19:08:25.719195Z",
"url": "https://files.pythonhosted.org/packages/d2/e5/cef5eeb11d7e8bac830b3bee1c8311b19bf8e8a1c45fe14b876c70adcd06/aiohttp-3.8.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "263d78f2ae20db769b7f91b823583a349b5756325a96241b5bb5ab14ad0a1986",
"md5": "18fe7e79ac12bdf99299aef1e0da948c",
"sha256": "e75b89ac3bd27d2d043b234aa7b734c38ba1b0e43f07787130a0ecac1e12228a"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "18fe7e79ac12bdf99299aef1e0da948c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1006463,
"upload_time": "2023-02-12T19:08:27",
"upload_time_iso_8601": "2023-02-12T19:08:27.011123Z",
"url": "https://files.pythonhosted.org/packages/26/3d/78f2ae20db769b7f91b823583a349b5756325a96241b5bb5ab14ad0a1986/aiohttp-3.8.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "77393b567439e6d7cea2dbc3978d2da171b939b9b6fed91b02229acbecbad3c6",
"md5": "ea52de90c50fbb46ec7454f6e72d1154",
"sha256": "6e601588f2b502c93c30cd5a45bfc665faaf37bbe835b7cfd461753068232074"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "ea52de90c50fbb46ec7454f6e72d1154",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1082552,
"upload_time": "2023-02-12T19:08:28",
"upload_time_iso_8601": "2023-02-12T19:08:28.598757Z",
"url": "https://files.pythonhosted.org/packages/77/39/3b567439e6d7cea2dbc3978d2da171b939b9b6fed91b02229acbecbad3c6/aiohttp-3.8.4-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "80fd68a579ca1bd36560b46d6bdfe1ddc5e031aad0c53fb9dc17eb7f0eb45fa9",
"md5": "79b2a3e03132e4ad026c0e8f99d88220",
"sha256": "a5d794d1ae64e7753e405ba58e08fcfa73e3fad93ef9b7e31112ef3c9a0efb52"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "79b2a3e03132e4ad026c0e8f99d88220",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1050591,
"upload_time": "2023-02-12T19:08:30",
"upload_time_iso_8601": "2023-02-12T19:08:30.237964Z",
"url": "https://files.pythonhosted.org/packages/80/fd/68a579ca1bd36560b46d6bdfe1ddc5e031aad0c53fb9dc17eb7f0eb45fa9/aiohttp-3.8.4-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e2a3f2915766785ec152d67a548202d064b3d0b25c7ae6bf5e687897a83c127a",
"md5": "c6570b6b5f7554be8492657304a54e4e",
"sha256": "a1f4689c9a1462f3df0a1f7e797791cd6b124ddbee2b570d34e7f38ade0e2c71"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "c6570b6b5f7554be8492657304a54e4e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1106047,
"upload_time": "2023-02-12T19:08:31",
"upload_time_iso_8601": "2023-02-12T19:08:31.829169Z",
"url": "https://files.pythonhosted.org/packages/e2/a3/f2915766785ec152d67a548202d064b3d0b25c7ae6bf5e687897a83c127a/aiohttp-3.8.4-cp38-cp38-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8bfdf27e517cca62c29011ff30bebef0f45f81d9de6a163d327209af2a5dc88c",
"md5": "5aeca69dd5b86f5e9b35dbf7d3b88551",
"sha256": "3032dcb1c35bc330134a5b8a5d4f68c1a87252dfc6e1262c65a7e30e62298275"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "5aeca69dd5b86f5e9b35dbf7d3b88551",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1155085,
"upload_time": "2023-02-12T19:08:33",
"upload_time_iso_8601": "2023-02-12T19:08:33.778400Z",
"url": "https://files.pythonhosted.org/packages/8b/fd/f27e517cca62c29011ff30bebef0f45f81d9de6a163d327209af2a5dc88c/aiohttp-3.8.4-cp38-cp38-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "04033ce412b191aba5961b4ada3ee7a93498623e218fb4d50ac6d357da61dc26",
"md5": "445575bac493cd7a509e89616d424951",
"sha256": "8189c56eb0ddbb95bfadb8f60ea1b22fcfa659396ea36f6adcc521213cd7b44d"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "445575bac493cd7a509e89616d424951",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1079053,
"upload_time": "2023-02-12T19:08:35",
"upload_time_iso_8601": "2023-02-12T19:08:35.121847Z",
"url": "https://files.pythonhosted.org/packages/04/03/3ce412b191aba5961b4ada3ee7a93498623e218fb4d50ac6d357da61dc26/aiohttp-3.8.4-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f0568b005d90ba0f40d0076978d30b20922440afdc4964b50a7429a0e2024d56",
"md5": "a80b5b161d5949ad5bb13719158a5a53",
"sha256": "33587f26dcee66efb2fff3c177547bd0449ab7edf1b73a7f5dea1e38609a0c54"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "a80b5b161d5949ad5bb13719158a5a53",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 308091,
"upload_time": "2023-02-12T19:08:36",
"upload_time_iso_8601": "2023-02-12T19:08:36.674488Z",
"url": "https://files.pythonhosted.org/packages/f0/56/8b005d90ba0f40d0076978d30b20922440afdc4964b50a7429a0e2024d56/aiohttp-3.8.4-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "485bdabb02a8fe7da607c0b65d9086af36a2c77c509f3ee7efb7a80b008d7c7a",
"md5": "5a7aa07da07cfc6f18aa8b5a1749b620",
"sha256": "e595432ac259af2d4630008bf638873d69346372d38255774c0e286951e8b79f"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "5a7aa07da07cfc6f18aa8b5a1749b620",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 324473,
"upload_time": "2023-02-12T19:08:38",
"upload_time_iso_8601": "2023-02-12T19:08:38.924383Z",
"url": "https://files.pythonhosted.org/packages/48/5b/dabb02a8fe7da607c0b65d9086af36a2c77c509f3ee7efb7a80b008d7c7a/aiohttp-3.8.4-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "425a7b24ce955c38ad292ffdca44c2421cbff69f8746f9628b5314073441abc6",
"md5": "8fd168f2aa824a6bba6cc8bad2a38755",
"sha256": "5a7bdf9e57126dc345b683c3632e8ba317c31d2a41acd5800c10640387d193ed"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "8fd168f2aa824a6bba6cc8bad2a38755",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 516169,
"upload_time": "2023-02-12T19:08:40",
"upload_time_iso_8601": "2023-02-12T19:08:40.217484Z",
"url": "https://files.pythonhosted.org/packages/42/5a/7b24ce955c38ad292ffdca44c2421cbff69f8746f9628b5314073441abc6/aiohttp-3.8.4-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "12552836961a617ce2eec38554bef8093f7f4359ae1b3f90ae7eeea59e447159",
"md5": "379ff91f9be4f01bbdda943e96e25c5b",
"sha256": "22f6eab15b6db242499a16de87939a342f5a950ad0abaf1532038e2ce7d31567"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "379ff91f9be4f01bbdda943e96e25c5b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 360318,
"upload_time": "2023-02-12T19:08:42",
"upload_time_iso_8601": "2023-02-12T19:08:42.431663Z",
"url": "https://files.pythonhosted.org/packages/12/55/2836961a617ce2eec38554bef8093f7f4359ae1b3f90ae7eeea59e447159/aiohttp-3.8.4-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2aa94183ba5557c40aa5e3e94360ae945c159234b968572bcf3f96ef97ac1bc7",
"md5": "cce0ce562e19f8129d0fdbee6f2d0b37",
"sha256": "7235604476a76ef249bd64cb8274ed24ccf6995c4a8b51a237005ee7a57e8643"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "cce0ce562e19f8129d0fdbee6f2d0b37",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 338280,
"upload_time": "2023-02-12T19:08:43",
"upload_time_iso_8601": "2023-02-12T19:08:43.982882Z",
"url": "https://files.pythonhosted.org/packages/2a/a9/4183ba5557c40aa5e3e94360ae945c159234b968572bcf3f96ef97ac1bc7/aiohttp-3.8.4-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "13304905769f98953e4c1c02190d348001ee683ebf8af1e3ac5106ce7c952d95",
"md5": "6e6e26dad0bd1f4059ff434ded8536d0",
"sha256": "ea9eb976ffdd79d0e893869cfe179a8f60f152d42cb64622fca418cd9b18dc2a"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6e6e26dad0bd1f4059ff434ded8536d0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1027617,
"upload_time": "2023-02-12T19:08:45",
"upload_time_iso_8601": "2023-02-12T19:08:45.728193Z",
"url": "https://files.pythonhosted.org/packages/13/30/4905769f98953e4c1c02190d348001ee683ebf8af1e3ac5106ce7c952d95/aiohttp-3.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "52dec20b9b274d7a3886beba2f218ad409458ebf67816c186ae9d0d26bf65a8e",
"md5": "8fd1081bb56a43109bcb2f9492b7dbdd",
"sha256": "92c0cea74a2a81c4c76b62ea1cac163ecb20fb3ba3a75c909b9fa71b4ad493cf"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8fd1081bb56a43109bcb2f9492b7dbdd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1046268,
"upload_time": "2023-02-12T19:08:47",
"upload_time_iso_8601": "2023-02-12T19:08:47.983474Z",
"url": "https://files.pythonhosted.org/packages/52/de/c20b9b274d7a3886beba2f218ad409458ebf67816c186ae9d0d26bf65a8e/aiohttp-3.8.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "35452119fb3958a7e5a745e521ea005f8ffd1bbe0ef63e74d4adcee1f3a47cb2",
"md5": "d798b13ddb95740973cdf31d6300372a",
"sha256": "493f5bc2f8307286b7799c6d899d388bbaa7dfa6c4caf4f97ef7521b9cb13719"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "d798b13ddb95740973cdf31d6300372a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1102332,
"upload_time": "2023-02-12T19:08:49",
"upload_time_iso_8601": "2023-02-12T19:08:49.549056Z",
"url": "https://files.pythonhosted.org/packages/35/45/2119fb3958a7e5a745e521ea005f8ffd1bbe0ef63e74d4adcee1f3a47cb2/aiohttp-3.8.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8b6091ef15bf94415c6749edb6fd168394c1f451e7bb4b3f32c023654e8ea91e",
"md5": "99df52d14f7bde8b86d306ce5f0b9303",
"sha256": "0a63f03189a6fa7c900226e3ef5ba4d3bd047e18f445e69adbd65af433add5a2"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "99df52d14f7bde8b86d306ce5f0b9303",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1022024,
"upload_time": "2023-02-12T19:08:51",
"upload_time_iso_8601": "2023-02-12T19:08:51.256682Z",
"url": "https://files.pythonhosted.org/packages/8b/60/91ef15bf94415c6749edb6fd168394c1f451e7bb4b3f32c023654e8ea91e/aiohttp-3.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9bc1bae43e9677b163d4e8b4b0b0299257f0ad6a3e58f3bf8f890fa409ba9257",
"md5": "3022c3979910546df3673341927c64f1",
"sha256": "10c8cefcff98fd9168cdd86c4da8b84baaa90bf2da2269c6161984e6737bf23e"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "3022c3979910546df3673341927c64f1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 990381,
"upload_time": "2023-02-12T19:08:52",
"upload_time_iso_8601": "2023-02-12T19:08:52.932638Z",
"url": "https://files.pythonhosted.org/packages/9b/c1/bae43e9677b163d4e8b4b0b0299257f0ad6a3e58f3bf8f890fa409ba9257/aiohttp-3.8.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "03e784b65e341b1f45753fea51158d8a9522e57a5ae804acbc6dc34edf07cea0",
"md5": "9699ed4a9cbc28a54b571e0b468d3be0",
"sha256": "bca5f24726e2919de94f047739d0a4fc01372801a3672708260546aa2601bf57"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "9699ed4a9cbc28a54b571e0b468d3be0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1040282,
"upload_time": "2023-02-12T19:08:54",
"upload_time_iso_8601": "2023-02-12T19:08:54.444548Z",
"url": "https://files.pythonhosted.org/packages/03/e7/84b65e341b1f45753fea51158d8a9522e57a5ae804acbc6dc34edf07cea0/aiohttp-3.8.4-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8677359544aa8a63bcaea78f0be923a54b1ab899b35e097a93dfc62b80f712e1",
"md5": "494237fa9c507d173b5a4327a82642d2",
"sha256": "03baa76b730e4e15a45f81dfe29a8d910314143414e528737f8589ec60cf7391"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "494237fa9c507d173b5a4327a82642d2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1002764,
"upload_time": "2023-02-12T19:08:55",
"upload_time_iso_8601": "2023-02-12T19:08:55.869318Z",
"url": "https://files.pythonhosted.org/packages/86/77/359544aa8a63bcaea78f0be923a54b1ab899b35e097a93dfc62b80f712e1/aiohttp-3.8.4-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "211e32b08ea6c14d2b18db7c2d859ca658a7c64f0240c008beb4a9aac3c0c477",
"md5": "ffdd400efb173618a37ff7164e5e6f05",
"sha256": "8c29c77cc57e40f84acef9bfb904373a4e89a4e8b74e71aa8075c021ec9078c2"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "ffdd400efb173618a37ff7164e5e6f05",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1056803,
"upload_time": "2023-02-12T19:08:57",
"upload_time_iso_8601": "2023-02-12T19:08:57.418366Z",
"url": "https://files.pythonhosted.org/packages/21/1e/32b08ea6c14d2b18db7c2d859ca658a7c64f0240c008beb4a9aac3c0c477/aiohttp-3.8.4-cp39-cp39-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9e8199624c57135c441c9668334f994e563b6e074efa4ae93d5a3dd0faaa65f1",
"md5": "4edb236229077c5905445130d2971015",
"sha256": "03543dcf98a6619254b409be2d22b51f21ec66272be4ebda7b04e6412e4b2e14"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "4edb236229077c5905445130d2971015",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1108674,
"upload_time": "2023-02-12T19:08:58",
"upload_time_iso_8601": "2023-02-12T19:08:58.776111Z",
"url": "https://files.pythonhosted.org/packages/9e/81/99624c57135c441c9668334f994e563b6e074efa4ae93d5a3dd0faaa65f1/aiohttp-3.8.4-cp39-cp39-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "05ee77b3dc08f41a1bce842e30134233c58b3bbe8c0fa7be121295aa2fad885d",
"md5": "5f43104a4d4a415e10f4ee1038defb8e",
"sha256": "17b79c2963db82086229012cff93ea55196ed31f6493bb1ccd2c62f1724324e4"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "5f43104a4d4a415e10f4ee1038defb8e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1033365,
"upload_time": "2023-02-12T19:09:00",
"upload_time_iso_8601": "2023-02-12T19:09:00.327161Z",
"url": "https://files.pythonhosted.org/packages/05/ee/77b3dc08f41a1bce842e30134233c58b3bbe8c0fa7be121295aa2fad885d/aiohttp-3.8.4-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1a9edb7ceb5b9609dc60c8e8d94dd362e6e3d713328813a80a4ae0a98a961db4",
"md5": "990fd2b84ff242044f17f8479da3dbe7",
"sha256": "34ce9f93a4a68d1272d26030655dd1b58ff727b3ed2a33d80ec433561b03d67a"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "990fd2b84ff242044f17f8479da3dbe7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 307381,
"upload_time": "2023-02-12T19:09:01",
"upload_time_iso_8601": "2023-02-12T19:09:01.930650Z",
"url": "https://files.pythonhosted.org/packages/1a/9e/db7ceb5b9609dc60c8e8d94dd362e6e3d713328813a80a4ae0a98a961db4/aiohttp-3.8.4-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7c747982db5537646a87d8a71291fce33ecbc101b49ab2b8d3d58df880a165ea",
"md5": "47616badf2b7cb8c9ffdbbb7cb889fcd",
"sha256": "41a86a69bb63bb2fc3dc9ad5ea9f10f1c9c8e282b471931be0268ddd09430b04"
},
"downloads": -1,
"filename": "aiohttp-3.8.4-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "47616badf2b7cb8c9ffdbbb7cb889fcd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 323617,
"upload_time": "2023-02-12T19:09:03",
"upload_time_iso_8601": "2023-02-12T19:09:03.756783Z",
"url": "https://files.pythonhosted.org/packages/7c/74/7982db5537646a87d8a71291fce33ecbc101b49ab2b8d3d58df880a165ea/aiohttp-3.8.4-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c2fd1ff4da09ca29d8933fda3f3514980357e25419ce5e0f689041edb8f17dab",
"md5": "8208bc4b519ac4520720577f93561855",
"sha256": "bf2e1a9162c1e441bf805a1fd166e249d574ca04e03b34f97e2928769e91ab5c"
},
"downloads": -1,
"filename": "aiohttp-3.8.4.tar.gz",
"has_sig": false,
"md5_digest": "8208bc4b519ac4520720577f93561855",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 7338512,
"upload_time": "2023-02-12T19:09:05",
"upload_time_iso_8601": "2023-02-12T19:09:05.301077Z",
"url": "https://files.pythonhosted.org/packages/c2/fd/1ff4da09ca29d8933fda3f3514980357e25419ce5e0f689041edb8f17dab/aiohttp-3.8.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.8.5": [
{
"comment_text": "",
"digests": {
"blake2b_256": "4e563bd3f99304be831d798ec3bc424dabc2dac09cb408f37800b29cc96e8eee",
"md5": "6caf9111e3924d87bcc1bda0e97ac74c",
"sha256": "a94159871304770da4dd371f4291b20cac04e8c94f11bdea1c3478e557fbe0d8"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "6caf9111e3924d87bcc1bda0e97ac74c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 526684,
"upload_time": "2023-07-19T17:04:14",
"upload_time_iso_8601": "2023-07-19T17:04:14.167167Z",
"url": "https://files.pythonhosted.org/packages/4e/56/3bd3f99304be831d798ec3bc424dabc2dac09cb408f37800b29cc96e8eee/aiohttp-3.8.5-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f356a5a062bc98e8d5848f7790963771f8354f488726a59fd650742ca7391171",
"md5": "c33a6ce4fcc544a15b86bec264ff926c",
"sha256": "13bf85afc99ce6f9ee3567b04501f18f9f8dbbb2ea11ed1a2e079670403a7c84"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "c33a6ce4fcc544a15b86bec264ff926c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 365753,
"upload_time": "2023-07-19T17:04:16",
"upload_time_iso_8601": "2023-07-19T17:04:16.911834Z",
"url": "https://files.pythonhosted.org/packages/f3/56/a5a062bc98e8d5848f7790963771f8354f488726a59fd650742ca7391171/aiohttp-3.8.5-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fa9e49002fde2a97d7df0e162e919c31cf13aa9f184537739743d1239edd0e67",
"md5": "3340415593f4e86f63914b7c09f51b2b",
"sha256": "2ce2ac5708501afc4847221a521f7e4b245abf5178cf5ddae9d5b3856ddb2f3a"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3340415593f4e86f63914b7c09f51b2b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 343913,
"upload_time": "2023-07-19T17:04:18",
"upload_time_iso_8601": "2023-07-19T17:04:18.532888Z",
"url": "https://files.pythonhosted.org/packages/fa/9e/49002fde2a97d7df0e162e919c31cf13aa9f184537739743d1239edd0e67/aiohttp-3.8.5-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b4a996cd3733efa63926d9c342cab15a87d241aeb62c1ebb1a7993c4ba11bfab",
"md5": "8701e73167505d36079e4fc384cecbb5",
"sha256": "96943e5dcc37a6529d18766597c491798b7eb7a61d48878611298afc1fca946c"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8701e73167505d36079e4fc384cecbb5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1032855,
"upload_time": "2023-07-19T17:04:20",
"upload_time_iso_8601": "2023-07-19T17:04:20.610926Z",
"url": "https://files.pythonhosted.org/packages/b4/a9/96cd3733efa63926d9c342cab15a87d241aeb62c1ebb1a7993c4ba11bfab/aiohttp-3.8.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "757cc7563a363459b34062aae7ba53583d3dc354a8aaaa4ce989b3cd6000f8fd",
"md5": "21970e29190070e6d2609d2fd507ee80",
"sha256": "2ad5c3c4590bb3cc28b4382f031f3783f25ec223557124c68754a2231d989e2b"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "21970e29190070e6d2609d2fd507ee80",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1053499,
"upload_time": "2023-07-19T17:04:22",
"upload_time_iso_8601": "2023-07-19T17:04:22.224567Z",
"url": "https://files.pythonhosted.org/packages/75/7c/c7563a363459b34062aae7ba53583d3dc354a8aaaa4ce989b3cd6000f8fd/aiohttp-3.8.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8f77cf78246bd7a1daa09876e83294f5bbe043b6bb04a68efec3659d14a6c4fe",
"md5": "4adbbac03c67dd64267194e0acf52a7f",
"sha256": "0c413c633d0512df4dc7fd2373ec06cc6a815b7b6d6c2f208ada7e9e93a5061d"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "4adbbac03c67dd64267194e0acf52a7f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1100960,
"upload_time": "2023-07-19T17:04:24",
"upload_time_iso_8601": "2023-07-19T17:04:24.750865Z",
"url": "https://files.pythonhosted.org/packages/8f/77/cf78246bd7a1daa09876e83294f5bbe043b6bb04a68efec3659d14a6c4fe/aiohttp-3.8.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3ef6fcda07dd1e72260989f0b22dde999ecfe80daa744f23ca167083683399bc",
"md5": "68dbf700ba349c999c4a7d0edb557d4e",
"sha256": "df72ac063b97837a80d80dec8d54c241af059cc9bb42c4de68bd5b61ceb37caa"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "68dbf700ba349c999c4a7d0edb557d4e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1026111,
"upload_time": "2023-07-19T17:04:26",
"upload_time_iso_8601": "2023-07-19T17:04:26.931475Z",
"url": "https://files.pythonhosted.org/packages/3e/f6/fcda07dd1e72260989f0b22dde999ecfe80daa744f23ca167083683399bc/aiohttp-3.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "16f9ed330650ee348f5246f8f7ba674378a24f0dcf0c00ec2fb18c0e5c6ecc01",
"md5": "f81bc326bc19934a8096ffbc5e531249",
"sha256": "c48c5c0271149cfe467c0ff8eb941279fd6e3f65c9a388c984e0e6cf57538e14"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "f81bc326bc19934a8096ffbc5e531249",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 996243,
"upload_time": "2023-07-19T17:04:29",
"upload_time_iso_8601": "2023-07-19T17:04:29.189763Z",
"url": "https://files.pythonhosted.org/packages/16/f9/ed330650ee348f5246f8f7ba674378a24f0dcf0c00ec2fb18c0e5c6ecc01/aiohttp-3.8.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2aec1a055e629e68a561119a14ba932c8ed745b2ca7085574c5cb943fab723fe",
"md5": "bf493a4b314ae6623cf8fe1a51860f1c",
"sha256": "368a42363c4d70ab52c2c6420a57f190ed3dfaca6a1b19afda8165ee16416a82"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "bf493a4b314ae6623cf8fe1a51860f1c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1048672,
"upload_time": "2023-07-19T17:04:30",
"upload_time_iso_8601": "2023-07-19T17:04:30.685704Z",
"url": "https://files.pythonhosted.org/packages/2a/ec/1a055e629e68a561119a14ba932c8ed745b2ca7085574c5cb943fab723fe/aiohttp-3.8.5-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9a420027b418d4f3faa3eb1105d800989c8c9e1b28de4854d8a228b6fe497b69",
"md5": "93cb8501bab9f4fb1b1b2abef4068f4d",
"sha256": "7607ec3ce4993464368505888af5beb446845a014bc676d349efec0e05085905"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "93cb8501bab9f4fb1b1b2abef4068f4d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1011595,
"upload_time": "2023-07-19T17:04:32",
"upload_time_iso_8601": "2023-07-19T17:04:32.895003Z",
"url": "https://files.pythonhosted.org/packages/9a/42/0027b418d4f3faa3eb1105d800989c8c9e1b28de4854d8a228b6fe497b69/aiohttp-3.8.5-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fb301355030f1879296012dfd7926b19ae1ff503af25a9601301f6a0e6a2e6cf",
"md5": "6001c2a8942eb7da03e21286a70783f3",
"sha256": "0d21c684808288a98914e5aaf2a7c6a3179d4df11d249799c32d1808e79503b5"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "6001c2a8942eb7da03e21286a70783f3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1070867,
"upload_time": "2023-07-19T17:04:34",
"upload_time_iso_8601": "2023-07-19T17:04:34.669878Z",
"url": "https://files.pythonhosted.org/packages/fb/30/1355030f1879296012dfd7926b19ae1ff503af25a9601301f6a0e6a2e6cf/aiohttp-3.8.5-cp310-cp310-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5a4354cb7fac69e5a3b4a0aadacfca044bf88b89ec3c1b208e72e686e7f31fac",
"md5": "cda6622fed0b9bdcf7dbd6ebb7b6dd22",
"sha256": "312fcfbacc7880a8da0ae8b6abc6cc7d752e9caa0051a53d217a650b25e9a691"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "cda6622fed0b9bdcf7dbd6ebb7b6dd22",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1113603,
"upload_time": "2023-07-19T17:04:36",
"upload_time_iso_8601": "2023-07-19T17:04:36.822781Z",
"url": "https://files.pythonhosted.org/packages/5a/43/54cb7fac69e5a3b4a0aadacfca044bf88b89ec3c1b208e72e686e7f31fac/aiohttp-3.8.5-cp310-cp310-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d10affc166fff79bcb83b4f3b0e9bdf201ed851bf8e6a2f9214cbc5839bc32b6",
"md5": "e8014dba2fcdb2544c147e1be64724a8",
"sha256": "ad093e823df03bb3fd37e7dec9d4670c34f9e24aeace76808fc20a507cace825"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "e8014dba2fcdb2544c147e1be64724a8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1039385,
"upload_time": "2023-07-19T17:04:38",
"upload_time_iso_8601": "2023-07-19T17:04:38.369584Z",
"url": "https://files.pythonhosted.org/packages/d1/0a/ffc166fff79bcb83b4f3b0e9bdf201ed851bf8e6a2f9214cbc5839bc32b6/aiohttp-3.8.5-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "883b13aabcd02987a5a7858267e404b0ab6ee63e9a903543e134fe254fbeb4fd",
"md5": "58eae7485f605974af2c93efb0868255",
"sha256": "33279701c04351a2914e1100b62b2a7fdb9a25995c4a104259f9a5ead7ed4802"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "58eae7485f605974af2c93efb0868255",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 307420,
"upload_time": "2023-07-19T17:04:40",
"upload_time_iso_8601": "2023-07-19T17:04:40.591936Z",
"url": "https://files.pythonhosted.org/packages/88/3b/13aabcd02987a5a7858267e404b0ab6ee63e9a903543e134fe254fbeb4fd/aiohttp-3.8.5-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "673584691e1f705b1ec4ec583e27c04e0e9672dffadb86fbbd98bc3d8942f6c2",
"md5": "190f57ec1e2071595d57f2fcf66aff06",
"sha256": "6e4a280e4b975a2e7745573e3fc9c9ba0d1194a3738ce1cbaa80626cc9b4f4df"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "190f57ec1e2071595d57f2fcf66aff06",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 323141,
"upload_time": "2023-07-19T17:04:42",
"upload_time_iso_8601": "2023-07-19T17:04:42.112018Z",
"url": "https://files.pythonhosted.org/packages/67/35/84691e1f705b1ec4ec583e27c04e0e9672dffadb86fbbd98bc3d8942f6c2/aiohttp-3.8.5-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f9df0b93fea3d24d4a9c75568861cced9435741df51f9d4fa48a81162c86b0d1",
"md5": "bd7b38b871bb057ebac33a2457ea799e",
"sha256": "ae871a964e1987a943d83d6709d20ec6103ca1eaf52f7e0d36ee1b5bebb8b9b9"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "bd7b38b871bb057ebac33a2457ea799e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 519190,
"upload_time": "2023-07-19T17:04:44",
"upload_time_iso_8601": "2023-07-19T17:04:44.161047Z",
"url": "https://files.pythonhosted.org/packages/f9/df/0b93fea3d24d4a9c75568861cced9435741df51f9d4fa48a81162c86b0d1/aiohttp-3.8.5-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "64049ef622ccb6b340b3b53812e19f1658311614889452258eff91f6c9e1a1d9",
"md5": "e0882b213f2c3e01bf1e655eea4c446a",
"sha256": "461908b2578955045efde733719d62f2b649c404189a09a632d245b445c9c975"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e0882b213f2c3e01bf1e655eea4c446a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 362573,
"upload_time": "2023-07-19T17:04:45",
"upload_time_iso_8601": "2023-07-19T17:04:45.724205Z",
"url": "https://files.pythonhosted.org/packages/64/04/9ef622ccb6b340b3b53812e19f1658311614889452258eff91f6c9e1a1d9/aiohttp-3.8.5-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "471033abd984a476e314afdb4711fbd0aac1b25927676fa591445537da3aee98",
"md5": "a9819647c01919173de52a185c6a6f0b",
"sha256": "72a860c215e26192379f57cae5ab12b168b75db8271f111019509a1196dfc780"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a9819647c01919173de52a185c6a6f0b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 339623,
"upload_time": "2023-07-19T17:04:47",
"upload_time_iso_8601": "2023-07-19T17:04:47.725936Z",
"url": "https://files.pythonhosted.org/packages/47/10/33abd984a476e314afdb4711fbd0aac1b25927676fa591445537da3aee98/aiohttp-3.8.5-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "28efa6dcc3f42d1a86a988faa076b0013b1d469677e604186712420a6d6232be",
"md5": "25f2d593452a8fff7ddfe252043ab385",
"sha256": "cc14be025665dba6202b6a71cfcdb53210cc498e50068bc088076624471f8bb9"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "25f2d593452a8fff7ddfe252043ab385",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1068985,
"upload_time": "2023-07-19T17:04:49",
"upload_time_iso_8601": "2023-07-19T17:04:49.750471Z",
"url": "https://files.pythonhosted.org/packages/28/ef/a6dcc3f42d1a86a988faa076b0013b1d469677e604186712420a6d6232be/aiohttp-3.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ba2ca9525a82e153aef31877489b83db37c43b3761dc4b67917fbf07e808d63c",
"md5": "bd5bcecaf92c683920d4cd231ee7b9fc",
"sha256": "8af740fc2711ad85f1a5c034a435782fbd5b5f8314c9a3ef071424a8158d7f6b"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "bd5bcecaf92c683920d4cd231ee7b9fc",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1081643,
"upload_time": "2023-07-19T17:04:51",
"upload_time_iso_8601": "2023-07-19T17:04:51.286183Z",
"url": "https://files.pythonhosted.org/packages/ba/2c/a9525a82e153aef31877489b83db37c43b3761dc4b67917fbf07e808d63c/aiohttp-3.8.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e29dd4413e6a2a70914a985bed16c094aace562f58d9ffa9c0f135886cec5d94",
"md5": "281111d3bd2d89e4e8673e51c8b4b2f4",
"sha256": "841cd8233cbd2111a0ef0a522ce016357c5e3aff8a8ce92bcfa14cef890d698f"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "281111d3bd2d89e4e8673e51c8b4b2f4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1130432,
"upload_time": "2023-07-19T17:04:52",
"upload_time_iso_8601": "2023-07-19T17:04:52.922298Z",
"url": "https://files.pythonhosted.org/packages/e2/9d/d4413e6a2a70914a985bed16c094aace562f58d9ffa9c0f135886cec5d94/aiohttp-3.8.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4cb85c5efbb1d3cb1da3612b8e309e8e31b602ee9c5cca8e41961db385fc9d00",
"md5": "331564006fc4526108da8fb7f75c689c",
"sha256": "5ed1c46fb119f1b59304b5ec89f834f07124cd23ae5b74288e364477641060ff"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "331564006fc4526108da8fb7f75c689c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1055606,
"upload_time": "2023-07-19T17:04:54",
"upload_time_iso_8601": "2023-07-19T17:04:54.621493Z",
"url": "https://files.pythonhosted.org/packages/4c/b8/5c5efbb1d3cb1da3612b8e309e8e31b602ee9c5cca8e41961db385fc9d00/aiohttp-3.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2fbea493d42f53d03bc84b656f48334341fa9af34e5b206350235289042ba2df",
"md5": "c937e7de676d25c6899bacb3fbed09ce",
"sha256": "84f8ae3e09a34f35c18fa57f015cc394bd1389bce02503fb30c394d04ee6b938"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "c937e7de676d25c6899bacb3fbed09ce",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1012582,
"upload_time": "2023-07-19T17:04:56",
"upload_time_iso_8601": "2023-07-19T17:04:56.209441Z",
"url": "https://files.pythonhosted.org/packages/2f/be/a493d42f53d03bc84b656f48334341fa9af34e5b206350235289042ba2df/aiohttp-3.8.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "39ead2504722169aa26b231869479cd1682bbb1d19add7a077aac2c198843650",
"md5": "960c34f0d5c0dcd938f8df645bb37023",
"sha256": "62360cb771707cb70a6fd114b9871d20d7dd2163a0feafe43fd115cfe4fe845e"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "960c34f0d5c0dcd938f8df645bb37023",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1077274,
"upload_time": "2023-07-19T17:04:58",
"upload_time_iso_8601": "2023-07-19T17:04:58.319154Z",
"url": "https://files.pythonhosted.org/packages/39/ea/d2504722169aa26b231869479cd1682bbb1d19add7a077aac2c198843650/aiohttp-3.8.5-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "977a83bc96b2a6eb7e366bac22092b128138dd0b2d8eaea98ab4d0df43241eef",
"md5": "be3a84389eaa0e151dd64cb4111972fe",
"sha256": "23fb25a9f0a1ca1f24c0a371523546366bb642397c94ab45ad3aedf2941cec6a"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "be3a84389eaa0e151dd64cb4111972fe",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1031341,
"upload_time": "2023-07-19T17:04:59",
"upload_time_iso_8601": "2023-07-19T17:04:59.891628Z",
"url": "https://files.pythonhosted.org/packages/97/7a/83bc96b2a6eb7e366bac22092b128138dd0b2d8eaea98ab4d0df43241eef/aiohttp-3.8.5-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "faeb0f0d28973da3b587c4cf9480cd70e2ea84bc4ed4640f6ee307a543afd51e",
"md5": "679697f12a80dd2aa129b3e956d360f9",
"sha256": "b0ba0d15164eae3d878260d4c4df859bbdc6466e9e6689c344a13334f988bb53"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "679697f12a80dd2aa129b3e956d360f9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1100154,
"upload_time": "2023-07-19T17:05:01",
"upload_time_iso_8601": "2023-07-19T17:05:01.923806Z",
"url": "https://files.pythonhosted.org/packages/fa/eb/0f0d28973da3b587c4cf9480cd70e2ea84bc4ed4640f6ee307a543afd51e/aiohttp-3.8.5-cp311-cp311-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e9bce98e2206b584339571b7cee81d482ead971a2501ae8932cff9624a16da29",
"md5": "22311152fe83deb5511fd5071958d0f8",
"sha256": "5d20003b635fc6ae3f96d7260281dfaf1894fc3aa24d1888a9b2628e97c241e5"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "22311152fe83deb5511fd5071958d0f8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1140231,
"upload_time": "2023-07-19T17:05:03",
"upload_time_iso_8601": "2023-07-19T17:05:03.732507Z",
"url": "https://files.pythonhosted.org/packages/e9/bc/e98e2206b584339571b7cee81d482ead971a2501ae8932cff9624a16da29/aiohttp-3.8.5-cp311-cp311-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9afa9e22382d459e83a5cda7fb9209698798cacbf7335b0ad6e376f7afa938c2",
"md5": "fa268b235f9413d6d9082c0a97a76d41",
"sha256": "0175d745d9e85c40dcc51c8f88c74bfbaef9e7afeeeb9d03c37977270303064c"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "fa268b235f9413d6d9082c0a97a76d41",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1066474,
"upload_time": "2023-07-19T17:05:05",
"upload_time_iso_8601": "2023-07-19T17:05:05.730500Z",
"url": "https://files.pythonhosted.org/packages/9a/fa/9e22382d459e83a5cda7fb9209698798cacbf7335b0ad6e376f7afa938c2/aiohttp-3.8.5-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7ab390e5844182fdffdb3f82ab0137467411122ec998967d5145c566698ec992",
"md5": "e87ff7e783144b0acf7d74c1d84358f3",
"sha256": "2e1b1e51b0774408f091d268648e3d57f7260c1682e7d3a63cb00d22d71bb945"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "e87ff7e783144b0acf7d74c1d84358f3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 306747,
"upload_time": "2023-07-19T17:05:07",
"upload_time_iso_8601": "2023-07-19T17:05:07.382995Z",
"url": "https://files.pythonhosted.org/packages/7a/b3/90e5844182fdffdb3f82ab0137467411122ec998967d5145c566698ec992/aiohttp-3.8.5-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "214e452858698e53ddf06ea137eac268db535c9605394c27236f9986168dd82f",
"md5": "3cae596d605489d67e6e3fe6c9041604",
"sha256": "043d2299f6dfdc92f0ac5e995dfc56668e1587cea7f9aa9d8a78a1b6554e5755"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "3cae596d605489d67e6e3fe6c9041604",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 320572,
"upload_time": "2023-07-19T17:05:09",
"upload_time_iso_8601": "2023-07-19T17:05:09.148230Z",
"url": "https://files.pythonhosted.org/packages/21/4e/452858698e53ddf06ea137eac268db535c9605394c27236f9986168dd82f/aiohttp-3.8.5-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "07470165360fadfba2f257b527486e953b56c6d837428187d9857419d350ecf8",
"md5": "e2ef83e54cbcf60d909b66351b4d7db7",
"sha256": "cae533195e8122584ec87531d6df000ad07737eaa3c81209e85c928854d2195c"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp36-cp36m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e2ef83e54cbcf60d909b66351b4d7db7",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 362243,
"upload_time": "2023-07-19T17:05:10",
"upload_time_iso_8601": "2023-07-19T17:05:10.652439Z",
"url": "https://files.pythonhosted.org/packages/07/47/0165360fadfba2f257b527486e953b56c6d837428187d9857419d350ecf8/aiohttp-3.8.5-cp36-cp36m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dde1804361fd845ecb16998da5c27c04b537d35086ebf88f5797b5c349bc81ca",
"md5": "6d13484faa52a19c6d4a1e58cd3925f9",
"sha256": "4f21e83f355643c345177a5d1d8079f9f28b5133bcd154193b799d380331d5d3"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6d13484faa52a19c6d4a1e58cd3925f9",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 983728,
"upload_time": "2023-07-19T17:05:12",
"upload_time_iso_8601": "2023-07-19T17:05:12.383021Z",
"url": "https://files.pythonhosted.org/packages/dd/e1/804361fd845ecb16998da5c27c04b537d35086ebf88f5797b5c349bc81ca/aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "05ef30e36a499457d3e11fe0ab8e5b8bbcfaef1a01327437a36bf214f414f1c6",
"md5": "e42feb6770e306d364ad7973c0c626ac",
"sha256": "a7a75ef35f2df54ad55dbf4b73fe1da96f370e51b10c91f08b19603c64004acc"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "e42feb6770e306d364ad7973c0c626ac",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 1000797,
"upload_time": "2023-07-19T17:05:14",
"upload_time_iso_8601": "2023-07-19T17:05:14.212097Z",
"url": "https://files.pythonhosted.org/packages/05/ef/30e36a499457d3e11fe0ab8e5b8bbcfaef1a01327437a36bf214f414f1c6/aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7d57b86596c0d6e4ca9329c56096ec438f6fb6f3f471412c0b0ea092e6a9506e",
"md5": "b275e163e7e1980fad584d6244c3f683",
"sha256": "2e2e9839e14dd5308ee773c97115f1e0a1cb1d75cbeeee9f33824fa5144c7634"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "b275e163e7e1980fad584d6244c3f683",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 1048742,
"upload_time": "2023-07-19T17:05:16",
"upload_time_iso_8601": "2023-07-19T17:05:16.361792Z",
"url": "https://files.pythonhosted.org/packages/7d/57/b86596c0d6e4ca9329c56096ec438f6fb6f3f471412c0b0ea092e6a9506e/aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d94cb2926a0cc4eff4d836165f701ee31e7af95877da68ba11da0a66317d6cca",
"md5": "08bb9c4aee39439a5c6c0d45d9cdbbad",
"sha256": "c44e65da1de4403d0576473e2344828ef9c4c6244d65cf4b75549bb46d40b8dd"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "08bb9c4aee39439a5c6c0d45d9cdbbad",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 973807,
"upload_time": "2023-07-19T17:05:17",
"upload_time_iso_8601": "2023-07-19T17:05:17.895637Z",
"url": "https://files.pythonhosted.org/packages/d9/4c/b2926a0cc4eff4d836165f701ee31e7af95877da68ba11da0a66317d6cca/aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ecea0761f9d8911b3a9e6a3dfe2cb36e665a4d8e01496d8bab7c3d19cc804419",
"md5": "d402b076423225283ef048cf7faf3127",
"sha256": "78d847e4cde6ecc19125ccbc9bfac4a7ab37c234dd88fbb3c5c524e8e14da543"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "d402b076423225283ef048cf7faf3127",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 946195,
"upload_time": "2023-07-19T17:05:19",
"upload_time_iso_8601": "2023-07-19T17:05:19.503152Z",
"url": "https://files.pythonhosted.org/packages/ec/ea/0761f9d8911b3a9e6a3dfe2cb36e665a4d8e01496d8bab7c3d19cc804419/aiohttp-3.8.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a70717024230c49af141ed3c3e02025bf44082a3f1adb2a8e9c4486e189fb50a",
"md5": "745560026737a0600f2f21e4a2318774",
"sha256": "c7a815258e5895d8900aec4454f38dca9aed71085f227537208057853f9d13f2"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "745560026737a0600f2f21e4a2318774",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 992324,
"upload_time": "2023-07-19T17:05:21",
"upload_time_iso_8601": "2023-07-19T17:05:21.761486Z",
"url": "https://files.pythonhosted.org/packages/a7/07/17024230c49af141ed3c3e02025bf44082a3f1adb2a8e9c4486e189fb50a/aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e71e95648927dab1013009ff065fad44e7e20c46bc30c9e1a7f57ef64aed4669",
"md5": "281468a4e236e4babeff5d08f5903209",
"sha256": "8b929b9bd7cd7c3939f8bcfffa92fae7480bd1aa425279d51a89327d600c704d"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "281468a4e236e4babeff5d08f5903209",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 957677,
"upload_time": "2023-07-19T17:05:23",
"upload_time_iso_8601": "2023-07-19T17:05:23.925297Z",
"url": "https://files.pythonhosted.org/packages/e7/1e/95648927dab1013009ff065fad44e7e20c46bc30c9e1a7f57ef64aed4669/aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e9637ef9f8eb44da519476fa4751eb635ab6ec8f3c460836df4e4f934c6d7f06",
"md5": "058f73a5282b2d587fdb240b2610bbb3",
"sha256": "5db3a5b833764280ed7618393832e0853e40f3d3e9aa128ac0ba0f8278d08649"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "058f73a5282b2d587fdb240b2610bbb3",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 1010081,
"upload_time": "2023-07-19T17:05:25",
"upload_time_iso_8601": "2023-07-19T17:05:25.498830Z",
"url": "https://files.pythonhosted.org/packages/e9/63/7ef9f8eb44da519476fa4751eb635ab6ec8f3c460836df4e4f934c6d7f06/aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "69e73d185c482f894cd13a0f2679639a37900569f2687bf314c160ae9390b92a",
"md5": "7f527daf80cf38a7f128e3b0c975d79b",
"sha256": "a0215ce6041d501f3155dc219712bc41252d0ab76474615b9700d63d4d9292af"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "7f527daf80cf38a7f128e3b0c975d79b",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 1052903,
"upload_time": "2023-07-19T17:05:27",
"upload_time_iso_8601": "2023-07-19T17:05:27.244794Z",
"url": "https://files.pythonhosted.org/packages/69/e7/3d185c482f894cd13a0f2679639a37900569f2687bf314c160ae9390b92a/aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bceb9b577831ec0eb100a8947ca74032b584d019a0fb49a597784a0bad5f502d",
"md5": "a714af8a812c75fefd014a1cac0e703f",
"sha256": "fd1ed388ea7fbed22c4968dd64bab0198de60750a25fe8c0c9d4bef5abe13824"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "a714af8a812c75fefd014a1cac0e703f",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 982649,
"upload_time": "2023-07-19T17:05:29",
"upload_time_iso_8601": "2023-07-19T17:05:29.696226Z",
"url": "https://files.pythonhosted.org/packages/bc/eb/9b577831ec0eb100a8947ca74032b584d019a0fb49a597784a0bad5f502d/aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aa1747c628b84102ee22a373e719c066b1b47f812cde91da798760b79278a558",
"md5": "f37eec9b7206bfedcbdd75b9d250aad2",
"sha256": "6e6783bcc45f397fdebc118d772103d751b54cddf5b60fbcc958382d7dd64f3e"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp36-cp36m-win32.whl",
"has_sig": false,
"md5_digest": "f37eec9b7206bfedcbdd75b9d250aad2",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 319872,
"upload_time": "2023-07-19T17:05:31",
"upload_time_iso_8601": "2023-07-19T17:05:31.764231Z",
"url": "https://files.pythonhosted.org/packages/aa/17/47c628b84102ee22a373e719c066b1b47f812cde91da798760b79278a558/aiohttp-3.8.5-cp36-cp36m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cecca511907a85f5cc07907ffcf13cba452f2ad56ccbcb6b899f5990e90fbb33",
"md5": "db2fbbe588d86677198450c18339fd93",
"sha256": "b5411d82cddd212644cf9360879eb5080f0d5f7d809d03262c50dad02f01421a"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "db2fbbe588d86677198450c18339fd93",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 340808,
"upload_time": "2023-07-19T17:05:33",
"upload_time_iso_8601": "2023-07-19T17:05:33.268199Z",
"url": "https://files.pythonhosted.org/packages/ce/cc/a511907a85f5cc07907ffcf13cba452f2ad56ccbcb6b899f5990e90fbb33/aiohttp-3.8.5-cp36-cp36m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "04ed6ed24d72499923e1bf06395e6344e743a4e239bdd2081117bb099ca8e3ab",
"md5": "0f7abbe6fa780534d3f70c47f1faef72",
"sha256": "01d4c0c874aa4ddfb8098e85d10b5e875a70adc63db91f1ae65a4b04d3344cda"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "0f7abbe6fa780534d3f70c47f1faef72",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 362007,
"upload_time": "2023-07-19T17:05:35",
"upload_time_iso_8601": "2023-07-19T17:05:35.065506Z",
"url": "https://files.pythonhosted.org/packages/04/ed/6ed24d72499923e1bf06395e6344e743a4e239bdd2081117bb099ca8e3ab/aiohttp-3.8.5-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09b39aa4f0cffc54dc30acc527bfd11efa3567bfbff52e73234b492c2c70c836",
"md5": "80054adfaf59e3ad66b3890ce5879010",
"sha256": "e5980a746d547a6ba173fd5ee85ce9077e72d118758db05d229044b469d9029a"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "80054adfaf59e3ad66b3890ce5879010",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 984869,
"upload_time": "2023-07-19T17:05:36",
"upload_time_iso_8601": "2023-07-19T17:05:36.746634Z",
"url": "https://files.pythonhosted.org/packages/09/b3/9aa4f0cffc54dc30acc527bfd11efa3567bfbff52e73234b492c2c70c836/aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a0933029303a404d5933eba54b719ee99edbdb694c11febda8a0d20247a8bbf0",
"md5": "43d6a190715b59e27430682373ca15f1",
"sha256": "2a482e6da906d5e6e653be079b29bc173a48e381600161c9932d89dfae5942ef"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "43d6a190715b59e27430682373ca15f1",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 1002219,
"upload_time": "2023-07-19T17:05:39",
"upload_time_iso_8601": "2023-07-19T17:05:39.089824Z",
"url": "https://files.pythonhosted.org/packages/a0/93/3029303a404d5933eba54b719ee99edbdb694c11febda8a0d20247a8bbf0/aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "72f6acd0215d66007486fe793fb41d816b7072a51db1c90fdf5ad3ff8e7675a8",
"md5": "14d2c0d868bb5601cb5493f324e5e7c7",
"sha256": "80bd372b8d0715c66c974cf57fe363621a02f359f1ec81cba97366948c7fc873"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "14d2c0d868bb5601cb5493f324e5e7c7",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 1050090,
"upload_time": "2023-07-19T17:05:41",
"upload_time_iso_8601": "2023-07-19T17:05:41.005206Z",
"url": "https://files.pythonhosted.org/packages/72/f6/acd0215d66007486fe793fb41d816b7072a51db1c90fdf5ad3ff8e7675a8/aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7f024bc6d32b76499d8e326f816ddc7f94e4b06004258fd0a02d7ec3cb1aaf4f",
"md5": "949f32f912bbf3e1806af4ba1ae25af1",
"sha256": "c1161b345c0a444ebcf46bf0a740ba5dcf50612fd3d0528883fdc0eff578006a"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "949f32f912bbf3e1806af4ba1ae25af1",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 976487,
"upload_time": "2023-07-19T17:05:42",
"upload_time_iso_8601": "2023-07-19T17:05:42.909702Z",
"url": "https://files.pythonhosted.org/packages/7f/02/4bc6d32b76499d8e326f816ddc7f94e4b06004258fd0a02d7ec3cb1aaf4f/aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bbb363a1905d1b019374d2088c63e3d55374f9472fd2e1f31af6b92139cf3a28",
"md5": "3ab038305e1d95bf777b69039af350ac",
"sha256": "cd56db019015b6acfaaf92e1ac40eb8434847d9bf88b4be4efe5bfd260aee692"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "3ab038305e1d95bf777b69039af350ac",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 948504,
"upload_time": "2023-07-19T17:05:44",
"upload_time_iso_8601": "2023-07-19T17:05:44.570545Z",
"url": "https://files.pythonhosted.org/packages/bb/b3/63a1905d1b019374d2088c63e3d55374f9472fd2e1f31af6b92139cf3a28/aiohttp-3.8.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "04fce0144af8749e169ea424a69afc5048a8fb52308be5f3046af1b254677158",
"md5": "061cfd4203bedd5ba8b2873fead6cfcd",
"sha256": "153c2549f6c004d2754cc60603d4668899c9895b8a89397444a9c4efa282aaf4"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "061cfd4203bedd5ba8b2873fead6cfcd",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 996608,
"upload_time": "2023-07-19T17:05:46",
"upload_time_iso_8601": "2023-07-19T17:05:46.462673Z",
"url": "https://files.pythonhosted.org/packages/04/fc/e0144af8749e169ea424a69afc5048a8fb52308be5f3046af1b254677158/aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a64ee0527996c5c13e416794a61fe19449c6c80ea00f8bba3c741356c56c1f35",
"md5": "226a9d7bbee476530c0da345fddadcc7",
"sha256": "4a01951fabc4ce26ab791da5f3f24dca6d9a6f24121746eb19756416ff2d881b"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "226a9d7bbee476530c0da345fddadcc7",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 964483,
"upload_time": "2023-07-19T17:05:48",
"upload_time_iso_8601": "2023-07-19T17:05:48.751226Z",
"url": "https://files.pythonhosted.org/packages/a6/4e/e0527996c5c13e416794a61fe19449c6c80ea00f8bba3c741356c56c1f35/aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d4ea378963f80a19a986b1a53df12ed930eea4fcff59515367fd45124aaaab64",
"md5": "cb0b5b9209eb3f5e1b744dcf4e4a931b",
"sha256": "bfb9162dcf01f615462b995a516ba03e769de0789de1cadc0f916265c257e5d8"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "cb0b5b9209eb3f5e1b744dcf4e4a931b",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 1018336,
"upload_time": "2023-07-19T17:05:50",
"upload_time_iso_8601": "2023-07-19T17:05:50.582301Z",
"url": "https://files.pythonhosted.org/packages/d4/ea/378963f80a19a986b1a53df12ed930eea4fcff59515367fd45124aaaab64/aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "36226bd526ff6c3488023f6ce94d346e70ef16ab746c5a2d6413bb122bba3884",
"md5": "31d98f5beb88b213ccc81ade1a9fefe6",
"sha256": "7dde0009408969a43b04c16cbbe252c4f5ef4574ac226bc8815cd7342d2028b6"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "31d98f5beb88b213ccc81ade1a9fefe6",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 1060994,
"upload_time": "2023-07-19T17:05:52",
"upload_time_iso_8601": "2023-07-19T17:05:52.292051Z",
"url": "https://files.pythonhosted.org/packages/36/22/6bd526ff6c3488023f6ce94d346e70ef16ab746c5a2d6413bb122bba3884/aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e6f39a0710f6549d0ebcd6333e6e0e517fdfdb3ce285966c097b2d3d31b1411a",
"md5": "fa9485cd7ef1ab824e23b723b8f9e307",
"sha256": "4149d34c32f9638f38f544b3977a4c24052042affa895352d3636fa8bffd030a"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "fa9485cd7ef1ab824e23b723b8f9e307",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 989178,
"upload_time": "2023-07-19T17:05:53",
"upload_time_iso_8601": "2023-07-19T17:05:53.840920Z",
"url": "https://files.pythonhosted.org/packages/e6/f3/9a0710f6549d0ebcd6333e6e0e517fdfdb3ce285966c097b2d3d31b1411a/aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "01cc4a40b7f54fd05cecc7a85f34148e3e142b93b27951d1b5a31399680afc8f",
"md5": "ae2b64da66a90ff108bc8dc6c1a5a2fe",
"sha256": "68c5a82c8779bdfc6367c967a4a1b2aa52cd3595388bf5961a62158ee8a59e22"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "ae2b64da66a90ff108bc8dc6c1a5a2fe",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 309592,
"upload_time": "2023-07-19T17:05:55",
"upload_time_iso_8601": "2023-07-19T17:05:55.636039Z",
"url": "https://files.pythonhosted.org/packages/01/cc/4a40b7f54fd05cecc7a85f34148e3e142b93b27951d1b5a31399680afc8f/aiohttp-3.8.5-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fcb48af4a563c8cae9d2236644052c8d4d8947f0db4610bb9274a1587da3d3d2",
"md5": "3cce816afea1ccc73292d9e42d874ee4",
"sha256": "2cf57fb50be5f52bda004b8893e63b48530ed9f0d6c96c84620dc92fe3cd9b9d"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "3cce816afea1ccc73292d9e42d874ee4",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 325622,
"upload_time": "2023-07-19T17:05:57",
"upload_time_iso_8601": "2023-07-19T17:05:57.213753Z",
"url": "https://files.pythonhosted.org/packages/fc/b4/8af4a563c8cae9d2236644052c8d4d8947f0db4610bb9274a1587da3d3d2/aiohttp-3.8.5-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3d927fd0f03180efe1bc7f90f1341823793aebd62d1c2ea83f78cac5259db7ce",
"md5": "4248bd0b91af525c8a10cea1456bb2f6",
"sha256": "eca4bf3734c541dc4f374ad6010a68ff6c6748f00451707f39857f429ca36ced"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "4248bd0b91af525c8a10cea1456bb2f6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 528682,
"upload_time": "2023-07-19T17:05:58",
"upload_time_iso_8601": "2023-07-19T17:05:58.799075Z",
"url": "https://files.pythonhosted.org/packages/3d/92/7fd0f03180efe1bc7f90f1341823793aebd62d1c2ea83f78cac5259db7ce/aiohttp-3.8.5-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a97cb3d65d913545cab44d033a04c957ba1efd7049f699289e5569f0839f7f44",
"md5": "c7a0a0a8d04ef6d45c58514097dab821",
"sha256": "1274477e4c71ce8cfe6c1ec2f806d57c015ebf84d83373676036e256bc55d690"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "c7a0a0a8d04ef6d45c58514097dab821",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 367043,
"upload_time": "2023-07-19T17:06:00",
"upload_time_iso_8601": "2023-07-19T17:06:00.464198Z",
"url": "https://files.pythonhosted.org/packages/a9/7c/b3d65d913545cab44d033a04c957ba1efd7049f699289e5569f0839f7f44/aiohttp-3.8.5-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d054679e181e175280c305b063d82161c467763d18a61a17596b2567d4bc97b3",
"md5": "ffda8a977cba37b5ba592729a0e540ee",
"sha256": "28c543e54710d6158fc6f439296c7865b29e0b616629767e685a7185fab4a6b9"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ffda8a977cba37b5ba592729a0e540ee",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 344672,
"upload_time": "2023-07-19T17:06:02",
"upload_time_iso_8601": "2023-07-19T17:06:02.121285Z",
"url": "https://files.pythonhosted.org/packages/d0/54/679e181e175280c305b063d82161c467763d18a61a17596b2567d4bc97b3/aiohttp-3.8.5-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "447f86866731e8fed4de12d446e8fca146f7ed3635a397aa0e9b8fd988a36d18",
"md5": "1c81c4f5354d9852d7744b068c6739b9",
"sha256": "910bec0c49637d213f5d9877105d26e0c4a4de2f8b1b29405ff37e9fc0ad52b8"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1c81c4f5354d9852d7744b068c6739b9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1074744,
"upload_time": "2023-07-19T17:06:03",
"upload_time_iso_8601": "2023-07-19T17:06:03.712094Z",
"url": "https://files.pythonhosted.org/packages/44/7f/86866731e8fed4de12d446e8fca146f7ed3635a397aa0e9b8fd988a36d18/aiohttp-3.8.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "06d8c33b820f5967f869e4aa9cd35748a50f4f48b11bbaf2df3f88bde33eb86e",
"md5": "d39d61797efc37727f0963e3ca502eb2",
"sha256": "5443910d662db951b2e58eb70b0fbe6b6e2ae613477129a5805d0b66c54b6cb7"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "d39d61797efc37727f0963e3ca502eb2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1097701,
"upload_time": "2023-07-19T17:06:05",
"upload_time_iso_8601": "2023-07-19T17:06:05.623818Z",
"url": "https://files.pythonhosted.org/packages/06/d8/c33b820f5967f869e4aa9cd35748a50f4f48b11bbaf2df3f88bde33eb86e/aiohttp-3.8.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0f0b793a5a59cb4901e5c0d59335b105827b4c8f3e3369c8da97893b14c44618",
"md5": "c5850613f7e6bd3bc5795a150388ec2a",
"sha256": "2e460be6978fc24e3df83193dc0cc4de46c9909ed92dd47d349a452ef49325b7"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "c5850613f7e6bd3bc5795a150388ec2a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1143143,
"upload_time": "2023-07-19T17:06:07",
"upload_time_iso_8601": "2023-07-19T17:06:07.516098Z",
"url": "https://files.pythonhosted.org/packages/0f/0b/793a5a59cb4901e5c0d59335b105827b4c8f3e3369c8da97893b14c44618/aiohttp-3.8.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "842220c41a698eb5435ff7cd3bc6884542d2a40f3c91a221f713d77217facc39",
"md5": "8a75eef5bab3e03a2f0bc8f20d4771f3",
"sha256": "fb1558def481d84f03b45888473fc5a1f35747b5f334ef4e7a571bc0dfcb11f8"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8a75eef5bab3e03a2f0bc8f20d4771f3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1065504,
"upload_time": "2023-07-19T17:06:09",
"upload_time_iso_8601": "2023-07-19T17:06:09.368821Z",
"url": "https://files.pythonhosted.org/packages/84/22/20c41a698eb5435ff7cd3bc6884542d2a40f3c91a221f713d77217facc39/aiohttp-3.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fb138d4063b3418948d44d16f316b2455c9e1938926cb1bb70f49cd24973241d",
"md5": "903ba24cdf7993512d7d10eca4b5e174",
"sha256": "34dd0c107799dcbbf7d48b53be761a013c0adf5571bf50c4ecad5643fe9cfcd0"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "903ba24cdf7993512d7d10eca4b5e174",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1034647,
"upload_time": "2023-07-19T17:06:11",
"upload_time_iso_8601": "2023-07-19T17:06:11.307499Z",
"url": "https://files.pythonhosted.org/packages/fb/13/8d4063b3418948d44d16f316b2455c9e1938926cb1bb70f49cd24973241d/aiohttp-3.8.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f4c49f8ed4358648a913ce99715c01ef125fcd505b22fcfa45a867185129df34",
"md5": "c55299b9bccab9c3dde666b534066581",
"sha256": "aa1990247f02a54185dc0dff92a6904521172a22664c863a03ff64c42f9b5410"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "c55299b9bccab9c3dde666b534066581",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1118596,
"upload_time": "2023-07-19T17:06:13",
"upload_time_iso_8601": "2023-07-19T17:06:13.215876Z",
"url": "https://files.pythonhosted.org/packages/f4/c4/9f8ed4358648a913ce99715c01ef125fcd505b22fcfa45a867185129df34/aiohttp-3.8.5-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "94d7a16770ff89fc9dacfd47687297a47bb462619bef6fdab7d8ab2f2cab975d",
"md5": "847aef812a57230aca9a85d8ef05650f",
"sha256": "0e584a10f204a617d71d359fe383406305a4b595b333721fa50b867b4a0a1548"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "847aef812a57230aca9a85d8ef05650f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1080974,
"upload_time": "2023-07-19T17:06:15",
"upload_time_iso_8601": "2023-07-19T17:06:15.006281Z",
"url": "https://files.pythonhosted.org/packages/94/d7/a16770ff89fc9dacfd47687297a47bb462619bef6fdab7d8ab2f2cab975d/aiohttp-3.8.5-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5a6f8c2f9af459925036482683c404c37c7e12fd3973b53d0262816c4875b9b3",
"md5": "0d10535383a96d7402c403657b9e06d7",
"sha256": "a3cf433f127efa43fee6b90ea4c6edf6c4a17109d1d037d1a52abec84d8f2e42"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "0d10535383a96d7402c403657b9e06d7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1144018,
"upload_time": "2023-07-19T17:06:16",
"upload_time_iso_8601": "2023-07-19T17:06:16.748157Z",
"url": "https://files.pythonhosted.org/packages/5a/6f/8c2f9af459925036482683c404c37c7e12fd3973b53d0262816c4875b9b3/aiohttp-3.8.5-cp38-cp38-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bc60bb6864ca6ae30df6801dfeea4fe48aee0ded7337bd5b3fbe9b6a8206d587",
"md5": "5f669620bc9e40a92b18f69bc2e3bfe6",
"sha256": "c11f5b099adafb18e65c2c997d57108b5bbeaa9eeee64a84302c0978b1ec948b"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "5f669620bc9e40a92b18f69bc2e3bfe6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1186023,
"upload_time": "2023-07-19T17:06:18",
"upload_time_iso_8601": "2023-07-19T17:06:18.407146Z",
"url": "https://files.pythonhosted.org/packages/bc/60/bb6864ca6ae30df6801dfeea4fe48aee0ded7337bd5b3fbe9b6a8206d587/aiohttp-3.8.5-cp38-cp38-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "360466040ceb51b63328f6082b764fa31f0829a5f1dee28243efc1f96b8fe9cd",
"md5": "16643706f0986ce7743ad2e31ad7c547",
"sha256": "84de26ddf621d7ac4c975dbea4c945860e08cccde492269db4e1538a6a6f3c35"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "16643706f0986ce7743ad2e31ad7c547",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1109910,
"upload_time": "2023-07-19T17:06:20",
"upload_time_iso_8601": "2023-07-19T17:06:20.883693Z",
"url": "https://files.pythonhosted.org/packages/36/04/66040ceb51b63328f6082b764fa31f0829a5f1dee28243efc1f96b8fe9cd/aiohttp-3.8.5-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0c552fda830f43568e23ef6445582a21beafa8d5f06727f5de32c6fb2976e1a3",
"md5": "91a386ab024f5f3b3bbc248e950e601a",
"sha256": "ab88bafedc57dd0aab55fa728ea10c1911f7e4d8b43e1d838a1739f33712921c"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "91a386ab024f5f3b3bbc248e950e601a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 311229,
"upload_time": "2023-07-19T17:06:22",
"upload_time_iso_8601": "2023-07-19T17:06:22.430704Z",
"url": "https://files.pythonhosted.org/packages/0c/55/2fda830f43568e23ef6445582a21beafa8d5f06727f5de32c6fb2976e1a3/aiohttp-3.8.5-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "686fb9ff16bc6aef88cf20b021344b6570582f9eb00f3ed6ade38e1919729e1a",
"md5": "5c644fa1a7e5593d4d6d37de6fcb7a82",
"sha256": "5798a9aad1879f626589f3df0f8b79b3608a92e9beab10e5fda02c8a2c60db2e"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "5c644fa1a7e5593d4d6d37de6fcb7a82",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 327925,
"upload_time": "2023-07-19T17:06:23",
"upload_time_iso_8601": "2023-07-19T17:06:23.944960Z",
"url": "https://files.pythonhosted.org/packages/68/6f/b9ff16bc6aef88cf20b021344b6570582f9eb00f3ed6ade38e1919729e1a/aiohttp-3.8.5-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0410dd1e480800b7375c18da30f69e591906565822328a7518fbd17e07bdf1ea",
"md5": "110bddc548d014a19f30fcdf15173e97",
"sha256": "a6ce61195c6a19c785df04e71a4537e29eaa2c50fe745b732aa937c0c77169f3"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "110bddc548d014a19f30fcdf15173e97",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 530614,
"upload_time": "2023-07-19T17:06:25",
"upload_time_iso_8601": "2023-07-19T17:06:25.566900Z",
"url": "https://files.pythonhosted.org/packages/04/10/dd1e480800b7375c18da30f69e591906565822328a7518fbd17e07bdf1ea/aiohttp-3.8.5-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e69c41d1c23c9e2dfc4cc0bd295754539f186fd012460b8b4ec091e42d3dbcc2",
"md5": "e4e7543d7cb7b67cf820410d7b557d46",
"sha256": "773dd01706d4db536335fcfae6ea2440a70ceb03dd3e7378f3e815b03c97ab51"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e4e7543d7cb7b67cf820410d7b557d46",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 368111,
"upload_time": "2023-07-19T17:06:27",
"upload_time_iso_8601": "2023-07-19T17:06:27.221935Z",
"url": "https://files.pythonhosted.org/packages/e6/9c/41d1c23c9e2dfc4cc0bd295754539f186fd012460b8b4ec091e42d3dbcc2/aiohttp-3.8.5-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4c114d5b58a7b5654df85a0c9b66cc45ca983330eb1d575ec845dfdacfc0839b",
"md5": "7287eaf3c69007dbd00d25e255a9de21",
"sha256": "f83a552443a526ea38d064588613aca983d0ee0038801bc93c0c916428310c28"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "7287eaf3c69007dbd00d25e255a9de21",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 345571,
"upload_time": "2023-07-19T17:06:28",
"upload_time_iso_8601": "2023-07-19T17:06:28.966969Z",
"url": "https://files.pythonhosted.org/packages/4c/11/4d5b58a7b5654df85a0c9b66cc45ca983330eb1d575ec845dfdacfc0839b/aiohttp-3.8.5-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c3b70eae59e1f572f754a6eaec2684134af4778856e70fbadc039c44f4c725b5",
"md5": "3054bb12b0b029a23fb9ba9bdbf67669",
"sha256": "1f7372f7341fcc16f57b2caded43e81ddd18df53320b6f9f042acad41f8e049a"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3054bb12b0b029a23fb9ba9bdbf67669",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1062857,
"upload_time": "2023-07-19T17:06:30",
"upload_time_iso_8601": "2023-07-19T17:06:30.619771Z",
"url": "https://files.pythonhosted.org/packages/c3/b7/0eae59e1f572f754a6eaec2684134af4778856e70fbadc039c44f4c725b5/aiohttp-3.8.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7a30142e5193ba6826b44de9ce6dd0182662c2392ac1a95ec506f6fddfe02c59",
"md5": "be53bf4182ee8a36ea0314184db60362",
"sha256": "ea353162f249c8097ea63c2169dd1aa55de1e8fecbe63412a9bc50816e87b761"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "be53bf4182ee8a36ea0314184db60362",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1081702,
"upload_time": "2023-07-19T17:06:32",
"upload_time_iso_8601": "2023-07-19T17:06:32.576405Z",
"url": "https://files.pythonhosted.org/packages/7a/30/142e5193ba6826b44de9ce6dd0182662c2392ac1a95ec506f6fddfe02c59/aiohttp-3.8.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "82e3ec4218e6e29811b4e48f8edcee6a6117f5700f88b0999a7ee5e9e375195a",
"md5": "3ccf89958709db8bd145321ce5c053c6",
"sha256": "e5d47ae48db0b2dcf70bc8a3bc72b3de86e2a590fc299fdbbb15af320d2659de"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "3ccf89958709db8bd145321ce5c053c6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1129870,
"upload_time": "2023-07-19T17:06:34",
"upload_time_iso_8601": "2023-07-19T17:06:34.490418Z",
"url": "https://files.pythonhosted.org/packages/82/e3/ec4218e6e29811b4e48f8edcee6a6117f5700f88b0999a7ee5e9e375195a/aiohttp-3.8.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5b8d821fcb268cfc056964a75da3823896b17eabaa4968a2414121bc93b0c501",
"md5": "00481ea0721361d8b1c839d33dd723dc",
"sha256": "d827176898a2b0b09694fbd1088c7a31836d1a505c243811c87ae53a3f6273c1"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "00481ea0721361d8b1c839d33dd723dc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1052829,
"upload_time": "2023-07-19T17:06:36",
"upload_time_iso_8601": "2023-07-19T17:06:36.107960Z",
"url": "https://files.pythonhosted.org/packages/5b/8d/821fcb268cfc056964a75da3823896b17eabaa4968a2414121bc93b0c501/aiohttp-3.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "901c5b9eabc67a2467b410bb8ae49bc6d101c777112d176dc00ea189cfb23a38",
"md5": "ddaac1291ae3024352505609d4999d48",
"sha256": "3562b06567c06439d8b447037bb655ef69786c590b1de86c7ab81efe1c9c15d8"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ddaac1291ae3024352505609d4999d48",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1017935,
"upload_time": "2023-07-19T17:06:38",
"upload_time_iso_8601": "2023-07-19T17:06:38.154168Z",
"url": "https://files.pythonhosted.org/packages/90/1c/5b9eabc67a2467b410bb8ae49bc6d101c777112d176dc00ea189cfb23a38/aiohttp-3.8.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3c763dab43766d6b0614e5f13f0ad9de5ff15d3c65e980aaf3db5a8f84f5f930",
"md5": "01f7da5459c0b10eb00c7d4a50dc531b",
"sha256": "4e874cbf8caf8959d2adf572a78bba17cb0e9d7e51bb83d86a3697b686a0ab4d"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "01f7da5459c0b10eb00c7d4a50dc531b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1071235,
"upload_time": "2023-07-19T17:06:40",
"upload_time_iso_8601": "2023-07-19T17:06:40.055847Z",
"url": "https://files.pythonhosted.org/packages/3c/76/3dab43766d6b0614e5f13f0ad9de5ff15d3c65e980aaf3db5a8f84f5f930/aiohttp-3.8.5-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1170957dea63720bbaf24378ad1fc33ea1401847ff48af4cb3c96208d76e64dc",
"md5": "f0072ec1ca9fa737f477a29cdc2ad80a",
"sha256": "6809a00deaf3810e38c628e9a33271892f815b853605a936e2e9e5129762356c"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "f0072ec1ca9fa737f477a29cdc2ad80a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1033959,
"upload_time": "2023-07-19T17:06:42",
"upload_time_iso_8601": "2023-07-19T17:06:42.007883Z",
"url": "https://files.pythonhosted.org/packages/11/70/957dea63720bbaf24378ad1fc33ea1401847ff48af4cb3c96208d76e64dc/aiohttp-3.8.5-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "31e3f5096e4649ab436d1206706bccb2ee84dc171db60739207a1e45f757fbe1",
"md5": "056f0e3aa6118635b9913b146ae22765",
"sha256": "33776e945d89b29251b33a7e7d006ce86447b2cfd66db5e5ded4e5cd0340585c"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "056f0e3aa6118635b9913b146ae22765",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1094480,
"upload_time": "2023-07-19T17:06:44",
"upload_time_iso_8601": "2023-07-19T17:06:44.426729Z",
"url": "https://files.pythonhosted.org/packages/31/e3/f5096e4649ab436d1206706bccb2ee84dc171db60739207a1e45f757fbe1/aiohttp-3.8.5-cp39-cp39-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2dd698176dabff559aeaf0eb9f098ee0e6096c146b239b9050e95353c27729d0",
"md5": "4c3d26032c63823229612b12f29f4d5c",
"sha256": "eaeed7abfb5d64c539e2db173f63631455f1196c37d9d8d873fc316470dfbacd"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "4c3d26032c63823229612b12f29f4d5c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1139288,
"upload_time": "2023-07-19T17:06:46",
"upload_time_iso_8601": "2023-07-19T17:06:46.083769Z",
"url": "https://files.pythonhosted.org/packages/2d/d6/98176dabff559aeaf0eb9f098ee0e6096c146b239b9050e95353c27729d0/aiohttp-3.8.5-cp39-cp39-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "50cfc42191d1528e360734501af249ad26bd873879a1ee0e3e34d9b22b490d59",
"md5": "4708f89efeb773bb6525fd84c468195b",
"sha256": "e91d635961bec2d8f19dfeb41a539eb94bd073f075ca6dae6c8dc0ee89ad6f91"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "4708f89efeb773bb6525fd84c468195b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1063221,
"upload_time": "2023-07-19T17:06:48",
"upload_time_iso_8601": "2023-07-19T17:06:48.335177Z",
"url": "https://files.pythonhosted.org/packages/50/cf/c42191d1528e360734501af249ad26bd873879a1ee0e3e34d9b22b490d59/aiohttp-3.8.5-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8f102e63b412e7f9b686f9c0c9b68a354cf91610241ee888b1b3a1e866313114",
"md5": "dff510e3e91f1bdf88bd05556df244e9",
"sha256": "00ad4b6f185ec67f3e6562e8a1d2b69660be43070bd0ef6fcec5211154c7df67"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "dff510e3e91f1bdf88bd05556df244e9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 310274,
"upload_time": "2023-07-19T17:06:49",
"upload_time_iso_8601": "2023-07-19T17:06:49.843755Z",
"url": "https://files.pythonhosted.org/packages/8f/10/2e63b412e7f9b686f9c0c9b68a354cf91610241ee888b1b3a1e866313114/aiohttp-3.8.5-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c27c66aff492b444f0d089bd74ffcb7346ebc3521ba68c77ac5479a2b947091c",
"md5": "910a03e16a261715d424d8f4d0f1ae19",
"sha256": "c0a9034379a37ae42dea7ac1e048352d96286626251862e448933c0f59cbd79c"
},
"downloads": -1,
"filename": "aiohttp-3.8.5-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "910a03e16a261715d424d8f4d0f1ae19",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 327072,
"upload_time": "2023-07-19T17:06:51",
"upload_time_iso_8601": "2023-07-19T17:06:51.647736Z",
"url": "https://files.pythonhosted.org/packages/c2/7c/66aff492b444f0d089bd74ffcb7346ebc3521ba68c77ac5479a2b947091c/aiohttp-3.8.5-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d6126fc7c7dcc84e263940e87cbafca17c1ef28f39dae6c0b10f51e4ccc764ee",
"md5": "4bb59a17563df9a692c64418224ade12",
"sha256": "b9552ec52cc147dbf1944ac7ac98af7602e51ea2dcd076ed194ca3c0d1c7d0bc"
},
"downloads": -1,
"filename": "aiohttp-3.8.5.tar.gz",
"has_sig": false,
"md5_digest": "4bb59a17563df9a692c64418224ade12",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 7358303,
"upload_time": "2023-07-19T17:06:53",
"upload_time_iso_8601": "2023-07-19T17:06:53.443235Z",
"url": "https://files.pythonhosted.org/packages/d6/12/6fc7c7dcc84e263940e87cbafca17c1ef28f39dae6c0b10f51e4ccc764ee/aiohttp-3.8.5.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.8.6": [
{
"comment_text": "",
"digests": {
"blake2b_256": "9089b332d6d2b27d84a876baba1405c6c51b85d30dd474878ef35646f0021a1c",
"md5": "0264814e270e641cd5132bc904197dfa",
"sha256": "41d55fc043954cddbbd82503d9cc3f4814a40bcef30b3569bc7b5e34130718c1"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "0264814e270e641cd5132bc904197dfa",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 532302,
"upload_time": "2023-10-07T14:27:15",
"upload_time_iso_8601": "2023-10-07T14:27:15.181580Z",
"url": "https://files.pythonhosted.org/packages/90/89/b332d6d2b27d84a876baba1405c6c51b85d30dd474878ef35646f0021a1c/aiohttp-3.8.6-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fd2fd203acfe3a2d1e2823fef5876ff342cc34d08c57748baac2fc67914cea22",
"md5": "8e0a80bc8f22bf34c3b5df4773e31570",
"sha256": "1d84166673694841d8953f0a8d0c90e1087739d24632fe86b1a08819168b4566"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "8e0a80bc8f22bf34c3b5df4773e31570",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 368952,
"upload_time": "2023-10-07T14:27:17",
"upload_time_iso_8601": "2023-10-07T14:27:17.193145Z",
"url": "https://files.pythonhosted.org/packages/fd/2f/d203acfe3a2d1e2823fef5876ff342cc34d08c57748baac2fc67914cea22/aiohttp-3.8.6-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "94a961f60723b20f9accdf4c9dc812ad4a61c1c63bdc732bc4e81fde9e6c40a9",
"md5": "dfda3cefd8bc78ab07afe60a7fe8cc51",
"sha256": "253bf92b744b3170eb4c4ca2fa58f9c4b87aeb1df42f71d4e78815e6e8b73c9e"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "dfda3cefd8bc78ab07afe60a7fe8cc51",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 347738,
"upload_time": "2023-10-07T14:27:18",
"upload_time_iso_8601": "2023-10-07T14:27:18.631488Z",
"url": "https://files.pythonhosted.org/packages/94/a9/61f60723b20f9accdf4c9dc812ad4a61c1c63bdc732bc4e81fde9e6c40a9/aiohttp-3.8.6-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9c4208ce69ce417411802ef80b2add79982571c0c4868e1220137c39c5aa10b3",
"md5": "0eca62d79eed06b21017b457a167f547",
"sha256": "3fd194939b1f764d6bb05490987bfe104287bbf51b8d862261ccf66f48fb4096"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0eca62d79eed06b21017b457a167f547",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1041001,
"upload_time": "2023-10-07T14:27:20",
"upload_time_iso_8601": "2023-10-07T14:27:20.560256Z",
"url": "https://files.pythonhosted.org/packages/9c/42/08ce69ce417411802ef80b2add79982571c0c4868e1220137c39c5aa10b3/aiohttp-3.8.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1c6fa5095b998f7af73afaa019545dd066e28b4ceff951e3a3c9bfdbd8262c0f",
"md5": "4df72dc5b351bdfc0f1c71b70faf57e7",
"sha256": "6c5f938d199a6fdbdc10bbb9447496561c3a9a565b43be564648d81e1102ac22"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "4df72dc5b351bdfc0f1c71b70faf57e7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1062291,
"upload_time": "2023-10-07T14:27:22",
"upload_time_iso_8601": "2023-10-07T14:27:22.260901Z",
"url": "https://files.pythonhosted.org/packages/1c/6f/a5095b998f7af73afaa019545dd066e28b4ceff951e3a3c9bfdbd8262c0f/aiohttp-3.8.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b922cb7dd72b319442784a70a4e3aba2bdb03fe0f917f09794a934b2818c883b",
"md5": "38e57e8fb9cd86aac3ad62259fd18b2f",
"sha256": "2817b2f66ca82ee699acd90e05c95e79bbf1dc986abb62b61ec8aaf851e81c93"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "38e57e8fb9cd86aac3ad62259fd18b2f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1108493,
"upload_time": "2023-10-07T14:27:24",
"upload_time_iso_8601": "2023-10-07T14:27:24.239238Z",
"url": "https://files.pythonhosted.org/packages/b9/22/cb7dd72b319442784a70a4e3aba2bdb03fe0f917f09794a934b2818c883b/aiohttp-3.8.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "418e4c48881316bbced3d13089c4d0df4be321ce79a0c695d82dee9996aaf56b",
"md5": "4a49785fd6add5772035d5ceb3308aa2",
"sha256": "0fa375b3d34e71ccccf172cab401cd94a72de7a8cc01847a7b3386204093bb47"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4a49785fd6add5772035d5ceb3308aa2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1036340,
"upload_time": "2023-10-07T14:27:25",
"upload_time_iso_8601": "2023-10-07T14:27:25.718711Z",
"url": "https://files.pythonhosted.org/packages/41/8e/4c48881316bbced3d13089c4d0df4be321ce79a0c695d82dee9996aaf56b/aiohttp-3.8.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ad2ee5277d266c9e826124ecfdcd175a50ea4405848f54e399bd610a2f262334",
"md5": "af4ea370f01da3c3bcd4db6a8ebc0a1a",
"sha256": "9de50a199b7710fa2904be5a4a9b51af587ab24c8e540a7243ab737b45844543"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "af4ea370f01da3c3bcd4db6a8ebc0a1a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1009427,
"upload_time": "2023-10-07T14:27:27",
"upload_time_iso_8601": "2023-10-07T14:27:27.325892Z",
"url": "https://files.pythonhosted.org/packages/ad/2e/e5277d266c9e826124ecfdcd175a50ea4405848f54e399bd610a2f262334/aiohttp-3.8.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d48aaba767514faf55cc73f46894f6f9053bf5df415f3bffdfc77d204a974555",
"md5": "5f7549c058bb8c22877ea78dc2a0c236",
"sha256": "e1d8cb0b56b3587c5c01de3bf2f600f186da7e7b5f7353d1bf26a8ddca57f965"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "5f7549c058bb8c22877ea78dc2a0c236",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1055961,
"upload_time": "2023-10-07T14:27:29",
"upload_time_iso_8601": "2023-10-07T14:27:29.338052Z",
"url": "https://files.pythonhosted.org/packages/d4/8a/aba767514faf55cc73f46894f6f9053bf5df415f3bffdfc77d204a974555/aiohttp-3.8.6-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af6b578f0cf2acfb9169234505c208edd33b999810a311cf8fb4b69fad21cd49",
"md5": "d5062a42ecf1a70b2eda56ae3599cee6",
"sha256": "8e31e9db1bee8b4f407b77fd2507337a0a80665ad7b6c749d08df595d88f1cf5"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "d5062a42ecf1a70b2eda56ae3599cee6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1019086,
"upload_time": "2023-10-07T14:27:30",
"upload_time_iso_8601": "2023-10-07T14:27:30.827877Z",
"url": "https://files.pythonhosted.org/packages/af/6b/578f0cf2acfb9169234505c208edd33b999810a311cf8fb4b69fad21cd49/aiohttp-3.8.6-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f8eb6e55b5323d2a630d9581e428c8fd73336cb001611e8bd01d105c75c2ba1f",
"md5": "10d8b9b79bd37e80b6c1f9253fbfd79d",
"sha256": "7bc88fc494b1f0311d67f29fee6fd636606f4697e8cc793a2d912ac5b19aa38d"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp310-cp310-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "10d8b9b79bd37e80b6c1f9253fbfd79d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1080872,
"upload_time": "2023-10-07T14:27:32",
"upload_time_iso_8601": "2023-10-07T14:27:32.899379Z",
"url": "https://files.pythonhosted.org/packages/f8/eb/6e55b5323d2a630d9581e428c8fd73336cb001611e8bd01d105c75c2ba1f/aiohttp-3.8.6-cp310-cp310-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "caecedaac7f45bd8de9264bcdcff63de310aa4d736d632a7795be960f01d502d",
"md5": "c2b0c99a096772c535ded63fc3be5e58",
"sha256": "ec00c3305788e04bf6d29d42e504560e159ccaf0be30c09203b468a6c1ccd3b2"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp310-cp310-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "c2b0c99a096772c535ded63fc3be5e58",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1122600,
"upload_time": "2023-10-07T14:27:34",
"upload_time_iso_8601": "2023-10-07T14:27:34.356904Z",
"url": "https://files.pythonhosted.org/packages/ca/ec/edaac7f45bd8de9264bcdcff63de310aa4d736d632a7795be960f01d502d/aiohttp-3.8.6-cp310-cp310-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5684406bf7ee4a186f6aed928b0cf8a0ca56b2b37c366e7508e3ca16f4d93f61",
"md5": "61d3f2612c6af2e8a76847a2c88f2053",
"sha256": "ad1407db8f2f49329729564f71685557157bfa42b48f4b93e53721a16eb813ed"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "61d3f2612c6af2e8a76847a2c88f2053",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 1049856,
"upload_time": "2023-10-07T14:27:35",
"upload_time_iso_8601": "2023-10-07T14:27:35.981911Z",
"url": "https://files.pythonhosted.org/packages/56/84/406bf7ee4a186f6aed928b0cf8a0ca56b2b37c366e7508e3ca16f4d93f61/aiohttp-3.8.6-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bf0d5acea8c563e35568b9b461d82fbe1f3a7b61df75aa6517a5fb8f3b980213",
"md5": "ce1383494423a439861ffa7568a8f38b",
"sha256": "ccc360e87341ad47c777f5723f68adbb52b37ab450c8bc3ca9ca1f3e849e5fe2"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "ce1383494423a439861ffa7568a8f38b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 309600,
"upload_time": "2023-10-07T14:27:37",
"upload_time_iso_8601": "2023-10-07T14:27:37.318290Z",
"url": "https://files.pythonhosted.org/packages/bf/0d/5acea8c563e35568b9b461d82fbe1f3a7b61df75aa6517a5fb8f3b980213/aiohttp-3.8.6-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1d6063b8a1e05956ff92916128c192c9317c8eaaaffacc8fef4ef95db0f84264",
"md5": "cd131a57153bb456fbd397a21a618f0e",
"sha256": "93c15c8e48e5e7b89d5cb4613479d144fda8344e2d886cf694fd36db4cc86865"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "cd131a57153bb456fbd397a21a618f0e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 325180,
"upload_time": "2023-10-07T14:27:39",
"upload_time_iso_8601": "2023-10-07T14:27:39.025098Z",
"url": "https://files.pythonhosted.org/packages/1d/60/63b8a1e05956ff92916128c192c9317c8eaaaffacc8fef4ef95db0f84264/aiohttp-3.8.6-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a83b0d1898ea48ee5398f25366314d2539eb2652c0d707481217765697033639",
"md5": "46d5d3b582c04e6a710048b879100821",
"sha256": "6e2f9cc8e5328f829f6e1fb74a0a3a939b14e67e80832975e01929e320386b34"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "46d5d3b582c04e6a710048b879100821",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 525141,
"upload_time": "2023-10-07T14:27:40",
"upload_time_iso_8601": "2023-10-07T14:27:40.388831Z",
"url": "https://files.pythonhosted.org/packages/a8/3b/0d1898ea48ee5398f25366314d2539eb2652c0d707481217765697033639/aiohttp-3.8.6-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0bf76fce2fa9c9352c2b0a9868cbd6aaab57a46fa52330e90c0fa0cdf990cec0",
"md5": "b712c0fe5483bfcad9cf5028a27fed9e",
"sha256": "e6a00ffcc173e765e200ceefb06399ba09c06db97f401f920513a10c803604ca"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "b712c0fe5483bfcad9cf5028a27fed9e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 365783,
"upload_time": "2023-10-07T14:27:42",
"upload_time_iso_8601": "2023-10-07T14:27:42.971460Z",
"url": "https://files.pythonhosted.org/packages/0b/f7/6fce2fa9c9352c2b0a9868cbd6aaab57a46fa52330e90c0fa0cdf990cec0/aiohttp-3.8.6-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e605d2a665713ce5f46d9fef626fee5dd4487cbcc3ee6f773706add1f872d92",
"md5": "c65a128c2d88253f5def67223c949ff2",
"sha256": "41bdc2ba359032e36c0e9de5a3bd00d6fb7ea558a6ce6b70acedf0da86458321"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c65a128c2d88253f5def67223c949ff2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 343537,
"upload_time": "2023-10-07T14:27:45",
"upload_time_iso_8601": "2023-10-07T14:27:45.792625Z",
"url": "https://files.pythonhosted.org/packages/8e/60/5d2a665713ce5f46d9fef626fee5dd4487cbcc3ee6f773706add1f872d92/aiohttp-3.8.6-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "25762c64c6519e985dc6845e189895d2bb22754da12ae4c2b0d8d73b3e1f4c08",
"md5": "57fe6f1c335dad7cdd8a3ddc98d6a116",
"sha256": "14cd52ccf40006c7a6cd34a0f8663734e5363fd981807173faf3a017e202fec9"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "57fe6f1c335dad7cdd8a3ddc98d6a116",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1074029,
"upload_time": "2023-10-07T14:27:47",
"upload_time_iso_8601": "2023-10-07T14:27:47.500359Z",
"url": "https://files.pythonhosted.org/packages/25/76/2c64c6519e985dc6845e189895d2bb22754da12ae4c2b0d8d73b3e1f4c08/aiohttp-3.8.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "63e9101c855d8a233718bcc238d2916473cc1d8b64f4b103a615e45b10093511",
"md5": "cf057e012d0da5d91f4157594af1384d",
"sha256": "2d5b785c792802e7b275c420d84f3397668e9d49ab1cb52bd916b3b3ffcf09ad"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "cf057e012d0da5d91f4157594af1384d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1093746,
"upload_time": "2023-10-07T14:27:49",
"upload_time_iso_8601": "2023-10-07T14:27:49.222567Z",
"url": "https://files.pythonhosted.org/packages/63/e9/101c855d8a233718bcc238d2916473cc1d8b64f4b103a615e45b10093511/aiohttp-3.8.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "85fd72967b892120a76af52af87759ad3ab6a4a90a313505c809a2e1889477e2",
"md5": "eb08769e8c098cbf34ba0b1c2d03d9e6",
"sha256": "1bed815f3dc3d915c5c1e556c397c8667826fbc1b935d95b0ad680787896a358"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "eb08769e8c098cbf34ba0b1c2d03d9e6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1141414,
"upload_time": "2023-10-07T14:27:51",
"upload_time_iso_8601": "2023-10-07T14:27:51.210246Z",
"url": "https://files.pythonhosted.org/packages/85/fd/72967b892120a76af52af87759ad3ab6a4a90a313505c809a2e1889477e2/aiohttp-3.8.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "37d6747aca77b7f0a76abf1133e4193a840f57b925609fcf2c1a18058748493d",
"md5": "bc52ba4c7dc1dab036daffea1da9f85f",
"sha256": "96603a562b546632441926cd1293cfcb5b69f0b4159e6077f7c7dbdfb686af4d"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bc52ba4c7dc1dab036daffea1da9f85f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1065883,
"upload_time": "2023-10-07T14:27:52",
"upload_time_iso_8601": "2023-10-07T14:27:52.959157Z",
"url": "https://files.pythonhosted.org/packages/37/d6/747aca77b7f0a76abf1133e4193a840f57b925609fcf2c1a18058748493d/aiohttp-3.8.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3a6c88258afa359dc785b13b63bb97596f31838efbe83d8bb7d55b08767c8b59",
"md5": "d800588bb4e8ee06bafb17e72589fe58",
"sha256": "d76e8b13161a202d14c9584590c4df4d068c9567c99506497bdd67eaedf36403"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "d800588bb4e8ee06bafb17e72589fe58",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1027610,
"upload_time": "2023-10-07T14:27:54",
"upload_time_iso_8601": "2023-10-07T14:27:54.967703Z",
"url": "https://files.pythonhosted.org/packages/3a/6c/88258afa359dc785b13b63bb97596f31838efbe83d8bb7d55b08767c8b59/aiohttp-3.8.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "591fdedd8c420e4942bacc0fa91e8b581c8f68cc6e2115cc614815010ac42b68",
"md5": "920b2aad03c77b79b37900c1d6814b43",
"sha256": "e3f1e3f1a1751bb62b4a1b7f4e435afcdade6c17a4fd9b9d43607cebd242924a"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "920b2aad03c77b79b37900c1d6814b43",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1087955,
"upload_time": "2023-10-07T14:27:56",
"upload_time_iso_8601": "2023-10-07T14:27:56.581062Z",
"url": "https://files.pythonhosted.org/packages/59/1f/dedd8c420e4942bacc0fa91e8b581c8f68cc6e2115cc614815010ac42b68/aiohttp-3.8.6-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6d2ec8fbed8b9b4a9bc55dea81b6d2bd7cb58ed03e64cb846767ec8c58418ded",
"md5": "5e3c3fb5e4f2852a1abc687917aac407",
"sha256": "76b36b3124f0223903609944a3c8bf28a599b2cc0ce0be60b45211c8e9be97f8"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "5e3c3fb5e4f2852a1abc687917aac407",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1045132,
"upload_time": "2023-10-07T14:27:58",
"upload_time_iso_8601": "2023-10-07T14:27:58.254459Z",
"url": "https://files.pythonhosted.org/packages/6d/2e/c8fbed8b9b4a9bc55dea81b6d2bd7cb58ed03e64cb846767ec8c58418ded/aiohttp-3.8.6-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9a10875db03b038bc0d19d5c9b53bc26cec326b88928e0f78276d665fbd18a4c",
"md5": "6a3ae23e4b2d2951c76bbadf42f31f4b",
"sha256": "a2ece4af1f3c967a4390c284797ab595a9f1bc1130ef8b01828915a05a6ae684"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp311-cp311-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "6a3ae23e4b2d2951c76bbadf42f31f4b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1113724,
"upload_time": "2023-10-07T14:27:59",
"upload_time_iso_8601": "2023-10-07T14:27:59.820787Z",
"url": "https://files.pythonhosted.org/packages/9a/10/875db03b038bc0d19d5c9b53bc26cec326b88928e0f78276d665fbd18a4c/aiohttp-3.8.6-cp311-cp311-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "054c23adbda755477d35a3763eafcbd010df4daf66439a9aac77f7c246b5959e",
"md5": "daad4bd692c2b49b342f99035dfd2fda",
"sha256": "16d330b3b9db87c3883e565340d292638a878236418b23cc8b9b11a054aaa887"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp311-cp311-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "daad4bd692c2b49b342f99035dfd2fda",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1152562,
"upload_time": "2023-10-07T14:28:02",
"upload_time_iso_8601": "2023-10-07T14:28:02.223462Z",
"url": "https://files.pythonhosted.org/packages/05/4c/23adbda755477d35a3763eafcbd010df4daf66439a9aac77f7c246b5959e/aiohttp-3.8.6-cp311-cp311-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1ac86d3e1746a98f0fe0da0f61c7596b63b7646ac8c5ccde81a38d2a18923a60",
"md5": "0ae3a72a8eebd0aafe62dc9b29ca14f2",
"sha256": "42c89579f82e49db436b69c938ab3e1559e5a4409eb8639eb4143989bc390f2f"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "0ae3a72a8eebd0aafe62dc9b29ca14f2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 1079122,
"upload_time": "2023-10-07T14:28:04",
"upload_time_iso_8601": "2023-10-07T14:28:04.307514Z",
"url": "https://files.pythonhosted.org/packages/1a/c8/6d3e1746a98f0fe0da0f61c7596b63b7646ac8c5ccde81a38d2a18923a60/aiohttp-3.8.6-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0ebafa4db1609f48decfdc33fee6ae42ea27fbf9b1372f5cfd3cb1af1c030378",
"md5": "ac77718ced8f465843015d2d7ed5b326",
"sha256": "efd2fcf7e7b9d7ab16e6b7d54205beded0a9c8566cb30f09c1abe42b4e22bdcb"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "ac77718ced8f465843015d2d7ed5b326",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 308894,
"upload_time": "2023-10-07T14:28:06",
"upload_time_iso_8601": "2023-10-07T14:28:06.461962Z",
"url": "https://files.pythonhosted.org/packages/0e/ba/fa4db1609f48decfdc33fee6ae42ea27fbf9b1372f5cfd3cb1af1c030378/aiohttp-3.8.6-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2e9f9c37b01fc6a37c92f139a4cd937a92f03ebbd75379cfd55e85ca1e571643",
"md5": "6387b9876eb5aaf51a06dab5c5cdf054",
"sha256": "3b2ab182fc28e7a81f6c70bfbd829045d9480063f5ab06f6e601a3eddbbd49a0"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "6387b9876eb5aaf51a06dab5c5cdf054",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 322584,
"upload_time": "2023-10-07T14:28:07",
"upload_time_iso_8601": "2023-10-07T14:28:07.981063Z",
"url": "https://files.pythonhosted.org/packages/2e/9f/9c37b01fc6a37c92f139a4cd937a92f03ebbd75379cfd55e85ca1e571643/aiohttp-3.8.6-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "30aea1c6b91c6e5a7642d01587c36307428a63fa5862ec245abe732f2119937e",
"md5": "bbcbde34a9b6d286a2154d017f25d992",
"sha256": "fdee8405931b0615220e5ddf8cd7edd8592c606a8e4ca2a00704883c396e4479"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp36-cp36m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "bbcbde34a9b6d286a2154d017f25d992",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 363948,
"upload_time": "2023-10-07T14:28:09",
"upload_time_iso_8601": "2023-10-07T14:28:09.898183Z",
"url": "https://files.pythonhosted.org/packages/30/ae/a1c6b91c6e5a7642d01587c36307428a63fa5862ec245abe732f2119937e/aiohttp-3.8.6-cp36-cp36m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e53debbf3dc7a9b54c1a5c6b54d46a768284a3700918b21937806ef379cb4cb",
"md5": "cfab43f93a14651293a1856d856b06b2",
"sha256": "d25036d161c4fe2225d1abff2bd52c34ed0b1099f02c208cd34d8c05729882f0"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "cfab43f93a14651293a1856d856b06b2",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 989495,
"upload_time": "2023-10-07T14:28:11",
"upload_time_iso_8601": "2023-10-07T14:28:11.484133Z",
"url": "https://files.pythonhosted.org/packages/4e/53/debbf3dc7a9b54c1a5c6b54d46a768284a3700918b21937806ef379cb4cb/aiohttp-3.8.6-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "80603d5f1ee28675ed8878d529afe4d2487148a70279b391f54438a4846b070f",
"md5": "2117c796e8bb93dae55f55079468dd1e",
"sha256": "5d791245a894be071d5ab04bbb4850534261a7d4fd363b094a7b9963e8cdbd31"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "2117c796e8bb93dae55f55079468dd1e",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 1010682,
"upload_time": "2023-10-07T14:28:13",
"upload_time_iso_8601": "2023-10-07T14:28:13.101569Z",
"url": "https://files.pythonhosted.org/packages/80/60/3d5f1ee28675ed8878d529afe4d2487148a70279b391f54438a4846b070f/aiohttp-3.8.6-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9e9b31b6eaf47f7712248d674489cade79e62d510baf61a3c21c9feadd644506",
"md5": "0f31de0dfc4ade4de972a8b17af4edc2",
"sha256": "0cccd1de239afa866e4ce5c789b3032442f19c261c7d8a01183fd956b1935349"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "0f31de0dfc4ade4de972a8b17af4edc2",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 1056907,
"upload_time": "2023-10-07T14:28:15",
"upload_time_iso_8601": "2023-10-07T14:28:15.179673Z",
"url": "https://files.pythonhosted.org/packages/9e/9b/31b6eaf47f7712248d674489cade79e62d510baf61a3c21c9feadd644506/aiohttp-3.8.6-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b8b66dd2c1f2915b39414f753c276f54dc2890612347a78e21c135fa3c76fd15",
"md5": "b26dbed530bdc0cadf19804db226f465",
"sha256": "1f13f60d78224f0dace220d8ab4ef1dbc37115eeeab8c06804fec11bec2bbd07"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b26dbed530bdc0cadf19804db226f465",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 985723,
"upload_time": "2023-10-07T14:28:16",
"upload_time_iso_8601": "2023-10-07T14:28:16.708184Z",
"url": "https://files.pythonhosted.org/packages/b8/b6/6dd2c1f2915b39414f753c276f54dc2890612347a78e21c135fa3c76fd15/aiohttp-3.8.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "47bf36710367c7360c5d82876ec4a9b529efcf2135c9485995011cdacdc21df4",
"md5": "306b49b8b341a358db787d35b1d3ff16",
"sha256": "8a9b5a0606faca4f6cc0d338359d6fa137104c337f489cd135bb7fbdbccb1e39"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "306b49b8b341a358db787d35b1d3ff16",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 959578,
"upload_time": "2023-10-07T14:28:18",
"upload_time_iso_8601": "2023-10-07T14:28:18.171100Z",
"url": "https://files.pythonhosted.org/packages/47/bf/36710367c7360c5d82876ec4a9b529efcf2135c9485995011cdacdc21df4/aiohttp-3.8.6-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2053274f0f7382a7f11e5c681374c41153f1cea3315ad15b75e52c0684126146",
"md5": "faeb7b15295c827b585e239b851dbd70",
"sha256": "13da35c9ceb847732bf5c6c5781dcf4780e14392e5d3b3c689f6d22f8e15ae31"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp36-cp36m-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "faeb7b15295c827b585e239b851dbd70",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 997365,
"upload_time": "2023-10-07T14:28:19",
"upload_time_iso_8601": "2023-10-07T14:28:19.894609Z",
"url": "https://files.pythonhosted.org/packages/20/53/274f0f7382a7f11e5c681374c41153f1cea3315ad15b75e52c0684126146/aiohttp-3.8.6-cp36-cp36m-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "963b8aefe1346820702f10fa890b7d2732e89ce4b90a3ab1b2e1a1b990080932",
"md5": "86bd2a92f2f2c7f3c2225e3be5e18391",
"sha256": "4d4cbe4ffa9d05f46a28252efc5941e0462792930caa370a6efaf491f412bc66"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp36-cp36m-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "86bd2a92f2f2c7f3c2225e3be5e18391",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 969717,
"upload_time": "2023-10-07T14:28:21",
"upload_time_iso_8601": "2023-10-07T14:28:21.584628Z",
"url": "https://files.pythonhosted.org/packages/96/3b/8aefe1346820702f10fa890b7d2732e89ce4b90a3ab1b2e1a1b990080932/aiohttp-3.8.6-cp36-cp36m-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3dd467cbb09790d19544034e5209751f459f9e2398422059bb2b4d72dffc99c9",
"md5": "5831ebfcc215eba0fe0264ae56a07db8",
"sha256": "229852e147f44da0241954fc6cb910ba074e597f06789c867cb7fb0621e0ba7a"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp36-cp36m-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "5831ebfcc215eba0fe0264ae56a07db8",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 1025430,
"upload_time": "2023-10-07T14:28:23",
"upload_time_iso_8601": "2023-10-07T14:28:23.037324Z",
"url": "https://files.pythonhosted.org/packages/3d/d4/67cbb09790d19544034e5209751f459f9e2398422059bb2b4d72dffc99c9/aiohttp-3.8.6-cp36-cp36m-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "60ec06a75cd34e93e70683fa18daa22ed1aeb715fcd004e08ba6cd8655ff3fa8",
"md5": "b7cb61fbd32282ebe9f471615459b387",
"sha256": "713103a8bdde61d13490adf47171a1039fd880113981e55401a0f7b42c37d071"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp36-cp36m-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "b7cb61fbd32282ebe9f471615459b387",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 1064239,
"upload_time": "2023-10-07T14:28:25",
"upload_time_iso_8601": "2023-10-07T14:28:25.177314Z",
"url": "https://files.pythonhosted.org/packages/60/ec/06a75cd34e93e70683fa18daa22ed1aeb715fcd004e08ba6cd8655ff3fa8/aiohttp-3.8.6-cp36-cp36m-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "372392642297cf616b10ee7c2556868423572cbf8ee909ddf53d42b87b7eac80",
"md5": "3ae7d775e72f0bbb8045d2e9a1200160",
"sha256": "45ad816b2c8e3b60b510f30dbd37fe74fd4a772248a52bb021f6fd65dff809b6"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp36-cp36m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "3ae7d775e72f0bbb8045d2e9a1200160",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 992964,
"upload_time": "2023-10-07T14:28:27",
"upload_time_iso_8601": "2023-10-07T14:28:27.328207Z",
"url": "https://files.pythonhosted.org/packages/37/23/92642297cf616b10ee7c2556868423572cbf8ee909ddf53d42b87b7eac80/aiohttp-3.8.6-cp36-cp36m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dbf3b0fc16d5f5e6798af1dcf1ba23d8bd45360689b5bd2d798338c5e4bc1a0e",
"md5": "b9927c520882dbd04ff8efc66656fe4a",
"sha256": "2b8d4e166e600dcfbff51919c7a3789ff6ca8b3ecce16e1d9c96d95dd569eb4c"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp36-cp36m-win32.whl",
"has_sig": false,
"md5_digest": "b9927c520882dbd04ff8efc66656fe4a",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 321801,
"upload_time": "2023-10-07T14:28:28",
"upload_time_iso_8601": "2023-10-07T14:28:28.852477Z",
"url": "https://files.pythonhosted.org/packages/db/f3/b0fc16d5f5e6798af1dcf1ba23d8bd45360689b5bd2d798338c5e4bc1a0e/aiohttp-3.8.6-cp36-cp36m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c3538af78687a015bb83c278587dd5fd2d884b3275336dc279e4848e9ea90d9f",
"md5": "ea68ba2296ff87436a46dded7f1ded21",
"sha256": "0912ed87fee967940aacc5306d3aa8ba3a459fcd12add0b407081fbefc931e53"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "ea68ba2296ff87436a46dded7f1ded21",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 342143,
"upload_time": "2023-10-07T14:28:30",
"upload_time_iso_8601": "2023-10-07T14:28:30.243318Z",
"url": "https://files.pythonhosted.org/packages/c3/53/8af78687a015bb83c278587dd5fd2d884b3275336dc279e4848e9ea90d9f/aiohttp-3.8.6-cp36-cp36m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ceba8dd37895c9a9a5e822f81dcaa218bef272991acaeaf8bf66f7a8aa17cefb",
"md5": "4ceae57f30ef5993227423ac002972e6",
"sha256": "e2a988a0c673c2e12084f5e6ba3392d76c75ddb8ebc6c7e9ead68248101cd446"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "4ceae57f30ef5993227423ac002972e6",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 363774,
"upload_time": "2023-10-07T14:28:31",
"upload_time_iso_8601": "2023-10-07T14:28:31.809698Z",
"url": "https://files.pythonhosted.org/packages/ce/ba/8dd37895c9a9a5e822f81dcaa218bef272991acaeaf8bf66f7a8aa17cefb/aiohttp-3.8.6-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fdb5a33523c484d8c55b262b97b7c3cf7aae1545faa68a54bed2e6f278b65b3a",
"md5": "74f598e5f2ffa7bed1665a235546662c",
"sha256": "ebf3fd9f141700b510d4b190094db0ce37ac6361a6806c153c161dc6c041ccda"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "74f598e5f2ffa7bed1665a235546662c",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 990734,
"upload_time": "2023-10-07T14:28:33",
"upload_time_iso_8601": "2023-10-07T14:28:33.429070Z",
"url": "https://files.pythonhosted.org/packages/fd/b5/a33523c484d8c55b262b97b7c3cf7aae1545faa68a54bed2e6f278b65b3a/aiohttp-3.8.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a501848a1afacbcd34974f41f7918df3d32ed49fd6607cea74ac14a725f0eb85",
"md5": "1b22630f6e6b929a4b0aced01b08e0f3",
"sha256": "3161ce82ab85acd267c8f4b14aa226047a6bee1e4e6adb74b798bd42c6ae1f80"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "1b22630f6e6b929a4b0aced01b08e0f3",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 1014269,
"upload_time": "2023-10-07T14:28:35",
"upload_time_iso_8601": "2023-10-07T14:28:35.538624Z",
"url": "https://files.pythonhosted.org/packages/a5/01/848a1afacbcd34974f41f7918df3d32ed49fd6607cea74ac14a725f0eb85/aiohttp-3.8.6-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "53bc865c8dcc6adbdef2ba373dafdd8611c62b1bae17c792f46279784e1f5d38",
"md5": "b74676dd8db5498115332bc32038774d",
"sha256": "d95fc1bf33a9a81469aa760617b5971331cdd74370d1214f0b3109272c0e1e3c"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "b74676dd8db5498115332bc32038774d",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 1061601,
"upload_time": "2023-10-07T14:28:37",
"upload_time_iso_8601": "2023-10-07T14:28:37.203005Z",
"url": "https://files.pythonhosted.org/packages/53/bc/865c8dcc6adbdef2ba373dafdd8611c62b1bae17c792f46279784e1f5d38/aiohttp-3.8.6-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a5e7af237a28203958d885f7f57731cb4f9c510597a35c593c5c20224dd72072",
"md5": "25b76524507ccde8aee2fe313bd5a150",
"sha256": "6c43ecfef7deaf0617cee936836518e7424ee12cb709883f2c9a1adda63cc460"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "25b76524507ccde8aee2fe313bd5a150",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 987984,
"upload_time": "2023-10-07T14:28:39",
"upload_time_iso_8601": "2023-10-07T14:28:39.011763Z",
"url": "https://files.pythonhosted.org/packages/a5/e7/af237a28203958d885f7f57731cb4f9c510597a35c593c5c20224dd72072/aiohttp-3.8.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a8a7fd9709dbbc189eb0dbb213f9489df7c2d7a194155a54db2bdb9b3ab689e0",
"md5": "81aac03062b0b04b0f928b0a3ba01044",
"sha256": "ca80e1b90a05a4f476547f904992ae81eda5c2c85c66ee4195bb8f9c5fb47f28"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "81aac03062b0b04b0f928b0a3ba01044",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 959176,
"upload_time": "2023-10-07T14:28:40",
"upload_time_iso_8601": "2023-10-07T14:28:40.594361Z",
"url": "https://files.pythonhosted.org/packages/a8/a7/fd9709dbbc189eb0dbb213f9489df7c2d7a194155a54db2bdb9b3ab689e0/aiohttp-3.8.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "212ab65450e364c5a2808be806ecd7507bdc1f422f9e7da38cb53582298cd631",
"md5": "45fbca08b612ace1723b52c61f934264",
"sha256": "90c72ebb7cb3a08a7f40061079817133f502a160561d0675b0a6adf231382c92"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp37-cp37m-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "45fbca08b612ace1723b52c61f934264",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 1004514,
"upload_time": "2023-10-07T14:28:42",
"upload_time_iso_8601": "2023-10-07T14:28:42.277076Z",
"url": "https://files.pythonhosted.org/packages/21/2a/b65450e364c5a2808be806ecd7507bdc1f422f9e7da38cb53582298cd631/aiohttp-3.8.6-cp37-cp37m-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e8de0999402a1eec03a21af1af80ea76dc7f5a590607eee53f7d7782c5e185d7",
"md5": "92ceab310fb48b1d0ffa0c4818c25ebf",
"sha256": "bb54c54510e47a8c7c8e63454a6acc817519337b2b78606c4e840871a3e15349"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp37-cp37m-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "92ceab310fb48b1d0ffa0c4818c25ebf",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 973663,
"upload_time": "2023-10-07T14:28:43",
"upload_time_iso_8601": "2023-10-07T14:28:43.778728Z",
"url": "https://files.pythonhosted.org/packages/e8/de/0999402a1eec03a21af1af80ea76dc7f5a590607eee53f7d7782c5e185d7/aiohttp-3.8.6-cp37-cp37m-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "95cdc7a1a0bc87ad9ae3ffbcabdc429601495180e7c216b1cf6915d1fda2d704",
"md5": "b591441baafc0890138ab2f2d344c8e2",
"sha256": "de6a1c9f6803b90e20869e6b99c2c18cef5cc691363954c93cb9adeb26d9f3ae"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp37-cp37m-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "b591441baafc0890138ab2f2d344c8e2",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 1026475,
"upload_time": "2023-10-07T14:28:45",
"upload_time_iso_8601": "2023-10-07T14:28:45.479469Z",
"url": "https://files.pythonhosted.org/packages/95/cd/c7a1a0bc87ad9ae3ffbcabdc429601495180e7c216b1cf6915d1fda2d704/aiohttp-3.8.6-cp37-cp37m-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c36b8a933438ddc4240a6e1ed196d3e992151a04e6069b483ed44deab97e1ab0",
"md5": "55f22ff91aaec26fd75ced5e69a4dea0",
"sha256": "a3628b6c7b880b181a3ae0a0683698513874df63783fd89de99b7b7539e3e8a8"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp37-cp37m-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "55f22ff91aaec26fd75ced5e69a4dea0",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 1070710,
"upload_time": "2023-10-07T14:28:47",
"upload_time_iso_8601": "2023-10-07T14:28:47.324204Z",
"url": "https://files.pythonhosted.org/packages/c3/6b/8a933438ddc4240a6e1ed196d3e992151a04e6069b483ed44deab97e1ab0/aiohttp-3.8.6-cp37-cp37m-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a29b8b78fdbe813fbc73f0084066c36d7732d92459d4189b76243a3bf7c24ee2",
"md5": "5bdc69963cd75443594a2d4b6a61ec99",
"sha256": "fc37e9aef10a696a5a4474802930079ccfc14d9f9c10b4662169671ff034b7df"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp37-cp37m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "5bdc69963cd75443594a2d4b6a61ec99",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 1001286,
"upload_time": "2023-10-07T14:28:48",
"upload_time_iso_8601": "2023-10-07T14:28:48.794443Z",
"url": "https://files.pythonhosted.org/packages/a2/9b/8b78fdbe813fbc73f0084066c36d7732d92459d4189b76243a3bf7c24ee2/aiohttp-3.8.6-cp37-cp37m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a052289e1ec17ef252062c3f006b35fdb37a44b74e302893cc0fbfc4457ad679",
"md5": "eea680b3f1b0112fccac9f08a1b079ff",
"sha256": "f8ef51e459eb2ad8e7a66c1d6440c808485840ad55ecc3cafefadea47d1b1ba2"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "eea680b3f1b0112fccac9f08a1b079ff",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 311301,
"upload_time": "2023-10-07T14:28:50",
"upload_time_iso_8601": "2023-10-07T14:28:50.632815Z",
"url": "https://files.pythonhosted.org/packages/a0/52/289e1ec17ef252062c3f006b35fdb37a44b74e302893cc0fbfc4457ad679/aiohttp-3.8.6-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "514ce7f74722f82269f2482ef321daff341d5461a40af68bb7f9d016b98fba9c",
"md5": "d3d46ae3d02765a3c75a72e84e2d9a92",
"sha256": "b2fe42e523be344124c6c8ef32a011444e869dc5f883c591ed87f84339de5976"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "d3d46ae3d02765a3c75a72e84e2d9a92",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 326919,
"upload_time": "2023-10-07T14:28:52",
"upload_time_iso_8601": "2023-10-07T14:28:52.056157Z",
"url": "https://files.pythonhosted.org/packages/51/4c/e7f74722f82269f2482ef321daff341d5461a40af68bb7f9d016b98fba9c/aiohttp-3.8.6-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fe9ed8e0b5b4ff16e13b55ded600ad3e2f10a390e8a150338e0c75e97e86cb03",
"md5": "2170ec3c4b3dcdd7bec2fdfc793480ea",
"sha256": "9e2ee0ac5a1f5c7dd3197de309adfb99ac4617ff02b0603fd1e65b07dc772e4b"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "2170ec3c4b3dcdd7bec2fdfc793480ea",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 533823,
"upload_time": "2023-10-07T14:28:53",
"upload_time_iso_8601": "2023-10-07T14:28:53.662265Z",
"url": "https://files.pythonhosted.org/packages/fe/9e/d8e0b5b4ff16e13b55ded600ad3e2f10a390e8a150338e0c75e97e86cb03/aiohttp-3.8.6-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "38f3b7e6b509c79431e759e50e5cc0a64e578c8b069a4cde80926ca65a82c900",
"md5": "d3f01bf096517aa27f01d9fff59c5f07",
"sha256": "01770d8c04bd8db568abb636c1fdd4f7140b284b8b3e0b4584f070180c1e5c62"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "d3f01bf096517aa27f01d9fff59c5f07",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 369904,
"upload_time": "2023-10-07T14:28:55",
"upload_time_iso_8601": "2023-10-07T14:28:55.706049Z",
"url": "https://files.pythonhosted.org/packages/38/f3/b7e6b509c79431e759e50e5cc0a64e578c8b069a4cde80926ca65a82c900/aiohttp-3.8.6-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9f6ed61572eff2af1fc481a94734e22c13dae7276a2b2c9d1e72e9bc9b56a487",
"md5": "73844a0b34bcd810c3c1f50ced9a666f",
"sha256": "3c68330a59506254b556b99a91857428cab98b2f84061260a67865f7f52899f5"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "73844a0b34bcd810c3c1f50ced9a666f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 348371,
"upload_time": "2023-10-07T14:28:57",
"upload_time_iso_8601": "2023-10-07T14:28:57.144724Z",
"url": "https://files.pythonhosted.org/packages/9f/6e/d61572eff2af1fc481a94734e22c13dae7276a2b2c9d1e72e9bc9b56a487/aiohttp-3.8.6-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dc2dca6ad8bb362faed53c5ce1aae4cdae99af0feb3cf165e54e659e212fbcdf",
"md5": "bf6d8b89e2a0c272de0e61d7e5ad7c63",
"sha256": "89341b2c19fb5eac30c341133ae2cc3544d40d9b1892749cdd25892bbc6ac951"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "bf6d8b89e2a0c272de0e61d7e5ad7c63",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1082177,
"upload_time": "2023-10-07T14:28:58",
"upload_time_iso_8601": "2023-10-07T14:28:58.749556Z",
"url": "https://files.pythonhosted.org/packages/dc/2d/ca6ad8bb362faed53c5ce1aae4cdae99af0feb3cf165e54e659e212fbcdf/aiohttp-3.8.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e979a57d197198730ad98761219fd3c3d0b142dd66df887d56ab7800afcecd45",
"md5": "74414b8bd8ac9c612e2e4b9dcbd8b0e5",
"sha256": "71783b0b6455ac8f34b5ec99d83e686892c50498d5d00b8e56d47f41b38fbe04"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "74414b8bd8ac9c612e2e4b9dcbd8b0e5",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1107733,
"upload_time": "2023-10-07T14:29:00",
"upload_time_iso_8601": "2023-10-07T14:29:00.468885Z",
"url": "https://files.pythonhosted.org/packages/e9/79/a57d197198730ad98761219fd3c3d0b142dd66df887d56ab7800afcecd45/aiohttp-3.8.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ae14277158756fda1874319cf94ed5e672848aa9a8d3eb2a65484d727d072692",
"md5": "b056a496b9360818b3875e1b79c36393",
"sha256": "f628dbf3c91e12f4d6c8b3f092069567d8eb17814aebba3d7d60c149391aee3a"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "b056a496b9360818b3875e1b79c36393",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1153242,
"upload_time": "2023-10-07T14:29:02",
"upload_time_iso_8601": "2023-10-07T14:29:02.663466Z",
"url": "https://files.pythonhosted.org/packages/ae/14/277158756fda1874319cf94ed5e672848aa9a8d3eb2a65484d727d072692/aiohttp-3.8.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "911b9b5da3748ddd924288d9a946a0f48a34b179330d342c6cdeb89683bcf971",
"md5": "be36b7333ce43e7fce914393001c244e",
"sha256": "b04691bc6601ef47c88f0255043df6f570ada1a9ebef99c34bd0b72866c217ae"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "be36b7333ce43e7fce914393001c244e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1077680,
"upload_time": "2023-10-07T14:29:04",
"upload_time_iso_8601": "2023-10-07T14:29:04.579292Z",
"url": "https://files.pythonhosted.org/packages/91/1b/9b5da3748ddd924288d9a946a0f48a34b179330d342c6cdeb89683bcf971/aiohttp-3.8.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "62a52dd6cea18470c75bf134a38e1ad399cb913d82250a8eac47e1f247826784",
"md5": "08bf70ec841e43292f86554d0a10d9a7",
"sha256": "7ee912f7e78287516df155f69da575a0ba33b02dd7c1d6614dbc9463f43066e3"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "08bf70ec841e43292f86554d0a10d9a7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1046516,
"upload_time": "2023-10-07T14:29:06",
"upload_time_iso_8601": "2023-10-07T14:29:06.240675Z",
"url": "https://files.pythonhosted.org/packages/62/a5/2dd6cea18470c75bf134a38e1ad399cb913d82250a8eac47e1f247826784/aiohttp-3.8.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "db845b146476ec1f36b4cc0f15f63676364191fd91d120ac136f616f1749f624",
"md5": "cd5ae25afd2ebe107831de0db975bca4",
"sha256": "9c19b26acdd08dd239e0d3669a3dddafd600902e37881f13fbd8a53943079dbc"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "cd5ae25afd2ebe107831de0db975bca4",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1128646,
"upload_time": "2023-10-07T14:29:08",
"upload_time_iso_8601": "2023-10-07T14:29:08.472126Z",
"url": "https://files.pythonhosted.org/packages/db/84/5b146476ec1f36b4cc0f15f63676364191fd91d120ac136f616f1749f624/aiohttp-3.8.6-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c32a16c2c515f0f12e8e867303af4783f79a0ed5b17f4d96c821285f3fc87efa",
"md5": "a17cbf72ae959415d607003206d6b4dd",
"sha256": "99c5ac4ad492b4a19fc132306cd57075c28446ec2ed970973bbf036bcda1bcc6"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "a17cbf72ae959415d607003206d6b4dd",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1090807,
"upload_time": "2023-10-07T14:29:10",
"upload_time_iso_8601": "2023-10-07T14:29:10.731708Z",
"url": "https://files.pythonhosted.org/packages/c3/2a/16c2c515f0f12e8e867303af4783f79a0ed5b17f4d96c821285f3fc87efa/aiohttp-3.8.6-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a22f4f4d9b4d933b97b73165dc176488806338c0b7907ae3cbca216c9383ceca",
"md5": "dcbd1454c88d7c658792e8f09c3536fb",
"sha256": "f0f03211fd14a6a0aed2997d4b1c013d49fb7b50eeb9ffdf5e51f23cfe2c77fa"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp38-cp38-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "dcbd1454c88d7c658792e8f09c3536fb",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1156875,
"upload_time": "2023-10-07T14:29:12",
"upload_time_iso_8601": "2023-10-07T14:29:12.341002Z",
"url": "https://files.pythonhosted.org/packages/a2/2f/4f4d9b4d933b97b73165dc176488806338c0b7907ae3cbca216c9383ceca/aiohttp-3.8.6-cp38-cp38-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bdd5b8b9186c95ccc35dfdd02ec35d7ec7ec4915846c0415f47f1780d90dbbf9",
"md5": "e55cb1a6c659d233498714bc04b02f77",
"sha256": "8d399dade330c53b4106160f75f55407e9ae7505263ea86f2ccca6bfcbdb4921"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp38-cp38-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "e55cb1a6c659d233498714bc04b02f77",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1198136,
"upload_time": "2023-10-07T14:29:14",
"upload_time_iso_8601": "2023-10-07T14:29:14.534009Z",
"url": "https://files.pythonhosted.org/packages/bd/d5/b8b9186c95ccc35dfdd02ec35d7ec7ec4915846c0415f47f1780d90dbbf9/aiohttp-3.8.6-cp38-cp38-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f03f05c782a7c7dc7becfc8b3b69d3c64aa964416335b7b3ebfc0e64654be748",
"md5": "664fd633d9b4fc981ac14fb9ab4b6876",
"sha256": "ec4fd86658c6a8964d75426517dc01cbf840bbf32d055ce64a9e63a40fd7b771"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "664fd633d9b4fc981ac14fb9ab4b6876",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 1121262,
"upload_time": "2023-10-07T14:29:16",
"upload_time_iso_8601": "2023-10-07T14:29:16.911464Z",
"url": "https://files.pythonhosted.org/packages/f0/3f/05c782a7c7dc7becfc8b3b69d3c64aa964416335b7b3ebfc0e64654be748/aiohttp-3.8.6-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6719a9c3b763fed4ef46a9f5aae98944f8f572f9cabbe16e5883ac631cdc4785",
"md5": "0dc328a825292fcfaa72fec615230807",
"sha256": "33164093be11fcef3ce2571a0dccd9041c9a93fa3bde86569d7b03120d276c6f"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "0dc328a825292fcfaa72fec615230807",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 313443,
"upload_time": "2023-10-07T14:29:18",
"upload_time_iso_8601": "2023-10-07T14:29:18.586536Z",
"url": "https://files.pythonhosted.org/packages/67/19/a9c3b763fed4ef46a9f5aae98944f8f572f9cabbe16e5883ac631cdc4785/aiohttp-3.8.6-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "64041eb7c86678c391917d12bf1a187335ee447716ce8c937240f362a60a59f0",
"md5": "89d75f82aee064220a4220a1e0dc0d46",
"sha256": "bdf70bfe5a1414ba9afb9d49f0c912dc524cf60141102f3a11143ba3d291870f"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "89d75f82aee064220a4220a1e0dc0d46",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 329682,
"upload_time": "2023-10-07T14:29:20",
"upload_time_iso_8601": "2023-10-07T14:29:20.000500Z",
"url": "https://files.pythonhosted.org/packages/64/04/1eb7c86678c391917d12bf1a187335ee447716ce8c937240f362a60a59f0/aiohttp-3.8.6-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "56caa0cea3350fe0cf10df5883f5a3239717a28e0f27b5b380938679dc975e88",
"md5": "ed93ca7d69cb7c97b91bdf1b904929bb",
"sha256": "d52d5dc7c6682b720280f9d9db41d36ebe4791622c842e258c9206232251ab2b"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "ed93ca7d69cb7c97b91bdf1b904929bb",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 535959,
"upload_time": "2023-10-07T14:29:21",
"upload_time_iso_8601": "2023-10-07T14:29:21.636850Z",
"url": "https://files.pythonhosted.org/packages/56/ca/a0cea3350fe0cf10df5883f5a3239717a28e0f27b5b380938679dc975e88/aiohttp-3.8.6-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6659fa9a4d9068ef96680c03c1f6b05cee25fa88c72fef6ee7cc62b77e3f60b2",
"md5": "3d91e5fdbc24fba3669ebac1981e52ad",
"sha256": "4ac39027011414dbd3d87f7edb31680e1f430834c8cef029f11c66dad0670aa5"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "3d91e5fdbc24fba3669ebac1981e52ad",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 371085,
"upload_time": "2023-10-07T14:29:23",
"upload_time_iso_8601": "2023-10-07T14:29:23.777663Z",
"url": "https://files.pythonhosted.org/packages/66/59/fa9a4d9068ef96680c03c1f6b05cee25fa88c72fef6ee7cc62b77e3f60b2/aiohttp-3.8.6-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "69b7a1543a5f90b6c5cdff4d2e6b73fcaa65a568ff9cc3381c5abfadcefe38e0",
"md5": "4f8cd2b77f2787b1e27961b692edffa6",
"sha256": "3f5c7ce535a1d2429a634310e308fb7d718905487257060e5d4598e29dc17f0b"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "4f8cd2b77f2787b1e27961b692edffa6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 349139,
"upload_time": "2023-10-07T14:29:25",
"upload_time_iso_8601": "2023-10-07T14:29:25.362050Z",
"url": "https://files.pythonhosted.org/packages/69/b7/a1543a5f90b6c5cdff4d2e6b73fcaa65a568ff9cc3381c5abfadcefe38e0/aiohttp-3.8.6-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d1c4e8eec7e6c6309ddc425f8d72a1239eacbb602d8eb444dd9975ee079561f4",
"md5": "3ae739057768cf9de60fa9c09ee61cf8",
"sha256": "b30e963f9e0d52c28f284d554a9469af073030030cef8693106d918b2ca92f54"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3ae739057768cf9de60fa9c09ee61cf8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1068541,
"upload_time": "2023-10-07T14:29:26",
"upload_time_iso_8601": "2023-10-07T14:29:26.883421Z",
"url": "https://files.pythonhosted.org/packages/d1/c4/e8eec7e6c6309ddc425f8d72a1239eacbb602d8eb444dd9975ee079561f4/aiohttp-3.8.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "60eff43f7e475a4698efb3a47c208f3d6ef2fa8ea461209c5b467373f29274f4",
"md5": "b7f31b4e53b17eb4f6ca8037eb775e47",
"sha256": "918810ef188f84152af6b938254911055a72e0f935b5fbc4c1a4ed0b0584aed1"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b7f31b4e53b17eb4f6ca8037eb775e47",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1093594,
"upload_time": "2023-10-07T14:29:28",
"upload_time_iso_8601": "2023-10-07T14:29:28.559764Z",
"url": "https://files.pythonhosted.org/packages/60/ef/f43f7e475a4698efb3a47c208f3d6ef2fa8ea461209c5b467373f29274f4/aiohttp-3.8.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d7e1f1669495117e3417c32536eb2633ab2d8f9b65c8d04f248dea7c1c71e6a2",
"md5": "a4b2b751541df10852188ea3b6332a28",
"sha256": "002f23e6ea8d3dd8d149e569fd580c999232b5fbc601c48d55398fbc2e582e8c"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a4b2b751541df10852188ea3b6332a28",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1140149,
"upload_time": "2023-10-07T14:29:30",
"upload_time_iso_8601": "2023-10-07T14:29:30.142345Z",
"url": "https://files.pythonhosted.org/packages/d7/e1/f1669495117e3417c32536eb2633ab2d8f9b65c8d04f248dea7c1c71e6a2/aiohttp-3.8.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3497d042349afcad79d7c813b07e34cb3a6f0024b4faf07346509b115fe19f97",
"md5": "52b0b289c1edc68f5b411b6a75c8fc5c",
"sha256": "4fcf3eabd3fd1a5e6092d1242295fa37d0354b2eb2077e6eb670accad78e40e1"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "52b0b289c1edc68f5b411b6a75c8fc5c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1062258,
"upload_time": "2023-10-07T14:29:31",
"upload_time_iso_8601": "2023-10-07T14:29:31.851952Z",
"url": "https://files.pythonhosted.org/packages/34/97/d042349afcad79d7c813b07e34cb3a6f0024b4faf07346509b115fe19f97/aiohttp-3.8.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0a859f10beef98c72e507a80da4fd0e716ca3e005000b011152eed27f7eb6393",
"md5": "23d4baf9c6e45bd81cc260ea74333426",
"sha256": "255ba9d6d5ff1a382bb9a578cd563605aa69bec845680e21c44afc2670607a95"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "23d4baf9c6e45bd81cc260ea74333426",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1029774,
"upload_time": "2023-10-07T14:29:34",
"upload_time_iso_8601": "2023-10-07T14:29:34.105533Z",
"url": "https://files.pythonhosted.org/packages/0a/85/9f10beef98c72e507a80da4fd0e716ca3e005000b011152eed27f7eb6393/aiohttp-3.8.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7999e8219e64298bb9e51a86330f5b0c18937a56f208639b3df85c601ddbcb4d",
"md5": "3376d8eca072748fc4727ecfea7a3a43",
"sha256": "d67f8baed00870aa390ea2590798766256f31dc5ed3ecc737debb6e97e2ede78"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "3376d8eca072748fc4727ecfea7a3a43",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1080405,
"upload_time": "2023-10-07T14:29:35",
"upload_time_iso_8601": "2023-10-07T14:29:35.717277Z",
"url": "https://files.pythonhosted.org/packages/79/99/e8219e64298bb9e51a86330f5b0c18937a56f208639b3df85c601ddbcb4d/aiohttp-3.8.6-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "402e5f108f2eaafadfd972452b8418e7fbe76cc901245e4bc8f3acb8ff7c42b2",
"md5": "d6834af4205950762a2540d7a6025e68",
"sha256": "86f20cee0f0a317c76573b627b954c412ea766d6ada1a9fcf1b805763ae7feeb"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "d6834af4205950762a2540d7a6025e68",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1043519,
"upload_time": "2023-10-07T14:29:37",
"upload_time_iso_8601": "2023-10-07T14:29:37.563460Z",
"url": "https://files.pythonhosted.org/packages/40/2e/5f108f2eaafadfd972452b8418e7fbe76cc901245e4bc8f3acb8ff7c42b2/aiohttp-3.8.6-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a17e7b869e1678be0bbb0b566b454f19f9aeef533c84ad871af37f0eac61a411",
"md5": "8d6de93e3e43dd8517b1843fc68d6a4e",
"sha256": "39a312d0e991690ccc1a61f1e9e42daa519dcc34ad03eb6f826d94c1190190dd"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp39-cp39-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "8d6de93e3e43dd8517b1843fc68d6a4e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1104158,
"upload_time": "2023-10-07T14:29:39",
"upload_time_iso_8601": "2023-10-07T14:29:39.335462Z",
"url": "https://files.pythonhosted.org/packages/a1/7e/7b869e1678be0bbb0b566b454f19f9aeef533c84ad871af37f0eac61a411/aiohttp-3.8.6-cp39-cp39-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ed5350739259174e80fce59ff534537c84eb779a4c27beb0089a9b384a310b74",
"md5": "31c418fe992fa53ab79ad1461a7e4ea6",
"sha256": "e827d48cf802de06d9c935088c2924e3c7e7533377d66b6f31ed175c1620e05e"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp39-cp39-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "31c418fe992fa53ab79ad1461a7e4ea6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1149061,
"upload_time": "2023-10-07T14:29:40",
"upload_time_iso_8601": "2023-10-07T14:29:40.933162Z",
"url": "https://files.pythonhosted.org/packages/ed/53/50739259174e80fce59ff534537c84eb779a4c27beb0089a9b384a310b74/aiohttp-3.8.6-cp39-cp39-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e17b4f105ac4dd938f38853ac4b840b1024b507771dff871c66863b0d27d3861",
"md5": "399e02550db4f514718883d78bde2ffa",
"sha256": "bd111d7fc5591ddf377a408ed9067045259ff2770f37e2d94e6478d0f3fc0c17"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "399e02550db4f514718883d78bde2ffa",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 1073817,
"upload_time": "2023-10-07T14:29:43",
"upload_time_iso_8601": "2023-10-07T14:29:43.083630Z",
"url": "https://files.pythonhosted.org/packages/e1/7b/4f105ac4dd938f38853ac4b840b1024b507771dff871c66863b0d27d3861/aiohttp-3.8.6-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0d60dba24eb4381411113cf2a3b5545665b81c59257801416bf5d8932d4cc337",
"md5": "ecbbeb65468ad082da89d3f862647e68",
"sha256": "caf486ac1e689dda3502567eb89ffe02876546599bbf915ec94b1fa424eeffd4"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "ecbbeb65468ad082da89d3f862647e68",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 312554,
"upload_time": "2023-10-07T14:29:44",
"upload_time_iso_8601": "2023-10-07T14:29:44.904442Z",
"url": "https://files.pythonhosted.org/packages/0d/60/dba24eb4381411113cf2a3b5545665b81c59257801416bf5d8932d4cc337/aiohttp-3.8.6-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "64bfdffc041dd3d36d6b4624bde63d222c1735c525811e9fd6026397c612491d",
"md5": "24d1f67dc093333af67ba5cc097e1c9a",
"sha256": "3f0e27e5b733803333bb2371249f41cf42bae8884863e8e8965ec69bebe53132"
},
"downloads": -1,
"filename": "aiohttp-3.8.6-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "24d1f67dc093333af67ba5cc097e1c9a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 329040,
"upload_time": "2023-10-07T14:29:46",
"upload_time_iso_8601": "2023-10-07T14:29:46.631663Z",
"url": "https://files.pythonhosted.org/packages/64/bf/dffc041dd3d36d6b4624bde63d222c1735c525811e9fd6026397c612491d/aiohttp-3.8.6-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fd01f180d31923751fd20185c96938994823f00918ee5ac7b058edc005382406",
"md5": "bdf57b82c0d1804f458e10320bb0dcd5",
"sha256": "b0cf2a4501bff9330a8a5248b4ce951851e415bdcce9dc158e76cfd55e15085c"
},
"downloads": -1,
"filename": "aiohttp-3.8.6.tar.gz",
"has_sig": false,
"md5_digest": "bdf57b82c0d1804f458e10320bb0dcd5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 7352172,
"upload_time": "2023-10-07T14:29:48",
"upload_time_iso_8601": "2023-10-07T14:29:48.754336Z",
"url": "https://files.pythonhosted.org/packages/fd/01/f180d31923751fd20185c96938994823f00918ee5ac7b058edc005382406/aiohttp-3.8.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.9.0": [
{
"comment_text": "",
"digests": {
"blake2b_256": "f896d2461c42e7dce05a0e8e3f80028ad314c65ec5573fc0013bf7948c489a51",
"md5": "290df6d284b7864314113bfd7f75fc44",
"sha256": "6896b8416be9ada4d22cd359d7cb98955576ce863eadad5596b7cdfbf3e17c6c"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "290df6d284b7864314113bfd7f75fc44",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 592946,
"upload_time": "2023-11-18T02:48:43",
"upload_time_iso_8601": "2023-11-18T02:48:43.116026Z",
"url": "https://files.pythonhosted.org/packages/f8/96/d2461c42e7dce05a0e8e3f80028ad314c65ec5573fc0013bf7948c489a51/aiohttp-3.9.0-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c894fef17956a57149377671caec097cb7ab7510566bcfe593aa847f9fb745e1",
"md5": "62cf65bab38eb3b17a2e32c9388a51aa",
"sha256": "1736d87dad8ef46a8ec9cddd349fa9f7bd3a064c47dd6469c0d6763d3d49a4fc"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "62cf65bab38eb3b17a2e32c9388a51aa",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 396575,
"upload_time": "2023-11-18T02:48:47",
"upload_time_iso_8601": "2023-11-18T02:48:47.201106Z",
"url": "https://files.pythonhosted.org/packages/c8/94/fef17956a57149377671caec097cb7ab7510566bcfe593aa847f9fb745e1/aiohttp-3.9.0-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b2e2bbfbcde09c2570bc949f8739547b182f60c67809066afd02bca1579ded8e",
"md5": "478437c573f158ec08fca3a5092667ff",
"sha256": "8c9e5f4d7208cda1a2bb600e29069eecf857e6980d0ccc922ccf9d1372c16f4b"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "478437c573f158ec08fca3a5092667ff",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 386031,
"upload_time": "2023-11-18T02:48:49",
"upload_time_iso_8601": "2023-11-18T02:48:49.580534Z",
"url": "https://files.pythonhosted.org/packages/b2/e2/bbfbcde09c2570bc949f8739547b182f60c67809066afd02bca1579ded8e/aiohttp-3.9.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b341ea3b932530774262648aed45558d5675ad5beb7faff4ab6e06124fa4a08c",
"md5": "86c8daef38a12a212b08e2c501f4b466",
"sha256": "8488519aa05e636c5997719fe543c8daf19f538f4fa044f3ce94bee608817cff"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "86c8daef38a12a212b08e2c501f4b466",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1232953,
"upload_time": "2023-11-18T02:48:51",
"upload_time_iso_8601": "2023-11-18T02:48:51.988150Z",
"url": "https://files.pythonhosted.org/packages/b3/41/ea3b932530774262648aed45558d5675ad5beb7faff4ab6e06124fa4a08c/aiohttp-3.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1dd02174e6f8d717be5c0a0ef752ba75b6bb047700c94342aa1f047b8404cb47",
"md5": "74e186636f7ad5a754b48d7522ab4ac8",
"sha256": "5ab16c254e2312efeb799bc3c06897f65a133b38b69682bf75d1f1ee1a9c43a9"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "74e186636f7ad5a754b48d7522ab4ac8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1264936,
"upload_time": "2023-11-18T02:48:54",
"upload_time_iso_8601": "2023-11-18T02:48:54.436187Z",
"url": "https://files.pythonhosted.org/packages/1d/d0/2174e6f8d717be5c0a0ef752ba75b6bb047700c94342aa1f047b8404cb47/aiohttp-3.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "139c83fd0002823e07d76b5f834281faa030b10e81922a8c8a0fa000871db87c",
"md5": "4bda623461ddd32d562ad6cec87e430c",
"sha256": "7a94bde005a8f926d0fa38b88092a03dea4b4875a61fbcd9ac6f4351df1b57cd"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "4bda623461ddd32d562ad6cec87e430c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1300672,
"upload_time": "2023-11-18T02:48:57",
"upload_time_iso_8601": "2023-11-18T02:48:57.782538Z",
"url": "https://files.pythonhosted.org/packages/13/9c/83fd0002823e07d76b5f834281faa030b10e81922a8c8a0fa000871db87c/aiohttp-3.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b036c7bd200871e7351ab8396e8edcbb91e1198e0ded67a0824c93110c4c5df2",
"md5": "bade545fab80a297a3a899f2aa9f58bc",
"sha256": "4b777c9286b6c6a94f50ddb3a6e730deec327e9e2256cb08b5530db0f7d40fd8"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bade545fab80a297a3a899f2aa9f58bc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1225298,
"upload_time": "2023-11-18T02:49:00",
"upload_time_iso_8601": "2023-11-18T02:49:00.168208Z",
"url": "https://files.pythonhosted.org/packages/b0/36/c7bd200871e7351ab8396e8edcbb91e1198e0ded67a0824c93110c4c5df2/aiohttp-3.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a878d0dfb3369e445ad112a09b5ce26290e620d1dd3588180a134110f0f6eda0",
"md5": "017d8917f31cfd47deafa3f6e1ad175d",
"sha256": "571760ad7736b34d05597a1fd38cbc7d47f7b65deb722cb8e86fd827404d1f6b"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "017d8917f31cfd47deafa3f6e1ad175d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1198782,
"upload_time": "2023-11-18T02:49:02",
"upload_time_iso_8601": "2023-11-18T02:49:02.471463Z",
"url": "https://files.pythonhosted.org/packages/a8/78/d0dfb3369e445ad112a09b5ce26290e620d1dd3588180a134110f0f6eda0/aiohttp-3.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e824437d44425e2c5970e29da2b2d6fde6ec781c72b2a8776e6562fd5126a77",
"md5": "32422736e551acd3bc4d8a1eb4ce8c16",
"sha256": "deac0a32aec29608eb25d730f4bc5a261a65b6c48ded1ed861d2a1852577c932"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "32422736e551acd3bc4d8a1eb4ce8c16",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1247229,
"upload_time": "2023-11-18T02:49:05",
"upload_time_iso_8601": "2023-11-18T02:49:05.318969Z",
"url": "https://files.pythonhosted.org/packages/5e/82/4437d44425e2c5970e29da2b2d6fde6ec781c72b2a8776e6562fd5126a77/aiohttp-3.9.0-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "145e8700c09b5a85175a620633f5a4171e0168a02320490621bf206c49ad78b5",
"md5": "360d746675a4ec6dfcbfcce67fa752d9",
"sha256": "4ee1b4152bc3190cc40ddd6a14715e3004944263ea208229ab4c297712aa3075"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "360d746675a4ec6dfcbfcce67fa752d9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1204861,
"upload_time": "2023-11-18T02:49:07",
"upload_time_iso_8601": "2023-11-18T02:49:07.903459Z",
"url": "https://files.pythonhosted.org/packages/14/5e/8700c09b5a85175a620633f5a4171e0168a02320490621bf206c49ad78b5/aiohttp-3.9.0-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cfeda78a66b019f0eb32778dca094106f24ffc94e7356738d019fe82add55929",
"md5": "8108096916bb4cd93d2568e0c5a96dd6",
"sha256": "3607375053df58ed6f23903aa10cf3112b1240e8c799d243bbad0f7be0666986"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "8108096916bb4cd93d2568e0c5a96dd6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1273489,
"upload_time": "2023-11-18T02:49:09",
"upload_time_iso_8601": "2023-11-18T02:49:09.838485Z",
"url": "https://files.pythonhosted.org/packages/cf/ed/a78a66b019f0eb32778dca094106f24ffc94e7356738d019fe82add55929/aiohttp-3.9.0-cp310-cp310-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b21590c42b98d0dabc4c9de30d01edc715132434734285b1fe34691fac64f5c4",
"md5": "2a58689e46a59baed40a5c426008cc32",
"sha256": "65b0a70a25456d329a5e1426702dde67be0fb7a4ead718005ba2ca582d023a94"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "2a58689e46a59baed40a5c426008cc32",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1316674,
"upload_time": "2023-11-18T02:49:12",
"upload_time_iso_8601": "2023-11-18T02:49:12.683857Z",
"url": "https://files.pythonhosted.org/packages/b2/15/90c42b98d0dabc4c9de30d01edc715132434734285b1fe34691fac64f5c4/aiohttp-3.9.0-cp310-cp310-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "963f5f0665a7907b185ac125bfda4a8fb2c276eb7934d253898a20432bc380ce",
"md5": "33d186ac3ff3d438d69148c75779dbb4",
"sha256": "5a2eb5311a37fe105aa35f62f75a078537e1a9e4e1d78c86ec9893a3c97d7a30"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "33d186ac3ff3d438d69148c75779dbb4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1238092,
"upload_time": "2023-11-18T02:49:15",
"upload_time_iso_8601": "2023-11-18T02:49:15.342384Z",
"url": "https://files.pythonhosted.org/packages/96/3f/5f0665a7907b185ac125bfda4a8fb2c276eb7934d253898a20432bc380ce/aiohttp-3.9.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "807a93733900d3a051d7a9ebbacb65e32aaa72a90b2d366a8d9baa8edbd8f3b2",
"md5": "21f77dd7a97984dcb4dcb19a644f586c",
"sha256": "2cbc14a13fb6b42d344e4f27746a4b03a2cb0c1c3c5b932b0d6ad8881aa390e3"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "21f77dd7a97984dcb4dcb19a644f586c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 344929,
"upload_time": "2023-11-18T02:49:17",
"upload_time_iso_8601": "2023-11-18T02:49:17.699290Z",
"url": "https://files.pythonhosted.org/packages/80/7a/93733900d3a051d7a9ebbacb65e32aaa72a90b2d366a8d9baa8edbd8f3b2/aiohttp-3.9.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "72ce8458a27c7a858f009eb66383c993f390448f47ee368a3d550d98ba51f40f",
"md5": "641d5c0cc465148155b006e30678c154",
"sha256": "ac9669990e2016d644ba8ae4758688534aabde8dbbc81f9af129c3f5f01ca9cd"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "641d5c0cc465148155b006e30678c154",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 364194,
"upload_time": "2023-11-18T02:49:20",
"upload_time_iso_8601": "2023-11-18T02:49:20.384581Z",
"url": "https://files.pythonhosted.org/packages/72/ce/8458a27c7a858f009eb66383c993f390448f47ee368a3d550d98ba51f40f/aiohttp-3.9.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "28b1097704ca1ebd933f26002351bbcac8d3bd57969976a8dceb0837cac468b0",
"md5": "4b56c1f2a1142fdf63dbb715ee5e2a40",
"sha256": "f8e05f5163528962ce1d1806fce763ab893b1c5b7ace0a3538cd81a90622f844"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "4b56c1f2a1142fdf63dbb715ee5e2a40",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 593720,
"upload_time": "2023-11-18T02:49:22",
"upload_time_iso_8601": "2023-11-18T02:49:22.363566Z",
"url": "https://files.pythonhosted.org/packages/28/b1/097704ca1ebd933f26002351bbcac8d3bd57969976a8dceb0837cac468b0/aiohttp-3.9.0-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ef1b8faf5bfcd38015f3e23bb107e2aa3dd410a1b51d386e7e283cc49a031ac7",
"md5": "e178124babbbbadd5dbca4ae663b08aa",
"sha256": "4afa8f71dba3a5a2e1e1282a51cba7341ae76585345c43d8f0e624882b622218"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e178124babbbbadd5dbca4ae663b08aa",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 397144,
"upload_time": "2023-11-18T02:49:25",
"upload_time_iso_8601": "2023-11-18T02:49:25.016933Z",
"url": "https://files.pythonhosted.org/packages/ef/1b/8faf5bfcd38015f3e23bb107e2aa3dd410a1b51d386e7e283cc49a031ac7/aiohttp-3.9.0-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c0c33491f4a4b54798415f9a3bf69f2be2f2edaf2aaa5d2b0171b4420feaf45b",
"md5": "4ab94335f8c864fb3e5ec1b280155fa7",
"sha256": "f929f4c9b9a00f3e6cc0587abb95ab9c05681f8b14e0fe1daecfa83ea90f8318"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "4ab94335f8c864fb3e5ec1b280155fa7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 386372,
"upload_time": "2023-11-18T02:49:27",
"upload_time_iso_8601": "2023-11-18T02:49:27.485072Z",
"url": "https://files.pythonhosted.org/packages/c0/c3/3491f4a4b54798415f9a3bf69f2be2f2edaf2aaa5d2b0171b4420feaf45b/aiohttp-3.9.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "85cca5dce2f7342a114c434b9f53c641fa7116551d67b6a8487e7baa36097b39",
"md5": "ddf31f84e7b5e75e82580f9c70d310dd",
"sha256": "28185e36a78d247c55e9fbea2332d16aefa14c5276a582ce7a896231c6b1c208"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ddf31f84e7b5e75e82580f9c70d310dd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1309793,
"upload_time": "2023-11-18T02:49:29",
"upload_time_iso_8601": "2023-11-18T02:49:29.346645Z",
"url": "https://files.pythonhosted.org/packages/85/cc/a5dce2f7342a114c434b9f53c641fa7116551d67b6a8487e7baa36097b39/aiohttp-3.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "278ffd285289df3696843aa875cb70c8b64295ff2b6e482e48b3f9c4bc79f72b",
"md5": "58049b5c0bfb547c0f317afcf322d50f",
"sha256": "a486ddf57ab98b6d19ad36458b9f09e6022de0381674fe00228ca7b741aacb2f"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "58049b5c0bfb547c0f317afcf322d50f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1346352,
"upload_time": "2023-11-18T02:49:32",
"upload_time_iso_8601": "2023-11-18T02:49:32.743461Z",
"url": "https://files.pythonhosted.org/packages/27/8f/fd285289df3696843aa875cb70c8b64295ff2b6e482e48b3f9c4bc79f72b/aiohttp-3.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "366f665c79f23c53f9e431872b60adf77488dde8b5f5df19e8437c93794af368",
"md5": "e8b4b1cb2b274bbc3fb383e1f155470b",
"sha256": "70e851f596c00f40a2f00a46126c95c2e04e146015af05a9da3e4867cfc55911"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e8b4b1cb2b274bbc3fb383e1f155470b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1383314,
"upload_time": "2023-11-18T02:49:35",
"upload_time_iso_8601": "2023-11-18T02:49:35.070350Z",
"url": "https://files.pythonhosted.org/packages/36/6f/665c79f23c53f9e431872b60adf77488dde8b5f5df19e8437c93794af368/aiohttp-3.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6d58bfb949306520af2d305c70f8fafca05c99365f6f75ea2452f09068f2ab20",
"md5": "91b30acb58d85be0c692b4ad1f0a8622",
"sha256": "c5b7bf8fe4d39886adc34311a233a2e01bc10eb4e842220235ed1de57541a896"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "91b30acb58d85be0c692b4ad1f0a8622",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1294190,
"upload_time": "2023-11-18T02:49:37",
"upload_time_iso_8601": "2023-11-18T02:49:37.178991Z",
"url": "https://files.pythonhosted.org/packages/6d/58/bfb949306520af2d305c70f8fafca05c99365f6f75ea2452f09068f2ab20/aiohttp-3.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bfb035aee87d7ed6474c4c3dc4486a41020ed23338c99911b42964bc69289bd5",
"md5": "47aa4715ac369aaccb2fd74a6d4def24",
"sha256": "c67a51ea415192c2e53e4e048c78bab82d21955b4281d297f517707dc836bf3d"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "47aa4715ac369aaccb2fd74a6d4def24",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1254528,
"upload_time": "2023-11-18T02:49:39",
"upload_time_iso_8601": "2023-11-18T02:49:39.717998Z",
"url": "https://files.pythonhosted.org/packages/bf/b0/35aee87d7ed6474c4c3dc4486a41020ed23338c99911b42964bc69289bd5/aiohttp-3.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dfeb6cfdba2d6d87c89376a06f97a4bdc385fa773979012f2c3f72abacd2b70b",
"md5": "bc987e90e9b837d55fe62bb07f6cf8cf",
"sha256": "694df243f394629bcae2d8ed94c589a181e8ba8604159e6e45e7b22e58291113"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "bc987e90e9b837d55fe62bb07f6cf8cf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1315506,
"upload_time": "2023-11-18T02:49:42",
"upload_time_iso_8601": "2023-11-18T02:49:42.522095Z",
"url": "https://files.pythonhosted.org/packages/df/eb/6cfdba2d6d87c89376a06f97a4bdc385fa773979012f2c3f72abacd2b70b/aiohttp-3.9.0-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5fa664dba503da0e01b2db6b3fe954e033eae0126178560f595f1187a04955d1",
"md5": "141b3fc0cd273f5ea243d37c1a1ab899",
"sha256": "3dd8119752dd30dd7bca7d4bc2a92a59be6a003e4e5c2cf7e248b89751b8f4b7"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "141b3fc0cd273f5ea243d37c1a1ab899",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1263917,
"upload_time": "2023-11-18T02:49:45",
"upload_time_iso_8601": "2023-11-18T02:49:45.237183Z",
"url": "https://files.pythonhosted.org/packages/5f/a6/64dba503da0e01b2db6b3fe954e033eae0126178560f595f1187a04955d1/aiohttp-3.9.0-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9ddd0b1ce66e69b08d6a47833d4720779b9c294b19b0f239f91467428c80da73",
"md5": "b680a9d1f8925505d2d620abeff3ec51",
"sha256": "eb6dfd52063186ac97b4caa25764cdbcdb4b10d97f5c5f66b0fa95052e744eb7"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "b680a9d1f8925505d2d620abeff3ec51",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1343272,
"upload_time": "2023-11-18T02:49:47",
"upload_time_iso_8601": "2023-11-18T02:49:47.976742Z",
"url": "https://files.pythonhosted.org/packages/9d/dd/0b1ce66e69b08d6a47833d4720779b9c294b19b0f239f91467428c80da73/aiohttp-3.9.0-cp311-cp311-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "00cda217612050ff35bfaaff0428295c30006851ab9bff772f214a51b824eb19",
"md5": "ca8d7af31e23006eca2d04f7268a14b6",
"sha256": "d97c3e286d0ac9af6223bc132dc4bad6540b37c8d6c0a15fe1e70fb34f9ec411"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "ca8d7af31e23006eca2d04f7268a14b6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1385919,
"upload_time": "2023-11-18T02:49:50",
"upload_time_iso_8601": "2023-11-18T02:49:50.444242Z",
"url": "https://files.pythonhosted.org/packages/00/cd/a217612050ff35bfaaff0428295c30006851ab9bff772f214a51b824eb19/aiohttp-3.9.0-cp311-cp311-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d5b9a3c03fb8ba1ca3e4e1d8ecc30ade23e3dbac70a8c383c04c8a2ba349e735",
"md5": "d7288be92fff4c70481b8d7fc14a016e",
"sha256": "816f4db40555026e4cdda604a1088577c1fb957d02f3f1292e0221353403f192"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "d7288be92fff4c70481b8d7fc14a016e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1298990,
"upload_time": "2023-11-18T02:49:53",
"upload_time_iso_8601": "2023-11-18T02:49:53.170679Z",
"url": "https://files.pythonhosted.org/packages/d5/b9/a3c03fb8ba1ca3e4e1d8ecc30ade23e3dbac70a8c383c04c8a2ba349e735/aiohttp-3.9.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e7d3dc2daffb220ef8998866b9f20d58e4db21526c6a9aa4ade1a0c10a8f512",
"md5": "94857f41f470f28161c75308760b53ee",
"sha256": "3abf0551874fecf95f93b58f25ef4fc9a250669a2257753f38f8f592db85ddea"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "94857f41f470f28161c75308760b53ee",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 344186,
"upload_time": "2023-11-18T02:49:55",
"upload_time_iso_8601": "2023-11-18T02:49:55.807464Z",
"url": "https://files.pythonhosted.org/packages/4e/7d/3dc2daffb220ef8998866b9f20d58e4db21526c6a9aa4ade1a0c10a8f512/aiohttp-3.9.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f980354d76ab75744af3448b35f2f3ab200823a78d3351db38bb0bbac8b04760",
"md5": "83fe983308a6a0387c39b0ee2073b544",
"sha256": "e18d92c3e9e22553a73e33784fcb0ed484c9874e9a3e96c16a8d6a1e74a0217b"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "83fe983308a6a0387c39b0ee2073b544",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 364345,
"upload_time": "2023-11-18T02:49:57",
"upload_time_iso_8601": "2023-11-18T02:49:57.930526Z",
"url": "https://files.pythonhosted.org/packages/f9/80/354d76ab75744af3448b35f2f3ab200823a78d3351db38bb0bbac8b04760/aiohttp-3.9.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "50a19528f2bea88bf569cb6eb38542b43040784785f699451ba41ba7eb7645a5",
"md5": "888753df21b79e453c4481a600b94033",
"sha256": "99ae01fb13a618b9942376df77a1f50c20a281390dad3c56a6ec2942e266220d"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp312-cp312-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "888753df21b79e453c4481a600b94033",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 591205,
"upload_time": "2023-11-18T02:49:59",
"upload_time_iso_8601": "2023-11-18T02:49:59.931857Z",
"url": "https://files.pythonhosted.org/packages/50/a1/9528f2bea88bf569cb6eb38542b43040784785f699451ba41ba7eb7645a5/aiohttp-3.9.0-cp312-cp312-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6f61097db913b1c751dd93ad5aec9028adee401f2a4792e50a675f6e76de099a",
"md5": "81330c3868af742ca12643050e069251",
"sha256": "05857848da443c8c12110d99285d499b4e84d59918a21132e45c3f0804876994"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "81330c3868af742ca12643050e069251",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 392372,
"upload_time": "2023-11-18T02:50:03",
"upload_time_iso_8601": "2023-11-18T02:50:03.463760Z",
"url": "https://files.pythonhosted.org/packages/6f/61/097db913b1c751dd93ad5aec9028adee401f2a4792e50a675f6e76de099a/aiohttp-3.9.0-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eab13f6328b2bdee246f5d92d10c6e4bc863726f9b92bea9f8a2461db42026e4",
"md5": "414b37ca62f4498a279ed2cba1fab1f9",
"sha256": "317719d7f824eba55857fe0729363af58e27c066c731bc62cd97bc9c3d9c7ea4"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "414b37ca62f4498a279ed2cba1fab1f9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 388381,
"upload_time": "2023-11-18T02:50:06",
"upload_time_iso_8601": "2023-11-18T02:50:06.416569Z",
"url": "https://files.pythonhosted.org/packages/ea/b1/3f6328b2bdee246f5d92d10c6e4bc863726f9b92bea9f8a2461db42026e4/aiohttp-3.9.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7ad47658b29b07e20a362fe519b1fb3cbb95697079abf8306087a45529bae2a8",
"md5": "b14280a92b84ae18e87dc22afe156e09",
"sha256": "a1e3b3c107ccb0e537f309f719994a55621acd2c8fdf6d5ce5152aed788fb940"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b14280a92b84ae18e87dc22afe156e09",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1318867,
"upload_time": "2023-11-18T02:50:09",
"upload_time_iso_8601": "2023-11-18T02:50:09.055460Z",
"url": "https://files.pythonhosted.org/packages/7a/d4/7658b29b07e20a362fe519b1fb3cbb95697079abf8306087a45529bae2a8/aiohttp-3.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8ebb299d36e7d7ab123a1bccd88ebd71f00730c0731b9302aa8ce27c62fbca30",
"md5": "3abd92d6d3cb7b185b6354c512600804",
"sha256": "45820ddbb276113ead8d4907a7802adb77548087ff5465d5c554f9aa3928ae7d"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "3abd92d6d3cb7b185b6354c512600804",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1359000,
"upload_time": "2023-11-18T02:50:11",
"upload_time_iso_8601": "2023-11-18T02:50:11.086160Z",
"url": "https://files.pythonhosted.org/packages/8e/bb/299d36e7d7ab123a1bccd88ebd71f00730c0731b9302aa8ce27c62fbca30/aiohttp-3.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "250ac31f53796147d131625c28dc81076d9364c5548f06349aed7885fed376e5",
"md5": "63a36b11f4ca4a414e12b17a74a378f1",
"sha256": "05a183f1978802588711aed0dea31e697d760ce9055292db9dc1604daa9a8ded"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "63a36b11f4ca4a414e12b17a74a378f1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1400746,
"upload_time": "2023-11-18T02:50:13",
"upload_time_iso_8601": "2023-11-18T02:50:13.436743Z",
"url": "https://files.pythonhosted.org/packages/25/0a/c31f53796147d131625c28dc81076d9364c5548f06349aed7885fed376e5/aiohttp-3.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "86b76e50bc1144244a06d81b2575c369fe94115523aa163f8c527be280861565",
"md5": "d87349a6b7662cc28e12fdbc67c32d52",
"sha256": "51a4cd44788ea0b5e6bb8fa704597af3a30be75503a7ed1098bc5b8ffdf6c982"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d87349a6b7662cc28e12fdbc67c32d52",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1314179,
"upload_time": "2023-11-18T02:50:15",
"upload_time_iso_8601": "2023-11-18T02:50:15.883114Z",
"url": "https://files.pythonhosted.org/packages/86/b7/6e50bc1144244a06d81b2575c369fe94115523aa163f8c527be280861565/aiohttp-3.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5c86af6c528ead3c48ab635758441922e3511314a4940b65d0a8e3cbfbbe2bae",
"md5": "219c814b9d766bb8aefb40c4176fef21",
"sha256": "673343fbc0c1ac44d0d2640addc56e97a052504beacd7ade0dc5e76d3a4c16e8"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "219c814b9d766bb8aefb40c4176fef21",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1266187,
"upload_time": "2023-11-18T02:50:18",
"upload_time_iso_8601": "2023-11-18T02:50:18.011799Z",
"url": "https://files.pythonhosted.org/packages/5c/86/af6c528ead3c48ab635758441922e3511314a4940b65d0a8e3cbfbbe2bae/aiohttp-3.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aca3c1afe4c7fe5440ff695670fa38dff69f4de5d0bad3b611f353400ffc515d",
"md5": "4e3735cd26012a35a38f1287a52f091b",
"sha256": "7e8a3b79b6d186a9c99761fd4a5e8dd575a48d96021f220ac5b5fa856e5dd029"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "4e3735cd26012a35a38f1287a52f091b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1320737,
"upload_time": "2023-11-18T02:50:20",
"upload_time_iso_8601": "2023-11-18T02:50:20.382175Z",
"url": "https://files.pythonhosted.org/packages/ac/a3/c1afe4c7fe5440ff695670fa38dff69f4de5d0bad3b611f353400ffc515d/aiohttp-3.9.0-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bdb7e6bbaea73edfd3ff20635c3e08a573550579ff7956498f135804c6b3e50e",
"md5": "9115d0529a22593658fb23ea278153a3",
"sha256": "6777a390e41e78e7c45dab43a4a0196c55c3b8c30eebe017b152939372a83253"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "9115d0529a22593658fb23ea278153a3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1267087,
"upload_time": "2023-11-18T02:50:23",
"upload_time_iso_8601": "2023-11-18T02:50:23.128208Z",
"url": "https://files.pythonhosted.org/packages/bd/b7/e6bbaea73edfd3ff20635c3e08a573550579ff7956498f135804c6b3e50e/aiohttp-3.9.0-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0e79d49cf8978afed87d50ec3d4d517b65d25459984320f2cd99af244d6ecacc",
"md5": "73f09c442add79e4882368ee50a50811",
"sha256": "7ae5f99a32c53731c93ac3075abd3e1e5cfbe72fc3eaac4c27c9dd64ba3b19fe"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "73f09c442add79e4882368ee50a50811",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1347099,
"upload_time": "2023-11-18T02:50:25",
"upload_time_iso_8601": "2023-11-18T02:50:25.569202Z",
"url": "https://files.pythonhosted.org/packages/0e/79/d49cf8978afed87d50ec3d4d517b65d25459984320f2cd99af244d6ecacc/aiohttp-3.9.0-cp312-cp312-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "17a8dfab7c8a40df2bd6683c946b9b6d1922fa9f376b9871ef68d18281d5c445",
"md5": "e02677d2a1eccf24fa736b125740bd8d",
"sha256": "f1e4f254e9c35d8965d377e065c4a8a55d396fe87c8e7e8429bcfdeeb229bfb3"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "e02677d2a1eccf24fa736b125740bd8d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1394999,
"upload_time": "2023-11-18T02:50:28",
"upload_time_iso_8601": "2023-11-18T02:50:28.094367Z",
"url": "https://files.pythonhosted.org/packages/17/a8/dfab7c8a40df2bd6683c946b9b6d1922fa9f376b9871ef68d18281d5c445/aiohttp-3.9.0-cp312-cp312-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "496b201aaf22d104ca08ece9353af9dccceceebf8a0500e235f6b44d5baf8812",
"md5": "0b27b7dd4ecb33e5dec8e2f19909c44a",
"sha256": "11ca808f9a6b63485059f5f6e164ef7ec826483c1212a44f268b3653c91237d8"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "0b27b7dd4ecb33e5dec8e2f19909c44a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1315687,
"upload_time": "2023-11-18T02:50:30",
"upload_time_iso_8601": "2023-11-18T02:50:30.426933Z",
"url": "https://files.pythonhosted.org/packages/49/6b/201aaf22d104ca08ece9353af9dccceceebf8a0500e235f6b44d5baf8812/aiohttp-3.9.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c46c280636c83ba7f57b099315e69fbdc7dce99b77f60292fb0184c467a459a1",
"md5": "ebd13acc050734c421c0811297ac4b43",
"sha256": "de3cc86f4ea8b4c34a6e43a7306c40c1275e52bfa9748d869c6b7d54aa6dad80"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "ebd13acc050734c421c0811297ac4b43",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 341189,
"upload_time": "2023-11-18T02:50:32",
"upload_time_iso_8601": "2023-11-18T02:50:32.964724Z",
"url": "https://files.pythonhosted.org/packages/c4/6c/280636c83ba7f57b099315e69fbdc7dce99b77f60292fb0184c467a459a1/aiohttp-3.9.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c96b5fa6226b2ead3a911c61b23d7eca08a568b1401409e1422d8b60679577c8",
"md5": "818fee6b981bf33a93c2b328525b98db",
"sha256": "ca4fddf84ac7d8a7d0866664936f93318ff01ee33e32381a115b19fb5a4d1202"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "818fee6b981bf33a93c2b328525b98db",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 362435,
"upload_time": "2023-11-18T02:50:35",
"upload_time_iso_8601": "2023-11-18T02:50:35.380119Z",
"url": "https://files.pythonhosted.org/packages/c9/6b/5fa6226b2ead3a911c61b23d7eca08a568b1401409e1422d8b60679577c8/aiohttp-3.9.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6f1bc4ceda1383664c46a1a057ed6786882fcc4b79f83f46a4dba6e5b5592f89",
"md5": "3c47b1cbe8d1b051214d08a35773865f",
"sha256": "f09960b5bb1017d16c0f9e9f7fc42160a5a49fa1e87a175fd4a2b1a1833ea0af"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "3c47b1cbe8d1b051214d08a35773865f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 597011,
"upload_time": "2023-11-18T02:50:37",
"upload_time_iso_8601": "2023-11-18T02:50:37.521336Z",
"url": "https://files.pythonhosted.org/packages/6f/1b/c4ceda1383664c46a1a057ed6786882fcc4b79f83f46a4dba6e5b5592f89/aiohttp-3.9.0-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ddff026c97a8a0ea0e916c8b1e6a9cc843cfe7a4ebe9657cfa991bfcbec526f0",
"md5": "dd9577742bb373fe4a93d999b9c6649f",
"sha256": "8303531e2c17b1a494ffaeba48f2da655fe932c4e9a2626c8718403c83e5dd2b"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "dd9577742bb373fe4a93d999b9c6649f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 398551,
"upload_time": "2023-11-18T02:50:39",
"upload_time_iso_8601": "2023-11-18T02:50:39.923467Z",
"url": "https://files.pythonhosted.org/packages/dd/ff/026c97a8a0ea0e916c8b1e6a9cc843cfe7a4ebe9657cfa991bfcbec526f0/aiohttp-3.9.0-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0323bdc4354782dcc78863cda793e554c09382d56d4df90044c20c21b829c8a9",
"md5": "6e98145b86774dca58cbd3502d08670f",
"sha256": "4790e44f46a4aa07b64504089def5744d3b6780468c4ec3a1a36eb7f2cae9814"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6e98145b86774dca58cbd3502d08670f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 388034,
"upload_time": "2023-11-18T02:50:42",
"upload_time_iso_8601": "2023-11-18T02:50:42.179179Z",
"url": "https://files.pythonhosted.org/packages/03/23/bdc4354782dcc78863cda793e554c09382d56d4df90044c20c21b829c8a9/aiohttp-3.9.0-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "85d90b4f70cc66f24976e7121d1df51d1a234bb2b6d625207c7834302c8ff285",
"md5": "c96961377ce148a7ea6ce0939381809f",
"sha256": "a1d7edf74a36de0e5ca50787e83a77cf352f5504eb0ffa3f07000a911ba353fb"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c96961377ce148a7ea6ce0939381809f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1259618,
"upload_time": "2023-11-18T02:50:44",
"upload_time_iso_8601": "2023-11-18T02:50:44.531463Z",
"url": "https://files.pythonhosted.org/packages/85/d9/0b4f70cc66f24976e7121d1df51d1a234bb2b6d625207c7834302c8ff285/aiohttp-3.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8971da9d7618091754474dd88cd2d65db25effccb2d747f5cee4d15b7078d097",
"md5": "fae8e8156879970d0f213f18402109a2",
"sha256": "94697c7293199c2a2551e3e3e18438b4cba293e79c6bc2319f5fd652fccb7456"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "fae8e8156879970d0f213f18402109a2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1311694,
"upload_time": "2023-11-18T02:50:46",
"upload_time_iso_8601": "2023-11-18T02:50:46.873970Z",
"url": "https://files.pythonhosted.org/packages/89/71/da9d7618091754474dd88cd2d65db25effccb2d747f5cee4d15b7078d097/aiohttp-3.9.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "56d59b6f5f71ee72a956768921b8132e4793c603056014f840f2426a71b54f6c",
"md5": "153dcbf6585e1a718810eafd61b88bfc",
"sha256": "a1b66dbb8a7d5f50e9e2ea3804b01e766308331d0cac76eb30c563ac89c95985"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "153dcbf6585e1a718810eafd61b88bfc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1345638,
"upload_time": "2023-11-18T02:50:49",
"upload_time_iso_8601": "2023-11-18T02:50:49.771687Z",
"url": "https://files.pythonhosted.org/packages/56/d5/9b6f5f71ee72a956768921b8132e4793c603056014f840f2426a71b54f6c/aiohttp-3.9.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "124beecaf74ca02503d76398c016c2458c4da1a21a1839c7c40fd0f23fd69e9b",
"md5": "230cf92a3f9d2f6ea1f7447c9a2622e1",
"sha256": "9623cfd9e85b76b83ef88519d98326d4731f8d71869867e47a0b979ffec61c73"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "230cf92a3f9d2f6ea1f7447c9a2622e1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1252403,
"upload_time": "2023-11-18T02:50:52",
"upload_time_iso_8601": "2023-11-18T02:50:52.319462Z",
"url": "https://files.pythonhosted.org/packages/12/4b/eecaf74ca02503d76398c016c2458c4da1a21a1839c7c40fd0f23fd69e9b/aiohttp-3.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ec2d10bc5c07be6ded7c5fd90b2b7c17db2efd690f6678143d722bde4f5e53bb",
"md5": "24cd2fe3cec9eb9ee90fd8868c30a40c",
"sha256": "f32c86dc967ab8c719fd229ce71917caad13cc1e8356ee997bf02c5b368799bf"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "24cd2fe3cec9eb9ee90fd8868c30a40c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1217325,
"upload_time": "2023-11-18T02:50:55",
"upload_time_iso_8601": "2023-11-18T02:50:55.107645Z",
"url": "https://files.pythonhosted.org/packages/ec/2d/10bc5c07be6ded7c5fd90b2b7c17db2efd690f6678143d722bde4f5e53bb/aiohttp-3.9.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "074985246323eea08724ab9dd930b6e504e8c78c24c5b2d8846cae36a1b015d1",
"md5": "cf84e98626d751f195a6bfd29bbbbd24",
"sha256": "f50b4663c3e0262c3a361faf440761fbef60ccdde5fe8545689a4b3a3c149fb4"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "cf84e98626d751f195a6bfd29bbbbd24",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1311720,
"upload_time": "2023-11-18T02:50:57",
"upload_time_iso_8601": "2023-11-18T02:50:57.731474Z",
"url": "https://files.pythonhosted.org/packages/07/49/85246323eea08724ab9dd930b6e504e8c78c24c5b2d8846cae36a1b015d1/aiohttp-3.9.0-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b67fcca40190a1471966d4dca829b3df40115548521dcd62794e1d0d3857f928",
"md5": "9a5a67a1adc03fbbd098ab73ada29773",
"sha256": "dcf71c55ec853826cd70eadb2b6ac62ec577416442ca1e0a97ad875a1b3a0305"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "9a5a67a1adc03fbbd098ab73ada29773",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1262520,
"upload_time": "2023-11-18T02:51:00",
"upload_time_iso_8601": "2023-11-18T02:51:00.612011Z",
"url": "https://files.pythonhosted.org/packages/b6/7f/cca40190a1471966d4dca829b3df40115548521dcd62794e1d0d3857f928/aiohttp-3.9.0-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "319701ee4cdeae9a477fed33bfbc8461172a711dc2a9af2a05b118dab35989be",
"md5": "89a5128cf8003d53a59acf0e8179fc4e",
"sha256": "42fe4fd9f0dfcc7be4248c162d8056f1d51a04c60e53366b0098d1267c4c9da8"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "89a5128cf8003d53a59acf0e8179fc4e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1340791,
"upload_time": "2023-11-18T02:51:02",
"upload_time_iso_8601": "2023-11-18T02:51:02.993934Z",
"url": "https://files.pythonhosted.org/packages/31/97/01ee4cdeae9a477fed33bfbc8461172a711dc2a9af2a05b118dab35989be/aiohttp-3.9.0-cp38-cp38-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "196d280f2458427b2f863d816163e3b2d744d4fe305861f83ccb6c63ffcc6987",
"md5": "e5ec7e1674dc08ec4fa9e745ccbb48f3",
"sha256": "76a86a9989ebf82ee61e06e2bab408aec4ea367dc6da35145c3352b60a112d11"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "e5ec7e1674dc08ec4fa9e745ccbb48f3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1382892,
"upload_time": "2023-11-18T02:51:05",
"upload_time_iso_8601": "2023-11-18T02:51:05.227554Z",
"url": "https://files.pythonhosted.org/packages/19/6d/280f2458427b2f863d816163e3b2d744d4fe305861f83ccb6c63ffcc6987/aiohttp-3.9.0-cp38-cp38-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2e3089d8c9b1c3cf48d3c4364e014e30aef3ff3edc2a2ec2b3dbaaad0aaaa50b",
"md5": "72f8bb3298fa47df41e07f2ad3a17e1e",
"sha256": "f9e09a1c83521d770d170b3801eea19b89f41ccaa61d53026ed111cb6f088887"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "72f8bb3298fa47df41e07f2ad3a17e1e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1302494,
"upload_time": "2023-11-18T02:51:08",
"upload_time_iso_8601": "2023-11-18T02:51:08.327223Z",
"url": "https://files.pythonhosted.org/packages/2e/30/89d8c9b1c3cf48d3c4364e014e30aef3ff3edc2a2ec2b3dbaaad0aaaa50b/aiohttp-3.9.0-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cad56d7172403dd60c8a81fa719b2c96038a8148021197d197162625d181f3c8",
"md5": "728592ba9cf8c4010ef41392c9885b55",
"sha256": "a00ce44c21612d185c5275c5cba4bab8d7c1590f248638b667ed8a782fa8cd6f"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "728592ba9cf8c4010ef41392c9885b55",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 346709,
"upload_time": "2023-11-18T02:51:10",
"upload_time_iso_8601": "2023-11-18T02:51:10.682303Z",
"url": "https://files.pythonhosted.org/packages/ca/d5/6d7172403dd60c8a81fa719b2c96038a8148021197d197162625d181f3c8/aiohttp-3.9.0-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6ec0a18328c04cbf21d4dff5569f596b63e0a56d3bcad023747dfb818460580f",
"md5": "7ade5c3c3cfe12bfa03bcf0c1e528c65",
"sha256": "d5b9345ab92ebe6003ae11d8092ce822a0242146e6fa270889b9ba965457ca40"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "7ade5c3c3cfe12bfa03bcf0c1e528c65",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 366606,
"upload_time": "2023-11-18T02:51:13",
"upload_time_iso_8601": "2023-11-18T02:51:13.007280Z",
"url": "https://files.pythonhosted.org/packages/6e/c0/a18328c04cbf21d4dff5569f596b63e0a56d3bcad023747dfb818460580f/aiohttp-3.9.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cf1cd5944f54bec0bbe8a2d95d9ffab086849d51195f4f6c7ee2697fe22d3184",
"md5": "2124009e806fcfa82ec16fbbb9112d25",
"sha256": "98d21092bf2637c5fa724a428a69e8f5955f2182bff61f8036827cf6ce1157bf"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "2124009e806fcfa82ec16fbbb9112d25",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 594686,
"upload_time": "2023-11-18T02:51:15",
"upload_time_iso_8601": "2023-11-18T02:51:15.331100Z",
"url": "https://files.pythonhosted.org/packages/cf/1c/d5944f54bec0bbe8a2d95d9ffab086849d51195f4f6c7ee2697fe22d3184/aiohttp-3.9.0-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4db35707df93374563c59b921bced8b48b021d82e62a8f79f14402f45cb5172c",
"md5": "ae8cf578058d7cb58c9e36a9e641e908",
"sha256": "35a68cd63ca6aaef5707888f17a70c36efe62b099a4e853d33dc2e9872125be8"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "ae8cf578058d7cb58c9e36a9e641e908",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 397443,
"upload_time": "2023-11-18T02:51:17",
"upload_time_iso_8601": "2023-11-18T02:51:17.577039Z",
"url": "https://files.pythonhosted.org/packages/4d/b3/5707df93374563c59b921bced8b48b021d82e62a8f79f14402f45cb5172c/aiohttp-3.9.0-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "96d15fba176a133a86ae70b5f5dd39829bacf3e6e31eda5342543f38a4650794",
"md5": "15bd4a60244de15cb5ee37aafd80aa24",
"sha256": "3d7f6235c7475658acfc1769d968e07ab585c79f6ca438ddfecaa9a08006aee2"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "15bd4a60244de15cb5ee37aafd80aa24",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 386842,
"upload_time": "2023-11-18T02:51:19",
"upload_time_iso_8601": "2023-11-18T02:51:19.749205Z",
"url": "https://files.pythonhosted.org/packages/96/d1/5fba176a133a86ae70b5f5dd39829bacf3e6e31eda5342543f38a4650794/aiohttp-3.9.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "66a13a65f9e989b36734d68f25b6c2b60a9d5b923b17e3d1bb924c0be1d3ae34",
"md5": "baeeca8a1932e301d0264fc61bce6931",
"sha256": "db04d1de548f7a62d1dd7e7cdf7c22893ee168e22701895067a28a8ed51b3735"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "baeeca8a1932e301d0264fc61bce6931",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1236314,
"upload_time": "2023-11-18T02:51:22",
"upload_time_iso_8601": "2023-11-18T02:51:22.149883Z",
"url": "https://files.pythonhosted.org/packages/66/a1/3a65f9e989b36734d68f25b6c2b60a9d5b923b17e3d1bb924c0be1d3ae34/aiohttp-3.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "86ead7e147be11d9166d1480418586f57859e9c294123703760300a28a3ec444",
"md5": "666c145b6d991815d4b3af479a7de2cf",
"sha256": "536b01513d67d10baf6f71c72decdf492fb7433c5f2f133e9a9087379d4b6f31"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "666c145b6d991815d4b3af479a7de2cf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1271824,
"upload_time": "2023-11-18T02:51:25",
"upload_time_iso_8601": "2023-11-18T02:51:25.075119Z",
"url": "https://files.pythonhosted.org/packages/86/ea/d7e147be11d9166d1480418586f57859e9c294123703760300a28a3ec444/aiohttp-3.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "74b6588d8e689cbbcc6ffdd8ed5a92fc8abaf1e9a3b0cc5d9e10bd6cdb2cf3bd",
"md5": "8fa14cc762c78165a14374e8927820e0",
"sha256": "87c8b0a6487e8109427ccf638580865b54e2e3db4a6e0e11c02639231b41fc0f"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "8fa14cc762c78165a14374e8927820e0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1307995,
"upload_time": "2023-11-18T02:51:27",
"upload_time_iso_8601": "2023-11-18T02:51:27.526592Z",
"url": "https://files.pythonhosted.org/packages/74/b6/588d8e689cbbcc6ffdd8ed5a92fc8abaf1e9a3b0cc5d9e10bd6cdb2cf3bd/aiohttp-3.9.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "07496cd99d95da7edf75ace65ddd77c17bebe01528df225ef7c77de5a8998627",
"md5": "7b80c7ee5ea0c4acb85981e49014978e",
"sha256": "7276fe0017664414fdc3618fca411630405f1aaf0cc3be69def650eb50441787"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7b80c7ee5ea0c4acb85981e49014978e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1228366,
"upload_time": "2023-11-18T02:51:30",
"upload_time_iso_8601": "2023-11-18T02:51:30.156313Z",
"url": "https://files.pythonhosted.org/packages/07/49/6cd99d95da7edf75ace65ddd77c17bebe01528df225ef7c77de5a8998627/aiohttp-3.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d42720e52620c23c3c51de04c46720c9080eab2b6414cc19f8bbc7db99e0e153",
"md5": "80828bdffb47c1244f8acf7ff633840f",
"sha256": "23170247ef89ffa842a02bbfdc425028574d9e010611659abeb24d890bc53bb8"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "80828bdffb47c1244f8acf7ff633840f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1201245,
"upload_time": "2023-11-18T02:51:32",
"upload_time_iso_8601": "2023-11-18T02:51:32.262579Z",
"url": "https://files.pythonhosted.org/packages/d4/27/20e52620c23c3c51de04c46720c9080eab2b6414cc19f8bbc7db99e0e153/aiohttp-3.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e1a902be08ba1b7fe78a2b6672b554791f262cb2632c1db850b631777755fe04",
"md5": "f2c267b0c25b230a8f171bfd8d089e91",
"sha256": "b1a2ea8252cacc7fd51df5a56d7a2bb1986ed39be9397b51a08015727dfb69bd"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "f2c267b0c25b230a8f171bfd8d089e91",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1250889,
"upload_time": "2023-11-18T02:51:34",
"upload_time_iso_8601": "2023-11-18T02:51:34.446697Z",
"url": "https://files.pythonhosted.org/packages/e1/a9/02be08ba1b7fe78a2b6672b554791f262cb2632c1db850b631777755fe04/aiohttp-3.9.0-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a1c684122665a4573910190f13a9657d5d1ff71ce806681f14a8689069d05c2b",
"md5": "baa47c11867235f58d169caa2b0ab368",
"sha256": "2d71abc15ff7047412ef26bf812dfc8d0d1020d664617f4913df2df469f26b76"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "baa47c11867235f58d169caa2b0ab368",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1210630,
"upload_time": "2023-11-18T02:51:36",
"upload_time_iso_8601": "2023-11-18T02:51:36.883100Z",
"url": "https://files.pythonhosted.org/packages/a1/c6/84122665a4573910190f13a9657d5d1ff71ce806681f14a8689069d05c2b/aiohttp-3.9.0-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9db231b329d502d066c76ca91840b3c81d2fe10d5d44955312a4fcd01afb7b4f",
"md5": "15db6a03fbaaf5c04004d11c76abf398",
"sha256": "2d820162c8c2bdbe97d328cd4f417c955ca370027dce593345e437b2e9ffdc4d"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "15db6a03fbaaf5c04004d11c76abf398",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1278645,
"upload_time": "2023-11-18T02:51:39",
"upload_time_iso_8601": "2023-11-18T02:51:39.848161Z",
"url": "https://files.pythonhosted.org/packages/9d/b2/31b329d502d066c76ca91840b3c81d2fe10d5d44955312a4fcd01afb7b4f/aiohttp-3.9.0-cp39-cp39-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ea6772565036a3de721d6b42f68aa6c5b404b51a20275aafc2800d19d6bdc178",
"md5": "79351aa16510151fe1747e21474fed07",
"sha256": "2779f5e7c70f7b421915fd47db332c81de365678180a9f3ab404088f87ba5ff9"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "79351aa16510151fe1747e21474fed07",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1320514,
"upload_time": "2023-11-18T02:51:41",
"upload_time_iso_8601": "2023-11-18T02:51:41.980198Z",
"url": "https://files.pythonhosted.org/packages/ea/67/72565036a3de721d6b42f68aa6c5b404b51a20275aafc2800d19d6bdc178/aiohttp-3.9.0-cp39-cp39-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fd073083077672d32e2f4a497864066e51be9bf30cc4c57476508be2fcc50240",
"md5": "7380381d6704f690c93ff6962addba57",
"sha256": "366bc870d7ac61726f32a489fbe3d1d8876e87506870be66b01aeb84389e967e"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "7380381d6704f690c93ff6962addba57",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1241332,
"upload_time": "2023-11-18T02:51:44",
"upload_time_iso_8601": "2023-11-18T02:51:44.570352Z",
"url": "https://files.pythonhosted.org/packages/fd/07/3083077672d32e2f4a497864066e51be9bf30cc4c57476508be2fcc50240/aiohttp-3.9.0-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "277851b5f15717f43a82525f21f8c7fbda40990c4bff4f82e23336e5775d4006",
"md5": "6ddcb91f6f1ac87acd6465c3307f874e",
"sha256": "1df43596b826022b14998f0460926ce261544fedefe0d2f653e1b20f49e96454"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "6ddcb91f6f1ac87acd6465c3307f874e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 345678,
"upload_time": "2023-11-18T02:51:46",
"upload_time_iso_8601": "2023-11-18T02:51:46.677536Z",
"url": "https://files.pythonhosted.org/packages/27/78/51b5f15717f43a82525f21f8c7fbda40990c4bff4f82e23336e5775d4006/aiohttp-3.9.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5ec43be0c9e158cf9627f5cd60c5149825aa98a402926b61eaf9111bdbc102b5",
"md5": "1f20645d672f950f2e335452655bf170",
"sha256": "9c196b30f1b1aa3363a69dd69079ae9bec96c2965c4707eaa6914ba099fb7d4f"
},
"downloads": -1,
"filename": "aiohttp-3.9.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "1f20645d672f950f2e335452655bf170",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 365006,
"upload_time": "2023-11-18T02:51:48",
"upload_time_iso_8601": "2023-11-18T02:51:48.831908Z",
"url": "https://files.pythonhosted.org/packages/5e/c4/3be0c9e158cf9627f5cd60c5149825aa98a402926b61eaf9111bdbc102b5/aiohttp-3.9.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "718068f3bd93240efd92e9397947301efb76461db48c5ac80be2423ffa9c20a3",
"md5": "27775d87ad6a520d9d1f4e11f2688bc7",
"sha256": "09f23292d29135025e19e8ff4f0a68df078fe4ee013bca0105b2e803989de92d"
},
"downloads": -1,
"filename": "aiohttp-3.9.0.tar.gz",
"has_sig": false,
"md5_digest": "27775d87ad6a520d9d1f4e11f2688bc7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 7475063,
"upload_time": "2023-11-18T02:51:51",
"upload_time_iso_8601": "2023-11-18T02:51:51.023566Z",
"url": "https://files.pythonhosted.org/packages/71/80/68f3bd93240efd92e9397947301efb76461db48c5ac80be2423ffa9c20a3/aiohttp-3.9.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.9.0b0": [
{
"comment_text": "",
"digests": {
"blake2b_256": "6016cb1d399826bc898607246f15a170fdb0f0c675c499a64f5b14100385fd54",
"md5": "9ec79a8892c7578d0d39daaf015d2081",
"sha256": "50b550b5e317e40a017bab8b25995676af3aa66dd0ef562cd7dce7f1684cd376"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "9ec79a8892c7578d0d39daaf015d2081",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 839745,
"upload_time": "2023-10-07T21:40:33",
"upload_time_iso_8601": "2023-10-07T21:40:33.206100Z",
"url": "https://files.pythonhosted.org/packages/60/16/cb1d399826bc898607246f15a170fdb0f0c675c499a64f5b14100385fd54/aiohttp-3.9.0b0-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4fcbcd92984602c222fd20c5700e8cd3a9b2f4e977e597f1b0cfc2acb7674f1f",
"md5": "ac784c142d027efde4e8599c9422c16c",
"sha256": "8f902ad26b9814852e0a17d48f98ba4c879d8136c4fa9b235b5c043dde0a0257"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "ac784c142d027efde4e8599c9422c16c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 643672,
"upload_time": "2023-10-07T21:40:35",
"upload_time_iso_8601": "2023-10-07T21:40:35.376219Z",
"url": "https://files.pythonhosted.org/packages/4f/cb/cd92984602c222fd20c5700e8cd3a9b2f4e977e597f1b0cfc2acb7674f1f/aiohttp-3.9.0b0-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7dcc34a01810af6e52fb659b771a1425d22ef6b997162ba6e51c61f6bb01802e",
"md5": "fad2046807d2495dc7d14035f7d9e274",
"sha256": "c2140de122ecf3eb7947105ceb91fb6632fb21cc1d17f6ff19c3973d2d12730d"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "fad2046807d2495dc7d14035f7d9e274",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 632862,
"upload_time": "2023-10-07T21:40:37",
"upload_time_iso_8601": "2023-10-07T21:40:37.248519Z",
"url": "https://files.pythonhosted.org/packages/7d/cc/34a01810af6e52fb659b771a1425d22ef6b997162ba6e51c61f6bb01802e/aiohttp-3.9.0b0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fe05911b9859ef0fa18ea375c4d7dc11df582892238cc9474463d5f165bf0ffb",
"md5": "0471216efd9eab0a5bc7f5dac736be11",
"sha256": "e014b343225d8d358ee91962b588e863fded12a6e2f9b446bb3be85c678e04ae"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0471216efd9eab0a5bc7f5dac736be11",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1482687,
"upload_time": "2023-10-07T21:40:39",
"upload_time_iso_8601": "2023-10-07T21:40:39.659458Z",
"url": "https://files.pythonhosted.org/packages/fe/05/911b9859ef0fa18ea375c4d7dc11df582892238cc9474463d5f165bf0ffb/aiohttp-3.9.0b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d2447d3dd5e1566dfec29d1f1f7607cd830d1936b6489f3f7b07014ddc397419",
"md5": "9bfb616a16dc4bc310032c407afd3bf4",
"sha256": "c7016695087e616a2806ccdb1f83609e5fecb3958c270e3e5a42f69d225536f2"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "9bfb616a16dc4bc310032c407afd3bf4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1512276,
"upload_time": "2023-10-07T21:40:41",
"upload_time_iso_8601": "2023-10-07T21:40:41.603923Z",
"url": "https://files.pythonhosted.org/packages/d2/44/7d3dd5e1566dfec29d1f1f7607cd830d1936b6489f3f7b07014ddc397419/aiohttp-3.9.0b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8337ece942055d74501e3af4841d3ce424fff079ba057f038b81ff6cd41d2077",
"md5": "9e4e58b196fc9a56abcabb79a035ed68",
"sha256": "40407d5ec81682225ad5538d9bd68b0f8242caa91e72a6a9a95197fd7d9aebb2"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "9e4e58b196fc9a56abcabb79a035ed68",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1547327,
"upload_time": "2023-10-07T21:40:43",
"upload_time_iso_8601": "2023-10-07T21:40:43.657866Z",
"url": "https://files.pythonhosted.org/packages/83/37/ece942055d74501e3af4841d3ce424fff079ba057f038b81ff6cd41d2077/aiohttp-3.9.0b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7cbec1b6495c9a7c3ff5e38882957a21ada9db260f24bd7548267772653ae415",
"md5": "c4ef0223bf29211e6c42e2aa440be183",
"sha256": "bd54502e6b4144785f2f14a5f1544ced0a77dbecb1fd422f21dfad95dcb7fcb8"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c4ef0223bf29211e6c42e2aa440be183",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1471572,
"upload_time": "2023-10-07T21:40:45",
"upload_time_iso_8601": "2023-10-07T21:40:45.538584Z",
"url": "https://files.pythonhosted.org/packages/7c/be/c1b6495c9a7c3ff5e38882957a21ada9db260f24bd7548267772653ae415/aiohttp-3.9.0b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3871c70eac83f2453b03517cf167c55691c9be4ea5c8c91e2e86621396a3d2cd",
"md5": "734e2890b7a66f1983561aca31b391d4",
"sha256": "67f911fd2073621eecfe77b17926460e72980b9b996d0ab7dad5e38805ce2988"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "734e2890b7a66f1983561aca31b391d4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1445420,
"upload_time": "2023-10-07T21:40:47",
"upload_time_iso_8601": "2023-10-07T21:40:47.695922Z",
"url": "https://files.pythonhosted.org/packages/38/71/c70eac83f2453b03517cf167c55691c9be4ea5c8c91e2e86621396a3d2cd/aiohttp-3.9.0b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "828fe5b7a35cd79c8e2ddf72c7ae38758bbfc645ebe7e290c513f88170ca3bc8",
"md5": "fb6c03c2acf99431a4b15480413872a6",
"sha256": "638ba28af2c821b70574664a991dfdfaf1a7a7ae1a8068757f7d59cdf2d8361a"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "fb6c03c2acf99431a4b15480413872a6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1496151,
"upload_time": "2023-10-07T21:40:49",
"upload_time_iso_8601": "2023-10-07T21:40:49.323725Z",
"url": "https://files.pythonhosted.org/packages/82/8f/e5b7a35cd79c8e2ddf72c7ae38758bbfc645ebe7e290c513f88170ca3bc8/aiohttp-3.9.0b0-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c19d3d620189c6a4c358426842317f903281730c069859dd08ffa41b480e96c6",
"md5": "76c6261dbd08c3f1a0b27b8807b11250",
"sha256": "76329f7c1f5f3185d91d61d64615d88fa3dfddf389a83f6cd46a205c5b61e01b"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "76c6261dbd08c3f1a0b27b8807b11250",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1451635,
"upload_time": "2023-10-07T21:40:50",
"upload_time_iso_8601": "2023-10-07T21:40:50.977463Z",
"url": "https://files.pythonhosted.org/packages/c1/9d/3d620189c6a4c358426842317f903281730c069859dd08ffa41b480e96c6/aiohttp-3.9.0b0-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a22aa0663282c85254905c3f07e7a96daf3a600f6435b749e3e0e2b0c0df78c3",
"md5": "44630ac4c23af6e31c996e348ee8b046",
"sha256": "597b5d44b613dea9c62779592eb0ecae87604628564ecaff8d516457def68184"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp310-cp310-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "44630ac4c23af6e31c996e348ee8b046",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1520350,
"upload_time": "2023-10-07T21:40:52",
"upload_time_iso_8601": "2023-10-07T21:40:52.967392Z",
"url": "https://files.pythonhosted.org/packages/a2/2a/a0663282c85254905c3f07e7a96daf3a600f6435b749e3e0e2b0c0df78c3/aiohttp-3.9.0b0-cp310-cp310-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6979616d8c6fe72ff2cf33aba9fe27c0c044648e08b0a8e59fcd8e5fe1d499bf",
"md5": "8d1a1e4e8a6b2227e75739b45c34c166",
"sha256": "cd5edd7ba2b3f95346e0fc8ba2364bdd93917a1bf8528e7d60ec80cf21dfba7e"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp310-cp310-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "8d1a1e4e8a6b2227e75739b45c34c166",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1563424,
"upload_time": "2023-10-07T21:40:54",
"upload_time_iso_8601": "2023-10-07T21:40:54.982042Z",
"url": "https://files.pythonhosted.org/packages/69/79/616d8c6fe72ff2cf33aba9fe27c0c044648e08b0a8e59fcd8e5fe1d499bf/aiohttp-3.9.0b0-cp310-cp310-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "20ba440eee8376e23beab71618c6d9b83088761696971607952f543d5099860b",
"md5": "9a74726462b9f009e55ec99fff567dec",
"sha256": "72556e0cce47c6e558454316fc5c6a3fb0980344eee8af7aa52b495d82ef12a5"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "9a74726462b9f009e55ec99fff567dec",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1484503,
"upload_time": "2023-10-07T21:40:56",
"upload_time_iso_8601": "2023-10-07T21:40:56.565300Z",
"url": "https://files.pythonhosted.org/packages/20/ba/440eee8376e23beab71618c6d9b83088761696971607952f543d5099860b/aiohttp-3.9.0b0-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "837ffa35d3a67a25f94afb31380e3e465426da480c7f285a71f29ecff9ec970f",
"md5": "9ffe0ea9b0dab3633ab9e54afb988594",
"sha256": "01a3b241288c4d8171fe5e2434a799d0b82700d2ed2156b43f1d7f4f521ba382"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "9ffe0ea9b0dab3633ab9e54afb988594",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 593174,
"upload_time": "2023-10-07T21:40:58",
"upload_time_iso_8601": "2023-10-07T21:40:58.548053Z",
"url": "https://files.pythonhosted.org/packages/83/7f/fa35d3a67a25f94afb31380e3e465426da480c7f285a71f29ecff9ec970f/aiohttp-3.9.0b0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f2be8a42ba24331d65fd5a9be499af66ecfcdbb1b392c17d05e5b7f6cacd6ae2",
"md5": "5c52d31c82237384fc310fe293d355db",
"sha256": "17962c404788c348ce5b58efaf4969249183c551890e30bfd9c035188d21e3d1"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "5c52d31c82237384fc310fe293d355db",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 612503,
"upload_time": "2023-10-07T21:41:00",
"upload_time_iso_8601": "2023-10-07T21:41:00.948813Z",
"url": "https://files.pythonhosted.org/packages/f2/be/8a42ba24331d65fd5a9be499af66ecfcdbb1b392c17d05e5b7f6cacd6ae2/aiohttp-3.9.0b0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "769a2f7ba44bb34ab942a23dbbc6fc51d8a92825945f4e88f930a2c2d3ad4ccc",
"md5": "a280b60cb8436b6b3bd28fc58a25a9a8",
"sha256": "94197a77859ab1039b9ca6c3c393b8e7b5fc34a9abfbcb58daac38ab89684a99"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "a280b60cb8436b6b3bd28fc58a25a9a8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 839893,
"upload_time": "2023-10-07T21:41:03",
"upload_time_iso_8601": "2023-10-07T21:41:03.015503Z",
"url": "https://files.pythonhosted.org/packages/76/9a/2f7ba44bb34ab942a23dbbc6fc51d8a92825945f4e88f930a2c2d3ad4ccc/aiohttp-3.9.0b0-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c98c5f03ec4a1619fdfad612e2d408c1e5b65fc1d052d84578b5c016e4f90895",
"md5": "85d66437a150aa79f6620937b756e121",
"sha256": "0c78d2cfe1515cfb31ba67edf0518c6677a963ec2039b652b03a886733e72e65"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "85d66437a150aa79f6620937b756e121",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 644073,
"upload_time": "2023-10-07T21:41:04",
"upload_time_iso_8601": "2023-10-07T21:41:04.577563Z",
"url": "https://files.pythonhosted.org/packages/c9/8c/5f03ec4a1619fdfad612e2d408c1e5b65fc1d052d84578b5c016e4f90895/aiohttp-3.9.0b0-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c7a2b74b7e24323cd4c8954797eae2162a4e135190c31ea62a898c457b93acb1",
"md5": "703822ba0d2f2bc7f6d64834ec711515",
"sha256": "28b38a14f564c833e59c99f748b48803e4babeabc6a0307952b01e6c8d642cab"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "703822ba0d2f2bc7f6d64834ec711515",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 632699,
"upload_time": "2023-10-07T21:41:06",
"upload_time_iso_8601": "2023-10-07T21:41:06.590293Z",
"url": "https://files.pythonhosted.org/packages/c7/a2/b74b7e24323cd4c8954797eae2162a4e135190c31ea62a898c457b93acb1/aiohttp-3.9.0b0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "61a068e5ce74f8e5d388625b02db00cfb79506d8c970566de955e88ed383f6d6",
"md5": "e0e1dc7e8de82f1f9119d09d7f97f7c1",
"sha256": "e596cfc52380f71e197e7cf0e2d3c4714b4bf66d2d562cdbd5442284bac18909"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e0e1dc7e8de82f1f9119d09d7f97f7c1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1556375,
"upload_time": "2023-10-07T21:41:08",
"upload_time_iso_8601": "2023-10-07T21:41:08.028404Z",
"url": "https://files.pythonhosted.org/packages/61/a0/68e5ce74f8e5d388625b02db00cfb79506d8c970566de955e88ed383f6d6/aiohttp-3.9.0b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b074dd2db6bc98a068a888301ed5d924120f9e5eac9d35b19a057d005bfecd4a",
"md5": "4e6a5a8faf556f7c74666bbd43167e1f",
"sha256": "6190951b7933c834d9346e21c5a81642caa210d291cda4036daf85fc53162d35"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "4e6a5a8faf556f7c74666bbd43167e1f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1593620,
"upload_time": "2023-10-07T21:41:09",
"upload_time_iso_8601": "2023-10-07T21:41:09.829406Z",
"url": "https://files.pythonhosted.org/packages/b0/74/dd2db6bc98a068a888301ed5d924120f9e5eac9d35b19a057d005bfecd4a/aiohttp-3.9.0b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c218aa315ab362365bd7a852612c1c3790cc87b66676e8f72bfdf647a4e9512c",
"md5": "c241472f2d11fdae057a355c1a64a398",
"sha256": "fb0cb2cbf95cf4cc40307d0d0187f59c4b86b1d7d1a624922a7d0b046deffba7"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "c241472f2d11fdae057a355c1a64a398",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1630214,
"upload_time": "2023-10-07T21:41:12",
"upload_time_iso_8601": "2023-10-07T21:41:12.233136Z",
"url": "https://files.pythonhosted.org/packages/c2/18/aa315ab362365bd7a852612c1c3790cc87b66676e8f72bfdf647a4e9512c/aiohttp-3.9.0b0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "54697eef35085d6ad8e380869728ec6f24018b34aadcfee30ae56a621bd5ff07",
"md5": "c223b31575a4b69ce048a6b3864f4f5c",
"sha256": "e27c283e21e94fa1582d31b57c514b87ab609882ade413ce43f585d73c8a33fc"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c223b31575a4b69ce048a6b3864f4f5c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1540722,
"upload_time": "2023-10-07T21:41:14",
"upload_time_iso_8601": "2023-10-07T21:41:14.314941Z",
"url": "https://files.pythonhosted.org/packages/54/69/7eef35085d6ad8e380869728ec6f24018b34aadcfee30ae56a621bd5ff07/aiohttp-3.9.0b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d3c0a8610449f677becb57dcc71d7359f52e30946279e0e37618c17d6b229ad4",
"md5": "c20317e88c5b5449d51c04c21d6e4c70",
"sha256": "c6826c59b4e99673728bcdaecacbd699b7521f17ca165c63a5e26e23d42aeea5"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "c20317e88c5b5449d51c04c21d6e4c70",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1500801,
"upload_time": "2023-10-07T21:41:16",
"upload_time_iso_8601": "2023-10-07T21:41:16.553329Z",
"url": "https://files.pythonhosted.org/packages/d3/c0/a8610449f677becb57dcc71d7359f52e30946279e0e37618c17d6b229ad4/aiohttp-3.9.0b0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "77bd36d727b91604bbb1b892c9b14d82dbf079fa3315ef4997f6dd1321162025",
"md5": "7ab3a36aff82c2a94539c7ee428cde83",
"sha256": "aa4738f3b1b916b1cc69ed3d1dead9714919dc4d30ae0d5f6d55eadb2c511133"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "7ab3a36aff82c2a94539c7ee428cde83",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1562311,
"upload_time": "2023-10-07T21:41:18",
"upload_time_iso_8601": "2023-10-07T21:41:18.548280Z",
"url": "https://files.pythonhosted.org/packages/77/bd/36d727b91604bbb1b892c9b14d82dbf079fa3315ef4997f6dd1321162025/aiohttp-3.9.0b0-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "06ffdb488caceee60fb794447d3c028bab498c246715b1073c7b04501cbde411",
"md5": "8efc758f192761956b38082429b640f1",
"sha256": "4b2abd7936f687de3a3ab199b145a9de01ed046eb5640cd66f47da07a9050a78"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "8efc758f192761956b38082429b640f1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1511176,
"upload_time": "2023-10-07T21:41:20",
"upload_time_iso_8601": "2023-10-07T21:41:20.214678Z",
"url": "https://files.pythonhosted.org/packages/06/ff/db488caceee60fb794447d3c028bab498c246715b1073c7b04501cbde411/aiohttp-3.9.0b0-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "55ef09beee610f952ce00de3201abab306c0a9840c472f40a3befe7f92a65f98",
"md5": "7440fefe4d9692e08f4042a66ac4226f",
"sha256": "652cc00a97bc206c470db06276ce57ff2a53a625795bbce8435ef8b6a4cb0113"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp311-cp311-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "7440fefe4d9692e08f4042a66ac4226f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1590753,
"upload_time": "2023-10-07T21:41:22",
"upload_time_iso_8601": "2023-10-07T21:41:22.327462Z",
"url": "https://files.pythonhosted.org/packages/55/ef/09beee610f952ce00de3201abab306c0a9840c472f40a3befe7f92a65f98/aiohttp-3.9.0b0-cp311-cp311-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e3c4ac1076d989bf2eece87ccba149f2f0691854cabee3935ef414b14eb1abae",
"md5": "922cf670ebf0f18df865a43b2cf55acc",
"sha256": "d54529c1d95d5d200ecb7133a343785e5661a804f3dcee090a7bca3b48189d69"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp311-cp311-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "922cf670ebf0f18df865a43b2cf55acc",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1633106,
"upload_time": "2023-10-07T21:41:23",
"upload_time_iso_8601": "2023-10-07T21:41:23.980856Z",
"url": "https://files.pythonhosted.org/packages/e3/c4/ac1076d989bf2eece87ccba149f2f0691854cabee3935ef414b14eb1abae/aiohttp-3.9.0b0-cp311-cp311-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "121613f3460245c9651fa129d85b537bf4f7086ca0dd83d4ee3bca4b79819389",
"md5": "95e914155f8613f4d5649e86dd5e233d",
"sha256": "324fe990c97721ea8eb4d439f12b59d1a93cd7e0dd188c7b145bffdfbd327dc3"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "95e914155f8613f4d5649e86dd5e233d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1545445,
"upload_time": "2023-10-07T21:41:25",
"upload_time_iso_8601": "2023-10-07T21:41:25.924058Z",
"url": "https://files.pythonhosted.org/packages/12/16/13f3460245c9651fa129d85b537bf4f7086ca0dd83d4ee3bca4b79819389/aiohttp-3.9.0b0-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "68e1ad40173595225c563e3d5ad4a2a030b36677ee157fe6de2ed7a8d40e0202",
"md5": "afb9e67b1dfd27c5907e0788477e06ae",
"sha256": "3a2ef8318435f40f5906af36fda20b5432e07e6a7e05de3a4d2934c25320b8ff"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "afb9e67b1dfd27c5907e0788477e06ae",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 592692,
"upload_time": "2023-10-07T21:41:27",
"upload_time_iso_8601": "2023-10-07T21:41:27.945383Z",
"url": "https://files.pythonhosted.org/packages/68/e1/ad40173595225c563e3d5ad4a2a030b36677ee157fe6de2ed7a8d40e0202/aiohttp-3.9.0b0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9e5fc4e83c9536e09731d3bc2329696fbcca5b8d146cc50abfe9c7cd821e3ef1",
"md5": "197aec207facef011aad647eb6087f32",
"sha256": "887d8757aafc7f6fbda76faaff21fc2aa31b9dca0911ecd6b60b0fe922a2abfc"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "197aec207facef011aad647eb6087f32",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 612641,
"upload_time": "2023-10-07T21:41:29",
"upload_time_iso_8601": "2023-10-07T21:41:29.926490Z",
"url": "https://files.pythonhosted.org/packages/9e/5f/c4e83c9536e09731d3bc2329696fbcca5b8d146cc50abfe9c7cd821e3ef1/aiohttp-3.9.0b0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0709272fafb8d750fbe4fa6b0ac13eceb338cdd210ae319baad22119e4c443b6",
"md5": "a62f21563f438616cf37b7af7a63ca98",
"sha256": "9c430c706589a811b38e33e1492d194cbb0f6f2e027877bf038debced703446f"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp312-cp312-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "a62f21563f438616cf37b7af7a63ca98",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 839047,
"upload_time": "2023-10-07T21:41:31",
"upload_time_iso_8601": "2023-10-07T21:41:31.929666Z",
"url": "https://files.pythonhosted.org/packages/07/09/272fafb8d750fbe4fa6b0ac13eceb338cdd210ae319baad22119e4c443b6/aiohttp-3.9.0b0-cp312-cp312-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f49236ecdcc6bec0125f461bf8e3ee4079fc63fbfa285111497598accd62f4d4",
"md5": "2ef9ef919ea366ac62b465777ecf93e6",
"sha256": "9b820981f1c5d6da382e4859318ba78c9b5c583f0920e44a18efb3387b18487e"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "2ef9ef919ea366ac62b465777ecf93e6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 639831,
"upload_time": "2023-10-07T21:41:33",
"upload_time_iso_8601": "2023-10-07T21:41:33.728709Z",
"url": "https://files.pythonhosted.org/packages/f4/92/36ecdcc6bec0125f461bf8e3ee4079fc63fbfa285111497598accd62f4d4/aiohttp-3.9.0b0-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "53240a690e37e871f98318f99f32b4656ba404f6f9c5b28f73e246aef1fdd32b",
"md5": "56c17ccbb9478bca50423ace38d2f995",
"sha256": "c64677a2df742bcd89b94c35689306663d8246a8534bea5835afc706416f8dd6"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "56c17ccbb9478bca50423ace38d2f995",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 635857,
"upload_time": "2023-10-07T21:41:35",
"upload_time_iso_8601": "2023-10-07T21:41:35.162041Z",
"url": "https://files.pythonhosted.org/packages/53/24/0a690e37e871f98318f99f32b4656ba404f6f9c5b28f73e246aef1fdd32b/aiohttp-3.9.0b0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "75cc85421af367d2fdf4fc9d4dc89e7b2e8fbe66164a69629b5a8837bc6eded9",
"md5": "fd03312c16612ceb02baaa1ef1112dc3",
"sha256": "903155c179cda589d01936953158685747af43d98cdd3673a671c6e7f5c94178"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "fd03312c16612ceb02baaa1ef1112dc3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1567626,
"upload_time": "2023-10-07T21:41:36",
"upload_time_iso_8601": "2023-10-07T21:41:36.736536Z",
"url": "https://files.pythonhosted.org/packages/75/cc/85421af367d2fdf4fc9d4dc89e7b2e8fbe66164a69629b5a8837bc6eded9/aiohttp-3.9.0b0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1990d82f7e0282dcf7d6145836c345f887d904b3b4cbfe894f54cc8de0016d9b",
"md5": "087d30941516c6037df9a32c2d1dcc3b",
"sha256": "77cbb6e4a146449f805fa0e725b0b2a06411d21417d8eca699bbee55204201d0"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "087d30941516c6037df9a32c2d1dcc3b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1611033,
"upload_time": "2023-10-07T21:41:38",
"upload_time_iso_8601": "2023-10-07T21:41:38.409724Z",
"url": "https://files.pythonhosted.org/packages/19/90/d82f7e0282dcf7d6145836c345f887d904b3b4cbfe894f54cc8de0016d9b/aiohttp-3.9.0b0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "536c8bb795a25f3841ffc8955205d8592610c9680bd75082ab8c237191c50c38",
"md5": "0f668bb66e79f0509e216c4bad85d564",
"sha256": "bc3cc9f5e6e493a2b9c3d241fca870b5a64aa4c247f1192f9e34fae990667df8"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "0f668bb66e79f0509e216c4bad85d564",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1652695,
"upload_time": "2023-10-07T21:41:40",
"upload_time_iso_8601": "2023-10-07T21:41:40.701724Z",
"url": "https://files.pythonhosted.org/packages/53/6c/8bb795a25f3841ffc8955205d8592610c9680bd75082ab8c237191c50c38/aiohttp-3.9.0b0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bdcfadc8eb79c2ab7386fd23c213bcdd4f8c138a1ef4ccdcc3b093e54a42c460",
"md5": "760b310cb9711cb634648c0263fa4c1d",
"sha256": "92071206e570b7da6380f8d376820e2a40230638b8fd8b45b28103b346704c5e"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "760b310cb9711cb634648c0263fa4c1d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1562436,
"upload_time": "2023-10-07T21:41:42",
"upload_time_iso_8601": "2023-10-07T21:41:42.531534Z",
"url": "https://files.pythonhosted.org/packages/bd/cf/adc8eb79c2ab7386fd23c213bcdd4f8c138a1ef4ccdcc3b093e54a42c460/aiohttp-3.9.0b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cb6b3aac2cb28b3dfaac99d03fc289cc81936dadc9bc2a0070a00d5fdbc95f88",
"md5": "434a26b607b48c6f59f2a1f82d23238a",
"sha256": "242e3cb0b2d441a2d20443114eebe3032078d1894ac1d97ab2dd101165ea50e1"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "434a26b607b48c6f59f2a1f82d23238a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1514166,
"upload_time": "2023-10-07T21:41:44",
"upload_time_iso_8601": "2023-10-07T21:41:44.736984Z",
"url": "https://files.pythonhosted.org/packages/cb/6b/3aac2cb28b3dfaac99d03fc289cc81936dadc9bc2a0070a00d5fdbc95f88/aiohttp-3.9.0b0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "65c92e807339d7956d1c9e4d5805eeb4fe5bb51a6ce7d8cc993f0752d6753689",
"md5": "b0d5301ac17e0ffe2ae90a01036d981f",
"sha256": "044c5a8923bd44a4a0769a2886130c19f7f3a4a1a284f0ff68c2a751920ee39f"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "b0d5301ac17e0ffe2ae90a01036d981f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1571787,
"upload_time": "2023-10-07T21:41:46",
"upload_time_iso_8601": "2023-10-07T21:41:46.547660Z",
"url": "https://files.pythonhosted.org/packages/65/c9/2e807339d7956d1c9e4d5805eeb4fe5bb51a6ce7d8cc993f0752d6753689/aiohttp-3.9.0b0-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "27ec90f1d7ff87e8f76764c7256a8b4147af2fd8bc53fcb1dc34c5e6a307596b",
"md5": "65afefcf94f112f567722e27bbbd45c3",
"sha256": "99b1b0d0f63ff48f80aa89be3ff61bc2b980c5b02895c81dbc1e44ce7b6cb5b7"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "65afefcf94f112f567722e27bbbd45c3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1512992,
"upload_time": "2023-10-07T21:41:48",
"upload_time_iso_8601": "2023-10-07T21:41:48.251340Z",
"url": "https://files.pythonhosted.org/packages/27/ec/90f1d7ff87e8f76764c7256a8b4147af2fd8bc53fcb1dc34c5e6a307596b/aiohttp-3.9.0b0-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5068df48bcfd96cdba32bb9753cf0bed1cab901dc83c0d5d7cc72d0269482e5c",
"md5": "eedfeaa55657018554af71989570dd65",
"sha256": "f737a47b5df97b6da457a0b2739d6d819ffadea2f36336988b53dbdb1796ba89"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp312-cp312-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "eedfeaa55657018554af71989570dd65",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1599261,
"upload_time": "2023-10-07T21:41:50",
"upload_time_iso_8601": "2023-10-07T21:41:50.120401Z",
"url": "https://files.pythonhosted.org/packages/50/68/df48bcfd96cdba32bb9753cf0bed1cab901dc83c0d5d7cc72d0269482e5c/aiohttp-3.9.0b0-cp312-cp312-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "30fb0221aa83bcd26f000e07973e4d282082671f7e1b54b27549ed285512f4c8",
"md5": "ecf95a1fa820fc8f1b2fd2994dfe5ade",
"sha256": "e6d79f8b8347afbecd8047a1f6e74c810eb82497256cc906ee384635174dcaea"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp312-cp312-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "ecf95a1fa820fc8f1b2fd2994dfe5ade",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1648017,
"upload_time": "2023-10-07T21:41:51",
"upload_time_iso_8601": "2023-10-07T21:41:51.676105Z",
"url": "https://files.pythonhosted.org/packages/30/fb/0221aa83bcd26f000e07973e4d282082671f7e1b54b27549ed285512f4c8/aiohttp-3.9.0b0-cp312-cp312-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d7e23f44373dba38029344c169eb46796c2f8d15abd23781133863d4536a66e6",
"md5": "b7cf6f454cd60ad3029e85254c0fb936",
"sha256": "2f1b0a821564e315ec5cfa0abaf048355e229995a812380ec7a2200d87a6ed11"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "b7cf6f454cd60ad3029e85254c0fb936",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1567096,
"upload_time": "2023-10-07T21:41:53",
"upload_time_iso_8601": "2023-10-07T21:41:53.371470Z",
"url": "https://files.pythonhosted.org/packages/d7/e2/3f44373dba38029344c169eb46796c2f8d15abd23781133863d4536a66e6/aiohttp-3.9.0b0-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "93dec376c3fe16b72f067e63342289ab0510f985da5b47384e65513b05415034",
"md5": "941409a41d760ebb5b65e7278b54c8bd",
"sha256": "ab2702f281ca504529e82be78dae2b9ca31d51a92ab8b239bd326b74c79d7af4"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "941409a41d760ebb5b65e7278b54c8bd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 589798,
"upload_time": "2023-10-07T21:41:55",
"upload_time_iso_8601": "2023-10-07T21:41:55.495227Z",
"url": "https://files.pythonhosted.org/packages/93/de/c376c3fe16b72f067e63342289ab0510f985da5b47384e65513b05415034/aiohttp-3.9.0b0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a0d3a0d4e7da37eec45f6e352b7ea12039f0fe78d014291b8cd8846be0bb9446",
"md5": "330cc5423a00f052d136ec5dfabf9084",
"sha256": "b81722b88abd4aab656abfec122646b6171da64340ff92af3bcf1af5f0d1275e"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "330cc5423a00f052d136ec5dfabf9084",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 610795,
"upload_time": "2023-10-07T21:41:57",
"upload_time_iso_8601": "2023-10-07T21:41:57.332061Z",
"url": "https://files.pythonhosted.org/packages/a0/d3/a0d4e7da37eec45f6e352b7ea12039f0fe78d014291b8cd8846be0bb9446/aiohttp-3.9.0b0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "30f199acc299a3487a86fb78309d36c591c4c1a4c0bfc8b87007333eaeb56e85",
"md5": "899000fe0fe61d3f651d6355be57b9b7",
"sha256": "49e2ca017f506d1a9c60f44301ceff2eb8bbfe24b9cd9b4c4a363d9e5f68e92b"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "899000fe0fe61d3f651d6355be57b9b7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 843793,
"upload_time": "2023-10-07T21:41:59",
"upload_time_iso_8601": "2023-10-07T21:41:59.089031Z",
"url": "https://files.pythonhosted.org/packages/30/f1/99acc299a3487a86fb78309d36c591c4c1a4c0bfc8b87007333eaeb56e85/aiohttp-3.9.0b0-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fd2d6b48814c00270f6657f4b626f319041b16843a135972d30ab1f8f0f72c00",
"md5": "52e3d421bcf3061e98304fc31b4cdab1",
"sha256": "06cba5518d8e30b46fcec2a8ed22ec6027fc9864583e0b538da642507f66fe29"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "52e3d421bcf3061e98304fc31b4cdab1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 645570,
"upload_time": "2023-10-07T21:42:01",
"upload_time_iso_8601": "2023-10-07T21:42:01.171615Z",
"url": "https://files.pythonhosted.org/packages/fd/2d/6b48814c00270f6657f4b626f319041b16843a135972d30ab1f8f0f72c00/aiohttp-3.9.0b0-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8208951a5eb7bfd9159a6fdf0da8d996607f841fea48360cd723408117cbe195",
"md5": "05b07d02670f0d4aa7731acc28f90421",
"sha256": "e5201d3f8d0b2748eba5093820861639cac1ea1dfdff537f67152a1c082e1243"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "05b07d02670f0d4aa7731acc28f90421",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 634904,
"upload_time": "2023-10-07T21:42:02",
"upload_time_iso_8601": "2023-10-07T21:42:02.947396Z",
"url": "https://files.pythonhosted.org/packages/82/08/951a5eb7bfd9159a6fdf0da8d996607f841fea48360cd723408117cbe195/aiohttp-3.9.0b0-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ca2eda20874bf09c35099b9b3601326e7b07f52cd700f75e2169ba0c5b118057",
"md5": "14c0a9a5a529ba4499ae2cd309574a18",
"sha256": "8c483d0a666f6cbec2e974f760f93499bbcfcb17a7c4035d4c4c653e6a3b21b1"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "14c0a9a5a529ba4499ae2cd309574a18",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1506178,
"upload_time": "2023-10-07T21:42:05",
"upload_time_iso_8601": "2023-10-07T21:42:05.179463Z",
"url": "https://files.pythonhosted.org/packages/ca/2e/da20874bf09c35099b9b3601326e7b07f52cd700f75e2169ba0c5b118057/aiohttp-3.9.0b0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a1a4a6efa4305126e274a0242a16853a353c2907cf7839a520187b5d3d68299f",
"md5": "15898902f779b1bdfe7d6c2e08fc9068",
"sha256": "04f48476ce3e96843b44084fd15139b195781c10ed6eb5ffb706fb9d2ca95ce4"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "15898902f779b1bdfe7d6c2e08fc9068",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1558263,
"upload_time": "2023-10-07T21:42:06",
"upload_time_iso_8601": "2023-10-07T21:42:06.954418Z",
"url": "https://files.pythonhosted.org/packages/a1/a4/a6efa4305126e274a0242a16853a353c2907cf7839a520187b5d3d68299f/aiohttp-3.9.0b0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f338677d0995ca2461bfea90c63db885b94a0b2f290905efe12966727c1e5155",
"md5": "c9b2791264bca39306969a50ba31fb9c",
"sha256": "09fdad08544a4479e5801c777697c155fa9d966c91b6dcf3e1a0d271ad3999f7"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "c9b2791264bca39306969a50ba31fb9c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1591897,
"upload_time": "2023-10-07T21:42:08",
"upload_time_iso_8601": "2023-10-07T21:42:08.715895Z",
"url": "https://files.pythonhosted.org/packages/f3/38/677d0995ca2461bfea90c63db885b94a0b2f290905efe12966727c1e5155/aiohttp-3.9.0b0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c8635a307c29b0d1a87f57a4d76a7a456b2905485d40b4d70d70205aa74b8def",
"md5": "d6c6cf4429ec2ec3b55a8391a02efdb8",
"sha256": "127aa57415005eb04fb1a3685c9d7b42aef6718be72b8a62b4b30ee00f7d23f4"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d6c6cf4429ec2ec3b55a8391a02efdb8",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1499229,
"upload_time": "2023-10-07T21:42:10",
"upload_time_iso_8601": "2023-10-07T21:42:10.612453Z",
"url": "https://files.pythonhosted.org/packages/c8/63/5a307c29b0d1a87f57a4d76a7a456b2905485d40b4d70d70205aa74b8def/aiohttp-3.9.0b0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2959f33e8d72b4592e4e13e5ee6bb9595c1811e2e3226374b055a3b78db5492f",
"md5": "54b46b375219fa1cfad7449fe4ebf6fc",
"sha256": "aa8f29f0647f10f6bcd9f597f1319d13ce1d6efe2d55169226940093eeadf609"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "54b46b375219fa1cfad7449fe4ebf6fc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1463641,
"upload_time": "2023-10-07T21:42:12",
"upload_time_iso_8601": "2023-10-07T21:42:12.513893Z",
"url": "https://files.pythonhosted.org/packages/29/59/f33e8d72b4592e4e13e5ee6bb9595c1811e2e3226374b055a3b78db5492f/aiohttp-3.9.0b0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fd8c28c8026d8f6363f5d0720f0052dcf9303bcad08a70e8f8bf597022c6ba5c",
"md5": "9af32d72a0afb9f2ccc0735d491f015d",
"sha256": "8dc394dea47594825ac2a662c4fac6a8b294acd937396aaec8e41ed03728898b"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "9af32d72a0afb9f2ccc0735d491f015d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1558329,
"upload_time": "2023-10-07T21:42:14",
"upload_time_iso_8601": "2023-10-07T21:42:14.077961Z",
"url": "https://files.pythonhosted.org/packages/fd/8c/28c8026d8f6363f5d0720f0052dcf9303bcad08a70e8f8bf597022c6ba5c/aiohttp-3.9.0b0-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ce27656ca28ad1ebb5b84bce1d0a59f38ab0f83059d93404e2466c9608c22045",
"md5": "a9f91d41bd89f4358cef46f9510d0bd1",
"sha256": "c332b343974c6fbfec53e3ac7afebd6ba6cc1777cda67c28fabb3562411a9b5a"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "a9f91d41bd89f4358cef46f9510d0bd1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1508563,
"upload_time": "2023-10-07T21:42:15",
"upload_time_iso_8601": "2023-10-07T21:42:15.889781Z",
"url": "https://files.pythonhosted.org/packages/ce/27/656ca28ad1ebb5b84bce1d0a59f38ab0f83059d93404e2466c9608c22045/aiohttp-3.9.0b0-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c3abde25b4380dd50da763cb1c98697ec7b365ddf8d9adfa826c87c8cd47243f",
"md5": "0cfa40853862868929f1f6fd411ba1cf",
"sha256": "6dfad718b328de3fa30d663393d51feea625322ec723bdecdec3f5f52ba6347f"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp38-cp38-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "0cfa40853862868929f1f6fd411ba1cf",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1587326,
"upload_time": "2023-10-07T21:42:17",
"upload_time_iso_8601": "2023-10-07T21:42:17.603657Z",
"url": "https://files.pythonhosted.org/packages/c3/ab/de25b4380dd50da763cb1c98697ec7b365ddf8d9adfa826c87c8cd47243f/aiohttp-3.9.0b0-cp38-cp38-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7aa233afd5632fbf595151e27baefd5f84db5b99c8b15194c35e53dcbe05827c",
"md5": "b7da48615b6a5845408d9f95439a699e",
"sha256": "6edaeb63a4657672b04afcc25c253e960125e805f5a8f8cfa7bf682d15115f49"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp38-cp38-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "b7da48615b6a5845408d9f95439a699e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1629435,
"upload_time": "2023-10-07T21:42:19",
"upload_time_iso_8601": "2023-10-07T21:42:19.420732Z",
"url": "https://files.pythonhosted.org/packages/7a/a2/33afd5632fbf595151e27baefd5f84db5b99c8b15194c35e53dcbe05827c/aiohttp-3.9.0b0-cp38-cp38-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "63feeb92bae3810165201d6627db4a4c72b9569ddb9a448eb96ea14fe33e654d",
"md5": "9053159f026b3347902c14efa962b1e5",
"sha256": "20023087bce5f3adde4872042ea1193d31d98b29682c28a6309d72bce0d9725e"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "9053159f026b3347902c14efa962b1e5",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1549189,
"upload_time": "2023-10-07T21:42:21",
"upload_time_iso_8601": "2023-10-07T21:42:21.051777Z",
"url": "https://files.pythonhosted.org/packages/63/fe/eb92bae3810165201d6627db4a4c72b9569ddb9a448eb96ea14fe33e654d/aiohttp-3.9.0b0-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e3faa2df2e382f6e89dbdf12085328d32abe0b8883e9480074f83ec21f100ec",
"md5": "7e47ca73ac7e055cddc84487eb02ab3f",
"sha256": "ad07ee4165a82e646310c152a74997c759d5782aef58bab9d77034b4cc87e153"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "7e47ca73ac7e055cddc84487eb02ab3f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 594972,
"upload_time": "2023-10-07T21:42:22",
"upload_time_iso_8601": "2023-10-07T21:42:22.648007Z",
"url": "https://files.pythonhosted.org/packages/4e/3f/aa2df2e382f6e89dbdf12085328d32abe0b8883e9480074f83ec21f100ec/aiohttp-3.9.0b0-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "201a8d315d461c3045138a5d5c1a0b91701168fdd8fb6d864aadeb9884b73ace",
"md5": "f27fdbba9ff7eea35c8285e602728b70",
"sha256": "494062a8447c6665f5237c47ca8bb5659cd3128ad9b4af5543566a11bb88df5c"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "f27fdbba9ff7eea35c8285e602728b70",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 614953,
"upload_time": "2023-10-07T21:42:24",
"upload_time_iso_8601": "2023-10-07T21:42:24.318007Z",
"url": "https://files.pythonhosted.org/packages/20/1a/8d315d461c3045138a5d5c1a0b91701168fdd8fb6d864aadeb9884b73ace/aiohttp-3.9.0b0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d65f42f0d5040e07e8a7821b60767f4d6226a5bd88ba421d896158b671b1f276",
"md5": "2467f706a8d514dd6312ccbdfbf106d1",
"sha256": "aaff57bd1ab9eb1a205f3b7a00e2dc159d1e7e4373870be0d192358a656d9e60"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "2467f706a8d514dd6312ccbdfbf106d1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 841495,
"upload_time": "2023-10-07T21:42:25",
"upload_time_iso_8601": "2023-10-07T21:42:25.760880Z",
"url": "https://files.pythonhosted.org/packages/d6/5f/42f0d5040e07e8a7821b60767f4d6226a5bd88ba421d896158b671b1f276/aiohttp-3.9.0b0-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "540dd024941224f02de9166c6d98789cc0411ac47f3263f93d1d6ab4c2c16c04",
"md5": "a18cf9600f4378982128f46f4e0f8b8c",
"sha256": "3c212f5066ffe9490856b706a9d9bd457f14716f4db4b1b73939245a1acecc4e"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "a18cf9600f4378982128f46f4e0f8b8c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 644373,
"upload_time": "2023-10-07T21:42:27",
"upload_time_iso_8601": "2023-10-07T21:42:27.330824Z",
"url": "https://files.pythonhosted.org/packages/54/0d/d024941224f02de9166c6d98789cc0411ac47f3263f93d1d6ab4c2c16c04/aiohttp-3.9.0b0-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e7970896fc7264795802586e41473b2f059b2dc799a27d832130730fa195281f",
"md5": "c903da6a43457496788c1d6bf52a3dea",
"sha256": "d80664b3b82fb9ee2c7b13072651cd68d65fbb3a69721040c08969bab4335628"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c903da6a43457496788c1d6bf52a3dea",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 633711,
"upload_time": "2023-10-07T21:42:28",
"upload_time_iso_8601": "2023-10-07T21:42:28.842146Z",
"url": "https://files.pythonhosted.org/packages/e7/97/0896fc7264795802586e41473b2f059b2dc799a27d832130730fa195281f/aiohttp-3.9.0b0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8392253e22c2d7611e825bb9ee59431c3ff8c69c1dad52982b8a74f0fa972f69",
"md5": "5bc49c1e8b35c2203837a2d795d46fe7",
"sha256": "e7cf539fc98297e312308405949ca2f04a347eb021e30d004388cdb5d155a0ec"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5bc49c1e8b35c2203837a2d795d46fe7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1482561,
"upload_time": "2023-10-07T21:42:30",
"upload_time_iso_8601": "2023-10-07T21:42:30.524329Z",
"url": "https://files.pythonhosted.org/packages/83/92/253e22c2d7611e825bb9ee59431c3ff8c69c1dad52982b8a74f0fa972f69/aiohttp-3.9.0b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "468d40e792d41b8d8fb3f4277ee129be1a7263ae5ed9c51af1bf3c10cd4bfbf4",
"md5": "b5629b9f43196075e4ec4adcabedc168",
"sha256": "6be520717b895508c63df90e48135ba616c702a9229d4be71841dce2ea6a569f"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b5629b9f43196075e4ec4adcabedc168",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1518343,
"upload_time": "2023-10-07T21:42:32",
"upload_time_iso_8601": "2023-10-07T21:42:32.465157Z",
"url": "https://files.pythonhosted.org/packages/46/8d/40e792d41b8d8fb3f4277ee129be1a7263ae5ed9c51af1bf3c10cd4bfbf4/aiohttp-3.9.0b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "adbfa674027cc03d7a035d3aa729762674a23d6ef66614ae4d5170d7f6cb913a",
"md5": "68e60306bfb8805ccc6a6241d8f66d79",
"sha256": "1b25e926cd16b44aeef29fffbb9fc9f577f52a6230e46926e391545b85cd0ce3"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "68e60306bfb8805ccc6a6241d8f66d79",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1554207,
"upload_time": "2023-10-07T21:42:34",
"upload_time_iso_8601": "2023-10-07T21:42:34.445345Z",
"url": "https://files.pythonhosted.org/packages/ad/bf/a674027cc03d7a035d3aa729762674a23d6ef66614ae4d5170d7f6cb913a/aiohttp-3.9.0b0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f4b1ab25640da40357a1a536faa63ff7df64db26128052fd98522b1942446826",
"md5": "bd3172e271827579322cecccdcaaba01",
"sha256": "35f6cafe361c0323945c13122c282ea22fb0df96e845f34c4d8abd96e2a81995"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bd3172e271827579322cecccdcaaba01",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1474564,
"upload_time": "2023-10-07T21:42:36",
"upload_time_iso_8601": "2023-10-07T21:42:36.026676Z",
"url": "https://files.pythonhosted.org/packages/f4/b1/ab25640da40357a1a536faa63ff7df64db26128052fd98522b1942446826/aiohttp-3.9.0b0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e8088127319e79c8bb8131ac36b23b20b9a4d9bd17525a3ab62297e730a23ca8",
"md5": "cade8be86f76b9d2400aee8be6be481a",
"sha256": "5c9851e3d0396686d96a7e3559bf5912ed79c944ff1a6ae3cf7b1da320c3ad2b"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "cade8be86f76b9d2400aee8be6be481a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1447258,
"upload_time": "2023-10-07T21:42:37",
"upload_time_iso_8601": "2023-10-07T21:42:37.718779Z",
"url": "https://files.pythonhosted.org/packages/e8/08/8127319e79c8bb8131ac36b23b20b9a4d9bd17525a3ab62297e730a23ca8/aiohttp-3.9.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aac49eeebbb449ec92ad343cfb74361f27f84b0590408f8abe88148ff78f36d1",
"md5": "99dda2682f5fda0ad4ce7c917de3e6d9",
"sha256": "0ab413eddeb1a03ba84d06acf7024a646b049d991ed0616bcc1ee40dc8fffa9e"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "99dda2682f5fda0ad4ce7c917de3e6d9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1497360,
"upload_time": "2023-10-07T21:42:39",
"upload_time_iso_8601": "2023-10-07T21:42:39.405605Z",
"url": "https://files.pythonhosted.org/packages/aa/c4/9eeebbb449ec92ad343cfb74361f27f84b0590408f8abe88148ff78f36d1/aiohttp-3.9.0b0-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "327ced1bc1026ba726d7b9572fe86eef7c2a7d1bd20df82b80bc3054487529d8",
"md5": "190ff8ae1745b7da49f2ba97f682e95a",
"sha256": "89b271a8658472a9d400836ee8caee743246bae5c06405a63b6ba366f58df727"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "190ff8ae1745b7da49f2ba97f682e95a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1456802,
"upload_time": "2023-10-07T21:42:41",
"upload_time_iso_8601": "2023-10-07T21:42:41.017706Z",
"url": "https://files.pythonhosted.org/packages/32/7c/ed1bc1026ba726d7b9572fe86eef7c2a7d1bd20df82b80bc3054487529d8/aiohttp-3.9.0b0-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f4fab20caac89acd5d529a18d24c0a42ef39ce7b3c21dfcc42ebf1bdc4d041dd",
"md5": "ba6e4092391d2a51cdc240b91fd5f061",
"sha256": "dd941d473b86d0d5a413a1832499e5b80f648d66ca0c8246c26a4ccd66bcf7ec"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp39-cp39-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "ba6e4092391d2a51cdc240b91fd5f061",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1525324,
"upload_time": "2023-10-07T21:42:42",
"upload_time_iso_8601": "2023-10-07T21:42:42.749627Z",
"url": "https://files.pythonhosted.org/packages/f4/fa/b20caac89acd5d529a18d24c0a42ef39ce7b3c21dfcc42ebf1bdc4d041dd/aiohttp-3.9.0b0-cp39-cp39-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6059eec0a3512bed2b136fef6dba6c331162f6a03b69eabe14fe00ccb1664b80",
"md5": "0e390f4b0d11cbfc60dbc8fc597f15ab",
"sha256": "ce4f000279fb85527c017ef429615f2cb5a0cb614c088610849ddc6c2ac8d91b"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp39-cp39-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "0e390f4b0d11cbfc60dbc8fc597f15ab",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1567421,
"upload_time": "2023-10-07T21:42:44",
"upload_time_iso_8601": "2023-10-07T21:42:44.963588Z",
"url": "https://files.pythonhosted.org/packages/60/59/eec0a3512bed2b136fef6dba6c331162f6a03b69eabe14fe00ccb1664b80/aiohttp-3.9.0b0-cp39-cp39-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7eb1d7c66c797de66c6027b5682efdef1e33b98dedebd08b1e675651b3a4fbc9",
"md5": "d7881658daa5b3b93da975eb99c43f96",
"sha256": "f50a4f6773a9eedefb24b42c611e31dcd13f6139419a8656f7e525cb8a00687e"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "d7881658daa5b3b93da975eb99c43f96",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1487601,
"upload_time": "2023-10-07T21:42:46",
"upload_time_iso_8601": "2023-10-07T21:42:46.635646Z",
"url": "https://files.pythonhosted.org/packages/7e/b1/d7c66c797de66c6027b5682efdef1e33b98dedebd08b1e675651b3a4fbc9/aiohttp-3.9.0b0-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6aede2478c1fd855ceabb28e034b66619de002180f93a22482a6c8b80ca58ad7",
"md5": "d3feefe86713a61e8fce022bcade87b9",
"sha256": "b14dcfcc5ad161d007da71e1c1211909d527d9d7c2795ea9e17191ba25e5d89a"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "d3feefe86713a61e8fce022bcade87b9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 593974,
"upload_time": "2023-10-07T21:42:48",
"upload_time_iso_8601": "2023-10-07T21:42:48.866686Z",
"url": "https://files.pythonhosted.org/packages/6a/ed/e2478c1fd855ceabb28e034b66619de002180f93a22482a6c8b80ca58ad7/aiohttp-3.9.0b0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f75e783e308953d03b80ca07a3e456fbd7dee4f08e3991fa7e1d43c53efdc042",
"md5": "38fb4544a52abb354100fa9791052fbc",
"sha256": "567245a91a57c41899f5d266814c9da8782d3d949dc1e66469429f08713a3ec6"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "38fb4544a52abb354100fa9791052fbc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 613243,
"upload_time": "2023-10-07T21:42:50",
"upload_time_iso_8601": "2023-10-07T21:42:50.364129Z",
"url": "https://files.pythonhosted.org/packages/f7/5e/783e308953d03b80ca07a3e456fbd7dee4f08e3991fa7e1d43c53efdc042/aiohttp-3.9.0b0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c450a717a133bda2efc27efbf8a65398c925b6d0605213da0db6929627ccb758",
"md5": "82d04ce94c38833cb58a61fc6a6d6a72",
"sha256": "cecc64fd7bae6debdf43437e3c83183c40d4f4d86486946f412c113960598eee"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b0.tar.gz",
"has_sig": false,
"md5_digest": "82d04ce94c38833cb58a61fc6a6d6a72",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 7468616,
"upload_time": "2023-10-07T21:42:52",
"upload_time_iso_8601": "2023-10-07T21:42:52.630790Z",
"url": "https://files.pythonhosted.org/packages/c4/50/a717a133bda2efc27efbf8a65398c925b6d0605213da0db6929627ccb758/aiohttp-3.9.0b0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.9.0b1": [
{
"comment_text": "",
"digests": {
"blake2b_256": "1e0cc33be8f7df38ea9a368d5305a7a0e74c76aa7bf8ddd1fb61231e59323c1c",
"md5": "b469b1dcc5b1fc70bc19f198f5466fa4",
"sha256": "426138a0b49717b631ffb77d5c2321030bbca96f98eb4d96a2bd874553952ae4"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "b469b1dcc5b1fc70bc19f198f5466fa4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 592303,
"upload_time": "2023-11-06T13:33:12",
"upload_time_iso_8601": "2023-11-06T13:33:12.613464Z",
"url": "https://files.pythonhosted.org/packages/1e/0c/c33be8f7df38ea9a368d5305a7a0e74c76aa7bf8ddd1fb61231e59323c1c/aiohttp-3.9.0b1-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e2ebf7ea2586031fefc6c79a2bc021d3eb995efca6def4d489dc85ea8e5ef8ad",
"md5": "483c8888fc59d3da831b8960a5457eb6",
"sha256": "9a921230d92cf7f03481ca9ad25950d7f3b916f18880fac87b878fddfea04014"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "483c8888fc59d3da831b8960a5457eb6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 395944,
"upload_time": "2023-11-06T13:33:16",
"upload_time_iso_8601": "2023-11-06T13:33:16.102413Z",
"url": "https://files.pythonhosted.org/packages/e2/eb/f7ea2586031fefc6c79a2bc021d3eb995efca6def4d489dc85ea8e5ef8ad/aiohttp-3.9.0b1-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dc237eb352f3945581da49c544808e8f24ef0b2eab88ac8d728e465055e2b89a",
"md5": "409ae8bb6593398752ef135008123278",
"sha256": "f03d008a93904a56e18c78392d3aa1afe83285353a16402104e0155faf200e6a"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "409ae8bb6593398752ef135008123278",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 385416,
"upload_time": "2023-11-06T13:33:18",
"upload_time_iso_8601": "2023-11-06T13:33:18.627301Z",
"url": "https://files.pythonhosted.org/packages/dc/23/7eb352f3945581da49c544808e8f24ef0b2eab88ac8d728e465055e2b89a/aiohttp-3.9.0b1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "27ddd8b7e4c001579edd9cd604e95a4d79999ebdbf326f80f4f669fa2bbe30b2",
"md5": "4cb5f4d0d61f2780138ad20d035a8ce6",
"sha256": "ff51142b170bf3d0d988e41f9c736b0a8f095115f6d6a9bb738b5bf9f1b7cad1"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4cb5f4d0d61f2780138ad20d035a8ce6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1232350,
"upload_time": "2023-11-06T13:33:21",
"upload_time_iso_8601": "2023-11-06T13:33:21.276112Z",
"url": "https://files.pythonhosted.org/packages/27/dd/d8b7e4c001579edd9cd604e95a4d79999ebdbf326f80f4f669fa2bbe30b2/aiohttp-3.9.0b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f6c316bd118aff91a1ae259b7d8e1a512ec6cdbc15ad85c9d9f1b612f1d4f266",
"md5": "dbdae3a1f39816437e74c1c2f0ab8693",
"sha256": "6374c9d191e14729ede73b750fa64b7c3c506bf74458a57b25803937b937a460"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "dbdae3a1f39816437e74c1c2f0ab8693",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1264336,
"upload_time": "2023-11-06T13:33:23",
"upload_time_iso_8601": "2023-11-06T13:33:23.363251Z",
"url": "https://files.pythonhosted.org/packages/f6/c3/16bd118aff91a1ae259b7d8e1a512ec6cdbc15ad85c9d9f1b612f1d4f266/aiohttp-3.9.0b1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0d31c88dcb77022423fe12c40050e019094e4a200079f0252aebdef6d82dc1ad",
"md5": "de2bd93ab04cd67d92dd746ea3746957",
"sha256": "2457a30567f748f96ac0110789f456f4053d28cf82ae8f436a59d7923ba057d2"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "de2bd93ab04cd67d92dd746ea3746957",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1300072,
"upload_time": "2023-11-06T13:33:26",
"upload_time_iso_8601": "2023-11-06T13:33:26.144690Z",
"url": "https://files.pythonhosted.org/packages/0d/31/c88dcb77022423fe12c40050e019094e4a200079f0252aebdef6d82dc1ad/aiohttp-3.9.0b1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d05a271e9963e602e064fb013c7c476c114d9490a54625e8b858d60150f49b63",
"md5": "840f86df702206e8717ee2a6f5fec303",
"sha256": "a97e65e4a1767a2f91c727ac44fb1ccfb71f6608cbf5a01931fcdd5b64e62ff8"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "840f86df702206e8717ee2a6f5fec303",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1224697,
"upload_time": "2023-11-06T13:33:28",
"upload_time_iso_8601": "2023-11-06T13:33:28.577709Z",
"url": "https://files.pythonhosted.org/packages/d0/5a/271e9963e602e064fb013c7c476c114d9490a54625e8b858d60150f49b63/aiohttp-3.9.0b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a8b247e87135d03cc0b3fa4fff52959fce29f15191cf93af87ebfc4e3f5def44",
"md5": "2a1ad02fe61b1bb859f10f696f8caa0e",
"sha256": "97e596803d7417d6809a728058add22885e30f4256bfb6a3fab17a310df94a1f"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "2a1ad02fe61b1bb859f10f696f8caa0e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1198181,
"upload_time": "2023-11-06T13:33:30",
"upload_time_iso_8601": "2023-11-06T13:33:30.815289Z",
"url": "https://files.pythonhosted.org/packages/a8/b2/47e87135d03cc0b3fa4fff52959fce29f15191cf93af87ebfc4e3f5def44/aiohttp-3.9.0b1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5c7dca77422b1289bdc652a5fa7cbd6e6709d63f31b8aff543db639f33e07677",
"md5": "ff2dbd5ff9857ee79fc6bc3b94719452",
"sha256": "9945821f4644034b9ca50ecb1eac38e186ec57b412ed4d164ada26312a7cd0b0"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "ff2dbd5ff9857ee79fc6bc3b94719452",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1246625,
"upload_time": "2023-11-06T13:33:33",
"upload_time_iso_8601": "2023-11-06T13:33:33.824190Z",
"url": "https://files.pythonhosted.org/packages/5c/7d/ca77422b1289bdc652a5fa7cbd6e6709d63f31b8aff543db639f33e07677/aiohttp-3.9.0b1-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bad7a0cb3657f7b087efd3eb0201a7f15f692023c2bb2bb8d67cf145afb14539",
"md5": "17bb17255bc86dd549476eaee9913bfa",
"sha256": "a1c4fd2f0b72d88cf1c4d2f22ed33cd1706aa2734452024998a9b4b14f794799"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "17bb17255bc86dd549476eaee9913bfa",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1204262,
"upload_time": "2023-11-06T13:33:37",
"upload_time_iso_8601": "2023-11-06T13:33:37.155712Z",
"url": "https://files.pythonhosted.org/packages/ba/d7/a0cb3657f7b087efd3eb0201a7f15f692023c2bb2bb8d67cf145afb14539/aiohttp-3.9.0b1-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "828f676222e37162f744e81d39b5de24785db2e66933e332e938c2ff7221f5f7",
"md5": "52b6244c57268c4602a749b2b6e732c3",
"sha256": "cfc900b809dffe5f897cca714f9b49ad45c541a19395eaaab792500116c3a1d6"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp310-cp310-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "52b6244c57268c4602a749b2b6e732c3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1272888,
"upload_time": "2023-11-06T13:33:39",
"upload_time_iso_8601": "2023-11-06T13:33:39.559926Z",
"url": "https://files.pythonhosted.org/packages/82/8f/676222e37162f744e81d39b5de24785db2e66933e332e938c2ff7221f5f7/aiohttp-3.9.0b1-cp310-cp310-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d162db1cb12585ea26e439bed110bd547b0c34d14c684a261f8a4228ba7f9536",
"md5": "9d1eefae38819c1bd62d7ba1c3dd79bd",
"sha256": "1269715323a2543a08695bc628ef3ee142788c56444b5a3dbea7f57bf324d40b"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp310-cp310-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "9d1eefae38819c1bd62d7ba1c3dd79bd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1316071,
"upload_time": "2023-11-06T13:33:41",
"upload_time_iso_8601": "2023-11-06T13:33:41.606496Z",
"url": "https://files.pythonhosted.org/packages/d1/62/db1cb12585ea26e439bed110bd547b0c34d14c684a261f8a4228ba7f9536/aiohttp-3.9.0b1-cp310-cp310-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "78a5702ac38bf617d874c39e5c335bee2a428c6ae28faeb4a9836ff7950548ab",
"md5": "6388a0a75e6b8fd257da64a0c067bf8d",
"sha256": "b5e13ce90574fb9ea57d150474b7f39d5ef82e338106149a5e600c872437aa5e"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "6388a0a75e6b8fd257da64a0c067bf8d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1237487,
"upload_time": "2023-11-06T13:33:43",
"upload_time_iso_8601": "2023-11-06T13:33:43.992769Z",
"url": "https://files.pythonhosted.org/packages/78/a5/702ac38bf617d874c39e5c335bee2a428c6ae28faeb4a9836ff7950548ab/aiohttp-3.9.0b1-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "693d0db9a8690bc6665069dba8e8c65256b0fdb45138c252885acca1e77343de",
"md5": "0b5d72c5a27c765be2bedf41494e029b",
"sha256": "5ab58badc08c2b96b1e5316919dd5ec63f84a9045b2310d2f4a34f8c1b8e217b"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "0b5d72c5a27c765be2bedf41494e029b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 344298,
"upload_time": "2023-11-06T13:33:46",
"upload_time_iso_8601": "2023-11-06T13:33:46.510724Z",
"url": "https://files.pythonhosted.org/packages/69/3d/0db9a8690bc6665069dba8e8c65256b0fdb45138c252885acca1e77343de/aiohttp-3.9.0b1-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "79f19bac93c05aa70b16c37076c7789d8aedc380d33a98536fe293936a1a15b3",
"md5": "b85403731477172cff6005fb817a8cf9",
"sha256": "ecbfc86cf057ec3adf474edf3f9cfdc0e83109a1a8452beb0296fc3a00093340"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "b85403731477172cff6005fb817a8cf9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 363560,
"upload_time": "2023-11-06T13:33:48",
"upload_time_iso_8601": "2023-11-06T13:33:48.588298Z",
"url": "https://files.pythonhosted.org/packages/79/f1/9bac93c05aa70b16c37076c7789d8aedc380d33a98536fe293936a1a15b3/aiohttp-3.9.0b1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e3d321501c1d86155218fb6264999242da4ccc0d266d2756a395a7198ab9490f",
"md5": "3e652f5179d5d5fd7e0bc1bdc9f34ae3",
"sha256": "8c1fd71f282673320aa12b0eccd51c4aebfc45ccb91e0f4236b8c6c4323027c8"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "3e652f5179d5d5fd7e0bc1bdc9f34ae3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 593055,
"upload_time": "2023-11-06T13:33:51",
"upload_time_iso_8601": "2023-11-06T13:33:51.307421Z",
"url": "https://files.pythonhosted.org/packages/e3/d3/21501c1d86155218fb6264999242da4ccc0d266d2756a395a7198ab9490f/aiohttp-3.9.0b1-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "923c71ed1fa0125f4bc3635666fb07998a16d149bbdd8800032044170d3c71f6",
"md5": "5904c622d6e0b71fa9912e1a7ec91068",
"sha256": "3e78ddc7b21b084e919f44893e3f4fb27d959cfe520f5f644ad054f7cbb404bc"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "5904c622d6e0b71fa9912e1a7ec91068",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 396532,
"upload_time": "2023-11-06T13:33:53",
"upload_time_iso_8601": "2023-11-06T13:33:53.674360Z",
"url": "https://files.pythonhosted.org/packages/92/3c/71ed1fa0125f4bc3635666fb07998a16d149bbdd8800032044170d3c71f6/aiohttp-3.9.0b1-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2389cde90a896164326cf64bef234070e5e0d20299cd4fe57c94d1f6330d4228",
"md5": "803917fad916c215df668ae1e913920c",
"sha256": "8113d976c8ae6e501c5643a8307dbe746ccc0eac16e421a3d2c2be76ae7f94f7"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "803917fad916c215df668ae1e913920c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 385762,
"upload_time": "2023-11-06T13:33:55",
"upload_time_iso_8601": "2023-11-06T13:33:55.710673Z",
"url": "https://files.pythonhosted.org/packages/23/89/cde90a896164326cf64bef234070e5e0d20299cd4fe57c94d1f6330d4228/aiohttp-3.9.0b1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "276b218046188a2c9a5c0824b8b7c73081842f0cfbc5bef5f1095630c61204e8",
"md5": "96f2408c55cc96c482743ddf0319a04d",
"sha256": "be7bfd5016572bc1dc358ea9340862f3112f20acd9cb16a1161f470369755e47"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "96f2408c55cc96c482743ddf0319a04d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1309193,
"upload_time": "2023-11-06T13:33:58",
"upload_time_iso_8601": "2023-11-06T13:33:58.287406Z",
"url": "https://files.pythonhosted.org/packages/27/6b/218046188a2c9a5c0824b8b7c73081842f0cfbc5bef5f1095630c61204e8/aiohttp-3.9.0b1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "513aaf0c41808fb5ac06abe2ade2dd72510309de1b4326ba0639f4d6fa2fda70",
"md5": "96d55eedbeeb0f200be54540b975770f",
"sha256": "6549b85dc88d9a792695ac838c9a6384cb32b5df9442185a6640c253f9d8f3cd"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "96d55eedbeeb0f200be54540b975770f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1345753,
"upload_time": "2023-11-06T13:34:00",
"upload_time_iso_8601": "2023-11-06T13:34:00.391356Z",
"url": "https://files.pythonhosted.org/packages/51/3a/af0c41808fb5ac06abe2ade2dd72510309de1b4326ba0639f4d6fa2fda70/aiohttp-3.9.0b1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "12bbdbddc9e8f73753e54ba0971336c3a876f94f36802398c503bf1af72c1a98",
"md5": "a25a70991f15e511082a3c377c1543c5",
"sha256": "cd6ea14850d67272abb1021fa60b831e36a119a47097acd89c880700c51a3c7c"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a25a70991f15e511082a3c377c1543c5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1382714,
"upload_time": "2023-11-06T13:34:02",
"upload_time_iso_8601": "2023-11-06T13:34:02.681354Z",
"url": "https://files.pythonhosted.org/packages/12/bb/dbddc9e8f73753e54ba0971336c3a876f94f36802398c503bf1af72c1a98/aiohttp-3.9.0b1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0cb00de109c44ff23999861115ca6b3d30491547d7b22dc54dbed8d128487c54",
"md5": "d3c82b697696b0a1ca5fcddb29696523",
"sha256": "4a122b5cc10c8b26c878279faa0c22ee48fb0a6e9b53dbfcf2d3a8d31cef8875"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d3c82b697696b0a1ca5fcddb29696523",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1293593,
"upload_time": "2023-11-06T13:34:05",
"upload_time_iso_8601": "2023-11-06T13:34:05.307551Z",
"url": "https://files.pythonhosted.org/packages/0c/b0/0de109c44ff23999861115ca6b3d30491547d7b22dc54dbed8d128487c54/aiohttp-3.9.0b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5b459cbb045cec6a101ca36166fcf1ade0dabf203403f741acad12d6e988152b",
"md5": "543625fa9163550bbcce53dc0ac6faf1",
"sha256": "3410d0a95cfe40e391bfa6cc84c8464a4d0c7a88157f65e9af3af30b20f2137b"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "543625fa9163550bbcce53dc0ac6faf1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1253930,
"upload_time": "2023-11-06T13:34:07",
"upload_time_iso_8601": "2023-11-06T13:34:07.735550Z",
"url": "https://files.pythonhosted.org/packages/5b/45/9cbb045cec6a101ca36166fcf1ade0dabf203403f741acad12d6e988152b/aiohttp-3.9.0b1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c9217fbaa8051fe996a3721e2639e89a9e64ef66d06e52528d72665b357e1031",
"md5": "2d3d953717df22fc98046ac235b6406e",
"sha256": "b50af48cd3d25e8d247ac83d78aadc6d6c8ab51b7623b2ab675ec714f736d9c1"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "2d3d953717df22fc98046ac235b6406e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1314909,
"upload_time": "2023-11-06T13:34:10",
"upload_time_iso_8601": "2023-11-06T13:34:10.415710Z",
"url": "https://files.pythonhosted.org/packages/c9/21/7fbaa8051fe996a3721e2639e89a9e64ef66d06e52528d72665b357e1031/aiohttp-3.9.0b1-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0ad41b344f8a3a678d55f2a71154d33ca555c0b4fc48d1ffa31fc6408e025d9e",
"md5": "2ed17a4bbe0052bc1559b1a5b9a5f256",
"sha256": "cc5d5177ecd7041b726e4936763a36b593cc929a467c698c9e8991b04b6901eb"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "2ed17a4bbe0052bc1559b1a5b9a5f256",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1263323,
"upload_time": "2023-11-06T13:34:12",
"upload_time_iso_8601": "2023-11-06T13:34:12.738873Z",
"url": "https://files.pythonhosted.org/packages/0a/d4/1b344f8a3a678d55f2a71154d33ca555c0b4fc48d1ffa31fc6408e025d9e/aiohttp-3.9.0b1-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e4095ac3dfe3b0e4111cc7b3aa32fb6ae5cd57ef92f7b22000bb0a8b64a8ca5b",
"md5": "66ff479fbb90bf602141fc8837dfc314",
"sha256": "2931638e81d21bf4fc2a04662ce7bf1a73003d7db15797bfe8cbfd555a7073ff"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp311-cp311-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "66ff479fbb90bf602141fc8837dfc314",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1342673,
"upload_time": "2023-11-06T13:34:15",
"upload_time_iso_8601": "2023-11-06T13:34:15.097763Z",
"url": "https://files.pythonhosted.org/packages/e4/09/5ac3dfe3b0e4111cc7b3aa32fb6ae5cd57ef92f7b22000bb0a8b64a8ca5b/aiohttp-3.9.0b1-cp311-cp311-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4dd24668054e271463803eb217c1003aa39d8adc6582e419b97790dfe933eb57",
"md5": "a7f314fd30eb70ceabd50ca991517089",
"sha256": "e40b5ecf8fc485b084adac8e7cd213111878761f4cb00f5785757e8b9af684e6"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp311-cp311-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "a7f314fd30eb70ceabd50ca991517089",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1385318,
"upload_time": "2023-11-06T13:34:18",
"upload_time_iso_8601": "2023-11-06T13:34:18.116398Z",
"url": "https://files.pythonhosted.org/packages/4d/d2/4668054e271463803eb217c1003aa39d8adc6582e419b97790dfe933eb57/aiohttp-3.9.0b1-cp311-cp311-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6f652327f5f34df0f3c0d3b82267aa8df4d75d17740a1ff796cbadd08e3973f6",
"md5": "b346a9f1759c9191c1e4d21390fbec74",
"sha256": "1ad396d02e44c4f25d458ae4defe59ccc9bf6411cc490d82cf80db6ef60e5db2"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "b346a9f1759c9191c1e4d21390fbec74",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1298392,
"upload_time": "2023-11-06T13:34:20",
"upload_time_iso_8601": "2023-11-06T13:34:20.235373Z",
"url": "https://files.pythonhosted.org/packages/6f/65/2327f5f34df0f3c0d3b82267aa8df4d75d17740a1ff796cbadd08e3973f6/aiohttp-3.9.0b1-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e29335c464e0b1a59596a6211e319a3aa7257dfdce24fb33caf37ddbdcedbb10",
"md5": "21742bfcf95609c4e644df27a6b97afb",
"sha256": "d8c51c63ffe2800c2da656c2581b7ce2e27367d93b04997dce48c02493d0721a"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "21742bfcf95609c4e644df27a6b97afb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 343556,
"upload_time": "2023-11-06T13:34:22",
"upload_time_iso_8601": "2023-11-06T13:34:22.720029Z",
"url": "https://files.pythonhosted.org/packages/e2/93/35c464e0b1a59596a6211e319a3aa7257dfdce24fb33caf37ddbdcedbb10/aiohttp-3.9.0b1-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "48a7ef207bde31de82ca6f89f22123f8c0de5a60614310cf45609b0160280a73",
"md5": "fd759b7c873c90c595638ef2b7d0bc3a",
"sha256": "21285b3fa2ff50ec764c2dc6374aaf39e87fc8eaaf9fd5e8ef1e912ad1ba632e"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "fd759b7c873c90c595638ef2b7d0bc3a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 363711,
"upload_time": "2023-11-06T13:34:24",
"upload_time_iso_8601": "2023-11-06T13:34:24.947802Z",
"url": "https://files.pythonhosted.org/packages/48/a7/ef207bde31de82ca6f89f22123f8c0de5a60614310cf45609b0160280a73/aiohttp-3.9.0b1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b67ffc3b0c6876b88ec246fc30ecd22059572b85f60475f34f87fcacb72c073e",
"md5": "a1ee6bc5d3ad992bb2fbb55c04a25e92",
"sha256": "14a1067e04a15b78dacc4e828e3ba157a3d43793f1ed6b7608378e664ae66371"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp312-cp312-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "a1ee6bc5d3ad992bb2fbb55c04a25e92",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 590578,
"upload_time": "2023-11-06T13:34:27",
"upload_time_iso_8601": "2023-11-06T13:34:27.267469Z",
"url": "https://files.pythonhosted.org/packages/b6/7f/fc3b0c6876b88ec246fc30ecd22059572b85f60475f34f87fcacb72c073e/aiohttp-3.9.0b1-cp312-cp312-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "720cab07cb88b5beb152e6d6bcbce203a4782e07f92302c2aac13aac8985ff3d",
"md5": "cb81a1d678883baa572ab2f3529c1b5d",
"sha256": "b4116e6325958d2f6ceee4ff549408965bb701a535ab8859d63bab6271efb1bf"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "cb81a1d678883baa572ab2f3529c1b5d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 391764,
"upload_time": "2023-11-06T13:34:29",
"upload_time_iso_8601": "2023-11-06T13:34:29.222476Z",
"url": "https://files.pythonhosted.org/packages/72/0c/ab07cb88b5beb152e6d6bcbce203a4782e07f92302c2aac13aac8985ff3d/aiohttp-3.9.0b1-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "72301860645bfaea1f33031efbb6ff24f345684c974ae66de6e99b0bf896a1ca",
"md5": "6891fdce8db36597a35c6725fae92d1b",
"sha256": "7a2d39b4d69cca2f8d28a8bc8de532949fb2f7fa219927ac72ac56f8a69db6fb"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6891fdce8db36597a35c6725fae92d1b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 387774,
"upload_time": "2023-11-06T13:34:31",
"upload_time_iso_8601": "2023-11-06T13:34:31.485912Z",
"url": "https://files.pythonhosted.org/packages/72/30/1860645bfaea1f33031efbb6ff24f345684c974ae66de6e99b0bf896a1ca/aiohttp-3.9.0b1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "84dee7b946ee90d2df3ac1e48170a11e3b24f77cca8efe468f542826447892ce",
"md5": "60670cae86d64faed2c82816a8e45f14",
"sha256": "b7b5312f3f2adba2fe46251c2ec0b8ba92d6fda64755c23d5871f28b7c9fba37"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "60670cae86d64faed2c82816a8e45f14",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1318265,
"upload_time": "2023-11-06T13:34:34",
"upload_time_iso_8601": "2023-11-06T13:34:34.072236Z",
"url": "https://files.pythonhosted.org/packages/84/de/e7b946ee90d2df3ac1e48170a11e3b24f77cca8efe468f542826447892ce/aiohttp-3.9.0b1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "14edc342c1f43d3dc961dd1300d7e45aa334d602d9242d9c4cbfbe3fa3787548",
"md5": "15ad4908d6a7b0c73855e14f17c569b9",
"sha256": "cc2d914bde7d1d2ca1fb44ee1d086dfb51df8fd5fb780ee273af6c9038421569"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "15ad4908d6a7b0c73855e14f17c569b9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1358401,
"upload_time": "2023-11-06T13:34:36",
"upload_time_iso_8601": "2023-11-06T13:34:36.345087Z",
"url": "https://files.pythonhosted.org/packages/14/ed/c342c1f43d3dc961dd1300d7e45aa334d602d9242d9c4cbfbe3fa3787548/aiohttp-3.9.0b1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a1ee83b88fcda86cbf463e684f29ec8f946a690aaadcbf87b7894760d664215e",
"md5": "ab3497c4d81f3cd2da7e8c4384820e4f",
"sha256": "69766ca94a289e273db1378a0f2b3044d95864bed6803c75fe3e0eb3e3432092"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "ab3497c4d81f3cd2da7e8c4384820e4f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1400148,
"upload_time": "2023-11-06T13:34:38",
"upload_time_iso_8601": "2023-11-06T13:34:38.705900Z",
"url": "https://files.pythonhosted.org/packages/a1/ee/83b88fcda86cbf463e684f29ec8f946a690aaadcbf87b7894760d664215e/aiohttp-3.9.0b1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3fd91a1bfa9eba905df3d087a0730e7942a27661c1e6aa9aa28cae39bf05e73a",
"md5": "98e903351501c1f0a060e7f11473eef6",
"sha256": "ea3efa3a4c6f030d1cfe038cbc80cfa99977191521e75617ab8933e1690b3e95"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "98e903351501c1f0a060e7f11473eef6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1313580,
"upload_time": "2023-11-06T13:34:40",
"upload_time_iso_8601": "2023-11-06T13:34:40.875374Z",
"url": "https://files.pythonhosted.org/packages/3f/d9/1a1bfa9eba905df3d087a0730e7942a27661c1e6aa9aa28cae39bf05e73a/aiohttp-3.9.0b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e4ddfaa83fddaecd5792206a218f41575a048009c5b413ed807d90e1d69ec27d",
"md5": "ece38b635accdbf465783906634946a4",
"sha256": "a0fb6a080b3cf848786c17e26167c76326ecdd33066a7b7dda560165a4a401d9"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ece38b635accdbf465783906634946a4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1265588,
"upload_time": "2023-11-06T13:34:43",
"upload_time_iso_8601": "2023-11-06T13:34:43.087342Z",
"url": "https://files.pythonhosted.org/packages/e4/dd/faa83fddaecd5792206a218f41575a048009c5b413ed807d90e1d69ec27d/aiohttp-3.9.0b1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "109dbc1125f7ddff29ce650a47c17c3712ea7e4cf7a81c68ca2aea2059d28169",
"md5": "5853d631e62b1cd6378627e46cc27296",
"sha256": "84f2fc12457e0a3b05bfbd8a5ce4a9bc4dd7f8df63101097813e8f7fd6092f81"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "5853d631e62b1cd6378627e46cc27296",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1320135,
"upload_time": "2023-11-06T13:34:45",
"upload_time_iso_8601": "2023-11-06T13:34:45.887289Z",
"url": "https://files.pythonhosted.org/packages/10/9d/bc1125f7ddff29ce650a47c17c3712ea7e4cf7a81c68ca2aea2059d28169/aiohttp-3.9.0b1-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c111742eca7222c0b7818e0bae7bef08021e5b03d1d9f752796927f6a567e5ed",
"md5": "03152485ab4f4b56a1e31a69c6cc88da",
"sha256": "049787f93dec6add786571b0bab193937da09c1331f6b4f36bee356b4a77fffd"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "03152485ab4f4b56a1e31a69c6cc88da",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1266487,
"upload_time": "2023-11-06T13:34:48",
"upload_time_iso_8601": "2023-11-06T13:34:48.321602Z",
"url": "https://files.pythonhosted.org/packages/c1/11/742eca7222c0b7818e0bae7bef08021e5b03d1d9f752796927f6a567e5ed/aiohttp-3.9.0b1-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "83459322f85977b2401623b7b719bb0462106a5b5298444299c580a20e2fc4fb",
"md5": "d042cc00036fa6389cace50e8edce73b",
"sha256": "1cb90917981bc3b7fb730635ec0714c1c7e879c0a2c7a30f32f24979bbb4baf5"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp312-cp312-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "d042cc00036fa6389cace50e8edce73b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1346501,
"upload_time": "2023-11-06T13:34:50",
"upload_time_iso_8601": "2023-11-06T13:34:50.849422Z",
"url": "https://files.pythonhosted.org/packages/83/45/9322f85977b2401623b7b719bb0462106a5b5298444299c580a20e2fc4fb/aiohttp-3.9.0b1-cp312-cp312-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bf2b492e9da530929d0711f4d44f905e80e94e193d2f4822eac1c2504dbd00db",
"md5": "7d8155d9be05dd91695b5b9f12b7cbeb",
"sha256": "cc3020b7ee936989c997de3ddc9a70beeb929a30cc68dcdef543de492a4562eb"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp312-cp312-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "7d8155d9be05dd91695b5b9f12b7cbeb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1394397,
"upload_time": "2023-11-06T13:34:53",
"upload_time_iso_8601": "2023-11-06T13:34:53.203460Z",
"url": "https://files.pythonhosted.org/packages/bf/2b/492e9da530929d0711f4d44f905e80e94e193d2f4822eac1c2504dbd00db/aiohttp-3.9.0b1-cp312-cp312-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "45b91ab447695413745c0ce2f015fc80ff92e4e6669ca2375dc9d4d37dbeab69",
"md5": "8822894df20f0f7a24cc517c2389e2c2",
"sha256": "2d51bf99bd8669f2de4756f0d7a972a8034bb4e68c9c6e6c8346fd1e8115678e"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "8822894df20f0f7a24cc517c2389e2c2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1315084,
"upload_time": "2023-11-06T13:34:55",
"upload_time_iso_8601": "2023-11-06T13:34:55.808725Z",
"url": "https://files.pythonhosted.org/packages/45/b9/1ab447695413745c0ce2f015fc80ff92e4e6669ca2375dc9d4d37dbeab69/aiohttp-3.9.0b1-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "667a1df351c2722ad47397306576ac07ef4c2fcce98da7b57cb22eba8af3f3ca",
"md5": "1235b3b607ab1e87f1867036ac0453a3",
"sha256": "0c09cea7177881137ae7176ec0cfeea72896a853ce1886334fb00ec3de4c857b"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "1235b3b607ab1e87f1867036ac0453a3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 340558,
"upload_time": "2023-11-06T13:34:58",
"upload_time_iso_8601": "2023-11-06T13:34:58.773892Z",
"url": "https://files.pythonhosted.org/packages/66/7a/1df351c2722ad47397306576ac07ef4c2fcce98da7b57cb22eba8af3f3ca/aiohttp-3.9.0b1-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "375d3d1f401a89564060e496ded33cf410e551ee917d75f73091faae983cb858",
"md5": "77de2d3ec5c8375a71dc3407142131bc",
"sha256": "af46831aa5091d248174484a69e2656903457e283b3f359b10ebd4537e4977b0"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "77de2d3ec5c8375a71dc3407142131bc",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 361802,
"upload_time": "2023-11-06T13:35:01",
"upload_time_iso_8601": "2023-11-06T13:35:01.191846Z",
"url": "https://files.pythonhosted.org/packages/37/5d/3d1f401a89564060e496ded33cf410e551ee917d75f73091faae983cb858/aiohttp-3.9.0b1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "028b8c2f64664972d95d004a17070fc39111ac342bf5219ed715cdf6667db296",
"md5": "101ff5224a2ecf40e85e622f51c29b5f",
"sha256": "cd567c0712335bfb1fdba67fcbbe876b6ee0353acdf9862706a0545c364394a7"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "101ff5224a2ecf40e85e622f51c29b5f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 596347,
"upload_time": "2023-11-06T13:35:04",
"upload_time_iso_8601": "2023-11-06T13:35:04.714991Z",
"url": "https://files.pythonhosted.org/packages/02/8b/8c2f64664972d95d004a17070fc39111ac342bf5219ed715cdf6667db296/aiohttp-3.9.0b1-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "352a9c4d0bc45dc440a8d55c9bbd9c9480691ae2b10f784fc026827d6d2957ca",
"md5": "3364538402cf54952c433ce89934aec3",
"sha256": "b807a101522d77e1d9414ad6bef668fc9f2c9b6cb33e7012657837b1518ae013"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "3364538402cf54952c433ce89934aec3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 397944,
"upload_time": "2023-11-06T13:35:07",
"upload_time_iso_8601": "2023-11-06T13:35:07.464208Z",
"url": "https://files.pythonhosted.org/packages/35/2a/9c4d0bc45dc440a8d55c9bbd9c9480691ae2b10f784fc026827d6d2957ca/aiohttp-3.9.0b1-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "56f273db755837739f63b6c389456569e0763b5083ddbb9d736ba4dd8ec53fcb",
"md5": "a5ebae5ac68bd7d2e4f900acaeac29fe",
"sha256": "72cbc48927cbc772f475f1a953e78d853ef99826e171d719fe2a61c92b581939"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a5ebae5ac68bd7d2e4f900acaeac29fe",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 387423,
"upload_time": "2023-11-06T13:35:10",
"upload_time_iso_8601": "2023-11-06T13:35:10.789423Z",
"url": "https://files.pythonhosted.org/packages/56/f2/73db755837739f63b6c389456569e0763b5083ddbb9d736ba4dd8ec53fcb/aiohttp-3.9.0b1-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6e51f1a2fa3c461457a1397628e3dceb66ab376f0a2f091dd99ce95b8628bbb2",
"md5": "a671f8f5830ba26589da69a15b3d1ee3",
"sha256": "d4ea269cd10a3482c68b3aa1d1912f7cc6106f30a809666bdc69974cfafc71f7"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a671f8f5830ba26589da69a15b3d1ee3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1259019,
"upload_time": "2023-11-06T13:35:13",
"upload_time_iso_8601": "2023-11-06T13:35:13.764390Z",
"url": "https://files.pythonhosted.org/packages/6e/51/f1a2fa3c461457a1397628e3dceb66ab376f0a2f091dd99ce95b8628bbb2/aiohttp-3.9.0b1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4d9c000e1ccaeb80ac8f21614b0f80920d4065500a12e9bc54302803d76057f3",
"md5": "21137d8615d32ac7854c4ae1aa7fd0e2",
"sha256": "a8355801fd18ddee69e3f40a762070027d35091433ff3961e7c475e5672fb94b"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "21137d8615d32ac7854c4ae1aa7fd0e2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1311092,
"upload_time": "2023-11-06T13:35:16",
"upload_time_iso_8601": "2023-11-06T13:35:16.859240Z",
"url": "https://files.pythonhosted.org/packages/4d/9c/000e1ccaeb80ac8f21614b0f80920d4065500a12e9bc54302803d76057f3/aiohttp-3.9.0b1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1c1b9228ec4b3e175531d6ffda9c86ecdf86329bd60cb9e455cbf076ba8aed59",
"md5": "38f323b4e560d53a819539ad3bd4548c",
"sha256": "b34251fc6db4912b364900206a2464d489fdcea3e3c6a96270870fd1f08c0eb8"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "38f323b4e560d53a819539ad3bd4548c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1345036,
"upload_time": "2023-11-06T13:35:19",
"upload_time_iso_8601": "2023-11-06T13:35:19.341380Z",
"url": "https://files.pythonhosted.org/packages/1c/1b/9228ec4b3e175531d6ffda9c86ecdf86329bd60cb9e455cbf076ba8aed59/aiohttp-3.9.0b1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "44d61d21a182f85abe33b978e83ab2e94a4d1d0a774405c4dd3a002598b734cd",
"md5": "adb3b5f663ed34fa9a502c7b836fff83",
"sha256": "767c6807e2d5457abfe77141c0629e1594400659d92d4c11b7720c1469b1b171"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "adb3b5f663ed34fa9a502c7b836fff83",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1251807,
"upload_time": "2023-11-06T13:35:21",
"upload_time_iso_8601": "2023-11-06T13:35:21.708092Z",
"url": "https://files.pythonhosted.org/packages/44/d6/1d21a182f85abe33b978e83ab2e94a4d1d0a774405c4dd3a002598b734cd/aiohttp-3.9.0b1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2d2e69fe476e963a171865931555bf9e1b2487159fe538402a51cfeb5edaef99",
"md5": "0d0b30b7064e3265341c4aedb1ef67a3",
"sha256": "19a7d9fe4bb1ccac50a0fa22b8b14376adbd85336ef0ddffd27b3a06cacdc53b"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "0d0b30b7064e3265341c4aedb1ef67a3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1216725,
"upload_time": "2023-11-06T13:35:23",
"upload_time_iso_8601": "2023-11-06T13:35:23.911463Z",
"url": "https://files.pythonhosted.org/packages/2d/2e/69fe476e963a171865931555bf9e1b2487159fe538402a51cfeb5edaef99/aiohttp-3.9.0b1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "18e5873f4d383910d62963765c39444e0bfa1854bbc90bc57d11c27b4d5d121d",
"md5": "124b54c1d4b7316c49489890f01dff7c",
"sha256": "9f52b40c3891884eb8967f9acb6c66903747c2643accc06337f19315e16fe1b0"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "124b54c1d4b7316c49489890f01dff7c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1311119,
"upload_time": "2023-11-06T13:35:25",
"upload_time_iso_8601": "2023-11-06T13:35:25.998803Z",
"url": "https://files.pythonhosted.org/packages/18/e5/873f4d383910d62963765c39444e0bfa1854bbc90bc57d11c27b4d5d121d/aiohttp-3.9.0b1-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a50701da1e4a255e9233584e8e5320b09a02ee21bf50a6afa0fa0db9c02e1cc9",
"md5": "4988ce614ff446818f870c5701f66081",
"sha256": "21a172580a23b4ed8b0f6dd5e10e5bbd1814d1623c1baf3fd7c7a2eb97a9fff0"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "4988ce614ff446818f870c5701f66081",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1261920,
"upload_time": "2023-11-06T13:35:28",
"upload_time_iso_8601": "2023-11-06T13:35:28.563713Z",
"url": "https://files.pythonhosted.org/packages/a5/07/01da1e4a255e9233584e8e5320b09a02ee21bf50a6afa0fa0db9c02e1cc9/aiohttp-3.9.0b1-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "41e5718596f0d7f94896a7cb89886f6cdc2f588f4eb2e0cbf934cdb540f6662a",
"md5": "92eca349edea00af41f473ec911615e1",
"sha256": "61dcbf83148c4e4dbe047dfa1991730813d787813b99d9edaff04605fc907560"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp38-cp38-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "92eca349edea00af41f473ec911615e1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1340191,
"upload_time": "2023-11-06T13:35:30",
"upload_time_iso_8601": "2023-11-06T13:35:30.864146Z",
"url": "https://files.pythonhosted.org/packages/41/e5/718596f0d7f94896a7cb89886f6cdc2f588f4eb2e0cbf934cdb540f6662a/aiohttp-3.9.0b1-cp38-cp38-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5160560bcde838297afabfa75f7a06d4ec64d0716dd3d7d7af0685bbd94ee4b5",
"md5": "11ac842c7a40affda368aa046e686c6a",
"sha256": "afa133e82ba42d7066a1545958f38fa3515df2609a44bf456ba03f92f596e73d"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp38-cp38-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "11ac842c7a40affda368aa046e686c6a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1382293,
"upload_time": "2023-11-06T13:35:33",
"upload_time_iso_8601": "2023-11-06T13:35:33.349766Z",
"url": "https://files.pythonhosted.org/packages/51/60/560bcde838297afabfa75f7a06d4ec64d0716dd3d7d7af0685bbd94ee4b5/aiohttp-3.9.0b1-cp38-cp38-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "04d7cd1dddd50dcac7609552e6f9c65a2604e5c8e749945d16aeea88d7175b84",
"md5": "221ee40a5fcf92fc3d6066e21c4f857a",
"sha256": "c16d7535119bd07826830f5104a0752974bf93bbb3ee5b40514f1a52a141a01c"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "221ee40a5fcf92fc3d6066e21c4f857a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1301897,
"upload_time": "2023-11-06T13:35:35",
"upload_time_iso_8601": "2023-11-06T13:35:35.699471Z",
"url": "https://files.pythonhosted.org/packages/04/d7/cd1dddd50dcac7609552e6f9c65a2604e5c8e749945d16aeea88d7175b84/aiohttp-3.9.0b1-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d5a4b5c6fdf1d02a5fd416f47b2f4a2732f441449577410ddd2633a94f2f7b30",
"md5": "c589a1cb5ff3f091abbff0f826c7051d",
"sha256": "760091662ea21ef9c73f8d198a8aa4056887a8bd46f4e6709ffd8677a5d062da"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "c589a1cb5ff3f091abbff0f826c7051d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 346078,
"upload_time": "2023-11-06T13:35:38",
"upload_time_iso_8601": "2023-11-06T13:35:38.414784Z",
"url": "https://files.pythonhosted.org/packages/d5/a4/b5c6fdf1d02a5fd416f47b2f4a2732f441449577410ddd2633a94f2f7b30/aiohttp-3.9.0b1-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "37eb77882971e9d6e24fd3b4b245f1ec350d41096d56249cbda33e8cee05a631",
"md5": "eafcf8f8015418ac44f3dd8f7fd7a49b",
"sha256": "5fb2697b78eb6d339c6488cf371e8b9885d6a02d2d8fc32cbb0d21582e39fe2f"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "eafcf8f8015418ac44f3dd8f7fd7a49b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 365973,
"upload_time": "2023-11-06T13:35:40",
"upload_time_iso_8601": "2023-11-06T13:35:40.621703Z",
"url": "https://files.pythonhosted.org/packages/37/eb/77882971e9d6e24fd3b4b245f1ec350d41096d56249cbda33e8cee05a631/aiohttp-3.9.0b1-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "79d99148c466c8607ca8622d11c2af9b2f5c8c43d4f90e1ebdea97007ec06791",
"md5": "758ae0ed9236ea9f5ebad4ec00c83eda",
"sha256": "91a80a774401068ce0f0be9d8fa9fdb2f9d0a57e9d13bf4fdf63e3d7f50b7322"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "758ae0ed9236ea9f5ebad4ec00c83eda",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 594037,
"upload_time": "2023-11-06T13:35:42",
"upload_time_iso_8601": "2023-11-06T13:35:42.807583Z",
"url": "https://files.pythonhosted.org/packages/79/d9/9148c466c8607ca8622d11c2af9b2f5c8c43d4f90e1ebdea97007ec06791/aiohttp-3.9.0b1-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e8f75f9a92ddfda79bea95a1fc56dcec1bfb79747a1c68b85c4aea9793112abd",
"md5": "9a45e3d72560217e87a050048c3a9660",
"sha256": "af136826ea2c15ec47d0d43e96dfab2d19f1bb71b3f77a3dcf26d9c89dc92540"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "9a45e3d72560217e87a050048c3a9660",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 396833,
"upload_time": "2023-11-06T13:35:45",
"upload_time_iso_8601": "2023-11-06T13:35:45.234665Z",
"url": "https://files.pythonhosted.org/packages/e8/f7/5f9a92ddfda79bea95a1fc56dcec1bfb79747a1c68b85c4aea9793112abd/aiohttp-3.9.0b1-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ece6a5dc6f3d7c31e21618b51b935d48343fd65455b27f25106e252bf9327f8b",
"md5": "f0a2e80f34090d7a2aefb313bb085b81",
"sha256": "4e55a6b93f9b90a6447a9157ff9f10214b78bcd3d63b9763a6f69a9f524984b4"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f0a2e80f34090d7a2aefb313bb085b81",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 386230,
"upload_time": "2023-11-06T13:35:47",
"upload_time_iso_8601": "2023-11-06T13:35:47.371189Z",
"url": "https://files.pythonhosted.org/packages/ec/e6/a5dc6f3d7c31e21618b51b935d48343fd65455b27f25106e252bf9327f8b/aiohttp-3.9.0b1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "74cb8ff36a77e7a8efd6632a0cab99a35a8a7c93015b3eeef8777363215fb34b",
"md5": "67b8b5cadcce25dfd1d406f853b6cc84",
"sha256": "8406305cabfa655607d8f0c9ea72c13fff22d8ead055a1c26ac1561067345b6b"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "67b8b5cadcce25dfd1d406f853b6cc84",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1235716,
"upload_time": "2023-11-06T13:35:49",
"upload_time_iso_8601": "2023-11-06T13:35:49.799639Z",
"url": "https://files.pythonhosted.org/packages/74/cb/8ff36a77e7a8efd6632a0cab99a35a8a7c93015b3eeef8777363215fb34b/aiohttp-3.9.0b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a63a7d8f804818ad033f9f33d3ed73a52dad98318f822ca94e1a5ce1d30210a0",
"md5": "29ea97ed9b87bae0a50c490b0072b131",
"sha256": "c8745164e738eee604c79dcbabc0317b3758b2487894712e2722fb78f8302a75"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "29ea97ed9b87bae0a50c490b0072b131",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1271219,
"upload_time": "2023-11-06T13:35:52",
"upload_time_iso_8601": "2023-11-06T13:35:52.670218Z",
"url": "https://files.pythonhosted.org/packages/a6/3a/7d8f804818ad033f9f33d3ed73a52dad98318f822ca94e1a5ce1d30210a0/aiohttp-3.9.0b1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "80427743f345e16c04fa0ea571380050ec69dfa5619dbe85b771f5cdbf3b0940",
"md5": "8f07384c9c325335dcfb5b558d0fd12a",
"sha256": "26dc5b5081c4fa3a9d517d8633b377d394c409182a871ada0105fc7c994ee7d5"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "8f07384c9c325335dcfb5b558d0fd12a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1307394,
"upload_time": "2023-11-06T13:35:55",
"upload_time_iso_8601": "2023-11-06T13:35:55.295106Z",
"url": "https://files.pythonhosted.org/packages/80/42/7743f345e16c04fa0ea571380050ec69dfa5619dbe85b771f5cdbf3b0940/aiohttp-3.9.0b1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2ef8149e44aad6be62b07b4a02c6e04b20d358e68c8d3d92f32b14e3b9e2d7dc",
"md5": "31617ea1ae96782af58f83b64f2d6e6a",
"sha256": "a29fb4399795b903a7c0089752889fb268746a946cb74f38edec231c0945ca3d"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "31617ea1ae96782af58f83b64f2d6e6a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1227761,
"upload_time": "2023-11-06T13:35:57",
"upload_time_iso_8601": "2023-11-06T13:35:57.754547Z",
"url": "https://files.pythonhosted.org/packages/2e/f8/149e44aad6be62b07b4a02c6e04b20d358e68c8d3d92f32b14e3b9e2d7dc/aiohttp-3.9.0b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4be7cce31e9b05eec6f2d4fd1a879706a7521d62cf37c2b5fb05e91b135ade40",
"md5": "e6468d939ac21b3aa8d21f25f3bad36a",
"sha256": "51a4731c67c90d101eeb778123b9e28da2ee1222a9f17d2175354d10a8c9549d"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e6468d939ac21b3aa8d21f25f3bad36a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1200647,
"upload_time": "2023-11-06T13:36:00",
"upload_time_iso_8601": "2023-11-06T13:36:00.915671Z",
"url": "https://files.pythonhosted.org/packages/4b/e7/cce31e9b05eec6f2d4fd1a879706a7521d62cf37c2b5fb05e91b135ade40/aiohttp-3.9.0b1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a35092d1d0586dfad53aa06d8a46277d671b9a6d8cbcc01c951688b08578c0d4",
"md5": "d3749de5170d1e05903bbeac3f812a07",
"sha256": "c07413a6787273d5b491b102bc903e2eb73472a3442a400c2410025ac0070bcc"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "d3749de5170d1e05903bbeac3f812a07",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1250289,
"upload_time": "2023-11-06T13:36:03",
"upload_time_iso_8601": "2023-11-06T13:36:03.765749Z",
"url": "https://files.pythonhosted.org/packages/a3/50/92d1d0586dfad53aa06d8a46277d671b9a6d8cbcc01c951688b08578c0d4/aiohttp-3.9.0b1-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af3915f2d6812fa69f46e7ae3ed64735770c2400c574a8630e776f8d7465ef8b",
"md5": "3b42ab06082c94d68f017877649e8547",
"sha256": "9c316060606ba3efbe1eb56a740c9aebe40c3e2c9d1f8c04cd4aa238e87e6667"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "3b42ab06082c94d68f017877649e8547",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1210029,
"upload_time": "2023-11-06T13:36:06",
"upload_time_iso_8601": "2023-11-06T13:36:06.301585Z",
"url": "https://files.pythonhosted.org/packages/af/39/15f2d6812fa69f46e7ae3ed64735770c2400c574a8630e776f8d7465ef8b/aiohttp-3.9.0b1-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e91ef34e931104376f6f89ea3322ec3b76022daf2778bf2906dab52de976077",
"md5": "4b1f4ef51ae88a260bbc8fd07a4875e0",
"sha256": "d22cac2aa48c365612b918ba446441d2b300b8377fa87e7776a00d4857f3eedd"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp39-cp39-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "4b1f4ef51ae88a260bbc8fd07a4875e0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1278040,
"upload_time": "2023-11-06T13:36:08",
"upload_time_iso_8601": "2023-11-06T13:36:08.754220Z",
"url": "https://files.pythonhosted.org/packages/4e/91/ef34e931104376f6f89ea3322ec3b76022daf2778bf2906dab52de976077/aiohttp-3.9.0b1-cp39-cp39-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5493a85b60b53cf75273da89f359d9f6238d06152ba135df086610ae05d0614d",
"md5": "721359c780667e769228f74b2233066e",
"sha256": "17d6b13fd38c0ef853ef1b5485a9029dadbf93d0e772eb1c95feb043594ab8e3"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp39-cp39-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "721359c780667e769228f74b2233066e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1319911,
"upload_time": "2023-11-06T13:36:11",
"upload_time_iso_8601": "2023-11-06T13:36:11.256099Z",
"url": "https://files.pythonhosted.org/packages/54/93/a85b60b53cf75273da89f359d9f6238d06152ba135df086610ae05d0614d/aiohttp-3.9.0b1-cp39-cp39-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2cc7a5df2a256d66925c62a0278e8ec2352c4a94bcca8c51dd0a815e713080f1",
"md5": "872022e7acff89d97e18ad602b58b087",
"sha256": "581abaee1facdba3f7d69122e9add766b7c02b110b3011e8bc512deb2ff93c12"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "872022e7acff89d97e18ad602b58b087",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1240732,
"upload_time": "2023-11-06T13:36:13",
"upload_time_iso_8601": "2023-11-06T13:36:13.980377Z",
"url": "https://files.pythonhosted.org/packages/2c/c7/a5df2a256d66925c62a0278e8ec2352c4a94bcca8c51dd0a815e713080f1/aiohttp-3.9.0b1-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "80cdbcc979876a6516f512a0a088ac3e0c2c23aa26916dc99ad4059d52cc4baf",
"md5": "def523eabce11cab9c81134c09402ab1",
"sha256": "fd26813062148d56e46fe3e82b2e4d2dbe202aceb6038fdd06ba9a8dd782bfb4"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "def523eabce11cab9c81134c09402ab1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 345047,
"upload_time": "2023-11-06T13:36:16",
"upload_time_iso_8601": "2023-11-06T13:36:16.560477Z",
"url": "https://files.pythonhosted.org/packages/80/cd/bcc979876a6516f512a0a088ac3e0c2c23aa26916dc99ad4059d52cc4baf/aiohttp-3.9.0b1-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6552f7b3ab188754e206d093fa4cc74c1ff38f2fe58545ee4091b33cfbceac8c",
"md5": "09966f6fe424a587482ac04076c0e6e4",
"sha256": "3c9ca575572f0914458544180051bbaeeebb0e487e9b069fa844a6a74fd7800f"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "09966f6fe424a587482ac04076c0e6e4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 364377,
"upload_time": "2023-11-06T13:36:19",
"upload_time_iso_8601": "2023-11-06T13:36:19.082261Z",
"url": "https://files.pythonhosted.org/packages/65/52/f7b3ab188754e206d093fa4cc74c1ff38f2fe58545ee4091b33cfbceac8c/aiohttp-3.9.0b1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2fd21e9a33d15b85b0ea0d4029e3fdca0979e9b864314b965a4d3f0882e5dede",
"md5": "63a0835e2a1dd5c161294e8154ab279b",
"sha256": "d6e120b08ac168825239c64e0a850a108edb9cd17be247e25bced9b07a14a403"
},
"downloads": -1,
"filename": "aiohttp-3.9.0b1.tar.gz",
"has_sig": false,
"md5_digest": "63a0835e2a1dd5c161294e8154ab279b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 7473896,
"upload_time": "2023-11-06T13:36:21",
"upload_time_iso_8601": "2023-11-06T13:36:21.427417Z",
"url": "https://files.pythonhosted.org/packages/2f/d2/1e9a33d15b85b0ea0d4029e3fdca0979e9b864314b965a4d3f0882e5dede/aiohttp-3.9.0b1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.9.0rc0": [
{
"comment_text": "",
"digests": {
"blake2b_256": "f147b8c3e8d3884982946373f2c8eace7502b3ad63d145c67c36fc5f827dfafb",
"md5": "e6d693268611b150488a390bc6bae7f8",
"sha256": "5e1567eaa769f6e8eb2b10688a78a1bedc7bbc5457c0583f3740e51a06637ad4"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "e6d693268611b150488a390bc6bae7f8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 592958,
"upload_time": "2023-11-14T16:46:43",
"upload_time_iso_8601": "2023-11-14T16:46:43.879379Z",
"url": "https://files.pythonhosted.org/packages/f1/47/b8c3e8d3884982946373f2c8eace7502b3ad63d145c67c36fc5f827dfafb/aiohttp-3.9.0rc0-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b19cdf0b3390eb6fa1a74a67ae0b3dfc019a4fa94952a898d0a9e22b8edb4de1",
"md5": "1e67fa2ceea5476005198097a3bfa26e",
"sha256": "b311a951d5c2153649e54ca1bf84176ca199e2644c150fc07a0a68e75bbe4ef5"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "1e67fa2ceea5476005198097a3bfa26e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 396572,
"upload_time": "2023-11-14T16:46:47",
"upload_time_iso_8601": "2023-11-14T16:46:47.076991Z",
"url": "https://files.pythonhosted.org/packages/b1/9c/df0b3390eb6fa1a74a67ae0b3dfc019a4fa94952a898d0a9e22b8edb4de1/aiohttp-3.9.0rc0-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "24b89715c4d132ed80aa8ae13e9b6048890259850c145b706c92dacc832b8091",
"md5": "1dfe632bdc2d57e83392ae5432151fb8",
"sha256": "562354b3ecf00d9b64860bdcba7e63ba643805659f437511db1ff508a3257a5c"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1dfe632bdc2d57e83392ae5432151fb8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 386065,
"upload_time": "2023-11-14T16:46:49",
"upload_time_iso_8601": "2023-11-14T16:46:49.384830Z",
"url": "https://files.pythonhosted.org/packages/24/b8/9715c4d132ed80aa8ae13e9b6048890259850c145b706c92dacc832b8091/aiohttp-3.9.0rc0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1c93d56d9db988e67758591a58a8a5db67f9d34b0f80bf5d8f53c662af6c8f7f",
"md5": "287020d9ff29fa35800fc36266a8024f",
"sha256": "5fb7990ac51c78d6b48dd44e3bfd73ecd378e3fbbe910a794c7b8d5d56ec5f0f"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "287020d9ff29fa35800fc36266a8024f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1232993,
"upload_time": "2023-11-14T16:46:51",
"upload_time_iso_8601": "2023-11-14T16:46:51.736479Z",
"url": "https://files.pythonhosted.org/packages/1c/93/d56d9db988e67758591a58a8a5db67f9d34b0f80bf5d8f53c662af6c8f7f/aiohttp-3.9.0rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a08b8960020b2ff8eea101f30b492485ea6d4e7913b7cce8b18ba42caf23f15b",
"md5": "6a217219a03301446727d1c541017126",
"sha256": "7bd6ab9428e957279d8704ed2da7f9082c4ddf08942b7e8955a47589477984a9"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "6a217219a03301446727d1c541017126",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1264979,
"upload_time": "2023-11-14T16:46:54",
"upload_time_iso_8601": "2023-11-14T16:46:54.436235Z",
"url": "https://files.pythonhosted.org/packages/a0/8b/8960020b2ff8eea101f30b492485ea6d4e7913b7cce8b18ba42caf23f15b/aiohttp-3.9.0rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af18793a8dfe0567f74993e77db7ffe0a04ca8ceaa463511fe8ed714ae41acb3",
"md5": "17ed9ba228d31903d6ff27f7e08aab51",
"sha256": "759d9a2631ae332ea2993c738fc5136646e53689b404a66c13cf3e5965a4d7a0"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "17ed9ba228d31903d6ff27f7e08aab51",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1300714,
"upload_time": "2023-11-14T16:46:58",
"upload_time_iso_8601": "2023-11-14T16:46:58.463042Z",
"url": "https://files.pythonhosted.org/packages/af/18/793a8dfe0567f74993e77db7ffe0a04ca8ceaa463511fe8ed714ae41acb3/aiohttp-3.9.0rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2511cb30c35ae9bb641406a610c0b481e661ec8f2b9b6d5e6c52814581fe4e1c",
"md5": "df8b388df2a8e9e64576f55ba0aa10c4",
"sha256": "4c8056b34c33f8c932e5c726534a70f4145f1ef054b0d55d4952c569c0b118f6"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "df8b388df2a8e9e64576f55ba0aa10c4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1225342,
"upload_time": "2023-11-14T16:47:01",
"upload_time_iso_8601": "2023-11-14T16:47:01.001893Z",
"url": "https://files.pythonhosted.org/packages/25/11/cb30c35ae9bb641406a610c0b481e661ec8f2b9b6d5e6c52814581fe4e1c/aiohttp-3.9.0rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6e13e80c3482643054e7a65819f50a727338f9fd721bcfa5e6b132ed34c85a1d",
"md5": "4063b37d73e89a6ecde283b94d574d96",
"sha256": "c2a6d56e6f3835d6a8c31594cb138389dd09adf56fbbf28248364ee72c02ef28"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "4063b37d73e89a6ecde283b94d574d96",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1198826,
"upload_time": "2023-11-14T16:47:04",
"upload_time_iso_8601": "2023-11-14T16:47:04.821517Z",
"url": "https://files.pythonhosted.org/packages/6e/13/e80c3482643054e7a65819f50a727338f9fd721bcfa5e6b132ed34c85a1d/aiohttp-3.9.0rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cdb51426d073012665763e6fee1c186d0754dfa2c480a3b249e1ef739cb0ee86",
"md5": "fc816f3ac7d8a304ecffec73b09f92c8",
"sha256": "a6d28b560c2576b3b82995c87bc79b1bf168475bfccb333ec44a04f176656928"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "fc816f3ac7d8a304ecffec73b09f92c8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1247268,
"upload_time": "2023-11-14T16:47:09",
"upload_time_iso_8601": "2023-11-14T16:47:09.115482Z",
"url": "https://files.pythonhosted.org/packages/cd/b5/1426d073012665763e6fee1c186d0754dfa2c480a3b249e1ef739cb0ee86/aiohttp-3.9.0rc0-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "10e4239ab05fdf948900386240b10397ef49a9da6d0ec4d1147f1c71a8c54c4a",
"md5": "d907862d34eb9c53a186368460249886",
"sha256": "c08cc6064a9092f8789cff733ac4713474737dd75e00b75bc1f5a0eafe6a8047"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "d907862d34eb9c53a186368460249886",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1204904,
"upload_time": "2023-11-14T16:47:13",
"upload_time_iso_8601": "2023-11-14T16:47:13.109209Z",
"url": "https://files.pythonhosted.org/packages/10/e4/239ab05fdf948900386240b10397ef49a9da6d0ec4d1147f1c71a8c54c4a/aiohttp-3.9.0rc0-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c34ec6378cd40f1df6245a0ec688b00af78d5fee01cc5e5e5e700a0f06b1852b",
"md5": "11b77d1e04168a07207bd2a44f1cdf8c",
"sha256": "3de46d62ac86dac8491cdb5ca716a6ac82e2b56032163f46dd036eda3833de1f"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp310-cp310-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "11b77d1e04168a07207bd2a44f1cdf8c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1273533,
"upload_time": "2023-11-14T16:47:17",
"upload_time_iso_8601": "2023-11-14T16:47:17.629047Z",
"url": "https://files.pythonhosted.org/packages/c3/4e/c6378cd40f1df6245a0ec688b00af78d5fee01cc5e5e5e700a0f06b1852b/aiohttp-3.9.0rc0-cp310-cp310-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f8b9e422a0dac93818076ae9d18da3358f6d917c3fed47c5a1e53dc98228594c",
"md5": "c6d6939f868273df5e19a54308d29325",
"sha256": "5256d8eec6ae19f7cfb2f4cae0309c77be60f2ef7a0ec1b37989144b8d4669f8"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp310-cp310-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "c6d6939f868273df5e19a54308d29325",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1316716,
"upload_time": "2023-11-14T16:47:20",
"upload_time_iso_8601": "2023-11-14T16:47:20.108856Z",
"url": "https://files.pythonhosted.org/packages/f8/b9/e422a0dac93818076ae9d18da3358f6d917c3fed47c5a1e53dc98228594c/aiohttp-3.9.0rc0-cp310-cp310-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "85e724d6fe9e8fadb6e80caa4bf05581f831c41cf05324c1802bc928e8e9aa57",
"md5": "d15c5ec3669ad3a37046d09269b6a2c0",
"sha256": "6021de88ace416aa9d5ce561cfcd1a6150df1bb08b0158727906c2d82fb427d8"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "d15c5ec3669ad3a37046d09269b6a2c0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1238135,
"upload_time": "2023-11-14T16:47:22",
"upload_time_iso_8601": "2023-11-14T16:47:22.612839Z",
"url": "https://files.pythonhosted.org/packages/85/e7/24d6fe9e8fadb6e80caa4bf05581f831c41cf05324c1802bc928e8e9aa57/aiohttp-3.9.0rc0-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c992a58c0589b6c1684e72b0b2eaad98f7dc2d0a6cc6f055a5c4ba8148b4eca6",
"md5": "3a67d6c355169d159d02dcb7e45edf43",
"sha256": "fbef50f9ddd0ab4a29e620f294e36fcc9f9d6e7dcceec44458bd751df1a7494f"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "3a67d6c355169d159d02dcb7e45edf43",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 344965,
"upload_time": "2023-11-14T16:47:27",
"upload_time_iso_8601": "2023-11-14T16:47:27.031264Z",
"url": "https://files.pythonhosted.org/packages/c9/92/a58c0589b6c1684e72b0b2eaad98f7dc2d0a6cc6f055a5c4ba8148b4eca6/aiohttp-3.9.0rc0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "772361cddc0802848b083138febc6e1d3da6b25dc4116d5e879052ef82132add",
"md5": "613a860d6952584b9ec79a6283d15d22",
"sha256": "f3ca89ab8bd26a26f1502fa2099c826e86b57e5ffc691a464460f76e3d19cbfa"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "613a860d6952584b9ec79a6283d15d22",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 364231,
"upload_time": "2023-11-14T16:47:29",
"upload_time_iso_8601": "2023-11-14T16:47:29.272573Z",
"url": "https://files.pythonhosted.org/packages/77/23/61cddc0802848b083138febc6e1d3da6b25dc4116d5e879052ef82132add/aiohttp-3.9.0rc0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1e7c8e944a100789d539a29b60f84c9a134f00c13cc7da637bf6ffee8648344e",
"md5": "6f03ce44960f0ede5cbb95edd5c9dcb3",
"sha256": "a358cfbb7e571d63c28201e6de463e7e1867cba6bc2569727d5d016b0f47ecb8"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "6f03ce44960f0ede5cbb95edd5c9dcb3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 593709,
"upload_time": "2023-11-14T16:47:33",
"upload_time_iso_8601": "2023-11-14T16:47:33.116082Z",
"url": "https://files.pythonhosted.org/packages/1e/7c/8e944a100789d539a29b60f84c9a134f00c13cc7da637bf6ffee8648344e/aiohttp-3.9.0rc0-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ac71958ec6ef530e995f29d95d0631ae50a62be295568fc16ea0fe627f19162c",
"md5": "0c80bae5002b08403484491f0b1a4459",
"sha256": "aedfdb423d4b89dcde77029c3d1d300cff052ddfc9cd663eca5d9d871ef2ce3b"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "0c80bae5002b08403484491f0b1a4459",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 397178,
"upload_time": "2023-11-14T16:47:36",
"upload_time_iso_8601": "2023-11-14T16:47:36.319316Z",
"url": "https://files.pythonhosted.org/packages/ac/71/958ec6ef530e995f29d95d0631ae50a62be295568fc16ea0fe627f19162c/aiohttp-3.9.0rc0-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e6a320a5fff0ea45e04bdebbf9ea3921415d7c7a27df15f4cf660a9543c85d51",
"md5": "566db5ce29d1f3c3d3fdbd27c7f57d6b",
"sha256": "2823548fd9e7ee9f0790d60a565dbb87f946e428a559493020485f124bc914c2"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "566db5ce29d1f3c3d3fdbd27c7f57d6b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 386412,
"upload_time": "2023-11-14T16:47:38",
"upload_time_iso_8601": "2023-11-14T16:47:38.778906Z",
"url": "https://files.pythonhosted.org/packages/e6/a3/20a5fff0ea45e04bdebbf9ea3921415d7c7a27df15f4cf660a9543c85d51/aiohttp-3.9.0rc0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8c21a3c2421a3a9874485be9982196bbe1d7fafc2c90b7311cdac251f5320957",
"md5": "97c987f64ff211aaadbe9bd7d18a72d3",
"sha256": "073ab38141fa4c8ce9a199fb5650345514b9382f7850e91466ff89eb715b6e9e"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "97c987f64ff211aaadbe9bd7d18a72d3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1309837,
"upload_time": "2023-11-14T16:47:41",
"upload_time_iso_8601": "2023-11-14T16:47:41.524234Z",
"url": "https://files.pythonhosted.org/packages/8c/21/a3c2421a3a9874485be9982196bbe1d7fafc2c90b7311cdac251f5320957/aiohttp-3.9.0rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "28a32324cfcf1c1c836671389ee4ae773e3b749c74b73b191ce0201bb3587cea",
"md5": "7364a68ecb6a5d7ae53f6fef3c202dbd",
"sha256": "89072a15b294f55ef837748bca0803aaa56c68c4ebf13027031a8c6000002603"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "7364a68ecb6a5d7ae53f6fef3c202dbd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1346395,
"upload_time": "2023-11-14T16:47:43",
"upload_time_iso_8601": "2023-11-14T16:47:43.957852Z",
"url": "https://files.pythonhosted.org/packages/28/a3/2324cfcf1c1c836671389ee4ae773e3b749c74b73b191ce0201bb3587cea/aiohttp-3.9.0rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f232befdfbfcd32ee20a1d14cc74036bd51f3877c8ec2eb7df6b69d39013c114",
"md5": "3a3d0d3b0b416f37bafd01203320544d",
"sha256": "80c37921ebf88f81fa1900bbf8a22bf7211ba5361a325b14a22eafc1cbc7d518"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "3a3d0d3b0b416f37bafd01203320544d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1383356,
"upload_time": "2023-11-14T16:47:46",
"upload_time_iso_8601": "2023-11-14T16:47:46.678723Z",
"url": "https://files.pythonhosted.org/packages/f2/32/befdfbfcd32ee20a1d14cc74036bd51f3877c8ec2eb7df6b69d39013c114/aiohttp-3.9.0rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ed0128ccbc1bf9197410f6bc608f72b9639dc224e28faf2b3dd0fd1dd118a92b",
"md5": "2410354e458ffb63b0d7e0829d990042",
"sha256": "20fac09d9803a8ec79704d57e6f355b3138d21365b2aadea22a3df23e16adfea"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "2410354e458ffb63b0d7e0829d990042",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1294235,
"upload_time": "2023-11-14T16:47:50",
"upload_time_iso_8601": "2023-11-14T16:47:50.450842Z",
"url": "https://files.pythonhosted.org/packages/ed/01/28ccbc1bf9197410f6bc608f72b9639dc224e28faf2b3dd0fd1dd118a92b/aiohttp-3.9.0rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b7fc9a1be831637124ddd7dd7209892609d81c111477f082e38faf9470b65853",
"md5": "bd927679548b0bfbef35ea056655a128",
"sha256": "a984b6f4042f4775673518133eda4988f99bdc79098498f638bab6a817a02138"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "bd927679548b0bfbef35ea056655a128",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1254574,
"upload_time": "2023-11-14T16:47:52",
"upload_time_iso_8601": "2023-11-14T16:47:52.932143Z",
"url": "https://files.pythonhosted.org/packages/b7/fc/9a1be831637124ddd7dd7209892609d81c111477f082e38faf9470b65853/aiohttp-3.9.0rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d35599c51cfffb565282ea537be0da2b71415321650bfd12197965461890cb1f",
"md5": "337c97491335003e3f040eb75c016dab",
"sha256": "bbd9f5585c6547f0b29f7b63afe21f557a4c7692ef4ad078703964e86e2230aa"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "337c97491335003e3f040eb75c016dab",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1315549,
"upload_time": "2023-11-14T16:47:55",
"upload_time_iso_8601": "2023-11-14T16:47:55.613703Z",
"url": "https://files.pythonhosted.org/packages/d3/55/99c51cfffb565282ea537be0da2b71415321650bfd12197965461890cb1f/aiohttp-3.9.0rc0-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aeb646478f9be086a8eb8d80e7e3fec7e86932e70b27201775cd068487ae0034",
"md5": "da5db58a8e5ece76f3d0c0721c37b559",
"sha256": "bb22772edb2631501d1e552b69104a9d8075b88df34fb3d22dce80a7e76b0520"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "da5db58a8e5ece76f3d0c0721c37b559",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1263963,
"upload_time": "2023-11-14T16:47:58",
"upload_time_iso_8601": "2023-11-14T16:47:58.747476Z",
"url": "https://files.pythonhosted.org/packages/ae/b6/46478f9be086a8eb8d80e7e3fec7e86932e70b27201775cd068487ae0034/aiohttp-3.9.0rc0-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "586374d31e091e1134812672ebfb56f5ad51a6b38713fdcc48aa026aee493560",
"md5": "d140347efc4d2349e26ddabbb387c075",
"sha256": "b68d372a8cf7d692668b9295a2565233cb250c28b4aaa2c43f22d79a85889bc1"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp311-cp311-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "d140347efc4d2349e26ddabbb387c075",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1343314,
"upload_time": "2023-11-14T16:48:01",
"upload_time_iso_8601": "2023-11-14T16:48:01.259182Z",
"url": "https://files.pythonhosted.org/packages/58/63/74d31e091e1134812672ebfb56f5ad51a6b38713fdcc48aa026aee493560/aiohttp-3.9.0rc0-cp311-cp311-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4a0c6ca5c86a11cc8aeb6a53e6cbe6cfcedcfd98f8151ec70639f548effd68b4",
"md5": "ad3eb346627ec59d0a8e062901b58f6f",
"sha256": "c5fed1a7d126e7888d76ff74638444ccac98abb24092614cfd77cdd86c60f46c"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp311-cp311-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "ad3eb346627ec59d0a8e062901b58f6f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1385963,
"upload_time": "2023-11-14T16:48:04",
"upload_time_iso_8601": "2023-11-14T16:48:04.774712Z",
"url": "https://files.pythonhosted.org/packages/4a/0c/6ca5c86a11cc8aeb6a53e6cbe6cfcedcfd98f8151ec70639f548effd68b4/aiohttp-3.9.0rc0-cp311-cp311-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cd65e5f3f100616c590c1941b4ff7fc72737ec4ff28c79aaff64269f0dc3d4ca",
"md5": "479c8c18c5b3c0fa4b642b5a7aa928a3",
"sha256": "3902c076e33f59f4f21aac1427dc7f37cc30ebfa0cfaf3e41444683b1a726359"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "479c8c18c5b3c0fa4b642b5a7aa928a3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1299033,
"upload_time": "2023-11-14T16:48:07",
"upload_time_iso_8601": "2023-11-14T16:48:07.546983Z",
"url": "https://files.pythonhosted.org/packages/cd/65/e5f3f100616c590c1941b4ff7fc72737ec4ff28c79aaff64269f0dc3d4ca/aiohttp-3.9.0rc0-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6098ef3b4e27e22463bfce2a89313cb20ebc7c9701354f81a6eea44b920e8421",
"md5": "b467f603cc740886cbcef6f884225494",
"sha256": "7ad5481f32a45afbe952c48e78805ddf6c6159729501aa4ce1a9e1700977ab65"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "b467f603cc740886cbcef6f884225494",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 344225,
"upload_time": "2023-11-14T16:48:10",
"upload_time_iso_8601": "2023-11-14T16:48:10.639349Z",
"url": "https://files.pythonhosted.org/packages/60/98/ef3b4e27e22463bfce2a89313cb20ebc7c9701354f81a6eea44b920e8421/aiohttp-3.9.0rc0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0008c02626c4ad7d6adf7fd1470fa6b81ae8fb64c8e715d8c0b999d65f4c7ae6",
"md5": "2feb615bbbdf8ade3fff57a21ff9c2b5",
"sha256": "82b16b67a2122ace3213d76c46d90f77aaa14a211c8418da5b42e2ef06af3fa4"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "2feb615bbbdf8ade3fff57a21ff9c2b5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 364379,
"upload_time": "2023-11-14T16:48:12",
"upload_time_iso_8601": "2023-11-14T16:48:12.661390Z",
"url": "https://files.pythonhosted.org/packages/00/08/c02626c4ad7d6adf7fd1470fa6b81ae8fb64c8e715d8c0b999d65f4c7ae6/aiohttp-3.9.0rc0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e3f4a34d1b7903ef62399aba9b4333ddbebbd6da76969b7951c8645a2a7117dd",
"md5": "68adb8367eba178bdeee32e69a6d2182",
"sha256": "5d203ff0dadefbb9006fcbecf52d0784bc86443d43ef3df1cc5a84f20fd9cd3d"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp312-cp312-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "68adb8367eba178bdeee32e69a6d2182",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 591221,
"upload_time": "2023-11-14T16:48:14",
"upload_time_iso_8601": "2023-11-14T16:48:14.937294Z",
"url": "https://files.pythonhosted.org/packages/e3/f4/a34d1b7903ef62399aba9b4333ddbebbd6da76969b7951c8645a2a7117dd/aiohttp-3.9.0rc0-cp312-cp312-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bb45e7567baed8c2911e429797967a25f53b3f83ec4308681d1296fc49f101d6",
"md5": "e1829e73676c33929dc469b77f40ff8c",
"sha256": "306fcc1994acdb3ed10d09aa1cd1aaeea6ac34fa92cef72ae3635a6716ad06ea"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e1829e73676c33929dc469b77f40ff8c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 392403,
"upload_time": "2023-11-14T16:48:17",
"upload_time_iso_8601": "2023-11-14T16:48:17.029047Z",
"url": "https://files.pythonhosted.org/packages/bb/45/e7567baed8c2911e429797967a25f53b3f83ec4308681d1296fc49f101d6/aiohttp-3.9.0rc0-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4d4d181d3a3605c558f50be4bac79b236a3100632bec39f0973a66d6463e153e",
"md5": "34f2a81c03bef2a413a66eb79f8a5a7e",
"sha256": "78907df781590eb4f7246bf4f51b17acce0d32d56085ead365cce82c450eaa85"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "34f2a81c03bef2a413a66eb79f8a5a7e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 388423,
"upload_time": "2023-11-14T16:48:19",
"upload_time_iso_8601": "2023-11-14T16:48:19.841836Z",
"url": "https://files.pythonhosted.org/packages/4d/4d/181d3a3605c558f50be4bac79b236a3100632bec39f0973a66d6463e153e/aiohttp-3.9.0rc0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "73707bd4a07e0caf7c359b9545178d24cbe74ad82bdf0e087e17db26a7f19d90",
"md5": "49fd1a6ac01d6169f350db0927d58fda",
"sha256": "76f1550b069409c922fe8061ff0c9eb67f8b53630f781c899056ec8b3a44310c"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "49fd1a6ac01d6169f350db0927d58fda",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1318909,
"upload_time": "2023-11-14T16:48:22",
"upload_time_iso_8601": "2023-11-14T16:48:22.892310Z",
"url": "https://files.pythonhosted.org/packages/73/70/7bd4a07e0caf7c359b9545178d24cbe74ad82bdf0e087e17db26a7f19d90/aiohttp-3.9.0rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1d0219d950a6db47b58d7af702883b85c7fbdee3e26d93b1a06f2799d74cbe88",
"md5": "13a58b721a53ec2d6f15e9689b0aeb3f",
"sha256": "e29d0d3989e12d3aa73e4171cb9d3bdfa68c6fa7fb473bb548753b0a5f1b8f82"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "13a58b721a53ec2d6f15e9689b0aeb3f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1359042,
"upload_time": "2023-11-14T16:48:26",
"upload_time_iso_8601": "2023-11-14T16:48:26.787297Z",
"url": "https://files.pythonhosted.org/packages/1d/02/19d950a6db47b58d7af702883b85c7fbdee3e26d93b1a06f2799d74cbe88/aiohttp-3.9.0rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6a125276c12fa1f0878a9dca3051ecc5b852de42120dc71e8d54d5de04fe4960",
"md5": "79b772f55d11dde3a3d511630a4795c7",
"sha256": "78225260e7145861e116e7d936d9394d7dfa5ad14e70ec89b87fd83b20974bb1"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "79b772f55d11dde3a3d511630a4795c7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1400788,
"upload_time": "2023-11-14T16:48:32",
"upload_time_iso_8601": "2023-11-14T16:48:32.928947Z",
"url": "https://files.pythonhosted.org/packages/6a/12/5276c12fa1f0878a9dca3051ecc5b852de42120dc71e8d54d5de04fe4960/aiohttp-3.9.0rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1dddc6787b7d1a7184b8dafcec8545dcd98aa045a31c67e0caa5de630d7a4b26",
"md5": "256f2ad750b046d45a6a5936ede712df",
"sha256": "f8300344b602a7d535300fd5eb51e14ab86fa79dfd87e82dc165a3578d1a2104"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "256f2ad750b046d45a6a5936ede712df",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1314224,
"upload_time": "2023-11-14T16:48:35",
"upload_time_iso_8601": "2023-11-14T16:48:35.703252Z",
"url": "https://files.pythonhosted.org/packages/1d/dd/c6787b7d1a7184b8dafcec8545dcd98aa045a31c67e0caa5de630d7a4b26/aiohttp-3.9.0rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9c5d21c3197885587f09a1b54225a9722918a677aa75ada0d6502ad9273536d7",
"md5": "d74d0d8ce6468cdbd4607e2b24ed6333",
"sha256": "6b76cb284c17ecd32b9c82e5311e1224c99f85865aeb73f0f769b3ffd8f36cd1"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "d74d0d8ce6468cdbd4607e2b24ed6333",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1266229,
"upload_time": "2023-11-14T16:48:38",
"upload_time_iso_8601": "2023-11-14T16:48:38.360305Z",
"url": "https://files.pythonhosted.org/packages/9c/5d/21c3197885587f09a1b54225a9722918a677aa75ada0d6502ad9273536d7/aiohttp-3.9.0rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "37a7a8f81dfda3c95b6d51da20f8b85a3ff037961fe69ccd7fbc2e00514622a0",
"md5": "c19b29c2e243db60f62b875cbcceff52",
"sha256": "a1cee539987581385f5dd7d98f99dc02d95e312e6aa183680141451f138d77eb"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "c19b29c2e243db60f62b875cbcceff52",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1320779,
"upload_time": "2023-11-14T16:48:41",
"upload_time_iso_8601": "2023-11-14T16:48:41.099463Z",
"url": "https://files.pythonhosted.org/packages/37/a7/a8f81dfda3c95b6d51da20f8b85a3ff037961fe69ccd7fbc2e00514622a0/aiohttp-3.9.0rc0-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1943ac54df7aa45be00caefb670e61a322bb72d398df66f51799a69c5464e220",
"md5": "464a5cf3ffee7b5f6809752044a80cb5",
"sha256": "82ba2b3ca0e7de4bad272128f6357656006bf43e09f4c32f694ff60521ad6fea"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "464a5cf3ffee7b5f6809752044a80cb5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1267131,
"upload_time": "2023-11-14T16:48:43",
"upload_time_iso_8601": "2023-11-14T16:48:43.744087Z",
"url": "https://files.pythonhosted.org/packages/19/43/ac54df7aa45be00caefb670e61a322bb72d398df66f51799a69c5464e220/aiohttp-3.9.0rc0-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e86c04724abc7c964ea9666048a682cd40eb283cb31ab538b19fb94361657b51",
"md5": "a403fbfeb26e079b0dc7d19112b56779",
"sha256": "60cde3e0732ce3572803ec2e163ca830776430c4887a466c57097fdc967d6290"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp312-cp312-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "a403fbfeb26e079b0dc7d19112b56779",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1347142,
"upload_time": "2023-11-14T16:48:46",
"upload_time_iso_8601": "2023-11-14T16:48:46.316368Z",
"url": "https://files.pythonhosted.org/packages/e8/6c/04724abc7c964ea9666048a682cd40eb283cb31ab538b19fb94361657b51/aiohttp-3.9.0rc0-cp312-cp312-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bed4b28ce4438fab2f3517853184c09e3a73f5d2aee8c2e7ef606a4f760f513e",
"md5": "aa8d1184ddd736bb37a641e083bd92ec",
"sha256": "8c978f769692ddbdf40e48e6b39519b114f77fda6bdfa05c4e785b9bc5d2ccaa"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp312-cp312-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "aa8d1184ddd736bb37a641e083bd92ec",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1395044,
"upload_time": "2023-11-14T16:48:49",
"upload_time_iso_8601": "2023-11-14T16:48:49.330606Z",
"url": "https://files.pythonhosted.org/packages/be/d4/b28ce4438fab2f3517853184c09e3a73f5d2aee8c2e7ef606a4f760f513e/aiohttp-3.9.0rc0-cp312-cp312-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7d69e782f109d71d378eae54e213d501493fc7cb4d8619fb90b2af0d20beb155",
"md5": "42cffcde5aeb0a3676a60b9174d9f7d1",
"sha256": "f92e761df75a322fbea811d8ad6e8f6499637b9d1378c944236a577fc448557a"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "42cffcde5aeb0a3676a60b9174d9f7d1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1315729,
"upload_time": "2023-11-14T16:48:51",
"upload_time_iso_8601": "2023-11-14T16:48:51.813501Z",
"url": "https://files.pythonhosted.org/packages/7d/69/e782f109d71d378eae54e213d501493fc7cb4d8619fb90b2af0d20beb155/aiohttp-3.9.0rc0-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "19a78ba6585ef4f6320777d413171afdd1dabf609fd302a8370132712fd30843",
"md5": "56e90b14bcf36fcc5c3914b83a70bcd3",
"sha256": "6ba72743cef4b286976b93e73d60d7b080cf87de89ca248e57a9ec844eb91e65"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "56e90b14bcf36fcc5c3914b83a70bcd3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 341225,
"upload_time": "2023-11-14T16:48:54",
"upload_time_iso_8601": "2023-11-14T16:48:54.695784Z",
"url": "https://files.pythonhosted.org/packages/19/a7/8ba6585ef4f6320777d413171afdd1dabf609fd302a8370132712fd30843/aiohttp-3.9.0rc0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6aa914d2d7ff40c50c674ecfd6969535b4dad9fbc1c0b0c46f7393f353e0a450",
"md5": "bc90070c43bad08d44cc5b0f3eda5719",
"sha256": "bb619d643079a92bf5621518e309e381a1ddb70c802fa8d626605f6c55571548"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "bc90070c43bad08d44cc5b0f3eda5719",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 362472,
"upload_time": "2023-11-14T16:48:56",
"upload_time_iso_8601": "2023-11-14T16:48:56.825059Z",
"url": "https://files.pythonhosted.org/packages/6a/a9/14d2d7ff40c50c674ecfd6969535b4dad9fbc1c0b0c46f7393f353e0a450/aiohttp-3.9.0rc0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b833d730123836da62b9474e0409aaef592ba0fb3e72034f27f5333da431b264",
"md5": "c29e8f8942be20f851f8bb881aa5fe98",
"sha256": "1967994f76c698ab2ec721bb02bbf14163cb46057352f76475216ad9bd8c125f"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "c29e8f8942be20f851f8bb881aa5fe98",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 597001,
"upload_time": "2023-11-14T16:48:59",
"upload_time_iso_8601": "2023-11-14T16:48:59.920523Z",
"url": "https://files.pythonhosted.org/packages/b8/33/d730123836da62b9474e0409aaef592ba0fb3e72034f27f5333da431b264/aiohttp-3.9.0rc0-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c3794453e8fb9791d9c6ac0849c3a23121329ea04a3d3411f0ace8c7cd977324",
"md5": "798e7d36ae36d22bcffec2181603b4f8",
"sha256": "e2c9f8f4c76d9d7ed1331abc9312348c24445e3d4674bc9a053376e16d4a6aef"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "798e7d36ae36d22bcffec2181603b4f8",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 398588,
"upload_time": "2023-11-14T16:49:03",
"upload_time_iso_8601": "2023-11-14T16:49:03.197055Z",
"url": "https://files.pythonhosted.org/packages/c3/79/4453e8fb9791d9c6ac0849c3a23121329ea04a3d3411f0ace8c7cd977324/aiohttp-3.9.0rc0-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "633fcf7f730f9dc8b99578b0246769f8c7f360128e1e76096d9b632ddd867010",
"md5": "e33a2cfcb9fd6f8524fb5b2a1f83d1c2",
"sha256": "ed556d87d362ca36d2b4bb58bf223409c50d67f496bd1e0ab0d76f93f13cea83"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e33a2cfcb9fd6f8524fb5b2a1f83d1c2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 388072,
"upload_time": "2023-11-14T16:49:06",
"upload_time_iso_8601": "2023-11-14T16:49:06.009353Z",
"url": "https://files.pythonhosted.org/packages/63/3f/cf7f730f9dc8b99578b0246769f8c7f360128e1e76096d9b632ddd867010/aiohttp-3.9.0rc0-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6fd1fcb702cf9a488cf8cd6bef319fea8fd768207421f622b752ef08e75d232a",
"md5": "05ae65930264634aebc8b4582e8bd9f4",
"sha256": "d881a4da5f2f2aa6a920145ac6030cd9438fa1bb9239fb13d06776975faf03b1"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "05ae65930264634aebc8b4582e8bd9f4",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1259662,
"upload_time": "2023-11-14T16:49:08",
"upload_time_iso_8601": "2023-11-14T16:49:08.891473Z",
"url": "https://files.pythonhosted.org/packages/6f/d1/fcb702cf9a488cf8cd6bef319fea8fd768207421f622b752ef08e75d232a/aiohttp-3.9.0rc0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0cf5bc314e6c419b756f65795cff76b16197ddfb6affd7011fd069799e8477cd",
"md5": "4147173b26079b12d3a6dc164ce71aa9",
"sha256": "8f7ec43a53d71aa6ecd43fe27795500d342009e985b4a90d2e82c10353baf0ac"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "4147173b26079b12d3a6dc164ce71aa9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1311736,
"upload_time": "2023-11-14T16:49:12",
"upload_time_iso_8601": "2023-11-14T16:49:12.671534Z",
"url": "https://files.pythonhosted.org/packages/0c/f5/bc314e6c419b756f65795cff76b16197ddfb6affd7011fd069799e8477cd/aiohttp-3.9.0rc0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "21e96d3768993e2072ae1474c2fec206d4fc2e6cd05f0531fd81fd24c834834e",
"md5": "fd2c19fbdb0193cafa48f025b1e84d9b",
"sha256": "0d2d1f118bd1d826b727befa59a43d5b15a71da5ea02898a450a666f9c897401"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "fd2c19fbdb0193cafa48f025b1e84d9b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1345679,
"upload_time": "2023-11-14T16:49:14",
"upload_time_iso_8601": "2023-11-14T16:49:14.973757Z",
"url": "https://files.pythonhosted.org/packages/21/e9/6d3768993e2072ae1474c2fec206d4fc2e6cd05f0531fd81fd24c834834e/aiohttp-3.9.0rc0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0d1e5199ed41c9241c135640930868c4386375d69ff7431800f08687ba70b11c",
"md5": "c5d735064b6f93b6ae8a57e1a4575f03",
"sha256": "ebf77e38c48ea00b55e736925c97655c19cbbe0200a67c2aeff6d461e884b005"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c5d735064b6f93b6ae8a57e1a4575f03",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1252445,
"upload_time": "2023-11-14T16:49:17",
"upload_time_iso_8601": "2023-11-14T16:49:17.919995Z",
"url": "https://files.pythonhosted.org/packages/0d/1e/5199ed41c9241c135640930868c4386375d69ff7431800f08687ba70b11c/aiohttp-3.9.0rc0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cd10dc904f35de29540e9d1b45b119f0f2170c70b7dc27f37b0afa79ddfbaf2e",
"md5": "1c4a6b688f6b78bcfb962a3d6fca9b6c",
"sha256": "4b1b77792aafb8e8043fa14190327a585c12b3a7f0a05e34de8ef1062ffe6432"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "1c4a6b688f6b78bcfb962a3d6fca9b6c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1217369,
"upload_time": "2023-11-14T16:49:20",
"upload_time_iso_8601": "2023-11-14T16:49:20.768699Z",
"url": "https://files.pythonhosted.org/packages/cd/10/dc904f35de29540e9d1b45b119f0f2170c70b7dc27f37b0afa79ddfbaf2e/aiohttp-3.9.0rc0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e28095af4611511a3d63a5a7fa7acbf71afef40e4980a6571c481c5945bfcba",
"md5": "474e2f18130b4b9b2f02080093b40b79",
"sha256": "bc7533255e4eac9d539155e92f2efb375ab4424aa43b90a3a5d938e62d68e0e9"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "474e2f18130b4b9b2f02080093b40b79",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1311763,
"upload_time": "2023-11-14T16:49:23",
"upload_time_iso_8601": "2023-11-14T16:49:23.626910Z",
"url": "https://files.pythonhosted.org/packages/5e/28/095af4611511a3d63a5a7fa7acbf71afef40e4980a6571c481c5945bfcba/aiohttp-3.9.0rc0-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09847ac547ba58977f774788a0af97ee55223c001b2cafd7a73aee19ff9ea99b",
"md5": "e26f6d933a251fbb6fb77436b288e54a",
"sha256": "84016f2a0a7d725a167a00ec9c6a3bc4f06534e0711831ceb34787067c7288f6"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "e26f6d933a251fbb6fb77436b288e54a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1262564,
"upload_time": "2023-11-14T16:49:26",
"upload_time_iso_8601": "2023-11-14T16:49:26.139558Z",
"url": "https://files.pythonhosted.org/packages/09/84/7ac547ba58977f774788a0af97ee55223c001b2cafd7a73aee19ff9ea99b/aiohttp-3.9.0rc0-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "88d9b5be6df159de9f3df32c1b82314daedcb328c23f04b59e6da5e8fcb28bae",
"md5": "c98b86158ac8fa7bced7cabc476c6d22",
"sha256": "8b0b83a6cacc0b2e8f3c714ca819aa85ed795649964a806b3fc58ce70474f2bd"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp38-cp38-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "c98b86158ac8fa7bced7cabc476c6d22",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1340834,
"upload_time": "2023-11-14T16:49:28",
"upload_time_iso_8601": "2023-11-14T16:49:28.617008Z",
"url": "https://files.pythonhosted.org/packages/88/d9/b5be6df159de9f3df32c1b82314daedcb328c23f04b59e6da5e8fcb28bae/aiohttp-3.9.0rc0-cp38-cp38-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2f1ff52540645744a3cfa9b8e974548d471f486c15aff2bd73fa303aaa89b5bc",
"md5": "554bd02889226d62bd0356999cc22b37",
"sha256": "1749370656226115fd3ccce5bc460c0f662825f6684c7e8595caa73034b5b617"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp38-cp38-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "554bd02889226d62bd0356999cc22b37",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1382935,
"upload_time": "2023-11-14T16:49:31",
"upload_time_iso_8601": "2023-11-14T16:49:31.047458Z",
"url": "https://files.pythonhosted.org/packages/2f/1f/f52540645744a3cfa9b8e974548d471f486c15aff2bd73fa303aaa89b5bc/aiohttp-3.9.0rc0-cp38-cp38-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5178abeae117b80d546cd51179108ef6fe56ce62cd8b34369672197b111d9ead",
"md5": "7ffa11f0b662903f03b66fac820175df",
"sha256": "96121d9a06cc5e4aabe98c14c61db5fc90df74f00a985e5844a7f8c44c9a66ac"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "7ffa11f0b662903f03b66fac820175df",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1302536,
"upload_time": "2023-11-14T16:49:33",
"upload_time_iso_8601": "2023-11-14T16:49:33.628142Z",
"url": "https://files.pythonhosted.org/packages/51/78/abeae117b80d546cd51179108ef6fe56ce62cd8b34369672197b111d9ead/aiohttp-3.9.0rc0-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7b0278b43c21bd3ff733dcfbe2efa88ba599f1c2abadcba71e49a570ac48fbe8",
"md5": "dc99b90e331fbf9f3e8ea133a7a4256d",
"sha256": "df2ec89f85c370e10c52cdcfdb503343e5148638d1ed4f3c8ebe754a55c8b441"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "dc99b90e331fbf9f3e8ea133a7a4256d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 346748,
"upload_time": "2023-11-14T16:49:36",
"upload_time_iso_8601": "2023-11-14T16:49:36.250247Z",
"url": "https://files.pythonhosted.org/packages/7b/02/78b43c21bd3ff733dcfbe2efa88ba599f1c2abadcba71e49a570ac48fbe8/aiohttp-3.9.0rc0-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "da5949aadb6fc19f4f7a1661fe6f0a5fdc83deba4b0fd6664295683f16c41c96",
"md5": "db954f000ab7f92ccf7d7c8aa143a15a",
"sha256": "78904ba172081db4367890b47784fe5c9fb90108ce04c9ed0e7f493acadc09ab"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "db954f000ab7f92ccf7d7c8aa143a15a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 366641,
"upload_time": "2023-11-14T16:49:39",
"upload_time_iso_8601": "2023-11-14T16:49:39.227712Z",
"url": "https://files.pythonhosted.org/packages/da/59/49aadb6fc19f4f7a1661fe6f0a5fdc83deba4b0fd6664295683f16c41c96/aiohttp-3.9.0rc0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7bf4a6f99c6dc1def72b45d6c1df334673bb63b839e75ba6c60c4169a90f8a7c",
"md5": "d9884733bcb654c48b5efe99d08c67d1",
"sha256": "363a040181e69d3c37ee10bf59b14d00ee5bb8dc9a7bf852bd6206860fb816ad"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "d9884733bcb654c48b5efe99d08c67d1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 594673,
"upload_time": "2023-11-14T16:49:42",
"upload_time_iso_8601": "2023-11-14T16:49:42.276794Z",
"url": "https://files.pythonhosted.org/packages/7b/f4/a6f99c6dc1def72b45d6c1df334673bb63b839e75ba6c60c4169a90f8a7c/aiohttp-3.9.0rc0-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5b19e06c7627039529b388d83876c4f6967f402467f081c8242cf8b746447b36",
"md5": "8608aed728a7dd89e028c711463cbb81",
"sha256": "b237f50654d8acd5214bd8a355af23a5a71ba0c4c3b1e210e7ab92faa531f6c4"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "8608aed728a7dd89e028c711463cbb81",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 397481,
"upload_time": "2023-11-14T16:49:44",
"upload_time_iso_8601": "2023-11-14T16:49:44.585886Z",
"url": "https://files.pythonhosted.org/packages/5b/19/e06c7627039529b388d83876c4f6967f402467f081c8242cf8b746447b36/aiohttp-3.9.0rc0-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9b5f96835ba1c291798ba1ef006b9a7dbfe3c0a2d5f9f98703d344b8c3bd37b8",
"md5": "6820f52c6fc7c4afdb9d4c7f37f7f64c",
"sha256": "f20e3055fffde997de8a42a343ace577230becc87cc6d1d4904b8569fced8cb2"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6820f52c6fc7c4afdb9d4c7f37f7f64c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 386872,
"upload_time": "2023-11-14T16:49:47",
"upload_time_iso_8601": "2023-11-14T16:49:47.106688Z",
"url": "https://files.pythonhosted.org/packages/9b/5f/96835ba1c291798ba1ef006b9a7dbfe3c0a2d5f9f98703d344b8c3bd37b8/aiohttp-3.9.0rc0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "028de629b1d512de311625665dd4417f2ff7badbe49fece164306f51875fd395",
"md5": "b5177763ae786791e00f7f0023972d8b",
"sha256": "ad5a9d91e614d18770ce21d0009dbfdcf490d0d6665ffc773f65bf33a99bc797"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b5177763ae786791e00f7f0023972d8b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1236359,
"upload_time": "2023-11-14T16:49:49",
"upload_time_iso_8601": "2023-11-14T16:49:49.455349Z",
"url": "https://files.pythonhosted.org/packages/02/8d/e629b1d512de311625665dd4417f2ff7badbe49fece164306f51875fd395/aiohttp-3.9.0rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "722b86cbb750b43343f07a70b055da6fbf96e29ee7cda11730f11c41c9385631",
"md5": "8b49b5f944959cb01d3a43ebe36837a1",
"sha256": "fa6166966ef2dd18c6055614d7cd67f768362ca810443bb97d15b210545f3a01"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8b49b5f944959cb01d3a43ebe36837a1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1271864,
"upload_time": "2023-11-14T16:49:52",
"upload_time_iso_8601": "2023-11-14T16:49:52.213051Z",
"url": "https://files.pythonhosted.org/packages/72/2b/86cbb750b43343f07a70b055da6fbf96e29ee7cda11730f11c41c9385631/aiohttp-3.9.0rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7275bd7435cdc8a1628565983f1b8f039a04045dadc27de4a8919196b0af6fb9",
"md5": "ab2b7d1f5b44914e05ba2bfdeda4fe6f",
"sha256": "bb629b30096e66f36917b458b7080a6e5b308c8419bb172cc1a745285f726bae"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "ab2b7d1f5b44914e05ba2bfdeda4fe6f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1308037,
"upload_time": "2023-11-14T16:49:55",
"upload_time_iso_8601": "2023-11-14T16:49:55.469706Z",
"url": "https://files.pythonhosted.org/packages/72/75/bd7435cdc8a1628565983f1b8f039a04045dadc27de4a8919196b0af6fb9/aiohttp-3.9.0rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fd089a91adf8562aa3f7237e9cc44f854d49b4d0a9cf9489ee1620a81f928e7b",
"md5": "46477cd0b8a58f40615398eea14f4464",
"sha256": "62d95836c8d2ebe2d8b8fb044b5a7ac5f7db45a339422b0badc7f8547c738c3e"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "46477cd0b8a58f40615398eea14f4464",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1228409,
"upload_time": "2023-11-14T16:49:58",
"upload_time_iso_8601": "2023-11-14T16:49:58.457449Z",
"url": "https://files.pythonhosted.org/packages/fd/08/9a91adf8562aa3f7237e9cc44f854d49b4d0a9cf9489ee1620a81f928e7b/aiohttp-3.9.0rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09662c1e5e5161fe304df2993715c2bafabc8abac2d0c56a9a5439f9d7d70ea9",
"md5": "0b63a6b9076dfaed6fce4f670b666935",
"sha256": "061b7019b5a2d2a732dd59d6bb6e0fe411c9d16804b25aed9f9c1002c3db9410"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "0b63a6b9076dfaed6fce4f670b666935",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1201287,
"upload_time": "2023-11-14T16:50:01",
"upload_time_iso_8601": "2023-11-14T16:50:01.707674Z",
"url": "https://files.pythonhosted.org/packages/09/66/2c1e5e5161fe304df2993715c2bafabc8abac2d0c56a9a5439f9d7d70ea9/aiohttp-3.9.0rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ff3bec7fca05b935d4b48112aa962a707401924acded10bd2536a84af5cc0efb",
"md5": "ba5c2b8077d9f7f5c5d8dd21146654d5",
"sha256": "a15644bd63fc89e799823fbdcecbb60a3a8b1cf88b02c79c667f9638a9de8d38"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "ba5c2b8077d9f7f5c5d8dd21146654d5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1250933,
"upload_time": "2023-11-14T16:50:06",
"upload_time_iso_8601": "2023-11-14T16:50:06.551469Z",
"url": "https://files.pythonhosted.org/packages/ff/3b/ec7fca05b935d4b48112aa962a707401924acded10bd2536a84af5cc0efb/aiohttp-3.9.0rc0-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b9aa88c4f10844628aa54549dbf9418e6e5ff5825589d2e31f6705820303473f",
"md5": "7ab6459c27993d7f6970c18ce885dbde",
"sha256": "0138605f66687de2ed398e78d8779e1c903c7dbd3ad0857725970c4c05751525"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "7ab6459c27993d7f6970c18ce885dbde",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1210673,
"upload_time": "2023-11-14T16:50:10",
"upload_time_iso_8601": "2023-11-14T16:50:10.434708Z",
"url": "https://files.pythonhosted.org/packages/b9/aa/88c4f10844628aa54549dbf9418e6e5ff5825589d2e31f6705820303473f/aiohttp-3.9.0rc0-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "308ebcaf0064fc335498a764db24ac302e485aa6d61c266e05c95fda8c5f5b6b",
"md5": "be7d30c05ddae1186d3b28509f61ddda",
"sha256": "c5911561cf637e85c964b4f81133f34fb5251074be6c9fe2baf2aa4a0109827c"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp39-cp39-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "be7d30c05ddae1186d3b28509f61ddda",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1278687,
"upload_time": "2023-11-14T16:50:13",
"upload_time_iso_8601": "2023-11-14T16:50:13.711720Z",
"url": "https://files.pythonhosted.org/packages/30/8e/bcaf0064fc335498a764db24ac302e485aa6d61c266e05c95fda8c5f5b6b/aiohttp-3.9.0rc0-cp39-cp39-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "764813c10f4ec9458eec78c1dace3e117bc12ba6dcc9b45524e8d44eeb661f66",
"md5": "ffed26003d712050f92cd2283598272c",
"sha256": "bc70a1614f84492464720e6748450008fde19d1bdcbc76b8fc16f05338558c04"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp39-cp39-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "ffed26003d712050f92cd2283598272c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1320556,
"upload_time": "2023-11-14T16:50:17",
"upload_time_iso_8601": "2023-11-14T16:50:17.567459Z",
"url": "https://files.pythonhosted.org/packages/76/48/13c10f4ec9458eec78c1dace3e117bc12ba6dcc9b45524e8d44eeb661f66/aiohttp-3.9.0rc0-cp39-cp39-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c922e8d46caa89bdf71047c4b56ec8f3cf22c90743ebed7004b808a6ed26c328",
"md5": "2271f8066fef491e245271fee08c0632",
"sha256": "5b6f3fd154727e5b872fb70def6c7de70ef84a4d59300182cbe6d21e5886f748"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "2271f8066fef491e245271fee08c0632",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1241374,
"upload_time": "2023-11-14T16:50:21",
"upload_time_iso_8601": "2023-11-14T16:50:21.075019Z",
"url": "https://files.pythonhosted.org/packages/c9/22/e8d46caa89bdf71047c4b56ec8f3cf22c90743ebed7004b808a6ed26c328/aiohttp-3.9.0rc0-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "51b3cf2086285a62d66671a594143be2cdad9fdc428084c338621a1d6fd3381f",
"md5": "746ed9d036f690b7646ca6226e5f0367",
"sha256": "b18653a48dc4de16afdfa6896f7453ebb4b70834340ef63dbc41ed02355ff3ae"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "746ed9d036f690b7646ca6226e5f0367",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 345713,
"upload_time": "2023-11-14T16:50:23",
"upload_time_iso_8601": "2023-11-14T16:50:23.608962Z",
"url": "https://files.pythonhosted.org/packages/51/b3/cf2086285a62d66671a594143be2cdad9fdc428084c338621a1d6fd3381f/aiohttp-3.9.0rc0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "783ced5289e87fdb11881f2772a5b69660828970f537f9db366f55bbd8d389f0",
"md5": "c41da5a9351423bc4df3cf7e3563fcda",
"sha256": "71faebdb4467c78fd0b7ed15efaf02d302cf92703219cf460502c45c644ef176"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "c41da5a9351423bc4df3cf7e3563fcda",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 365043,
"upload_time": "2023-11-14T16:50:26",
"upload_time_iso_8601": "2023-11-14T16:50:26.796200Z",
"url": "https://files.pythonhosted.org/packages/78/3c/ed5289e87fdb11881f2772a5b69660828970f537f9db366f55bbd8d389f0/aiohttp-3.9.0rc0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7f4b17d9e131a5c4278374af3b015c68a4484cc85371491689d275e26ecd4dc7",
"md5": "2e844b6d9ba788ac1186c13d991dd4c0",
"sha256": "486e5d48681d9cd016ba911815f9b91cccb1f8edae44953431d0b5143995094d"
},
"downloads": -1,
"filename": "aiohttp-3.9.0rc0.tar.gz",
"has_sig": false,
"md5_digest": "2e844b6d9ba788ac1186c13d991dd4c0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 7475364,
"upload_time": "2023-11-14T16:50:29",
"upload_time_iso_8601": "2023-11-14T16:50:29.971601Z",
"url": "https://files.pythonhosted.org/packages/7f/4b/17d9e131a5c4278374af3b015c68a4484cc85371491689d275e26ecd4dc7/aiohttp-3.9.0rc0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.9.1": [
{
"comment_text": "",
"digests": {
"blake2b_256": "3c7693aebcfca40cf9cacd554684496d28517900575b635c5e8a3258b4fff4f0",
"md5": "829d984b5a4dd9a93e1eb6e881d2aa1c",
"sha256": "e1f80197f8b0b846a8d5cf7b7ec6084493950d0882cc5537fb7b96a69e3c8590"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "829d984b5a4dd9a93e1eb6e881d2aa1c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 593408,
"upload_time": "2023-11-26T17:52:13",
"upload_time_iso_8601": "2023-11-26T17:52:13.683334Z",
"url": "https://files.pythonhosted.org/packages/3c/76/93aebcfca40cf9cacd554684496d28517900575b635c5e8a3258b4fff4f0/aiohttp-3.9.1-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "425a2b207f765ada4bc78c0112a3789915df389a33193f893a6a579f68a97a51",
"md5": "10fe945239e5dec6124b256feb0756d7",
"sha256": "c72444d17777865734aa1a4d167794c34b63e5883abb90356a0364a28904e6c0"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "10fe945239e5dec6124b256feb0756d7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 397015,
"upload_time": "2023-11-26T17:52:17",
"upload_time_iso_8601": "2023-11-26T17:52:17.613340Z",
"url": "https://files.pythonhosted.org/packages/42/5a/2b207f765ada4bc78c0112a3789915df389a33193f893a6a579f68a97a51/aiohttp-3.9.1-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e943ccdbbf56e09f42acdfce814e39cacef208cb2de7a7d7cf43d46ac360a6e",
"md5": "70bc96a53030dfec59e869ba314bbaca",
"sha256": "9b05d5cbe9dafcdc733262c3a99ccf63d2f7ce02543620d2bd8db4d4f7a22f83"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "70bc96a53030dfec59e869ba314bbaca",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 386520,
"upload_time": "2023-11-26T17:52:20",
"upload_time_iso_8601": "2023-11-26T17:52:20.013490Z",
"url": "https://files.pythonhosted.org/packages/4e/94/3ccdbbf56e09f42acdfce814e39cacef208cb2de7a7d7cf43d46ac360a6e/aiohttp-3.9.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "214eb5ac61b5a33ca168d155f1d499fc5600407be794bab98aa8fe9826573c24",
"md5": "f75b84122ec4e6a643f8af8a23f698e0",
"sha256": "5c4fa235d534b3547184831c624c0b7c1e262cd1de847d95085ec94c16fddcd5"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f75b84122ec4e6a643f8af8a23f698e0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1233421,
"upload_time": "2023-11-26T17:52:22",
"upload_time_iso_8601": "2023-11-26T17:52:22.939450Z",
"url": "https://files.pythonhosted.org/packages/21/4e/b5ac61b5a33ca168d155f1d499fc5600407be794bab98aa8fe9826573c24/aiohttp-3.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "34ad634626caeb184bfe58bce12e80e3da54528b6dc93c33fd7d9711b50364a6",
"md5": "4b38e98c3e49346187e203a3f05adea1",
"sha256": "289ba9ae8e88d0ba16062ecf02dd730b34186ea3b1e7489046fc338bdc3361c4"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "4b38e98c3e49346187e203a3f05adea1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1265408,
"upload_time": "2023-11-26T17:52:26",
"upload_time_iso_8601": "2023-11-26T17:52:26.189143Z",
"url": "https://files.pythonhosted.org/packages/34/ad/634626caeb184bfe58bce12e80e3da54528b6dc93c33fd7d9711b50364a6/aiohttp-3.9.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e38920753e899d880647bfad3eec27901e959a9fec0f2c9761a1d3441d39ec42",
"md5": "a47aeee1237f1e478725f5d3e703bdc8",
"sha256": "bff7e2811814fa2271be95ab6e84c9436d027a0e59665de60edf44e529a42c1f"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a47aeee1237f1e478725f5d3e703bdc8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1301145,
"upload_time": "2023-11-26T17:52:28",
"upload_time_iso_8601": "2023-11-26T17:52:28.931866Z",
"url": "https://files.pythonhosted.org/packages/e3/89/20753e899d880647bfad3eec27901e959a9fec0f2c9761a1d3441d39ec42/aiohttp-3.9.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2f1650441c4baa39e5426181c6f630203ab65029f9a9c55d0a1019a31c26d702",
"md5": "73ab4b38a700ca73f8dd95e11ae72cd5",
"sha256": "81b77f868814346662c96ab36b875d7814ebf82340d3284a31681085c051320f"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "73ab4b38a700ca73f8dd95e11ae72cd5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1225758,
"upload_time": "2023-11-26T17:52:32",
"upload_time_iso_8601": "2023-11-26T17:52:32.219551Z",
"url": "https://files.pythonhosted.org/packages/2f/16/50441c4baa39e5426181c6f630203ab65029f9a9c55d0a1019a31c26d702/aiohttp-3.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ede66d511336883ae998a24a5bef9f1725264c85ee82e78531fe2cba0576dbd0",
"md5": "763f315d9496949a05ef0b392a9b7f36",
"sha256": "3b9c7426923bb7bd66d409da46c41e3fb40f5caf679da624439b9eba92043fa6"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "763f315d9496949a05ef0b392a9b7f36",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1199252,
"upload_time": "2023-11-26T17:52:35",
"upload_time_iso_8601": "2023-11-26T17:52:35.477974Z",
"url": "https://files.pythonhosted.org/packages/ed/e6/6d511336883ae998a24a5bef9f1725264c85ee82e78531fe2cba0576dbd0/aiohttp-3.9.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2f77b64075872370a115df7bb422a218b8e9768484bd91b07a19edd835e3c624",
"md5": "34a9288e08ebe2d5e0b0dadd9285ae31",
"sha256": "8d44e7bf06b0c0a70a20f9100af9fcfd7f6d9d3913e37754c12d424179b4e48f"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "34a9288e08ebe2d5e0b0dadd9285ae31",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1247694,
"upload_time": "2023-11-26T17:52:38",
"upload_time_iso_8601": "2023-11-26T17:52:38.327674Z",
"url": "https://files.pythonhosted.org/packages/2f/77/b64075872370a115df7bb422a218b8e9768484bd91b07a19edd835e3c624/aiohttp-3.9.1-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "713ff466e62fd724834b0824cb7295d20902deec763ede9323a1bcaa373f74f4",
"md5": "71adf508f6b4d1b423e5c7c6f72a5759",
"sha256": "22698f01ff5653fe66d16ffb7658f582a0ac084d7da1323e39fd9eab326a1f26"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "71adf508f6b4d1b423e5c7c6f72a5759",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1205326,
"upload_time": "2023-11-26T17:52:40",
"upload_time_iso_8601": "2023-11-26T17:52:40.574634Z",
"url": "https://files.pythonhosted.org/packages/71/3f/f466e62fd724834b0824cb7295d20902deec763ede9323a1bcaa373f74f4/aiohttp-3.9.1-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "41e4bfc6d31f413c9479b2d3e10a37dfe93973d6c8dd6a03d8d3f2ea557f09eb",
"md5": "c2958f1559ba69de545984ba8d8ee232",
"sha256": "ca7ca5abfbfe8d39e653870fbe8d7710be7a857f8a8386fc9de1aae2e02ce7e4"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp310-cp310-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "c2958f1559ba69de545984ba8d8ee232",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1273960,
"upload_time": "2023-11-26T17:52:43",
"upload_time_iso_8601": "2023-11-26T17:52:43.810704Z",
"url": "https://files.pythonhosted.org/packages/41/e4/bfc6d31f413c9479b2d3e10a37dfe93973d6c8dd6a03d8d3f2ea557f09eb/aiohttp-3.9.1-cp310-cp310-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "60caf876953e09fbf2929db1e1318ec5e8185d592ccb18adf973e97f61298fea",
"md5": "7df173be0b8b1105cff3aff0b2be75ec",
"sha256": "8d7f98fde213f74561be1d6d3fa353656197f75d4edfbb3d94c9eb9b0fc47f5d"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp310-cp310-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "7df173be0b8b1105cff3aff0b2be75ec",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1317140,
"upload_time": "2023-11-26T17:52:48",
"upload_time_iso_8601": "2023-11-26T17:52:48.464907Z",
"url": "https://files.pythonhosted.org/packages/60/ca/f876953e09fbf2929db1e1318ec5e8185d592ccb18adf973e97f61298fea/aiohttp-3.9.1-cp310-cp310-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "308ae72172c9106fdedf8015f8619cd382619ea9b930c2c72623ceb6476066e7",
"md5": "1c42f9e793eee3c7563eaf191d208a6b",
"sha256": "5216b6082c624b55cfe79af5d538e499cd5f5b976820eac31951fb4325974501"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "1c42f9e793eee3c7563eaf191d208a6b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1238549,
"upload_time": "2023-11-26T17:52:51",
"upload_time_iso_8601": "2023-11-26T17:52:51.042290Z",
"url": "https://files.pythonhosted.org/packages/30/8a/e72172c9106fdedf8015f8619cd382619ea9b930c2c72623ceb6476066e7/aiohttp-3.9.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ef10f98940921324ab9f120bbe1b153d2dceb8dd1c3abe77e2efc366be20a06e",
"md5": "a834d92127ef7e97d79e38569a375c85",
"sha256": "0e7ba7ff228c0d9a2cd66194e90f2bca6e0abca810b786901a569c0de082f489"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "a834d92127ef7e97d79e38569a375c85",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 345374,
"upload_time": "2023-11-26T17:52:53",
"upload_time_iso_8601": "2023-11-26T17:52:53.331467Z",
"url": "https://files.pythonhosted.org/packages/ef/10/f98940921324ab9f120bbe1b153d2dceb8dd1c3abe77e2efc366be20a06e/aiohttp-3.9.1-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2ffc9d058865c146814b34ccc72bf7ee544304f77d2bf8a9c1135c80db6c2c0f",
"md5": "326f23dc911b1dbbc958bf1a2ce1a66d",
"sha256": "c7e939f1ae428a86e4abbb9a7c4732bf4706048818dfd979e5e2839ce0159f23"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "326f23dc911b1dbbc958bf1a2ce1a66d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 364645,
"upload_time": "2023-11-26T17:52:56",
"upload_time_iso_8601": "2023-11-26T17:52:56.260950Z",
"url": "https://files.pythonhosted.org/packages/2f/fc/9d058865c146814b34ccc72bf7ee544304f77d2bf8a9c1135c80db6c2c0f/aiohttp-3.9.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "52eb1686184646e6d813328df77fd54745477b295e12db09db131d5619b8b9b7",
"md5": "456b68a332ba9a65308336446a65bd72",
"sha256": "df9cf74b9bc03d586fc53ba470828d7b77ce51b0582d1d0b5b2fb673c0baa32d"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "456b68a332ba9a65308336446a65bd72",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 594174,
"upload_time": "2023-11-26T17:52:58",
"upload_time_iso_8601": "2023-11-26T17:52:58.921969Z",
"url": "https://files.pythonhosted.org/packages/52/eb/1686184646e6d813328df77fd54745477b295e12db09db131d5619b8b9b7/aiohttp-3.9.1-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e6c5dcdade8e4ab2dc4a22d77c14acea31f69d7e69a2d19eec4c4c19673cca81",
"md5": "b263de4961b7698da4f840ac9e05ce7d",
"sha256": "ecca113f19d5e74048c001934045a2b9368d77b0b17691d905af18bd1c21275e"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "b263de4961b7698da4f840ac9e05ce7d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 397605,
"upload_time": "2023-11-26T17:53:02",
"upload_time_iso_8601": "2023-11-26T17:53:02.213963Z",
"url": "https://files.pythonhosted.org/packages/e6/c5/dcdade8e4ab2dc4a22d77c14acea31f69d7e69a2d19eec4c4c19673cca81/aiohttp-3.9.1-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "545d4ea65eaf9a81821e2a02ba1f77644920dd0a575a2fd05557adb433db3ef6",
"md5": "6883857eaaf8d55737888c0dc14647bf",
"sha256": "8cef8710fb849d97c533f259103f09bac167a008d7131d7b2b0e3a33269185c0"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6883857eaaf8d55737888c0dc14647bf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 386839,
"upload_time": "2023-11-26T17:53:04",
"upload_time_iso_8601": "2023-11-26T17:53:04.870484Z",
"url": "https://files.pythonhosted.org/packages/54/5d/4ea65eaf9a81821e2a02ba1f77644920dd0a575a2fd05557adb433db3ef6/aiohttp-3.9.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5c4dd35186a191fe522cf600eb6b9de3b2d9222ad58bc241639e508e061f0460",
"md5": "06ceb2bba6b43c19fbf29450a30684fe",
"sha256": "bea94403a21eb94c93386d559bce297381609153e418a3ffc7d6bf772f59cc35"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "06ceb2bba6b43c19fbf29450a30684fe",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1310266,
"upload_time": "2023-11-26T17:53:08",
"upload_time_iso_8601": "2023-11-26T17:53:08.576621Z",
"url": "https://files.pythonhosted.org/packages/5c/4d/d35186a191fe522cf600eb6b9de3b2d9222ad58bc241639e508e061f0460/aiohttp-3.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5c3efb04926474e304b20032010bfa2409a218610ea5fab0e4cd56848b50582f",
"md5": "e617893d841ed5b5519c6e9436439c5e",
"sha256": "91c742ca59045dce7ba76cab6e223e41d2c70d79e82c284a96411f8645e2afff"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "e617893d841ed5b5519c6e9436439c5e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1346812,
"upload_time": "2023-11-26T17:53:10",
"upload_time_iso_8601": "2023-11-26T17:53:10.967630Z",
"url": "https://files.pythonhosted.org/packages/5c/3e/fb04926474e304b20032010bfa2409a218610ea5fab0e4cd56848b50582f/aiohttp-3.9.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fbfc96ad8b6fc5f557a6b6bf500d8609148849aa010529a10c5a0829c4fc878c",
"md5": "c4209df6bb411137c923d13e42df5359",
"sha256": "6c93b7c2e52061f0925c3382d5cb8980e40f91c989563d3d32ca280069fd6a87"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "c4209df6bb411137c923d13e42df5359",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1383774,
"upload_time": "2023-11-26T17:53:13",
"upload_time_iso_8601": "2023-11-26T17:53:13.482656Z",
"url": "https://files.pythonhosted.org/packages/fb/fc/96ad8b6fc5f557a6b6bf500d8609148849aa010529a10c5a0829c4fc878c/aiohttp-3.9.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "698d769a1e9cdce1c9774dd2edc8f4e94c759256246066e5263de917e5b22a0a",
"md5": "1c16610375f5b0b433f7cbece9e8bc66",
"sha256": "ee2527134f95e106cc1653e9ac78846f3a2ec1004cf20ef4e02038035a74544d"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1c16610375f5b0b433f7cbece9e8bc66",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1294656,
"upload_time": "2023-11-26T17:53:16",
"upload_time_iso_8601": "2023-11-26T17:53:16.078002Z",
"url": "https://files.pythonhosted.org/packages/69/8d/769a1e9cdce1c9774dd2edc8f4e94c759256246066e5263de917e5b22a0a/aiohttp-3.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af269d04bf5100562111eb1d77f8ecd7f297660c36981ab1826318594c11ab4d",
"md5": "3f5c3b3760075962acffa1785dc0f477",
"sha256": "11ff168d752cb41e8492817e10fb4f85828f6a0142b9726a30c27c35a1835f01"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "3f5c3b3760075962acffa1785dc0f477",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1254993,
"upload_time": "2023-11-26T17:53:18",
"upload_time_iso_8601": "2023-11-26T17:53:18.981372Z",
"url": "https://files.pythonhosted.org/packages/af/26/9d04bf5100562111eb1d77f8ecd7f297660c36981ab1826318594c11ab4d/aiohttp-3.9.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7f3b4e0952616216ae9db1ebb4d6bbdd6bef2011d48c22fc9efb61c3039102f5",
"md5": "2020aeefd3eb057dde6f57d2053389bd",
"sha256": "b8c3a67eb87394386847d188996920f33b01b32155f0a94f36ca0e0c635bf3e3"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "2020aeefd3eb057dde6f57d2053389bd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1315970,
"upload_time": "2023-11-26T17:53:21",
"upload_time_iso_8601": "2023-11-26T17:53:21.581489Z",
"url": "https://files.pythonhosted.org/packages/7f/3b/4e0952616216ae9db1ebb4d6bbdd6bef2011d48c22fc9efb61c3039102f5/aiohttp-3.9.1-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "19737a1d65a5e29417290cd32b0716958f56b683cb00d7dba7639b9e639b73d7",
"md5": "dfd363ab68293816914f6965f2808cb6",
"sha256": "c7b5d5d64e2a14e35a9240b33b89389e0035e6de8dbb7ffa50d10d8b65c57449"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "dfd363ab68293816914f6965f2808cb6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1264378,
"upload_time": "2023-11-26T17:53:23",
"upload_time_iso_8601": "2023-11-26T17:53:23.917637Z",
"url": "https://files.pythonhosted.org/packages/19/73/7a1d65a5e29417290cd32b0716958f56b683cb00d7dba7639b9e639b73d7/aiohttp-3.9.1-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "19bc81103c23bf5faf5e19c7598c6d08f014b9d46cb2948e46a3b0e8915e37f6",
"md5": "7044823ffe54a99a62599b47ba045a8d",
"sha256": "69985d50a2b6f709412d944ffb2e97d0be154ea90600b7a921f95a87d6f108a2"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp311-cp311-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "7044823ffe54a99a62599b47ba045a8d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1343734,
"upload_time": "2023-11-26T17:53:26",
"upload_time_iso_8601": "2023-11-26T17:53:26.343701Z",
"url": "https://files.pythonhosted.org/packages/19/bc/81103c23bf5faf5e19c7598c6d08f014b9d46cb2948e46a3b0e8915e37f6/aiohttp-3.9.1-cp311-cp311-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dc8e237831f6ab5518c114f253caa689b1e4993df40f5e72c598a1a494510b20",
"md5": "0fa0304c4a7b301dea4664a876cfb41d",
"sha256": "c9110c06eaaac7e1f5562caf481f18ccf8f6fdf4c3323feab28a93d34cc646bd"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp311-cp311-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "0fa0304c4a7b301dea4664a876cfb41d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1386381,
"upload_time": "2023-11-26T17:53:29",
"upload_time_iso_8601": "2023-11-26T17:53:29.287214Z",
"url": "https://files.pythonhosted.org/packages/dc/8e/237831f6ab5518c114f253caa689b1e4993df40f5e72c598a1a494510b20/aiohttp-3.9.1-cp311-cp311-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a0ed83c4e2ae68bf31ef28b50fdcbd885792de03e94e4b0587ed08a02095f79a",
"md5": "a89fb4cf67d88448a9cd359741a4311b",
"sha256": "d737e69d193dac7296365a6dcb73bbbf53bb760ab25a3727716bbd42022e8d7a"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "a89fb4cf67d88448a9cd359741a4311b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1299455,
"upload_time": "2023-11-26T17:53:32",
"upload_time_iso_8601": "2023-11-26T17:53:32.199462Z",
"url": "https://files.pythonhosted.org/packages/a0/ed/83c4e2ae68bf31ef28b50fdcbd885792de03e94e4b0587ed08a02095f79a/aiohttp-3.9.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "defc08864a3f83e674eece6104800c697dfb7c09a331b47b3b3b758342128164",
"md5": "26b7bee0ac0eeb5411d3d77bc1257caa",
"sha256": "4ee8caa925aebc1e64e98432d78ea8de67b2272252b0a931d2ac3bd876ad5544"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "26b7bee0ac0eeb5411d3d77bc1257caa",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 344643,
"upload_time": "2023-11-26T17:53:34",
"upload_time_iso_8601": "2023-11-26T17:53:34.609697Z",
"url": "https://files.pythonhosted.org/packages/de/fc/08864a3f83e674eece6104800c697dfb7c09a331b47b3b3b758342128164/aiohttp-3.9.1-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "847a70ca0dcffcb261d1e71590d1c93863f8b59415a52f610f75ee3e570e003c",
"md5": "09143dc402d6a3b9538931bee7d10195",
"sha256": "a34086c5cc285be878622e0a6ab897a986a6e8bf5b67ecb377015f06ed316587"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "09143dc402d6a3b9538931bee7d10195",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 364789,
"upload_time": "2023-11-26T17:53:36",
"upload_time_iso_8601": "2023-11-26T17:53:36.786602Z",
"url": "https://files.pythonhosted.org/packages/84/7a/70ca0dcffcb261d1e71590d1c93863f8b59415a52f610f75ee3e570e003c/aiohttp-3.9.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "41d6e4f5eadff5e4523f75b56183f474f7d5f54fc495e80ee875843d7b264492",
"md5": "ea3ccdb7e7223685f9340cb7c923e81d",
"sha256": "f800164276eec54e0af5c99feb9494c295118fc10a11b997bbb1348ba1a52065"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp312-cp312-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "ea3ccdb7e7223685f9340cb7c923e81d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 591673,
"upload_time": "2023-11-26T17:53:39",
"upload_time_iso_8601": "2023-11-26T17:53:39.376148Z",
"url": "https://files.pythonhosted.org/packages/41/d6/e4f5eadff5e4523f75b56183f474f7d5f54fc495e80ee875843d7b264492/aiohttp-3.9.1-cp312-cp312-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "70de9cfb42190a946df5179375a8e59110faf8188e2c19f58a6f8f6846414c8f",
"md5": "2bf261a75aa3dcef41ee9560c72b0cb0",
"sha256": "500f1c59906cd142d452074f3811614be04819a38ae2b3239a48b82649c08821"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "2bf261a75aa3dcef41ee9560c72b0cb0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 392831,
"upload_time": "2023-11-26T17:53:41",
"upload_time_iso_8601": "2023-11-26T17:53:41.583512Z",
"url": "https://files.pythonhosted.org/packages/70/de/9cfb42190a946df5179375a8e59110faf8188e2c19f58a6f8f6846414c8f/aiohttp-3.9.1-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cf45580b5a6abb70530cea7f6e697227c61e0001eff75d50b897a62b66c6d3b7",
"md5": "30f03b4f943f1882b56d3f23b80addc1",
"sha256": "0b0a6a36ed7e164c6df1e18ee47afbd1990ce47cb428739d6c99aaabfaf1b3af"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "30f03b4f943f1882b56d3f23b80addc1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 388850,
"upload_time": "2023-11-26T17:53:44",
"upload_time_iso_8601": "2023-11-26T17:53:44.157028Z",
"url": "https://files.pythonhosted.org/packages/cf/45/580b5a6abb70530cea7f6e697227c61e0001eff75d50b897a62b66c6d3b7/aiohttp-3.9.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "023a9aa79bc010bb8af6020f8e70937710d01622b97a7e04b8f8fbea97b04ff8",
"md5": "de427a99ec9a0ed02e9f910364c7d2c8",
"sha256": "69da0f3ed3496808e8cbc5123a866c41c12c15baaaead96d256477edf168eb57"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "de427a99ec9a0ed02e9f910364c7d2c8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1319339,
"upload_time": "2023-11-26T17:53:47",
"upload_time_iso_8601": "2023-11-26T17:53:47.152062Z",
"url": "https://files.pythonhosted.org/packages/02/3a/9aa79bc010bb8af6020f8e70937710d01622b97a7e04b8f8fbea97b04ff8/aiohttp-3.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3c2a6db78762123f368d97a38694b75d1942fcff6d476cb633dbca84c93c7221",
"md5": "facab7d2b403f0d2ceb52b0ee789215a",
"sha256": "176df045597e674fa950bf5ae536be85699e04cea68fa3a616cf75e413737eb5"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "facab7d2b403f0d2ceb52b0ee789215a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1359461,
"upload_time": "2023-11-26T17:53:50",
"upload_time_iso_8601": "2023-11-26T17:53:50.590274Z",
"url": "https://files.pythonhosted.org/packages/3c/2a/6db78762123f368d97a38694b75d1942fcff6d476cb633dbca84c93c7221/aiohttp-3.9.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8c4bfec8718e62106fa0362c5109f362ce45f6985d14283678e5c82cc9dfb0af",
"md5": "c353e831cd87d8922564f077f812a677",
"sha256": "b796b44111f0cab6bbf66214186e44734b5baab949cb5fb56154142a92989aeb"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "c353e831cd87d8922564f077f812a677",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1401205,
"upload_time": "2023-11-26T17:53:53",
"upload_time_iso_8601": "2023-11-26T17:53:53.275888Z",
"url": "https://files.pythonhosted.org/packages/8c/4b/fec8718e62106fa0362c5109f362ce45f6985d14283678e5c82cc9dfb0af/aiohttp-3.9.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "755f90a2869ad3d1fb9bd984bfc1b02d8b19e381467b238bd3668a09faa69df5",
"md5": "dee2cc3d68496357bf4dc1ce4d9636f1",
"sha256": "f27fdaadce22f2ef950fc10dcdf8048407c3b42b73779e48a4e76b3c35bca26c"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "dee2cc3d68496357bf4dc1ce4d9636f1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1314647,
"upload_time": "2023-11-26T17:53:56",
"upload_time_iso_8601": "2023-11-26T17:53:56.884641Z",
"url": "https://files.pythonhosted.org/packages/75/5f/90a2869ad3d1fb9bd984bfc1b02d8b19e381467b238bd3668a09faa69df5/aiohttp-3.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a456f5064eb44914235591b372b04420fd9e80b21110ae718ba72387f49ee9c0",
"md5": "38467a3aba4808253d17fad5b3b0d49d",
"sha256": "bcb6532b9814ea7c5a6a3299747c49de30e84472fa72821b07f5a9818bce0f66"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "38467a3aba4808253d17fad5b3b0d49d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1266651,
"upload_time": "2023-11-26T17:53:59",
"upload_time_iso_8601": "2023-11-26T17:53:59.833779Z",
"url": "https://files.pythonhosted.org/packages/a4/56/f5064eb44914235591b372b04420fd9e80b21110ae718ba72387f49ee9c0/aiohttp-3.9.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5986f759ee047d87cff52028e90679a2f5c15c08f1b816cd1c16eb06db65276f",
"md5": "1a001ec2c04171f47e5bf22dd6f0436e",
"sha256": "54631fb69a6e44b2ba522f7c22a6fb2667a02fd97d636048478db2fd8c4e98fe"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "1a001ec2c04171f47e5bf22dd6f0436e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1321196,
"upload_time": "2023-11-26T17:54:03",
"upload_time_iso_8601": "2023-11-26T17:54:03.058139Z",
"url": "https://files.pythonhosted.org/packages/59/86/f759ee047d87cff52028e90679a2f5c15c08f1b816cd1c16eb06db65276f/aiohttp-3.9.1-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b6ae30c8962df269f86912be9e3ec59b51dd8eaeccb5d23695f63177a0e21d1b",
"md5": "fb9a45c8307510bd4cbe5670ef1c3e65",
"sha256": "4b4c452d0190c5a820d3f5c0f3cd8a28ace48c54053e24da9d6041bf81113183"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "fb9a45c8307510bd4cbe5670ef1c3e65",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1267553,
"upload_time": "2023-11-26T17:54:05",
"upload_time_iso_8601": "2023-11-26T17:54:05.551849Z",
"url": "https://files.pythonhosted.org/packages/b6/ae/30c8962df269f86912be9e3ec59b51dd8eaeccb5d23695f63177a0e21d1b/aiohttp-3.9.1-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f31a6452aa5ab519e79c43831e59fcef6f76426b51810d9772e03addc3efd958",
"md5": "fd4d70110a65ef2f39caee890e23c9e6",
"sha256": "cae4c0c2ca800c793cae07ef3d40794625471040a87e1ba392039639ad61ab5b"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp312-cp312-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "fd4d70110a65ef2f39caee890e23c9e6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1347571,
"upload_time": "2023-11-26T17:54:08",
"upload_time_iso_8601": "2023-11-26T17:54:08.408933Z",
"url": "https://files.pythonhosted.org/packages/f3/1a/6452aa5ab519e79c43831e59fcef6f76426b51810d9772e03addc3efd958/aiohttp-3.9.1-cp312-cp312-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "204319a597a7e50ea99d04509ea82659c52149fefec45b5005d2e1f67b68ac0d",
"md5": "90483873932dde75b11753f070290000",
"sha256": "565760d6812b8d78d416c3c7cfdf5362fbe0d0d25b82fed75d0d29e18d7fc30f"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp312-cp312-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "90483873932dde75b11753f070290000",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1395459,
"upload_time": "2023-11-26T17:54:11",
"upload_time_iso_8601": "2023-11-26T17:54:11.071537Z",
"url": "https://files.pythonhosted.org/packages/20/43/19a597a7e50ea99d04509ea82659c52149fefec45b5005d2e1f67b68ac0d/aiohttp-3.9.1-cp312-cp312-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d0895cdbebbdfe91c1f937ef4cc2836152cce0d2a0138029b53703d0c3f13199",
"md5": "4fc70a7d0886068900aa1d3a3a437d25",
"sha256": "54311eb54f3a0c45efb9ed0d0a8f43d1bc6060d773f6973efd90037a51cd0a3f"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "4fc70a7d0886068900aa1d3a3a437d25",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1316162,
"upload_time": "2023-11-26T17:54:13",
"upload_time_iso_8601": "2023-11-26T17:54:13.789755Z",
"url": "https://files.pythonhosted.org/packages/d0/89/5cdbebbdfe91c1f937ef4cc2836152cce0d2a0138029b53703d0c3f13199/aiohttp-3.9.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2166114bf1d9f0a38a50bf1b7a5c8315a44fd1f35bd1fee025a230907a2cb4b7",
"md5": "64c057f06855fdfc8cc8436519b4474d",
"sha256": "85c3e3c9cb1d480e0b9a64c658cd66b3cfb8e721636ab8b0e746e2d79a7a9eed"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "64c057f06855fdfc8cc8436519b4474d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 341652,
"upload_time": "2023-11-26T17:54:16",
"upload_time_iso_8601": "2023-11-26T17:54:16.771222Z",
"url": "https://files.pythonhosted.org/packages/21/66/114bf1d9f0a38a50bf1b7a5c8315a44fd1f35bd1fee025a230907a2cb4b7/aiohttp-3.9.1-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e13e929a6a50288e60ade3961b294d2f5aeb251b6579e4290a5397e484d0df9",
"md5": "7cc18355f654387e510252521c83604b",
"sha256": "11cb254e397a82efb1805d12561e80124928e04e9c4483587ce7390b3866d213"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "7cc18355f654387e510252521c83604b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 362885,
"upload_time": "2023-11-26T17:54:18",
"upload_time_iso_8601": "2023-11-26T17:54:18.884795Z",
"url": "https://files.pythonhosted.org/packages/4e/13/e929a6a50288e60ade3961b294d2f5aeb251b6579e4290a5397e484d0df9/aiohttp-3.9.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e2ef048838fa36f4515d38a7bdfd6373c9153e85032512a99ae6bbd50dfeb19",
"md5": "f70d706d6e6f99fb7b2d80443d7acb8f",
"sha256": "8a22a34bc594d9d24621091d1b91511001a7eea91d6652ea495ce06e27381f70"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "f70d706d6e6f99fb7b2d80443d7acb8f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 597427,
"upload_time": "2023-11-26T17:54:21",
"upload_time_iso_8601": "2023-11-26T17:54:21.359315Z",
"url": "https://files.pythonhosted.org/packages/5e/2e/f048838fa36f4515d38a7bdfd6373c9153e85032512a99ae6bbd50dfeb19/aiohttp-3.9.1-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dc7f27b5100e2758a829d593dc5d4eeb254a48599f935cbfb6fa29b4e198f2bd",
"md5": "df0113807e8c2126e017e2a23b3973be",
"sha256": "598db66eaf2e04aa0c8900a63b0101fdc5e6b8a7ddd805c56d86efb54eb66672"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "df0113807e8c2126e017e2a23b3973be",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 399009,
"upload_time": "2023-11-26T17:54:24",
"upload_time_iso_8601": "2023-11-26T17:54:24.280192Z",
"url": "https://files.pythonhosted.org/packages/dc/7f/27b5100e2758a829d593dc5d4eeb254a48599f935cbfb6fa29b4e198f2bd/aiohttp-3.9.1-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2f2db9e8b91094715dc4cc712910cf0d711c6f5fe7326aac97753e35f38d0a08",
"md5": "3f4b79d8c9bf64b8677672562d5e0697",
"sha256": "2c9376e2b09895c8ca8b95362283365eb5c03bdc8428ade80a864160605715f1"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3f4b79d8c9bf64b8677672562d5e0697",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 388493,
"upload_time": "2023-11-26T17:54:26",
"upload_time_iso_8601": "2023-11-26T17:54:26.603781Z",
"url": "https://files.pythonhosted.org/packages/2f/2d/b9e8b91094715dc4cc712910cf0d711c6f5fe7326aac97753e35f38d0a08/aiohttp-3.9.1-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1668fc8a6899731118907f21ea7dcbb729a34ed9cd35da94515fff363e2db750",
"md5": "7584def7c9def95917e85381c22729ec",
"sha256": "41473de252e1797c2d2293804e389a6d6986ef37cbb4a25208de537ae32141dd"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "7584def7c9def95917e85381c22729ec",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1260091,
"upload_time": "2023-11-26T17:54:29",
"upload_time_iso_8601": "2023-11-26T17:54:29.105392Z",
"url": "https://files.pythonhosted.org/packages/16/68/fc8a6899731118907f21ea7dcbb729a34ed9cd35da94515fff363e2db750/aiohttp-3.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ca84d33f7c283e33ce762e888f2f64d87b079f68ea1d0af5451dad9a79bfa1ab",
"md5": "382c17a7d517064d9aa5fe482f7000c7",
"sha256": "9c5857612c9813796960c00767645cb5da815af16dafb32d70c72a8390bbf690"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "382c17a7d517064d9aa5fe482f7000c7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1312160,
"upload_time": "2023-11-26T17:54:32",
"upload_time_iso_8601": "2023-11-26T17:54:32.152314Z",
"url": "https://files.pythonhosted.org/packages/ca/84/d33f7c283e33ce762e888f2f64d87b079f68ea1d0af5451dad9a79bfa1ab/aiohttp-3.9.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a717ca22ae3202989367276fd9c17a81aecd4d2e8c6b33116badb96a9a42cd90",
"md5": "79b1b3e65583e4ace7f85e9260b5e4c0",
"sha256": "ffcd828e37dc219a72c9012ec44ad2e7e3066bec6ff3aaa19e7d435dbf4032ca"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "79b1b3e65583e4ace7f85e9260b5e4c0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1346097,
"upload_time": "2023-11-26T17:54:34",
"upload_time_iso_8601": "2023-11-26T17:54:34.739482Z",
"url": "https://files.pythonhosted.org/packages/a7/17/ca22ae3202989367276fd9c17a81aecd4d2e8c6b33116badb96a9a42cd90/aiohttp-3.9.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "251991b9f2b737c9117cf8f622ee02a84788ac6fcda0aa4b736dad1321c6dd93",
"md5": "b3b9d8217168a5b3ac84bbdef3b84378",
"sha256": "219a16763dc0294842188ac8a12262b5671817042b35d45e44fd0a697d8c8361"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b3b9d8217168a5b3ac84bbdef3b84378",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1252863,
"upload_time": "2023-11-26T17:54:37",
"upload_time_iso_8601": "2023-11-26T17:54:37.448845Z",
"url": "https://files.pythonhosted.org/packages/25/19/91b9f2b737c9117cf8f622ee02a84788ac6fcda0aa4b736dad1321c6dd93/aiohttp-3.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fdacc5c5d85f61ec22de3eed01b6f0edbe1a78fcb5177e97ec67ed5dccd25b5f",
"md5": "3098d1055cab0a50a31423581aca964e",
"sha256": "f694dc8a6a3112059258a725a4ebe9acac5fe62f11c77ac4dcf896edfa78ca28"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "3098d1055cab0a50a31423581aca964e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1217798,
"upload_time": "2023-11-26T17:54:40",
"upload_time_iso_8601": "2023-11-26T17:54:40.199465Z",
"url": "https://files.pythonhosted.org/packages/fd/ac/c5c5d85f61ec22de3eed01b6f0edbe1a78fcb5177e97ec67ed5dccd25b5f/aiohttp-3.9.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9197c825c796ba7455dd82d28e7e9e36fb51fd60cb4a70294ea0fe2d4f7621e8",
"md5": "68936d74db6f71450253e951e2e62757",
"sha256": "bcc0ea8d5b74a41b621ad4a13d96c36079c81628ccc0b30cfb1603e3dfa3a014"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "68936d74db6f71450253e951e2e62757",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1312194,
"upload_time": "2023-11-26T17:54:43",
"upload_time_iso_8601": "2023-11-26T17:54:43.537570Z",
"url": "https://files.pythonhosted.org/packages/91/97/c825c796ba7455dd82d28e7e9e36fb51fd60cb4a70294ea0fe2d4f7621e8/aiohttp-3.9.1-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1e8f235f2ada424e2ff530d34c3a0a8374f275941287b734665577e47cdf9f4c",
"md5": "b0636a1923dc9ef9c38b47f03164a4c9",
"sha256": "90ec72d231169b4b8d6085be13023ece8fa9b1bb495e4398d847e25218e0f431"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "b0636a1923dc9ef9c38b47f03164a4c9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1262993,
"upload_time": "2023-11-26T17:54:46",
"upload_time_iso_8601": "2023-11-26T17:54:46.160186Z",
"url": "https://files.pythonhosted.org/packages/1e/8f/235f2ada424e2ff530d34c3a0a8374f275941287b734665577e47cdf9f4c/aiohttp-3.9.1-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "64322ab157daf6be287a516eebcb87d428401c6e1d8e696041338402a6b87b27",
"md5": "baaa92063427cc91118a0c097016e307",
"sha256": "cf2a0ac0615842b849f40c4d7f304986a242f1e68286dbf3bd7a835e4f83acfd"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp38-cp38-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "baaa92063427cc91118a0c097016e307",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1341260,
"upload_time": "2023-11-26T17:54:49",
"upload_time_iso_8601": "2023-11-26T17:54:49.445466Z",
"url": "https://files.pythonhosted.org/packages/64/32/2ab157daf6be287a516eebcb87d428401c6e1d8e696041338402a6b87b27/aiohttp-3.9.1-cp38-cp38-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e70d3d7428076bd52bdfe469e57fa1d5af76a527dffe8e5da5cf507d13d6152",
"md5": "6c965a96630f65e0213bf3fdda70a6a9",
"sha256": "0e49b08eafa4f5707ecfb321ab9592717a319e37938e301d462f79b4e860c32a"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp38-cp38-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "6c965a96630f65e0213bf3fdda70a6a9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1383356,
"upload_time": "2023-11-26T17:54:52",
"upload_time_iso_8601": "2023-11-26T17:54:52.559423Z",
"url": "https://files.pythonhosted.org/packages/3e/70/d3d7428076bd52bdfe469e57fa1d5af76a527dffe8e5da5cf507d13d6152/aiohttp-3.9.1-cp38-cp38-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e65dbe1f30a4c0e54ca14cad501198e34accb40816adcb9cd58b67cd1a6a145",
"md5": "a843afc8e9563b433b73e3c30d500566",
"sha256": "2c59e0076ea31c08553e868cec02d22191c086f00b44610f8ab7363a11a5d9d8"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "a843afc8e9563b433b73e3c30d500566",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1302950,
"upload_time": "2023-11-26T17:54:55",
"upload_time_iso_8601": "2023-11-26T17:54:55.103498Z",
"url": "https://files.pythonhosted.org/packages/5e/65/dbe1f30a4c0e54ca14cad501198e34accb40816adcb9cd58b67cd1a6a145/aiohttp-3.9.1-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "29a26b59e77b96905ba74aa5763bfd4c02cd267d10bc6e2391702354587945ca",
"md5": "bb9eccf3de2df4948d03b2c0d1ef06f2",
"sha256": "4831df72b053b1eed31eb00a2e1aff6896fb4485301d4ccb208cac264b648db4"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "bb9eccf3de2df4948d03b2c0d1ef06f2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 347157,
"upload_time": "2023-11-26T17:54:57",
"upload_time_iso_8601": "2023-11-26T17:54:57.786660Z",
"url": "https://files.pythonhosted.org/packages/29/a2/6b59e77b96905ba74aa5763bfd4c02cd267d10bc6e2391702354587945ca/aiohttp-3.9.1-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "19a5421b09bf298ee4476be1552be9641b470a61f72d09d2d6dbe4b6493beda3",
"md5": "4174961fb3c40b034e0ec1dc20af9dbf",
"sha256": "3135713c5562731ee18f58d3ad1bf41e1d8883eb68b363f2ffde5b2ea4b84cc7"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "4174961fb3c40b034e0ec1dc20af9dbf",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 367056,
"upload_time": "2023-11-26T17:55:00",
"upload_time_iso_8601": "2023-11-26T17:55:00.298717Z",
"url": "https://files.pythonhosted.org/packages/19/a5/421b09bf298ee4476be1552be9641b470a61f72d09d2d6dbe4b6493beda3/aiohttp-3.9.1-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "047df27ae69af55f95c8b7858bee8fe7b4e1ebe6510e541e44fdbbdbb9340373",
"md5": "a9958f662503db60adcff0890c40e841",
"sha256": "cfeadf42840c1e870dc2042a232a8748e75a36b52d78968cda6736de55582766"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "a9958f662503db60adcff0890c40e841",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 595118,
"upload_time": "2023-11-26T17:55:04",
"upload_time_iso_8601": "2023-11-26T17:55:04.041611Z",
"url": "https://files.pythonhosted.org/packages/04/7d/f27ae69af55f95c8b7858bee8fe7b4e1ebe6510e541e44fdbbdbb9340373/aiohttp-3.9.1-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "874a58cc85300f7014a3875846be8086e02761421e496a3abdbd325f6ba1be2a",
"md5": "3b7f8548d181aec36d9a2d828927983c",
"sha256": "70907533db712f7aa791effb38efa96f044ce3d4e850e2d7691abd759f4f0ae0"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "3b7f8548d181aec36d9a2d828927983c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 397921,
"upload_time": "2023-11-26T17:55:07",
"upload_time_iso_8601": "2023-11-26T17:55:07.047463Z",
"url": "https://files.pythonhosted.org/packages/87/4a/58cc85300f7014a3875846be8086e02761421e496a3abdbd325f6ba1be2a/aiohttp-3.9.1-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6973bda9aba49fa741c5390368e91a9a36012041f48d542772af097c43dd0963",
"md5": "45e4b43b646e5078a2942673909571f5",
"sha256": "cdefe289681507187e375a5064c7599f52c40343a8701761c802c1853a504558"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "45e4b43b646e5078a2942673909571f5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 387298,
"upload_time": "2023-11-26T17:55:09",
"upload_time_iso_8601": "2023-11-26T17:55:09.408985Z",
"url": "https://files.pythonhosted.org/packages/69/73/bda9aba49fa741c5390368e91a9a36012041f48d542772af097c43dd0963/aiohttp-3.9.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ad534935cfdcaedff85cf7a8f0f67b09be4bde89c7e4556e3e1189f8e0531726",
"md5": "4eaa4749abeb722745eea866ca594541",
"sha256": "d7481f581251bb5558ba9f635db70908819caa221fc79ee52a7f58392778c636"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4eaa4749abeb722745eea866ca594541",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1236784,
"upload_time": "2023-11-26T17:55:12",
"upload_time_iso_8601": "2023-11-26T17:55:12.037818Z",
"url": "https://files.pythonhosted.org/packages/ad/53/4935cfdcaedff85cf7a8f0f67b09be4bde89c7e4556e3e1189f8e0531726/aiohttp-3.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4c7e05d605979a59363d3cfa8c5578a5f2af05b1bb4d975ada4056969d955c36",
"md5": "a72037d4c6075b2b7192a60669e09c97",
"sha256": "49f0c1b3c2842556e5de35f122fc0f0b721334ceb6e78c3719693364d4af8499"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "a72037d4c6075b2b7192a60669e09c97",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1272281,
"upload_time": "2023-11-26T17:55:15",
"upload_time_iso_8601": "2023-11-26T17:55:15.337749Z",
"url": "https://files.pythonhosted.org/packages/4c/7e/05d605979a59363d3cfa8c5578a5f2af05b1bb4d975ada4056969d955c36/aiohttp-3.9.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4da68af0ea8b9a73113ffaa43bc97bd141d0a2545357a07436dd831013ab2c09",
"md5": "7bde7a7e76184f9e3724ad6fbbf2ba0e",
"sha256": "0d406b01a9f5a7e232d1b0d161b40c05275ffbcbd772dc18c1d5a570961a1ca4"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "7bde7a7e76184f9e3724ad6fbbf2ba0e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1308465,
"upload_time": "2023-11-26T17:55:18",
"upload_time_iso_8601": "2023-11-26T17:55:18.000771Z",
"url": "https://files.pythonhosted.org/packages/4d/a6/8af0ea8b9a73113ffaa43bc97bd141d0a2545357a07436dd831013ab2c09/aiohttp-3.9.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2ec12a91e1b72c3e24e37dc6ec26ae8d35136de10c7fbf87acbc44db705b2eda",
"md5": "4f2f4a7d7343c6c9ff60b859cbc6a610",
"sha256": "8d8e4450e7fe24d86e86b23cc209e0023177b6d59502e33807b732d2deb6975f"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4f2f4a7d7343c6c9ff60b859cbc6a610",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1228829,
"upload_time": "2023-11-26T17:55:20",
"upload_time_iso_8601": "2023-11-26T17:55:20.503354Z",
"url": "https://files.pythonhosted.org/packages/2e/c1/2a91e1b72c3e24e37dc6ec26ae8d35136de10c7fbf87acbc44db705b2eda/aiohttp-3.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "10faf643ffe7953ecd5db6ab63c836c9b05eeac7e08744a37a32276e69e3a648",
"md5": "6394652efae04a3f9571206ba8749844",
"sha256": "3c0266cd6f005e99f3f51e583012de2778e65af6b73860038b968a0a8888487a"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "6394652efae04a3f9571206ba8749844",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1201713,
"upload_time": "2023-11-26T17:55:22",
"upload_time_iso_8601": "2023-11-26T17:55:22.814938Z",
"url": "https://files.pythonhosted.org/packages/10/fa/f643ffe7953ecd5db6ab63c836c9b05eeac7e08744a37a32276e69e3a648/aiohttp-3.9.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ee2c7077da9027c99872a0066ba7494fd7b0237a371243307895715fe6e06b06",
"md5": "41f65efe104630fe84fe7c52e7ee6a08",
"sha256": "ab221850108a4a063c5b8a70f00dd7a1975e5a1713f87f4ab26a46e5feac5a0e"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "41f65efe104630fe84fe7c52e7ee6a08",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1251357,
"upload_time": "2023-11-26T17:55:25",
"upload_time_iso_8601": "2023-11-26T17:55:25.519698Z",
"url": "https://files.pythonhosted.org/packages/ee/2c/7077da9027c99872a0066ba7494fd7b0237a371243307895715fe6e06b06/aiohttp-3.9.1-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "59f580b36808d565d8b7e2dad10c156df2a8d27c61ea9dd0001c17065722ccc6",
"md5": "7a65df14f5ff54f790e20e5478f927f9",
"sha256": "c88a15f272a0ad3d7773cf3a37cc7b7d077cbfc8e331675cf1346e849d97a4e5"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "7a65df14f5ff54f790e20e5478f927f9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1211101,
"upload_time": "2023-11-26T17:55:28",
"upload_time_iso_8601": "2023-11-26T17:55:28.422141Z",
"url": "https://files.pythonhosted.org/packages/59/f5/80b36808d565d8b7e2dad10c156df2a8d27c61ea9dd0001c17065722ccc6/aiohttp-3.9.1-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "27911dc4e23eb48714155266734b72a1dd211b4adff6f9598b7c73c3214acb4c",
"md5": "bde6f746de6f089194b99880b4148a34",
"sha256": "237533179d9747080bcaad4d02083ce295c0d2eab3e9e8ce103411a4312991a0"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp39-cp39-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "bde6f746de6f089194b99880b4148a34",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1279105,
"upload_time": "2023-11-26T17:55:30",
"upload_time_iso_8601": "2023-11-26T17:55:30.893412Z",
"url": "https://files.pythonhosted.org/packages/27/91/1dc4e23eb48714155266734b72a1dd211b4adff6f9598b7c73c3214acb4c/aiohttp-3.9.1-cp39-cp39-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1c7372e3158419ccc33e8dfe396e864ba9cde2abd66d3df352a73a2876f123a6",
"md5": "5f3eaee0c0fa3a7356eec882f178a80b",
"sha256": "02ab6006ec3c3463b528374c4cdce86434e7b89ad355e7bf29e2f16b46c7dd6f"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp39-cp39-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "5f3eaee0c0fa3a7356eec882f178a80b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1320983,
"upload_time": "2023-11-26T17:55:33",
"upload_time_iso_8601": "2023-11-26T17:55:33.678481Z",
"url": "https://files.pythonhosted.org/packages/1c/73/72e3158419ccc33e8dfe396e864ba9cde2abd66d3df352a73a2876f123a6/aiohttp-3.9.1-cp39-cp39-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3a966db9b3c1394eb6ac9cac59d6e8d850b73872f0a0965d7613bf73c89b985a",
"md5": "44078cb87b496e47ba027e7d76ad46fa",
"sha256": "04fa38875e53eb7e354ece1607b1d2fdee2d175ea4e4d745f6ec9f751fe20c7c"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "44078cb87b496e47ba027e7d76ad46fa",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1241796,
"upload_time": "2023-11-26T17:55:36",
"upload_time_iso_8601": "2023-11-26T17:55:36.274362Z",
"url": "https://files.pythonhosted.org/packages/3a/96/6db9b3c1394eb6ac9cac59d6e8d850b73872f0a0965d7613bf73c89b985a/aiohttp-3.9.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "586af4896607b7dbaf9bc27995cfd08014d9b488f588c85222ccf481bac48914",
"md5": "15d29719f35ee0c202a485c712240d23",
"sha256": "82eefaf1a996060602f3cc1112d93ba8b201dbf5d8fd9611227de2003dddb3b7"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "15d29719f35ee0c202a485c712240d23",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 346122,
"upload_time": "2023-11-26T17:55:39",
"upload_time_iso_8601": "2023-11-26T17:55:39.122487Z",
"url": "https://files.pythonhosted.org/packages/58/6a/f4896607b7dbaf9bc27995cfd08014d9b488f588c85222ccf481bac48914/aiohttp-3.9.1-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7ca3d695aaa534fc550473cf2987165fc1445e2a91276fb4d779189cbf5a8e3d",
"md5": "6377dd0a387765a4f77c289115891e5b",
"sha256": "9b05d33ff8e6b269e30a7957bd3244ffbce2a7a35a81b81c382629b80af1a8bf"
},
"downloads": -1,
"filename": "aiohttp-3.9.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "6377dd0a387765a4f77c289115891e5b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 365465,
"upload_time": "2023-11-26T17:55:42",
"upload_time_iso_8601": "2023-11-26T17:55:42.002697Z",
"url": "https://files.pythonhosted.org/packages/7c/a3/d695aaa534fc550473cf2987165fc1445e2a91276fb4d779189cbf5a8e3d/aiohttp-3.9.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "54079467d3f8dae29b14f423b414d9e67512a76743c5bb7686fb05fe10c9cc3e",
"md5": "264e1b4fbe9f09050523c03f4d9b5ee2",
"sha256": "8fc49a87ac269d4529da45871e2ffb6874e87779c3d0e2ccd813c0899221239d"
},
"downloads": -1,
"filename": "aiohttp-3.9.1.tar.gz",
"has_sig": false,
"md5_digest": "264e1b4fbe9f09050523c03f4d9b5ee2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 7482118,
"upload_time": "2023-11-26T17:55:44",
"upload_time_iso_8601": "2023-11-26T17:55:44.763626Z",
"url": "https://files.pythonhosted.org/packages/54/07/9467d3f8dae29b14f423b414d9e67512a76743c5bb7686fb05fe10c9cc3e/aiohttp-3.9.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.9.2": [
{
"comment_text": "",
"digests": {
"blake2b_256": "3c6fb12ad3071af24500c59c794d6f5e34228411e43bac7d6da2fe85b482cc4d",
"md5": "5234e105596101d90fad635dabbdac4a",
"sha256": "772fbe371788e61c58d6d3d904268e48a594ba866804d08c995ad71b144f94cb"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "5234e105596101d90fad635dabbdac4a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 593918,
"upload_time": "2024-01-28T21:46:45",
"upload_time_iso_8601": "2024-01-28T21:46:45.250292Z",
"url": "https://files.pythonhosted.org/packages/3c/6f/b12ad3071af24500c59c794d6f5e34228411e43bac7d6da2fe85b482cc4d/aiohttp-3.9.2-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6f7b75c7fc7518c46460383156f283c81707e007f1e7de26f82403b2c694b9cc",
"md5": "cb95044e0f592d36b63600054f117ab8",
"sha256": "edd4f1af2253f227ae311ab3d403d0c506c9b4410c7fc8d9573dec6d9740369f"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "cb95044e0f592d36b63600054f117ab8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 397556,
"upload_time": "2024-01-28T21:46:48",
"upload_time_iso_8601": "2024-01-28T21:46:48.717890Z",
"url": "https://files.pythonhosted.org/packages/6f/7b/75c7fc7518c46460383156f283c81707e007f1e7de26f82403b2c694b9cc/aiohttp-3.9.2-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c9f6538b78a1319927e9e9c822b9c8181406a00028f3d0f2e379d40686b22706",
"md5": "6761b3bdb261e6c7beb614eca743514f",
"sha256": "cfee9287778399fdef6f8a11c9e425e1cb13cc9920fd3a3df8f122500978292b"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6761b3bdb261e6c7beb614eca743514f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 387031,
"upload_time": "2024-01-28T21:46:52",
"upload_time_iso_8601": "2024-01-28T21:46:52.049319Z",
"url": "https://files.pythonhosted.org/packages/c9/f6/538b78a1319927e9e9c822b9c8181406a00028f3d0f2e379d40686b22706/aiohttp-3.9.2-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5cabfbece12bdccb574a362e3762cca28a77dd0018840bbce12249c17bf3f393",
"md5": "3c88577bdcdcf1af2b2d20b939c931cc",
"sha256": "3cc158466f6a980a6095ee55174d1de5730ad7dec251be655d9a6a9dd7ea1ff9"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3c88577bdcdcf1af2b2d20b939c931cc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1233950,
"upload_time": "2024-01-28T21:46:54",
"upload_time_iso_8601": "2024-01-28T21:46:54.877577Z",
"url": "https://files.pythonhosted.org/packages/5c/ab/fbece12bdccb574a362e3762cca28a77dd0018840bbce12249c17bf3f393/aiohttp-3.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c085f4ced5c634e02668707519a20b21329c0939867b4525f3adbc576e6687cf",
"md5": "223580babb82c25aebc71d5d74f0cf22",
"sha256": "54ec82f45d57c9a65a1ead3953b51c704f9587440e6682f689da97f3e8defa35"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "223580babb82c25aebc71d5d74f0cf22",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1265934,
"upload_time": "2024-01-28T21:46:57",
"upload_time_iso_8601": "2024-01-28T21:46:57.684126Z",
"url": "https://files.pythonhosted.org/packages/c0/85/f4ced5c634e02668707519a20b21329c0939867b4525f3adbc576e6687cf/aiohttp-3.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "14eb972b102e3d339c0311d406f3b398effe6265f0ee92d7eb6e482d66bab1f2",
"md5": "370cb380f5e4f9b13a5b4e3d4ae41acd",
"sha256": "abeb813a18eb387f0d835ef51f88568540ad0325807a77a6e501fed4610f864e"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "370cb380f5e4f9b13a5b4e3d4ae41acd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1301669,
"upload_time": "2024-01-28T21:47:00",
"upload_time_iso_8601": "2024-01-28T21:47:00.483853Z",
"url": "https://files.pythonhosted.org/packages/14/eb/972b102e3d339c0311d406f3b398effe6265f0ee92d7eb6e482d66bab1f2/aiohttp-3.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3762dfdff2e9b2eaf5e649fca5f73ef04a8001f69edd10e3be06aeb3b727a114",
"md5": "f55527eb3308a41e8e5aae1961fe6150",
"sha256": "cc91d07280d7d169f3a0f9179d8babd0ee05c79d4d891447629ff0d7d8089ec2"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f55527eb3308a41e8e5aae1961fe6150",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1226287,
"upload_time": "2024-01-28T21:47:03",
"upload_time_iso_8601": "2024-01-28T21:47:03.577040Z",
"url": "https://files.pythonhosted.org/packages/37/62/dfdff2e9b2eaf5e649fca5f73ef04a8001f69edd10e3be06aeb3b727a114/aiohttp-3.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ee138f4db6c57a2b486a8b20f526057680ec070ee3e104cfb5d9ea6ba22cbb9e",
"md5": "2bec6bb534b6e68177368e55f15ca649",
"sha256": "b65e861f4bebfb660f7f0f40fa3eb9f2ab9af10647d05dac824390e7af8f75b7"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "2bec6bb534b6e68177368e55f15ca649",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1199771,
"upload_time": "2024-01-28T21:47:06",
"upload_time_iso_8601": "2024-01-28T21:47:06.114031Z",
"url": "https://files.pythonhosted.org/packages/ee/13/8f4db6c57a2b486a8b20f526057680ec070ee3e104cfb5d9ea6ba22cbb9e/aiohttp-3.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4ca579f51065e1dc100fc11f07afb24c199108937ae4b5a8190474868282ffe4",
"md5": "14b5aed198c5bf97e3e9b688b3baa4ee",
"sha256": "04fd8ffd2be73d42bcf55fd78cde7958eeee6d4d8f73c3846b7cba491ecdb570"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "14b5aed198c5bf97e3e9b688b3baa4ee",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1248223,
"upload_time": "2024-01-28T21:47:08",
"upload_time_iso_8601": "2024-01-28T21:47:08.731594Z",
"url": "https://files.pythonhosted.org/packages/4c/a5/79f51065e1dc100fc11f07afb24c199108937ae4b5a8190474868282ffe4/aiohttp-3.9.2-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "73fd1ff386f528f59fb964cd47a372089f2343141250a49ef727e3fe4d546636",
"md5": "db595639f4726a4fc44f43b87f0827c8",
"sha256": "3d8d962b439a859b3ded9a1e111a4615357b01620a546bc601f25b0211f2da81"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "db595639f4726a4fc44f43b87f0827c8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1205852,
"upload_time": "2024-01-28T21:47:11",
"upload_time_iso_8601": "2024-01-28T21:47:11.321702Z",
"url": "https://files.pythonhosted.org/packages/73/fd/1ff386f528f59fb964cd47a372089f2343141250a49ef727e3fe4d546636/aiohttp-3.9.2-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cdd03d2c0d481e4767ad05b66dd03c3a0f3cc6c5d32d6fadc53c5853ba0cbfbb",
"md5": "f6c267350e57ef203c9fc274b2eff9ed",
"sha256": "8ceb658afd12b27552597cf9a65d9807d58aef45adbb58616cdd5ad4c258c39e"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp310-cp310-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "f6c267350e57ef203c9fc274b2eff9ed",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1274487,
"upload_time": "2024-01-28T21:47:14",
"upload_time_iso_8601": "2024-01-28T21:47:14.101191Z",
"url": "https://files.pythonhosted.org/packages/cd/d0/3d2c0d481e4767ad05b66dd03c3a0f3cc6c5d32d6fadc53c5853ba0cbfbb/aiohttp-3.9.2-cp310-cp310-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9a5f3b038133c8bafe10f6598c94eb10758c1e674113a3b7b0375de978758e6e",
"md5": "066544f6036b197f18abec9ace4e2a8d",
"sha256": "0e4ee4df741670560b1bc393672035418bf9063718fee05e1796bf867e995fad"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp310-cp310-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "066544f6036b197f18abec9ace4e2a8d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1317663,
"upload_time": "2024-01-28T21:47:16",
"upload_time_iso_8601": "2024-01-28T21:47:16.687597Z",
"url": "https://files.pythonhosted.org/packages/9a/5f/3b038133c8bafe10f6598c94eb10758c1e674113a3b7b0375de978758e6e/aiohttp-3.9.2-cp310-cp310-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "57ffaf08d3acadc2b6adaacb6e286ae07788093463c9fe6d805bcfe33718812e",
"md5": "5e9897fa132c80460dec6b14ed220862",
"sha256": "2dec87a556f300d3211decf018bfd263424f0690fcca00de94a837949fbcea02"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "5e9897fa132c80460dec6b14ed220862",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1239078,
"upload_time": "2024-01-28T21:47:19",
"upload_time_iso_8601": "2024-01-28T21:47:19.464342Z",
"url": "https://files.pythonhosted.org/packages/57/ff/af08d3acadc2b6adaacb6e286ae07788093463c9fe6d805bcfe33718812e/aiohttp-3.9.2-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "04c871f17e39910c3d96e3b3e7280de9b44210ab1b4c79f9d289110d071403af",
"md5": "84506bc7e2ef21af9f94f9d63e615f85",
"sha256": "3e1a800f988ce7c4917f34096f81585a73dbf65b5c39618b37926b1238cf9bc4"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "84506bc7e2ef21af9f94f9d63e615f85",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 345903,
"upload_time": "2024-01-28T21:47:22",
"upload_time_iso_8601": "2024-01-28T21:47:22.006461Z",
"url": "https://files.pythonhosted.org/packages/04/c8/71f17e39910c3d96e3b3e7280de9b44210ab1b4c79f9d289110d071403af/aiohttp-3.9.2-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4b0ff159d6096095573e0ed4aeab7b9a8619393a6852fd856aacfd4280b13a3e",
"md5": "0dfe531b3e6b7cfff1f57148a70dc8b1",
"sha256": "ea510718a41b95c236c992b89fdfc3d04cc7ca60281f93aaada497c2b4e05c46"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "0dfe531b3e6b7cfff1f57148a70dc8b1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 365165,
"upload_time": "2024-01-28T21:47:24",
"upload_time_iso_8601": "2024-01-28T21:47:24.172520Z",
"url": "https://files.pythonhosted.org/packages/4b/0f/f159d6096095573e0ed4aeab7b9a8619393a6852fd856aacfd4280b13a3e/aiohttp-3.9.2-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2995654c1af5c7c7894ebdae5e2b626467f29f10f7ea131ef322ab1e1b7ddb09",
"md5": "f9a4565a3930761ddfa892073f5eb272",
"sha256": "6aaa6f99256dd1b5756a50891a20f0d252bd7bdb0854c5d440edab4495c9f973"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "f9a4565a3930761ddfa892073f5eb272",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 594675,
"upload_time": "2024-01-28T21:47:26",
"upload_time_iso_8601": "2024-01-28T21:47:26.040491Z",
"url": "https://files.pythonhosted.org/packages/29/95/654c1af5c7c7894ebdae5e2b626467f29f10f7ea131ef322ab1e1b7ddb09/aiohttp-3.9.2-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b8df3c3cf0ae44194f1d6c18af716945289258e40d4d857fd70e6a9f60adc513",
"md5": "9ce74a0af5425cc25fbf8ea68ded7fb0",
"sha256": "a27d8c70ad87bcfce2e97488652075a9bdd5b70093f50b10ae051dfe5e6baf37"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "9ce74a0af5425cc25fbf8ea68ded7fb0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 398139,
"upload_time": "2024-01-28T21:47:28",
"upload_time_iso_8601": "2024-01-28T21:47:28.080123Z",
"url": "https://files.pythonhosted.org/packages/b8/df/3c3cf0ae44194f1d6c18af716945289258e40d4d857fd70e6a9f60adc513/aiohttp-3.9.2-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "efa9924da7d46e20d4d826b5b4787ba93e7e24277e6b23b7aa2bd1bcaa9843b4",
"md5": "7c90641070bfeb6b1c0e5866d5723f51",
"sha256": "54287bcb74d21715ac8382e9de146d9442b5f133d9babb7e5d9e453faadd005e"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "7c90641070bfeb6b1c0e5866d5723f51",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 387370,
"upload_time": "2024-01-28T21:47:30",
"upload_time_iso_8601": "2024-01-28T21:47:30.475298Z",
"url": "https://files.pythonhosted.org/packages/ef/a9/924da7d46e20d4d826b5b4787ba93e7e24277e6b23b7aa2bd1bcaa9843b4/aiohttp-3.9.2-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "40910447250f9433473fef046dd679a25a5e71b154337cd1c510e5e27e126e35",
"md5": "77eec7aa972a22fe4d155d7eddb50535",
"sha256": "5bb3d05569aa83011fcb346b5266e00b04180105fcacc63743fc2e4a1862a891"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "77eec7aa972a22fe4d155d7eddb50535",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1310781,
"upload_time": "2024-01-28T21:47:32",
"upload_time_iso_8601": "2024-01-28T21:47:32.503770Z",
"url": "https://files.pythonhosted.org/packages/40/91/0447250f9433473fef046dd679a25a5e71b154337cd1c510e5e27e126e35/aiohttp-3.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9565570749c118b4346010326e4dced156a4737123304ee68e952c40f2a6bcc5",
"md5": "487ff9c76d69bfdb659e74ace279c447",
"sha256": "c8534e7d69bb8e8d134fe2be9890d1b863518582f30c9874ed7ed12e48abe3c4"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "487ff9c76d69bfdb659e74ace279c447",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1347343,
"upload_time": "2024-01-28T21:47:34",
"upload_time_iso_8601": "2024-01-28T21:47:34.715579Z",
"url": "https://files.pythonhosted.org/packages/95/65/570749c118b4346010326e4dced156a4737123304ee68e952c40f2a6bcc5/aiohttp-3.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5ee502666638420645eaecddd762dbf7538ae8119a0b35756261aaa033e4bbd2",
"md5": "b0ecf6176b50f84de254ed56cffe92c3",
"sha256": "4bd9d5b989d57b41e4ff56ab250c5ddf259f32db17159cce630fd543376bd96b"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "b0ecf6176b50f84de254ed56cffe92c3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1384304,
"upload_time": "2024-01-28T21:47:37",
"upload_time_iso_8601": "2024-01-28T21:47:37.343585Z",
"url": "https://files.pythonhosted.org/packages/5e/e5/02666638420645eaecddd762dbf7538ae8119a0b35756261aaa033e4bbd2/aiohttp-3.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "45a07db1e250038860f43fecad8f3085baed70005013d9e60b0246c014e9ffe0",
"md5": "bd6d9cf39a198d44db6f48c87452a93c",
"sha256": "fa6904088e6642609981f919ba775838ebf7df7fe64998b1a954fb411ffb4663"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bd6d9cf39a198d44db6f48c87452a93c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1295189,
"upload_time": "2024-01-28T21:47:39",
"upload_time_iso_8601": "2024-01-28T21:47:39.997770Z",
"url": "https://files.pythonhosted.org/packages/45/a0/7db1e250038860f43fecad8f3085baed70005013d9e60b0246c014e9ffe0/aiohttp-3.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e5f4791230958d635f1e7e2ce52be8ca486b1fe11eaec7d254c4a358e7083778",
"md5": "42ee0b112a998c09b54f15eb2b3744fe",
"sha256": "bda42eb410be91b349fb4ee3a23a30ee301c391e503996a638d05659d76ea4c2"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "42ee0b112a998c09b54f15eb2b3744fe",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1255519,
"upload_time": "2024-01-28T21:47:42",
"upload_time_iso_8601": "2024-01-28T21:47:42.887447Z",
"url": "https://files.pythonhosted.org/packages/e5/f4/791230958d635f1e7e2ce52be8ca486b1fe11eaec7d254c4a358e7083778/aiohttp-3.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "72d59ac4507b3ec862b67661b44e32b67538eb0d7ec9e2e09d5e00359028bc7b",
"md5": "68c4af7042df5583a6e553d255b87fa8",
"sha256": "193cc1ccd69d819562cc7f345c815a6fc51d223b2ef22f23c1a0f67a88de9a72"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "68c4af7042df5583a6e553d255b87fa8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1316500,
"upload_time": "2024-01-28T21:47:45",
"upload_time_iso_8601": "2024-01-28T21:47:45.269277Z",
"url": "https://files.pythonhosted.org/packages/72/d5/9ac4507b3ec862b67661b44e32b67538eb0d7ec9e2e09d5e00359028bc7b/aiohttp-3.9.2-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "75d363a8a0fc21dc1da59d36cef1c6863ad9fef90fcd9590560ac34d84764e82",
"md5": "cd59579be9dcec2dcd654bffe8121990",
"sha256": "b9f1cb839b621f84a5b006848e336cf1496688059d2408e617af33e3470ba204"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "cd59579be9dcec2dcd654bffe8121990",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1264916,
"upload_time": "2024-01-28T21:47:47",
"upload_time_iso_8601": "2024-01-28T21:47:47.303212Z",
"url": "https://files.pythonhosted.org/packages/75/d3/63a8a0fc21dc1da59d36cef1c6863ad9fef90fcd9590560ac34d84764e82/aiohttp-3.9.2-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ff74d761e09a4ca564fa36ea1956ca78df59f2a4795f2bd13a288b2ded5bd3ae",
"md5": "41fa4335a280184630ba1a329d20ccc7",
"sha256": "d22a0931848b8c7a023c695fa2057c6aaac19085f257d48baa24455e67df97ec"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp311-cp311-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "41fa4335a280184630ba1a329d20ccc7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1344261,
"upload_time": "2024-01-28T21:47:49",
"upload_time_iso_8601": "2024-01-28T21:47:49.503567Z",
"url": "https://files.pythonhosted.org/packages/ff/74/d761e09a4ca564fa36ea1956ca78df59f2a4795f2bd13a288b2ded5bd3ae/aiohttp-3.9.2-cp311-cp311-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c876763965a5670797b4d06876b0567a2259ad118081cb700332e0efa96c9d01",
"md5": "0f8d1f34cccf80859ac215504f0043d6",
"sha256": "4112d8ba61fbd0abd5d43a9cb312214565b446d926e282a6d7da3f5a5aa71d36"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp311-cp311-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "0f8d1f34cccf80859ac215504f0043d6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1386897,
"upload_time": "2024-01-28T21:47:52",
"upload_time_iso_8601": "2024-01-28T21:47:52.062690Z",
"url": "https://files.pythonhosted.org/packages/c8/76/763965a5670797b4d06876b0567a2259ad118081cb700332e0efa96c9d01/aiohttp-3.9.2-cp311-cp311-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3ed645c177e6b9e03d2b26c5b8ae2fec014d42131f86a659f88e0481169d59f7",
"md5": "14d241b797cb8a51bf02e771161a770d",
"sha256": "c4ad4241b52bb2eb7a4d2bde060d31c2b255b8c6597dd8deac2f039168d14fd7"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "14d241b797cb8a51bf02e771161a770d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1299980,
"upload_time": "2024-01-28T21:47:54",
"upload_time_iso_8601": "2024-01-28T21:47:54.338815Z",
"url": "https://files.pythonhosted.org/packages/3e/d6/45c177e6b9e03d2b26c5b8ae2fec014d42131f86a659f88e0481169d59f7/aiohttp-3.9.2-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "71fc7090ba4f9910d22f0989e92ce68e25cc6de4acaf643a6cc504623ced974d",
"md5": "869dc7b362da86837700388d2b13a4f7",
"sha256": "ee2661a3f5b529f4fc8a8ffee9f736ae054adfb353a0d2f78218be90617194b3"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "869dc7b362da86837700388d2b13a4f7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 345169,
"upload_time": "2024-01-28T21:47:56",
"upload_time_iso_8601": "2024-01-28T21:47:56.844737Z",
"url": "https://files.pythonhosted.org/packages/71/fc/7090ba4f9910d22f0989e92ce68e25cc6de4acaf643a6cc504623ced974d/aiohttp-3.9.2-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e3b672fd9e202ea5341c69af05f9b41e4c95e36bf59ce077dfff3d48a3a6729",
"md5": "f367c547aead62a7f93a02ef3a897b94",
"sha256": "4deae2c165a5db1ed97df2868ef31ca3cc999988812e82386d22937d9d6fed52"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "f367c547aead62a7f93a02ef3a897b94",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 365315,
"upload_time": "2024-01-28T21:47:59",
"upload_time_iso_8601": "2024-01-28T21:47:59.355456Z",
"url": "https://files.pythonhosted.org/packages/5e/3b/672fd9e202ea5341c69af05f9b41e4c95e36bf59ce077dfff3d48a3a6729/aiohttp-3.9.2-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4b3dfde8eaa6b7d6e7d1e95c226db62a302a76d7801abfc0efe9cfcb9a6890bd",
"md5": "3beb3bb8340eec077f451bb589ad413d",
"sha256": "6f4cdba12539215aaecf3c310ce9d067b0081a0795dd8a8805fdb67a65c0572a"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp312-cp312-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "3beb3bb8340eec077f451bb589ad413d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 592183,
"upload_time": "2024-01-28T21:48:02",
"upload_time_iso_8601": "2024-01-28T21:48:02.485164Z",
"url": "https://files.pythonhosted.org/packages/4b/3d/fde8eaa6b7d6e7d1e95c226db62a302a76d7801abfc0efe9cfcb9a6890bd/aiohttp-3.9.2-cp312-cp312-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "243ebe8f800900b06ad80301049fd478d2ab41e2b88ab403b7ca31a4169da5b8",
"md5": "a8a81bf7f273303d805a54fbad8a421e",
"sha256": "84e843b33d5460a5c501c05539809ff3aee07436296ff9fbc4d327e32aa3a326"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "a8a81bf7f273303d805a54fbad8a421e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 393371,
"upload_time": "2024-01-28T21:48:04",
"upload_time_iso_8601": "2024-01-28T21:48:04.479483Z",
"url": "https://files.pythonhosted.org/packages/24/3e/be8f800900b06ad80301049fd478d2ab41e2b88ab403b7ca31a4169da5b8/aiohttp-3.9.2-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "89366fc0959addf94a500ccdf8521ad1126f3760a353bedd3317a2913e8dddc4",
"md5": "2872ab712b3a0d913dfd9eaa0d511e2e",
"sha256": "8008d0f451d66140a5aa1c17e3eedc9d56e14207568cd42072c9d6b92bf19b52"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2872ab712b3a0d913dfd9eaa0d511e2e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 389383,
"upload_time": "2024-01-28T21:48:06",
"upload_time_iso_8601": "2024-01-28T21:48:06.393753Z",
"url": "https://files.pythonhosted.org/packages/89/36/6fc0959addf94a500ccdf8521ad1126f3760a353bedd3317a2913e8dddc4/aiohttp-3.9.2-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "622d37ab000360d187a0a549bca0641ba2239b166421d035b6bd2648c2d70cb0",
"md5": "09e926693b2df3bec091903916c7d6bd",
"sha256": "61c47ab8ef629793c086378b1df93d18438612d3ed60dca76c3422f4fbafa792"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "09e926693b2df3bec091903916c7d6bd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1319872,
"upload_time": "2024-01-28T21:48:08",
"upload_time_iso_8601": "2024-01-28T21:48:08.687947Z",
"url": "https://files.pythonhosted.org/packages/62/2d/37ab000360d187a0a549bca0641ba2239b166421d035b6bd2648c2d70cb0/aiohttp-3.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "38444b6b88f33dfc3cef22f543c47489b6269c11560d00bd979990fb6336be06",
"md5": "8aed3a47c643cfd0cbe237d1f96c232d",
"sha256": "bc71f748e12284312f140eaa6599a520389273174b42c345d13c7e07792f4f57"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8aed3a47c643cfd0cbe237d1f96c232d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1359993,
"upload_time": "2024-01-28T21:48:12",
"upload_time_iso_8601": "2024-01-28T21:48:12.241923Z",
"url": "https://files.pythonhosted.org/packages/38/44/4b6b88f33dfc3cef22f543c47489b6269c11560d00bd979990fb6336be06/aiohttp-3.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "95cb7fe0948f543cb22c91b6d0eccf0184e7d1088572749a88a6a36532b78bb3",
"md5": "8e3da2b15bd632b8e3cf2a339b941b43",
"sha256": "a1c3a4d0ab2f75f22ec80bca62385db2e8810ee12efa8c9e92efea45c1849133"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "8e3da2b15bd632b8e3cf2a339b941b43",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1401732,
"upload_time": "2024-01-28T21:48:14",
"upload_time_iso_8601": "2024-01-28T21:48:14.319749Z",
"url": "https://files.pythonhosted.org/packages/95/cb/7fe0948f543cb22c91b6d0eccf0184e7d1088572749a88a6a36532b78bb3/aiohttp-3.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fe7055fdc93d57a947c31c9fc71ae2a7a8d52b9b5f6d48a7c35cafea81561bc5",
"md5": "7429edaf515fc6584e689b107dca3236",
"sha256": "9a87aa0b13bbee025faa59fa58861303c2b064b9855d4c0e45ec70182bbeba1b"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7429edaf515fc6584e689b107dca3236",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1315166,
"upload_time": "2024-01-28T21:48:17",
"upload_time_iso_8601": "2024-01-28T21:48:17.067307Z",
"url": "https://files.pythonhosted.org/packages/fe/70/55fdc93d57a947c31c9fc71ae2a7a8d52b9b5f6d48a7c35cafea81561bc5/aiohttp-3.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d8857dce9ab4c973703d3a5c918f041c817feb4cd8206ae0d2bda757ae0b41f0",
"md5": "e22e04f662458ede324bc6946325ac42",
"sha256": "e2cc0d04688b9f4a7854c56c18aa7af9e5b0a87a28f934e2e596ba7e14783192"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e22e04f662458ede324bc6946325ac42",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1267180,
"upload_time": "2024-01-28T21:48:19",
"upload_time_iso_8601": "2024-01-28T21:48:19.384633Z",
"url": "https://files.pythonhosted.org/packages/d8/85/7dce9ab4c973703d3a5c918f041c817feb4cd8206ae0d2bda757ae0b41f0/aiohttp-3.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6cb829ac790e21e67524aa7e08ecabf8c1be5bf3c6c2bfc7bc13b00795e07f47",
"md5": "4b4ff3ee370eddf9354b48fff3e56785",
"sha256": "1956e3ac376b1711c1533266dec4efd485f821d84c13ce1217d53e42c9e65f08"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "4b4ff3ee370eddf9354b48fff3e56785",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1321725,
"upload_time": "2024-01-28T21:48:21",
"upload_time_iso_8601": "2024-01-28T21:48:21.655986Z",
"url": "https://files.pythonhosted.org/packages/6c/b8/29ac790e21e67524aa7e08ecabf8c1be5bf3c6c2bfc7bc13b00795e07f47/aiohttp-3.9.2-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "93dd1f3911fe74cb6dac4022f85a5d188be30ee4af5f39bf0a3b4d215970edf0",
"md5": "59833312436fc6b5feb01eaf64452a14",
"sha256": "114da29f39eccd71b93a0fcacff178749a5c3559009b4a4498c2c173a6d74dff"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "59833312436fc6b5feb01eaf64452a14",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1268081,
"upload_time": "2024-01-28T21:48:24",
"upload_time_iso_8601": "2024-01-28T21:48:24.479576Z",
"url": "https://files.pythonhosted.org/packages/93/dd/1f3911fe74cb6dac4022f85a5d188be30ee4af5f39bf0a3b4d215970edf0/aiohttp-3.9.2-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aa0312aa7bbbe058dd55272051bea1f8961a7ce0e80d16b759b8ba101be2fadd",
"md5": "cf80c2237160e6b315e93614301b541f",
"sha256": "3f17999ae3927d8a9a823a1283b201344a0627272f92d4f3e3a4efe276972fe8"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp312-cp312-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "cf80c2237160e6b315e93614301b541f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1348093,
"upload_time": "2024-01-28T21:48:27",
"upload_time_iso_8601": "2024-01-28T21:48:27.612622Z",
"url": "https://files.pythonhosted.org/packages/aa/03/12aa7bbbe058dd55272051bea1f8961a7ce0e80d16b759b8ba101be2fadd/aiohttp-3.9.2-cp312-cp312-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e008463f7cd9c5217509cf3a4a9a7b96d02db97b88facb88d4c1a01ea720faa",
"md5": "917708900b41f5d671fa9b29d019fff5",
"sha256": "f31df6a32217a34ae2f813b152a6f348154f948c83213b690e59d9e84020925c"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp312-cp312-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "917708900b41f5d671fa9b29d019fff5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1395991,
"upload_time": "2024-01-28T21:48:30",
"upload_time_iso_8601": "2024-01-28T21:48:30.582270Z",
"url": "https://files.pythonhosted.org/packages/8e/00/8463f7cd9c5217509cf3a4a9a7b96d02db97b88facb88d4c1a01ea720faa/aiohttp-3.9.2-cp312-cp312-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8aecdfaca3d48b1bc21f7dd46d7d1386ecbd370c0d0d0096e9e64b54f31b6194",
"md5": "d078c0ed327b529089505935935e1c8a",
"sha256": "7a75307ffe31329928a8d47eae0692192327c599113d41b278d4c12b54e1bd11"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "d078c0ed327b529089505935935e1c8a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1316680,
"upload_time": "2024-01-28T21:48:32",
"upload_time_iso_8601": "2024-01-28T21:48:32.927005Z",
"url": "https://files.pythonhosted.org/packages/8a/ec/dfaca3d48b1bc21f7dd46d7d1386ecbd370c0d0d0096e9e64b54f31b6194/aiohttp-3.9.2-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aa9fac5b71e4591b978e7877fcb28bc51383f776beb5a7f94d1ef1d9f04e3e83",
"md5": "0544a3a79d79c89cddc0361d9592bc00",
"sha256": "972b63d589ff8f305463593050a31b5ce91638918da38139b9d8deaba9e0fed7"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "0544a3a79d79c89cddc0361d9592bc00",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 342175,
"upload_time": "2024-01-28T21:48:35",
"upload_time_iso_8601": "2024-01-28T21:48:35.291595Z",
"url": "https://files.pythonhosted.org/packages/aa/9f/ac5b71e4591b978e7877fcb28bc51383f776beb5a7f94d1ef1d9f04e3e83/aiohttp-3.9.2-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7b5db8aca3968e3425ee9ab33ea722183a423f440d783e6c3c21bff37fd324d5",
"md5": "f73f4d74989211c4c2027ffa8fa0302d",
"sha256": "200dc0246f0cb5405c80d18ac905c8350179c063ea1587580e3335bfc243ba6a"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "f73f4d74989211c4c2027ffa8fa0302d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 363411,
"upload_time": "2024-01-28T21:48:37",
"upload_time_iso_8601": "2024-01-28T21:48:37.207522Z",
"url": "https://files.pythonhosted.org/packages/7b/5d/b8aca3968e3425ee9ab33ea722183a423f440d783e6c3c21bff37fd324d5/aiohttp-3.9.2-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e528ad0a0b2f5459fa790646decf6910f30fa0bff932e290496c1d5b2f08b4a4",
"md5": "67d886112006bc48f4e3fb6fc58a389a",
"sha256": "158564d0d1020e0d3fe919a81d97aadad35171e13e7b425b244ad4337fc6793a"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "67d886112006bc48f4e3fb6fc58a389a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 597957,
"upload_time": "2024-01-28T21:48:39",
"upload_time_iso_8601": "2024-01-28T21:48:39.169205Z",
"url": "https://files.pythonhosted.org/packages/e5/28/ad0a0b2f5459fa790646decf6910f30fa0bff932e290496c1d5b2f08b4a4/aiohttp-3.9.2-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a8c78d51293fce4ef54f7783a3335025237bc8de87c65a6264e99e969d37b49e",
"md5": "5703e944a83767e0687822991b7572d0",
"sha256": "da1346cd0ccb395f0ed16b113ebb626fa43b7b07fd7344fce33e7a4f04a8897a"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "5703e944a83767e0687822991b7572d0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 399550,
"upload_time": "2024-01-28T21:48:41",
"upload_time_iso_8601": "2024-01-28T21:48:41.344294Z",
"url": "https://files.pythonhosted.org/packages/a8/c7/8d51293fce4ef54f7783a3335025237bc8de87c65a6264e99e969d37b49e/aiohttp-3.9.2-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b7ca809efa9e9e064442aa94d898bc236d6930470491847e2b3c60bb6938c16e",
"md5": "7429143bf9750f848575acce1bf9d9b4",
"sha256": "eaa9256de26ea0334ffa25f1913ae15a51e35c529a1ed9af8e6286dd44312554"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "7429143bf9750f848575acce1bf9d9b4",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 389039,
"upload_time": "2024-01-28T21:48:43",
"upload_time_iso_8601": "2024-01-28T21:48:43.472721Z",
"url": "https://files.pythonhosted.org/packages/b7/ca/809efa9e9e064442aa94d898bc236d6930470491847e2b3c60bb6938c16e/aiohttp-3.9.2-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b0935ceee38d6d3adc858871db273031b086a347b7b96e30b11bcb2eb5f23bc1",
"md5": "d72c4f5706e448f0fcb1de9a98b974e3",
"sha256": "1543e7fb00214fb4ccead42e6a7d86f3bb7c34751ec7c605cca7388e525fd0b4"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d72c4f5706e448f0fcb1de9a98b974e3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1260605,
"upload_time": "2024-01-28T21:48:45",
"upload_time_iso_8601": "2024-01-28T21:48:45.859924Z",
"url": "https://files.pythonhosted.org/packages/b0/93/5ceee38d6d3adc858871db273031b086a347b7b96e30b11bcb2eb5f23bc1/aiohttp-3.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2369003c03fb08aff4ba48f5f98801bb1b2b8ce404ec8553a0765eaa2bd76bb6",
"md5": "7c9e622afa96ab4e1eaac5c6ec00be52",
"sha256": "186e94570433a004e05f31f632726ae0f2c9dee4762a9ce915769ce9c0a23d89"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "7c9e622afa96ab4e1eaac5c6ec00be52",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1312681,
"upload_time": "2024-01-28T21:48:48",
"upload_time_iso_8601": "2024-01-28T21:48:48.244447Z",
"url": "https://files.pythonhosted.org/packages/23/69/003c03fb08aff4ba48f5f98801bb1b2b8ce404ec8553a0765eaa2bd76bb6/aiohttp-3.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e5371c9e7b4ff8752c4278d0e401fc0e7de5317e7063072acbaf0990d4edbaa",
"md5": "9e49dec502cb1cecb7f2ad69e6789d50",
"sha256": "d52d20832ac1560f4510d68e7ba8befbc801a2b77df12bd0cd2bcf3b049e52a4"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "9e49dec502cb1cecb7f2ad69e6789d50",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1346622,
"upload_time": "2024-01-28T21:48:50",
"upload_time_iso_8601": "2024-01-28T21:48:50.299915Z",
"url": "https://files.pythonhosted.org/packages/5e/53/71c9e7b4ff8752c4278d0e401fc0e7de5317e7063072acbaf0990d4edbaa/aiohttp-3.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "713bf03643db2de3a7cbc2ed5a9f8ee81cf51241dd7e51d057e39f03feea5e4f",
"md5": "7bfdafb9baa3a85e1ebf69489d4a9e6b",
"sha256": "1c45e4e815ac6af3b72ca2bde9b608d2571737bb1e2d42299fc1ffdf60f6f9a1"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7bfdafb9baa3a85e1ebf69489d4a9e6b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1253395,
"upload_time": "2024-01-28T21:48:52",
"upload_time_iso_8601": "2024-01-28T21:48:52.645450Z",
"url": "https://files.pythonhosted.org/packages/71/3b/f03643db2de3a7cbc2ed5a9f8ee81cf51241dd7e51d057e39f03feea5e4f/aiohttp-3.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "233f47e0f2df24f103166249d35196ac212410bd281e5f61a2d7e5f2ae034dca",
"md5": "588514dc1bede5a4947b8a6975dca790",
"sha256": "aa906b9bdfd4a7972dd0628dbbd6413d2062df5b431194486a78f0d2ae87bd55"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "588514dc1bede5a4947b8a6975dca790",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1218316,
"upload_time": "2024-01-28T21:48:54",
"upload_time_iso_8601": "2024-01-28T21:48:54.991096Z",
"url": "https://files.pythonhosted.org/packages/23/3f/47e0f2df24f103166249d35196ac212410bd281e5f61a2d7e5f2ae034dca/aiohttp-3.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e28582d06eaca060e389eccd7f548446d5c2fe0515e04247a6a5a2050ec61a6",
"md5": "5c9186004f5e00a0ea707425736909cc",
"sha256": "68bbee9e17d66f17bb0010aa15a22c6eb28583edcc8b3212e2b8e3f77f3ebe2a"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "5c9186004f5e00a0ea707425736909cc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1312709,
"upload_time": "2024-01-28T21:48:58",
"upload_time_iso_8601": "2024-01-28T21:48:58.674225Z",
"url": "https://files.pythonhosted.org/packages/8e/28/582d06eaca060e389eccd7f548446d5c2fe0515e04247a6a5a2050ec61a6/aiohttp-3.9.2-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6a84e3242a0ee5b32fa529d63da4a4aef1d125aa50a781d9aaabffb99ef1b78b",
"md5": "fcd0a9e8c5b94c7b9d49f84205c8743e",
"sha256": "4c189b64bd6d9a403a1a3f86a3ab3acbc3dc41a68f73a268a4f683f89a4dec1f"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "fcd0a9e8c5b94c7b9d49f84205c8743e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1263512,
"upload_time": "2024-01-28T21:49:01",
"upload_time_iso_8601": "2024-01-28T21:49:01.583353Z",
"url": "https://files.pythonhosted.org/packages/6a/84/e3242a0ee5b32fa529d63da4a4aef1d125aa50a781d9aaabffb99ef1b78b/aiohttp-3.9.2-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "394c457d042dd11c249cc58751afb1d8a023a63e97ee5888e4fdd2b0960df36b",
"md5": "91e820a7945d22b3475fec1c816a0596",
"sha256": "8a7876f794523123bca6d44bfecd89c9fec9ec897a25f3dd202ee7fc5c6525b7"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp38-cp38-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "91e820a7945d22b3475fec1c816a0596",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1341782,
"upload_time": "2024-01-28T21:49:04",
"upload_time_iso_8601": "2024-01-28T21:49:04.448155Z",
"url": "https://files.pythonhosted.org/packages/39/4c/457d042dd11c249cc58751afb1d8a023a63e97ee5888e4fdd2b0960df36b/aiohttp-3.9.2-cp38-cp38-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "94fcfc9b1897dc159e3530ba0bb30a086c737c3fb3895da57156ce6a5a8d7f61",
"md5": "d36a25ccd48e3ccaffae0c4762c5ec16",
"sha256": "d23fba734e3dd7b1d679b9473129cd52e4ec0e65a4512b488981a56420e708db"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp38-cp38-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "d36a25ccd48e3ccaffae0c4762c5ec16",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1383885,
"upload_time": "2024-01-28T21:49:06",
"upload_time_iso_8601": "2024-01-28T21:49:06.839533Z",
"url": "https://files.pythonhosted.org/packages/94/fc/fc9b1897dc159e3530ba0bb30a086c737c3fb3895da57156ce6a5a8d7f61/aiohttp-3.9.2-cp38-cp38-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4ffccd7a3e114ab8d027d71896eba7b0b6181a1e9cab0393b3885318233cb5ff",
"md5": "c25780d9d5a9f2d8d616392247c7b729",
"sha256": "b141753be581fab842a25cb319f79536d19c2a51995d7d8b29ee290169868eab"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "c25780d9d5a9f2d8d616392247c7b729",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1303484,
"upload_time": "2024-01-28T21:49:09",
"upload_time_iso_8601": "2024-01-28T21:49:09.415462Z",
"url": "https://files.pythonhosted.org/packages/4f/fc/cd7a3e114ab8d027d71896eba7b0b6181a1e9cab0393b3885318233cb5ff/aiohttp-3.9.2-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "40c9338fce2770f5c0229cc171c6fdf0f780f7a529df370a70bc2120bfebc1e1",
"md5": "21af39d847afc9e3118d032f970349b1",
"sha256": "103daf41ff3b53ba6fa09ad410793e2e76c9d0269151812e5aba4b9dd674a7e8"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "21af39d847afc9e3118d032f970349b1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 347685,
"upload_time": "2024-01-28T21:49:12",
"upload_time_iso_8601": "2024-01-28T21:49:12.025948Z",
"url": "https://files.pythonhosted.org/packages/40/c9/338fce2770f5c0229cc171c6fdf0f780f7a529df370a70bc2120bfebc1e1/aiohttp-3.9.2-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a1e19b658c177a0d3400fdca41a73253ad3f88a59a914479c689d4543b06cedb",
"md5": "b1fd407addbdbfde7c8ca4c9eb1dbe57",
"sha256": "328918a6c2835861ff7afa8c6d2c70c35fdaf996205d5932351bdd952f33fa2f"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "b1fd407addbdbfde7c8ca4c9eb1dbe57",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 367582,
"upload_time": "2024-01-28T21:49:14",
"upload_time_iso_8601": "2024-01-28T21:49:14.004307Z",
"url": "https://files.pythonhosted.org/packages/a1/e1/9b658c177a0d3400fdca41a73253ad3f88a59a914479c689d4543b06cedb/aiohttp-3.9.2-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "99c981ef2d60ac57765ed73805b6a7ac78139652cf2cfa2d08fc73c0f3288dc6",
"md5": "95e776942aa2fe1345bd97cf350f3cc3",
"sha256": "5264d7327c9464786f74e4ec9342afbbb6ee70dfbb2ec9e3dfce7a54c8043aa3"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "95e776942aa2fe1345bd97cf350f3cc3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 595665,
"upload_time": "2024-01-28T21:49:16",
"upload_time_iso_8601": "2024-01-28T21:49:16.442672Z",
"url": "https://files.pythonhosted.org/packages/99/c9/81ef2d60ac57765ed73805b6a7ac78139652cf2cfa2d08fc73c0f3288dc6/aiohttp-3.9.2-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "92a2183e4a4cac870232fb1458a068f4cb0482889f576bccc1dbe087560049a9",
"md5": "c65f515f4807b57f8cadf948b6020f8c",
"sha256": "07205ae0015e05c78b3288c1517afa000823a678a41594b3fdc870878d645305"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "c65f515f4807b57f8cadf948b6020f8c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 398444,
"upload_time": "2024-01-28T21:49:18",
"upload_time_iso_8601": "2024-01-28T21:49:18.991659Z",
"url": "https://files.pythonhosted.org/packages/92/a2/183e4a4cac870232fb1458a068f4cb0482889f576bccc1dbe087560049a9/aiohttp-3.9.2-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "559d556d0768552d0326def5118d8ba95fbabf4a7bddff9fd59359fdf6608335",
"md5": "0516cf421d741aca27c67090405c5a1b",
"sha256": "ae0a1e638cffc3ec4d4784b8b4fd1cf28968febc4bd2718ffa25b99b96a741bd"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0516cf421d741aca27c67090405c5a1b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 387847,
"upload_time": "2024-01-28T21:49:21",
"upload_time_iso_8601": "2024-01-28T21:49:21.862084Z",
"url": "https://files.pythonhosted.org/packages/55/9d/556d0768552d0326def5118d8ba95fbabf4a7bddff9fd59359fdf6608335/aiohttp-3.9.2-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e5407d13141c3935511e253f1c20911f69530cb0dd380c433693cb356659227",
"md5": "1bac618e616d051f50d41276c3258853",
"sha256": "d43302a30ba1166325974858e6ef31727a23bdd12db40e725bec0f759abce505"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1bac618e616d051f50d41276c3258853",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1237316,
"upload_time": "2024-01-28T21:49:25",
"upload_time_iso_8601": "2024-01-28T21:49:25.283583Z",
"url": "https://files.pythonhosted.org/packages/4e/54/07d13141c3935511e253f1c20911f69530cb0dd380c433693cb356659227/aiohttp-3.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a7296ad63a2f0e1563c33ad8d714a3956d913522fe8badc3fad167981692d83b",
"md5": "d473acc8b7442c27159cc14aa06cf9ef",
"sha256": "16a967685907003765855999af11a79b24e70b34dc710f77a38d21cd9fc4f5fe"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "d473acc8b7442c27159cc14aa06cf9ef",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1272816,
"upload_time": "2024-01-28T21:49:28",
"upload_time_iso_8601": "2024-01-28T21:49:28.322673Z",
"url": "https://files.pythonhosted.org/packages/a7/29/6ad63a2f0e1563c33ad8d714a3956d913522fe8badc3fad167981692d83b/aiohttp-3.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "da911a0e2842e4ce0c308e280d15ca9eb4d956d2b987dd5310bf495d129045c6",
"md5": "21137b3376b4ec95d43043b034ded451",
"sha256": "6fa3ee92cd441d5c2d07ca88d7a9cef50f7ec975f0117cd0c62018022a184308"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "21137b3376b4ec95d43043b034ded451",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1308988,
"upload_time": "2024-01-28T21:49:30",
"upload_time_iso_8601": "2024-01-28T21:49:30.923478Z",
"url": "https://files.pythonhosted.org/packages/da/91/1a0e2842e4ce0c308e280d15ca9eb4d956d2b987dd5310bf495d129045c6/aiohttp-3.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d372b250951a57e1cd05c071e0da926ab5649e6793d9f887ec6631cb57bc0880",
"md5": "eda8f52a0ea4c9085fbcf7c2d0779fb8",
"sha256": "0b500c5ad9c07639d48615a770f49618130e61be36608fc9bc2d9bae31732b8f"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "eda8f52a0ea4c9085fbcf7c2d0779fb8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1229362,
"upload_time": "2024-01-28T21:49:33",
"upload_time_iso_8601": "2024-01-28T21:49:33.634113Z",
"url": "https://files.pythonhosted.org/packages/d3/72/b250951a57e1cd05c071e0da926ab5649e6793d9f887ec6631cb57bc0880/aiohttp-3.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cfb4e85a5c6a572e94f8144ae19d3b70f27371fe0dfd3ea2c4b91a34e43e5af1",
"md5": "5c6069bb000bc0d0dd7253d988d2bf51",
"sha256": "c07327b368745b1ce2393ae9e1aafed7073d9199e1dcba14e035cc646c7941bf"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "5c6069bb000bc0d0dd7253d988d2bf51",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1202236,
"upload_time": "2024-01-28T21:49:36",
"upload_time_iso_8601": "2024-01-28T21:49:36.027469Z",
"url": "https://files.pythonhosted.org/packages/cf/b4/e85a5c6a572e94f8144ae19d3b70f27371fe0dfd3ea2c4b91a34e43e5af1/aiohttp-3.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0fe0fdbceb5b479e67ab177aa3f1ae3b2da0c6234c3351a6bae20740f9647d17",
"md5": "b38e491d4999cb69c132dac584d85fe0",
"sha256": "cc7d6502c23a0ec109687bf31909b3fb7b196faf198f8cff68c81b49eb316ea9"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "b38e491d4999cb69c132dac584d85fe0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1251889,
"upload_time": "2024-01-28T21:49:38",
"upload_time_iso_8601": "2024-01-28T21:49:38.729196Z",
"url": "https://files.pythonhosted.org/packages/0f/e0/fdbceb5b479e67ab177aa3f1ae3b2da0c6234c3351a6bae20740f9647d17/aiohttp-3.9.2-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "df1d586f8dc8462d69d92197019c24b8258a010f3356b631efec62c26b678a27",
"md5": "c972a2a7359dabe9f717ffdad6ab9946",
"sha256": "07be2be7071723c3509ab5c08108d3a74f2181d4964e869f2504aaab68f8d3e8"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "c972a2a7359dabe9f717ffdad6ab9946",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1211619,
"upload_time": "2024-01-28T21:49:42",
"upload_time_iso_8601": "2024-01-28T21:49:42.117377Z",
"url": "https://files.pythonhosted.org/packages/df/1d/586f8dc8462d69d92197019c24b8258a010f3356b631efec62c26b678a27/aiohttp-3.9.2-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eea7ab387489a72f4957951e9b299c7dfdcdd56fcc9afa1a028c328c34c408f0",
"md5": "14a3814fd5b461568fd01c1048bec84c",
"sha256": "122468f6fee5fcbe67cb07014a08c195b3d4c41ff71e7b5160a7bcc41d585a5f"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp39-cp39-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "14a3814fd5b461568fd01c1048bec84c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1279636,
"upload_time": "2024-01-28T21:49:44",
"upload_time_iso_8601": "2024-01-28T21:49:44.369573Z",
"url": "https://files.pythonhosted.org/packages/ee/a7/ab387489a72f4957951e9b299c7dfdcdd56fcc9afa1a028c328c34c408f0/aiohttp-3.9.2-cp39-cp39-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "11e25af38b95f0c2a392f21d2333b4c009482d4cb93761e9cea9dd6cbfeebafc",
"md5": "f2406146054b15263d058f76d204e703",
"sha256": "00a9abcea793c81e7f8778ca195a1714a64f6d7436c4c0bb168ad2a212627000"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp39-cp39-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "f2406146054b15263d058f76d204e703",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1321504,
"upload_time": "2024-01-28T21:49:47",
"upload_time_iso_8601": "2024-01-28T21:49:47.525111Z",
"url": "https://files.pythonhosted.org/packages/11/e2/5af38b95f0c2a392f21d2333b4c009482d4cb93761e9cea9dd6cbfeebafc/aiohttp-3.9.2-cp39-cp39-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "98097bfc68d72ff32a678486dcead6991bb166e0f8d97572cbc19fbfc86ec0fa",
"md5": "c75048938cc436fbb19721c34f5c38f1",
"sha256": "7a9825fdd64ecac5c670234d80bb52bdcaa4139d1f839165f548208b3779c6c6"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "c75048938cc436fbb19721c34f5c38f1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1242320,
"upload_time": "2024-01-28T21:49:50",
"upload_time_iso_8601": "2024-01-28T21:49:50.577440Z",
"url": "https://files.pythonhosted.org/packages/98/09/7bfc68d72ff32a678486dcead6991bb166e0f8d97572cbc19fbfc86ec0fa/aiohttp-3.9.2-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f8c5a93dad7f1e908b04ca07bff44768ebee6d736cdaa51fa4f3ab473429f4af",
"md5": "ca24cadb8b6c3450e99ff9a14c1859f0",
"sha256": "5422cd9a4a00f24c7244e1b15aa9b87935c85fb6a00c8ac9b2527b38627a9211"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "ca24cadb8b6c3450e99ff9a14c1859f0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 346647,
"upload_time": "2024-01-28T21:49:53",
"upload_time_iso_8601": "2024-01-28T21:49:53.606816Z",
"url": "https://files.pythonhosted.org/packages/f8/c5/a93dad7f1e908b04ca07bff44768ebee6d736cdaa51fa4f3ab473429f4af/aiohttp-3.9.2-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a74453b4e860768a2eb6e6b1b8542b9c5bd4653d66c927fbb98684b4d74cd0a7",
"md5": "a70fded3f198579e07ccebdfcabd5f08",
"sha256": "7d579dcd5d82a86a46f725458418458fa43686f6a7b252f2966d359033ffc8ab"
},
"downloads": -1,
"filename": "aiohttp-3.9.2-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "a70fded3f198579e07ccebdfcabd5f08",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 365982,
"upload_time": "2024-01-28T21:49:55",
"upload_time_iso_8601": "2024-01-28T21:49:55.962588Z",
"url": "https://files.pythonhosted.org/packages/a7/44/53b4e860768a2eb6e6b1b8542b9c5bd4653d66c927fbb98684b4d74cd0a7/aiohttp-3.9.2-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "072f27c9ae85646de72784529a86d2a98c7cfae4ff9eab0004becf47da66c7ec",
"md5": "2a21f8fa42639d2904323aeb514a2db4",
"sha256": "b0ad0a5e86ce73f5368a164c10ada10504bf91869c05ab75d982c6048217fbf7"
},
"downloads": -1,
"filename": "aiohttp-3.9.2.tar.gz",
"has_sig": false,
"md5_digest": "2a21f8fa42639d2904323aeb514a2db4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 7499640,
"upload_time": "2024-01-28T21:49:58",
"upload_time_iso_8601": "2024-01-28T21:49:58.461591Z",
"url": "https://files.pythonhosted.org/packages/07/2f/27c9ae85646de72784529a86d2a98c7cfae4ff9eab0004becf47da66c7ec/aiohttp-3.9.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.9.3": [
{
"comment_text": "",
"digests": {
"blake2b_256": "0c032cac72f64b2853397dd697aa4957755b85bfd3acc0ffe898571060f1db83",
"md5": "5cfc1fd54d05a5f919844057f9559b7d",
"sha256": "939677b61f9d72a4fa2a042a5eee2a99a24001a67c13da113b2e30396567db54"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "5cfc1fd54d05a5f919844057f9559b7d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 594275,
"upload_time": "2024-01-29T20:39:36",
"upload_time_iso_8601": "2024-01-29T20:39:36.269212Z",
"url": "https://files.pythonhosted.org/packages/0c/03/2cac72f64b2853397dd697aa4957755b85bfd3acc0ffe898571060f1db83/aiohttp-3.9.3-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9a41d6ce776c9c22f402ad0b0cfbdc70a630512229854b0043bd0dbe6566d75d",
"md5": "43c2c3a869d30fcf2894ca4cc86936da",
"sha256": "1f5cd333fcf7590a18334c90f8c9147c837a6ec8a178e88d90a9b96ea03194cc"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "43c2c3a869d30fcf2894ca4cc86936da",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 397908,
"upload_time": "2024-01-29T20:39:40",
"upload_time_iso_8601": "2024-01-29T20:39:40.271882Z",
"url": "https://files.pythonhosted.org/packages/9a/41/d6ce776c9c22f402ad0b0cfbdc70a630512229854b0043bd0dbe6566d75d/aiohttp-3.9.3-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7e6e6c0486fdd8918f9818e82b30898cb77ff0debccc4b09db5d9a939ed7a075",
"md5": "2368ff35438fc9cc11b2cf724b6c6cf2",
"sha256": "82e6aa28dd46374f72093eda8bcd142f7771ee1eb9d1e223ff0fa7177a96b4a5"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2368ff35438fc9cc11b2cf724b6c6cf2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 387382,
"upload_time": "2024-01-29T20:39:42",
"upload_time_iso_8601": "2024-01-29T20:39:42.452935Z",
"url": "https://files.pythonhosted.org/packages/7e/6e/6c0486fdd8918f9818e82b30898cb77ff0debccc4b09db5d9a939ed7a075/aiohttp-3.9.3-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9d79b34562b6cce04322023112f1984380359d78bd043b8ef822c2f356b7a047",
"md5": "b916f108abd1208defe4ff48b8630025",
"sha256": "f56455b0c2c7cc3b0c584815264461d07b177f903a04481dfc33e08a89f0c26b"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b916f108abd1208defe4ff48b8630025",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1233982,
"upload_time": "2024-01-29T20:39:44",
"upload_time_iso_8601": "2024-01-29T20:39:44.936593Z",
"url": "https://files.pythonhosted.org/packages/9d/79/b34562b6cce04322023112f1984380359d78bd043b8ef822c2f356b7a047/aiohttp-3.9.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6d8a46ba295c98b24779370580b4450f80f35a1ae9e4bc9f9783ea1043d33395",
"md5": "4039196fc61be81bbaf74ba8b88f63b1",
"sha256": "bca77a198bb6e69795ef2f09a5f4c12758487f83f33d63acde5f0d4919815768"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "4039196fc61be81bbaf74ba8b88f63b1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1265965,
"upload_time": "2024-01-29T20:39:47",
"upload_time_iso_8601": "2024-01-29T20:39:47.080074Z",
"url": "https://files.pythonhosted.org/packages/6d/8a/46ba295c98b24779370580b4450f80f35a1ae9e4bc9f9783ea1043d33395/aiohttp-3.9.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "436886874ff80e74c2e8308af3d80345fd624b5b26197a914aa9a85cfaf5b025",
"md5": "f582363dbf104ffe4c49b0483d167af1",
"sha256": "e083c285857b78ee21a96ba1eb1b5339733c3563f72980728ca2b08b53826ca5"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "f582363dbf104ffe4c49b0483d167af1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1301700,
"upload_time": "2024-01-29T20:39:51",
"upload_time_iso_8601": "2024-01-29T20:39:51.040379Z",
"url": "https://files.pythonhosted.org/packages/43/68/86874ff80e74c2e8308af3d80345fd624b5b26197a914aa9a85cfaf5b025/aiohttp-3.9.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9340d3decda219ebd5410eba627601d537ec3782efbcadba308e9ce381cc0b71",
"md5": "b5eb4f886a439e4099e1ff991e2c1a6d",
"sha256": "ab40e6251c3873d86ea9b30a1ac6d7478c09277b32e14745d0d3c6e76e3c7e29"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b5eb4f886a439e4099e1ff991e2c1a6d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1226319,
"upload_time": "2024-01-29T20:39:53",
"upload_time_iso_8601": "2024-01-29T20:39:53.368098Z",
"url": "https://files.pythonhosted.org/packages/93/40/d3decda219ebd5410eba627601d537ec3782efbcadba308e9ce381cc0b71/aiohttp-3.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8674b506f01485dba1c4298700156b915f3ba475be823a7b31056d40a9ac0daa",
"md5": "e463644c4ab9086c76667ebbf94f1293",
"sha256": "df822ee7feaaeffb99c1a9e5e608800bd8eda6e5f18f5cfb0dc7eeb2eaa6bbec"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e463644c4ab9086c76667ebbf94f1293",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1199804,
"upload_time": "2024-01-29T20:39:56",
"upload_time_iso_8601": "2024-01-29T20:39:56.350049Z",
"url": "https://files.pythonhosted.org/packages/86/74/b506f01485dba1c4298700156b915f3ba475be823a7b31056d40a9ac0daa/aiohttp-3.9.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "18024156ed2edca212041c7a5334b9520ff5a39e40648177e2f0ef13cac2b555",
"md5": "163ad0ff3eea9d902a30923734ab2d75",
"sha256": "acef0899fea7492145d2bbaaaec7b345c87753168589cc7faf0afec9afe9b747"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "163ad0ff3eea9d902a30923734ab2d75",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1248258,
"upload_time": "2024-01-29T20:39:58",
"upload_time_iso_8601": "2024-01-29T20:39:58.971542Z",
"url": "https://files.pythonhosted.org/packages/18/02/4156ed2edca212041c7a5334b9520ff5a39e40648177e2f0ef13cac2b555/aiohttp-3.9.3-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f54e41143834b3fd5b89b404c76b5a71496bca96fbd8587c1e42a8f2b2efb8b3",
"md5": "c4c55fdf0e8652f560fa5bf0b962af2e",
"sha256": "cd73265a9e5ea618014802ab01babf1940cecb90c9762d8b9e7d2cc1e1969ec6"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "c4c55fdf0e8652f560fa5bf0b962af2e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1205883,
"upload_time": "2024-01-29T20:40:01",
"upload_time_iso_8601": "2024-01-29T20:40:01.446953Z",
"url": "https://files.pythonhosted.org/packages/f5/4e/41143834b3fd5b89b404c76b5a71496bca96fbd8587c1e42a8f2b2efb8b3/aiohttp-3.9.3-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6356c1d39b27114595beaea776e164dbb793cf64c16331ba00cd0dc7cf0542f2",
"md5": "436c85364e729cbc646a4d8acb137f0c",
"sha256": "a78ed8a53a1221393d9637c01870248a6f4ea5b214a59a92a36f18151739452c"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp310-cp310-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "436c85364e729cbc646a4d8acb137f0c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1274519,
"upload_time": "2024-01-29T20:40:04",
"upload_time_iso_8601": "2024-01-29T20:40:04.772996Z",
"url": "https://files.pythonhosted.org/packages/63/56/c1d39b27114595beaea776e164dbb793cf64c16331ba00cd0dc7cf0542f2/aiohttp-3.9.3-cp310-cp310-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4ba08b50667a858f3e4f3fec2d471aa9e618783c0450b980e7a5bf617c1cb1f3",
"md5": "08b5df377467f03e70bfeeb3c0eb09d4",
"sha256": "6b0e029353361f1746bac2e4cc19b32f972ec03f0f943b390c4ab3371840aabf"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp310-cp310-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "08b5df377467f03e70bfeeb3c0eb09d4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1317696,
"upload_time": "2024-01-29T20:40:07",
"upload_time_iso_8601": "2024-01-29T20:40:07.723262Z",
"url": "https://files.pythonhosted.org/packages/4b/a0/8b50667a858f3e4f3fec2d471aa9e618783c0450b980e7a5bf617c1cb1f3/aiohttp-3.9.3-cp310-cp310-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1f410852b954464d853cf315e60f096d3ff6a74aff75ad5f3388c06695d5d37f",
"md5": "a29e8920edeaf828d3eb09072b12ebc8",
"sha256": "7cf5c9458e1e90e3c390c2639f1017a0379a99a94fdfad3a1fd966a2874bba52"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "a29e8920edeaf828d3eb09072b12ebc8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1239113,
"upload_time": "2024-01-29T20:40:10",
"upload_time_iso_8601": "2024-01-29T20:40:10.032764Z",
"url": "https://files.pythonhosted.org/packages/1f/41/0852b954464d853cf315e60f096d3ff6a74aff75ad5f3388c06695d5d37f/aiohttp-3.9.3-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7f6e35a29a56bd1da6b035708c402a88ff6cec768eec080fab79d6ec428e62ea",
"md5": "4708974e7ccd37de70310a42c311e6ce",
"sha256": "3e59c23c52765951b69ec45ddbbc9403a8761ee6f57253250c6e1536cacc758b"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "4708974e7ccd37de70310a42c311e6ce",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 345936,
"upload_time": "2024-01-29T20:40:12",
"upload_time_iso_8601": "2024-01-29T20:40:12.651103Z",
"url": "https://files.pythonhosted.org/packages/7f/6e/35a29a56bd1da6b035708c402a88ff6cec768eec080fab79d6ec428e62ea/aiohttp-3.9.3-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "542d746a93808c2d9d247b554155a1576bf7ed0e0029e8cfb667a9007e2d53b0",
"md5": "8c59f224ccb4fff85e3b341100108b7a",
"sha256": "055ce4f74b82551678291473f66dc9fb9048a50d8324278751926ff0ae7715e5"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "8c59f224ccb4fff85e3b341100108b7a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 365199,
"upload_time": "2024-01-29T20:40:15",
"upload_time_iso_8601": "2024-01-29T20:40:15.296611Z",
"url": "https://files.pythonhosted.org/packages/54/2d/746a93808c2d9d247b554155a1576bf7ed0e0029e8cfb667a9007e2d53b0/aiohttp-3.9.3-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "19bccfb51d97646cd67cebd90f0b5b0bebe063ebc8efd93e888b0aed9d74a549",
"md5": "282b538c83c0ee4b7b41eccfe4709aae",
"sha256": "6b88f9386ff1ad91ace19d2a1c0225896e28815ee09fc6a8932fded8cda97c3d"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "282b538c83c0ee4b7b41eccfe4709aae",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 595014,
"upload_time": "2024-01-29T20:40:17",
"upload_time_iso_8601": "2024-01-29T20:40:17.881975Z",
"url": "https://files.pythonhosted.org/packages/19/bc/cfb51d97646cd67cebd90f0b5b0bebe063ebc8efd93e888b0aed9d74a549/aiohttp-3.9.3-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "46579959621366c272f05c95f6cf795ebde9edc22c718e61bae1f565a4832b86",
"md5": "6d8f9930adf24d5d1b2cebd62f654a70",
"sha256": "c46956ed82961e31557b6857a5ca153c67e5476972e5f7190015018760938da2"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "6d8f9930adf24d5d1b2cebd62f654a70",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 398486,
"upload_time": "2024-01-29T20:40:20",
"upload_time_iso_8601": "2024-01-29T20:40:20.882846Z",
"url": "https://files.pythonhosted.org/packages/46/57/9959621366c272f05c95f6cf795ebde9edc22c718e61bae1f565a4832b86/aiohttp-3.9.3-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d3b0efb74d5f92a460c774e0254b3109c2d00fd3a1553f98363abb2b25cac9a3",
"md5": "cf62e749e07721ea25c07fbe658d2783",
"sha256": "07b837ef0d2f252f96009e9b8435ec1fef68ef8b1461933253d318748ec1acdc"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "cf62e749e07721ea25c07fbe658d2783",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 387713,
"upload_time": "2024-01-29T20:40:23",
"upload_time_iso_8601": "2024-01-29T20:40:23.439466Z",
"url": "https://files.pythonhosted.org/packages/d3/b0/efb74d5f92a460c774e0254b3109c2d00fd3a1553f98363abb2b25cac9a3/aiohttp-3.9.3-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3d906ea3249e4570df575e1aa348b37b7ac1074482c2fab46a1ee84392cbc02e",
"md5": "8913d9de2e060414f5277e478d9f1fa6",
"sha256": "dad46e6f620574b3b4801c68255492e0159d1712271cc99d8bdf35f2043ec266"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8913d9de2e060414f5277e478d9f1fa6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1310813,
"upload_time": "2024-01-29T20:40:26",
"upload_time_iso_8601": "2024-01-29T20:40:26.027914Z",
"url": "https://files.pythonhosted.org/packages/3d/90/6ea3249e4570df575e1aa348b37b7ac1074482c2fab46a1ee84392cbc02e/aiohttp-3.9.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "be5cabb04824e97346a406349a6be4c8ea0a981b0d8bf472ee417ef83b5b5601",
"md5": "0ac7d53d826092d20cc6d40d13f70674",
"sha256": "5ed3e046ea7b14938112ccd53d91c1539af3e6679b222f9469981e3dac7ba1ce"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "0ac7d53d826092d20cc6d40d13f70674",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1347372,
"upload_time": "2024-01-29T20:40:29",
"upload_time_iso_8601": "2024-01-29T20:40:29.198506Z",
"url": "https://files.pythonhosted.org/packages/be/5c/abb04824e97346a406349a6be4c8ea0a981b0d8bf472ee417ef83b5b5601/aiohttp-3.9.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "101193c1f592e555f3db46226674b8c84b7c84c6fc19a0efdc8af9185a8e0fc8",
"md5": "dea8aad0dafb0a218e9b5d425d30c9f4",
"sha256": "039df344b45ae0b34ac885ab5b53940b174530d4dd8a14ed8b0e2155b9dddccb"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "dea8aad0dafb0a218e9b5d425d30c9f4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1384337,
"upload_time": "2024-01-29T20:40:31",
"upload_time_iso_8601": "2024-01-29T20:40:31.575260Z",
"url": "https://files.pythonhosted.org/packages/10/11/93c1f592e555f3db46226674b8c84b7c84c6fc19a0efdc8af9185a8e0fc8/aiohttp-3.9.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "84bb74c9f32e1a76fab04b54ed6cd4b0dc4a07bd9dc6f3bb37f630149a9c3068",
"md5": "4145640bceb737f5f53f1f6b277dfa72",
"sha256": "7943c414d3a8d9235f5f15c22ace69787c140c80b718dcd57caaade95f7cd93b"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4145640bceb737f5f53f1f6b277dfa72",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1295219,
"upload_time": "2024-01-29T20:40:33",
"upload_time_iso_8601": "2024-01-29T20:40:33.868458Z",
"url": "https://files.pythonhosted.org/packages/84/bb/74c9f32e1a76fab04b54ed6cd4b0dc4a07bd9dc6f3bb37f630149a9c3068/aiohttp-3.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5100946624cb603d4433fab1f1f708aca9dd178349f9fe7956bd8eb4b08a377d",
"md5": "4f54289a1ae02bae13d3f279690bd6b5",
"sha256": "84871a243359bb42c12728f04d181a389718710129b36b6aad0fc4655a7647d4"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "4f54289a1ae02bae13d3f279690bd6b5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1255557,
"upload_time": "2024-01-29T20:40:36",
"upload_time_iso_8601": "2024-01-29T20:40:36.194529Z",
"url": "https://files.pythonhosted.org/packages/51/00/946624cb603d4433fab1f1f708aca9dd178349f9fe7956bd8eb4b08a377d/aiohttp-3.9.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b7e0661d5b21fd9ca5bfb7f89373430298ed6c0c1e84270a3f8fda5172a95700",
"md5": "2df5aa6a51701f941b87a44c327f057c",
"sha256": "5eafe2c065df5401ba06821b9a054d9cb2848867f3c59801b5d07a0be3a380ae"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "2df5aa6a51701f941b87a44c327f057c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1316527,
"upload_time": "2024-01-29T20:40:39",
"upload_time_iso_8601": "2024-01-29T20:40:39.066700Z",
"url": "https://files.pythonhosted.org/packages/b7/e0/661d5b21fd9ca5bfb7f89373430298ed6c0c1e84270a3f8fda5172a95700/aiohttp-3.9.3-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1d44b0df11b0dc36ca2880c9a3a2a73f084290dafdf7451f43f6bce1d25a0925",
"md5": "2d1f131da781772813cc97285379dacb",
"sha256": "9d3c9b50f19704552f23b4eaea1fc082fdd82c63429a6506446cbd8737823da3"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "2d1f131da781772813cc97285379dacb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1264946,
"upload_time": "2024-01-29T20:40:41",
"upload_time_iso_8601": "2024-01-29T20:40:41.551827Z",
"url": "https://files.pythonhosted.org/packages/1d/44/b0df11b0dc36ca2880c9a3a2a73f084290dafdf7451f43f6bce1d25a0925/aiohttp-3.9.3-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6017bf9e80ec684ba8576dd3577a6562bff40c9bac9e4068f81aa3b9e66b008e",
"md5": "aab0bbab20d8cd97992311a50cf0f54e",
"sha256": "f033d80bc6283092613882dfe40419c6a6a1527e04fc69350e87a9df02bbc283"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp311-cp311-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "aab0bbab20d8cd97992311a50cf0f54e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1344296,
"upload_time": "2024-01-29T20:40:43",
"upload_time_iso_8601": "2024-01-29T20:40:43.732001Z",
"url": "https://files.pythonhosted.org/packages/60/17/bf9e80ec684ba8576dd3577a6562bff40c9bac9e4068f81aa3b9e66b008e/aiohttp-3.9.3-cp311-cp311-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aeb134f3deb33ee7f5c573076021b581b875c7e364973d1852b3207265269f78",
"md5": "ba1639930e1a8c10f427d0fbf98811a9",
"sha256": "2c895a656dd7e061b2fd6bb77d971cc38f2afc277229ce7dd3552de8313a483e"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp311-cp311-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "ba1639930e1a8c10f427d0fbf98811a9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1386936,
"upload_time": "2024-01-29T20:40:46",
"upload_time_iso_8601": "2024-01-29T20:40:46.104266Z",
"url": "https://files.pythonhosted.org/packages/ae/b1/34f3deb33ee7f5c573076021b581b875c7e364973d1852b3207265269f78/aiohttp-3.9.3-cp311-cp311-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "42ea720d6d99462d91c7ff8a1d5602fbad2c1e9af232014fb8ac07611a5e54e3",
"md5": "ef01278956e1ee5b38925dc1cd2e699b",
"sha256": "1f5a71d25cd8106eab05f8704cd9167b6e5187bcdf8f090a66c6d88b634802b4"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "ef01278956e1ee5b38925dc1cd2e699b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1300013,
"upload_time": "2024-01-29T20:40:48",
"upload_time_iso_8601": "2024-01-29T20:40:48.076461Z",
"url": "https://files.pythonhosted.org/packages/42/ea/720d6d99462d91c7ff8a1d5602fbad2c1e9af232014fb8ac07611a5e54e3/aiohttp-3.9.3-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a889f35fbdcd20166eb2ab39de874712310866e2e8349c4a4dfc0b82fe5b8a67",
"md5": "676743616974906a188bcb9212a790ca",
"sha256": "50fca156d718f8ced687a373f9e140c1bb765ca16e3d6f4fe116e3df7c05b2c5"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "676743616974906a188bcb9212a790ca",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 345188,
"upload_time": "2024-01-29T20:40:50",
"upload_time_iso_8601": "2024-01-29T20:40:50.389344Z",
"url": "https://files.pythonhosted.org/packages/a8/89/f35fbdcd20166eb2ab39de874712310866e2e8349c4a4dfc0b82fe5b8a67/aiohttp-3.9.3-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a359cd5e456835df696e6307c8b045acfada1557ac822d527c27bb33c1308091",
"md5": "fa49d8f85af11886c55600b149028175",
"sha256": "5fe9ce6c09668063b8447f85d43b8d1c4e5d3d7e92c63173e6180b2ac5d46dd8"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "fa49d8f85af11886c55600b149028175",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 365345,
"upload_time": "2024-01-29T20:40:52",
"upload_time_iso_8601": "2024-01-29T20:40:52.337596Z",
"url": "https://files.pythonhosted.org/packages/a3/59/cd5e456835df696e6307c8b045acfada1557ac822d527c27bb33c1308091/aiohttp-3.9.3-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "02feb15ae84c4641ff829154d7a6646c4ba4612208ab28229c90bf0844e59e18",
"md5": "1b7328d50b6a688dbc9d55435aa1127d",
"sha256": "38a19bc3b686ad55804ae931012f78f7a534cce165d089a2059f658f6c91fa60"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp312-cp312-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "1b7328d50b6a688dbc9d55435aa1127d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 592525,
"upload_time": "2024-01-29T20:40:55",
"upload_time_iso_8601": "2024-01-29T20:40:55.067122Z",
"url": "https://files.pythonhosted.org/packages/02/fe/b15ae84c4641ff829154d7a6646c4ba4612208ab28229c90bf0844e59e18/aiohttp-3.9.3-cp312-cp312-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5f75b3f077038cb3a8d83cd4d128e23d432bd40b6efd79e6f4361551f3c92e5e",
"md5": "59275217aa39b4dce3262bdb0a04161f",
"sha256": "770d015888c2a598b377bd2f663adfd947d78c0124cfe7b959e1ef39f5b13869"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "59275217aa39b4dce3262bdb0a04161f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 393715,
"upload_time": "2024-01-29T20:40:57",
"upload_time_iso_8601": "2024-01-29T20:40:57.813464Z",
"url": "https://files.pythonhosted.org/packages/5f/75/b3f077038cb3a8d83cd4d128e23d432bd40b6efd79e6f4361551f3c92e5e/aiohttp-3.9.3-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "98e46e56f3d2a9404192ed46ad8edf7c676aafeb8f342ca134d69fed920a59f3",
"md5": "2d3907289fe77eef61e0724b3b9c0dfa",
"sha256": "ee43080e75fc92bf36219926c8e6de497f9b247301bbf88c5c7593d931426679"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2d3907289fe77eef61e0724b3b9c0dfa",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 389731,
"upload_time": "2024-01-29T20:40:59",
"upload_time_iso_8601": "2024-01-29T20:40:59.765413Z",
"url": "https://files.pythonhosted.org/packages/98/e4/6e56f3d2a9404192ed46ad8edf7c676aafeb8f342ca134d69fed920a59f3/aiohttp-3.9.3-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e91864c65a8ead659bae24a47a8197195be4340f26260e4363bd4924346b9343",
"md5": "5bf8773f83ca1102038e7c82e6fe17e5",
"sha256": "52df73f14ed99cee84865b95a3d9e044f226320a87af208f068ecc33e0c35b96"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5bf8773f83ca1102038e7c82e6fe17e5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1319968,
"upload_time": "2024-01-29T20:41:01",
"upload_time_iso_8601": "2024-01-29T20:41:01.873727Z",
"url": "https://files.pythonhosted.org/packages/e9/18/64c65a8ead659bae24a47a8197195be4340f26260e4363bd4924346b9343/aiohttp-3.9.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6f8258ceac3a641202957466a532e9f92f439c6a71b74a4ffcc1919e270703d2",
"md5": "4c43e1ad4acfa07039b88bb3dd46f094",
"sha256": "dc9b311743a78043b26ffaeeb9715dc360335e5517832f5a8e339f8a43581e4d"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "4c43e1ad4acfa07039b88bb3dd46f094",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1360141,
"upload_time": "2024-01-29T20:41:04",
"upload_time_iso_8601": "2024-01-29T20:41:04.746158Z",
"url": "https://files.pythonhosted.org/packages/6f/82/58ceac3a641202957466a532e9f92f439c6a71b74a4ffcc1919e270703d2/aiohttp-3.9.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "efd16aea10c955896329402950407823625ab3a549b99e9c1e97fc61e5622b8a",
"md5": "80d7b6a4bdb94431389876674513b824",
"sha256": "b955ed993491f1a5da7f92e98d5dad3c1e14dc175f74517c4e610b1f2456fb11"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "80d7b6a4bdb94431389876674513b824",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1401903,
"upload_time": "2024-01-29T20:41:07",
"upload_time_iso_8601": "2024-01-29T20:41:07.176368Z",
"url": "https://files.pythonhosted.org/packages/ef/d1/6aea10c955896329402950407823625ab3a549b99e9c1e97fc61e5622b8a/aiohttp-3.9.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fd4f5c6041fca616a1cafa4914f630d6898085afe4683be5387a4054da55f52a",
"md5": "6ab9e39452d0f7876e6710e4b95e26e2",
"sha256": "504b6981675ace64c28bf4a05a508af5cde526e36492c98916127f5a02354d53"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6ab9e39452d0f7876e6710e4b95e26e2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1315339,
"upload_time": "2024-01-29T20:41:09",
"upload_time_iso_8601": "2024-01-29T20:41:09.535393Z",
"url": "https://files.pythonhosted.org/packages/fd/4f/5c6041fca616a1cafa4914f630d6898085afe4683be5387a4054da55f52a/aiohttp-3.9.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e2114bd14dee3b507dbe20413e972c10accb79de8390ddac5154ef076c1ca31a",
"md5": "71983ea3efdc1c48499a66b9a2161a4d",
"sha256": "a6fe5571784af92b6bc2fda8d1925cccdf24642d49546d3144948a6a1ed58ca5"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "71983ea3efdc1c48499a66b9a2161a4d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1267309,
"upload_time": "2024-01-29T20:41:12",
"upload_time_iso_8601": "2024-01-29T20:41:12.144622Z",
"url": "https://files.pythonhosted.org/packages/e2/11/4bd14dee3b507dbe20413e972c10accb79de8390ddac5154ef076c1ca31a/aiohttp-3.9.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0e91fdd26fc726d7ece6bf735a8613893e14dea5de8cc90757de4a412fe89355",
"md5": "958e89d7f1b1a745be2f9a87df695966",
"sha256": "ba39e9c8627edc56544c8628cc180d88605df3892beeb2b94c9bc857774848ca"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "958e89d7f1b1a745be2f9a87df695966",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1321904,
"upload_time": "2024-01-29T20:41:14",
"upload_time_iso_8601": "2024-01-29T20:41:14.522700Z",
"url": "https://files.pythonhosted.org/packages/0e/91/fdd26fc726d7ece6bf735a8613893e14dea5de8cc90757de4a412fe89355/aiohttp-3.9.3-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "03200a43a00edd6a401369ceb38bfe07a67823337dd26102e760d3230e0dedcf",
"md5": "3f2ff606ef5c6cd12d0654e5027454d9",
"sha256": "e5e46b578c0e9db71d04c4b506a2121c0cb371dd89af17a0586ff6769d4c58c1"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "3f2ff606ef5c6cd12d0654e5027454d9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1268236,
"upload_time": "2024-01-29T20:41:17",
"upload_time_iso_8601": "2024-01-29T20:41:17.869335Z",
"url": "https://files.pythonhosted.org/packages/03/20/0a43a00edd6a401369ceb38bfe07a67823337dd26102e760d3230e0dedcf/aiohttp-3.9.3-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "72091f36849c36b7929dd09e013c637808fcaf908a0aa543388c2903dbb68bba",
"md5": "b40a520dd70e8a48167c886b65f5a647",
"sha256": "938a9653e1e0c592053f815f7028e41a3062e902095e5a7dc84617c87267ebd5"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp312-cp312-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "b40a520dd70e8a48167c886b65f5a647",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1348120,
"upload_time": "2024-01-29T20:41:20",
"upload_time_iso_8601": "2024-01-29T20:41:20.480417Z",
"url": "https://files.pythonhosted.org/packages/72/09/1f36849c36b7929dd09e013c637808fcaf908a0aa543388c2903dbb68bba/aiohttp-3.9.3-cp312-cp312-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "64df5cddb631867dbc85c058efcb16cbccb72f8bf66c0f6dca38dee346f4699a",
"md5": "7eccbf0d98ed8095a799741d707aa789",
"sha256": "c3452ea726c76e92f3b9fae4b34a151981a9ec0a4847a627c43d71a15ac32aa6"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp312-cp312-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "7eccbf0d98ed8095a799741d707aa789",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1395925,
"upload_time": "2024-01-29T20:41:22",
"upload_time_iso_8601": "2024-01-29T20:41:22.893085Z",
"url": "https://files.pythonhosted.org/packages/64/df/5cddb631867dbc85c058efcb16cbccb72f8bf66c0f6dca38dee346f4699a/aiohttp-3.9.3-cp312-cp312-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "784c579dcd801e1d98a8cb9144005452c65bcdaf5cce0aff1d6363385a8062b3",
"md5": "75998090f3a155c399e8a99dad8bcc23",
"sha256": "ff30218887e62209942f91ac1be902cc80cddb86bf00fbc6783b7a43b2bea26f"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "75998090f3a155c399e8a99dad8bcc23",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1316774,
"upload_time": "2024-01-29T20:41:25",
"upload_time_iso_8601": "2024-01-29T20:41:25.453208Z",
"url": "https://files.pythonhosted.org/packages/78/4c/579dcd801e1d98a8cb9144005452c65bcdaf5cce0aff1d6363385a8062b3/aiohttp-3.9.3-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2d8c8e0f346927177d2c25570bbea9975d3a99556753ee53ab55386149bbb1e3",
"md5": "32fe66bcdd62f90ee13459d370fcadab",
"sha256": "38f307b41e0bea3294a9a2a87833191e4bcf89bb0365e83a8be3a58b31fb7f38"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "32fe66bcdd62f90ee13459d370fcadab",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 342182,
"upload_time": "2024-01-29T20:41:27",
"upload_time_iso_8601": "2024-01-29T20:41:27.901214Z",
"url": "https://files.pythonhosted.org/packages/2d/8c/8e0f346927177d2c25570bbea9975d3a99556753ee53ab55386149bbb1e3/aiohttp-3.9.3-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c2bfdb1fc240d89cde43fd7bb11c1c3f9156dd184881a527ad8b0f9e8f4d434a",
"md5": "61f8c013e08921485dd8100718c63d46",
"sha256": "b791a3143681a520c0a17e26ae7465f1b6f99461a28019d1a2f425236e6eedb5"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "61f8c013e08921485dd8100718c63d46",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 363433,
"upload_time": "2024-01-29T20:41:30",
"upload_time_iso_8601": "2024-01-29T20:41:30.408773Z",
"url": "https://files.pythonhosted.org/packages/c2/bf/db1fc240d89cde43fd7bb11c1c3f9156dd184881a527ad8b0f9e8f4d434a/aiohttp-3.9.3-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e21b53d73ab4a9d86dae97e85e103278062534d44ca88a1616126388bd53f59",
"md5": "479520cc334646ea63d26276465f6a17",
"sha256": "0ed621426d961df79aa3b963ac7af0d40392956ffa9be022024cd16297b30c8c"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "479520cc334646ea63d26276465f6a17",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 598310,
"upload_time": "2024-01-29T20:41:33",
"upload_time_iso_8601": "2024-01-29T20:41:33.032484Z",
"url": "https://files.pythonhosted.org/packages/8e/21/b53d73ab4a9d86dae97e85e103278062534d44ca88a1616126388bd53f59/aiohttp-3.9.3-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4552dedbd54c23f7bf5904ed2b08efa3095ddd7dafe5d10f4c9bff479c2716d7",
"md5": "c04703bbc27ae2c5460d7d1eac6de26e",
"sha256": "7f46acd6a194287b7e41e87957bfe2ad1ad88318d447caf5b090012f2c5bb528"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "c04703bbc27ae2c5460d7d1eac6de26e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 399904,
"upload_time": "2024-01-29T20:41:35",
"upload_time_iso_8601": "2024-01-29T20:41:35.121112Z",
"url": "https://files.pythonhosted.org/packages/45/52/dedbd54c23f7bf5904ed2b08efa3095ddd7dafe5d10f4c9bff479c2716d7/aiohttp-3.9.3-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f57a17492df8e51df785f709e9adf9085f0919d1e19ee3495d2db24449dd17cc",
"md5": "05f1dd6fd5b2e6ceaa59ed79216c7bd3",
"sha256": "feeb18a801aacb098220e2c3eea59a512362eb408d4afd0c242044c33ad6d542"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "05f1dd6fd5b2e6ceaa59ed79216c7bd3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 389386,
"upload_time": "2024-01-29T20:41:37",
"upload_time_iso_8601": "2024-01-29T20:41:37.837437Z",
"url": "https://files.pythonhosted.org/packages/f5/7a/17492df8e51df785f709e9adf9085f0919d1e19ee3495d2db24449dd17cc/aiohttp-3.9.3-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4596a5c44383ff60bb3d0f0a74e55cbe15e90ab54de4a00c1510e2723d5984b0",
"md5": "e08c0599d1e0b4413270c8eb5620a88f",
"sha256": "f734e38fd8666f53da904c52a23ce517f1b07722118d750405af7e4123933511"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e08c0599d1e0b4413270c8eb5620a88f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1260636,
"upload_time": "2024-01-29T20:41:40",
"upload_time_iso_8601": "2024-01-29T20:41:40.018022Z",
"url": "https://files.pythonhosted.org/packages/45/96/a5c44383ff60bb3d0f0a74e55cbe15e90ab54de4a00c1510e2723d5984b0/aiohttp-3.9.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9a790e5b8a739b86a63fc1c792f794c77336ada77c20714c710ed9a59d74d424",
"md5": "dfe560802b8fe7df7d97b5ac79b429bd",
"sha256": "b40670ec7e2156d8e57f70aec34a7216407848dfe6c693ef131ddf6e76feb672"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "dfe560802b8fe7df7d97b5ac79b429bd",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1312713,
"upload_time": "2024-01-29T20:41:42",
"upload_time_iso_8601": "2024-01-29T20:41:42.328827Z",
"url": "https://files.pythonhosted.org/packages/9a/79/0e5b8a739b86a63fc1c792f794c77336ada77c20714c710ed9a59d74d424/aiohttp-3.9.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2e92dec25516bdb1ab6771b29f0b51d90794fe7fdbe795c19ce1f6eda7cd15ef",
"md5": "a8925f834e6c0884a989bffbb9df4318",
"sha256": "fdd215b7b7fd4a53994f238d0f46b7ba4ac4c0adb12452beee724ddd0743ae5d"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a8925f834e6c0884a989bffbb9df4318",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1346656,
"upload_time": "2024-01-29T20:41:44",
"upload_time_iso_8601": "2024-01-29T20:41:44.721278Z",
"url": "https://files.pythonhosted.org/packages/2e/92/dec25516bdb1ab6771b29f0b51d90794fe7fdbe795c19ce1f6eda7cd15ef/aiohttp-3.9.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "46115c9481d7a7f511b51e9b2a85885640268d0b92207a89e529585a3af397b8",
"md5": "0f82c0877148643316fa161a1fcda6a1",
"sha256": "017a21b0df49039c8f46ca0971b3a7fdc1f56741ab1240cb90ca408049766168"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0f82c0877148643316fa161a1fcda6a1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1253429,
"upload_time": "2024-01-29T20:41:47",
"upload_time_iso_8601": "2024-01-29T20:41:47.236169Z",
"url": "https://files.pythonhosted.org/packages/46/11/5c9481d7a7f511b51e9b2a85885640268d0b92207a89e529585a3af397b8/aiohttp-3.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f80f2273e0be47d61bb6b56e6aa2a1510f300d9beb2a367ab2090ee0d9e2d05c",
"md5": "d489b8c7dbb995a5051a944583c2533e",
"sha256": "e99abf0bba688259a496f966211c49a514e65afa9b3073a1fcee08856e04425b"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "d489b8c7dbb995a5051a944583c2533e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1218349,
"upload_time": "2024-01-29T20:41:50",
"upload_time_iso_8601": "2024-01-29T20:41:50.448874Z",
"url": "https://files.pythonhosted.org/packages/f8/0f/2273e0be47d61bb6b56e6aa2a1510f300d9beb2a367ab2090ee0d9e2d05c/aiohttp-3.9.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0fb6ad6daa6bdf9ca632be31a8a043bc17e74931f3e7196bdf063012e1d7d681",
"md5": "6ae1853142580475e1457cb2ac3894f7",
"sha256": "648056db9a9fa565d3fa851880f99f45e3f9a771dd3ff3bb0c048ea83fb28194"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "6ae1853142580475e1457cb2ac3894f7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1312741,
"upload_time": "2024-01-29T20:41:53",
"upload_time_iso_8601": "2024-01-29T20:41:53.285337Z",
"url": "https://files.pythonhosted.org/packages/0f/b6/ad6daa6bdf9ca632be31a8a043bc17e74931f3e7196bdf063012e1d7d681/aiohttp-3.9.3-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "70d3b7b251515b486f043ff56ae66bc463e3c39feb0393fd5c5f83095dc587ad",
"md5": "1b2c18035500d133e33b21427ad3d6fa",
"sha256": "8aacb477dc26797ee089721536a292a664846489c49d3ef9725f992449eda5a8"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "1b2c18035500d133e33b21427ad3d6fa",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1263543,
"upload_time": "2024-01-29T20:41:56",
"upload_time_iso_8601": "2024-01-29T20:41:56.270617Z",
"url": "https://files.pythonhosted.org/packages/70/d3/b7b251515b486f043ff56ae66bc463e3c39feb0393fd5c5f83095dc587ad/aiohttp-3.9.3-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aad300f7b511280929328e9b56da0960a8b21b123e847da7e879a76458c2eaa5",
"md5": "6ecaa45c4388473e6f1b83ffc3507948",
"sha256": "522a11c934ea660ff8953eda090dcd2154d367dec1ae3c540aff9f8a5c109ab4"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp38-cp38-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "6ecaa45c4388473e6f1b83ffc3507948",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1341814,
"upload_time": "2024-01-29T20:41:58",
"upload_time_iso_8601": "2024-01-29T20:41:58.610242Z",
"url": "https://files.pythonhosted.org/packages/aa/d3/00f7b511280929328e9b56da0960a8b21b123e847da7e879a76458c2eaa5/aiohttp-3.9.3-cp38-cp38-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dd3c6185887726b6178a298f5486c253dadff62ab145f6e2e04bfe69fce10bd0",
"md5": "c34841726348d3554d3c8800f2804352",
"sha256": "5bce0dc147ca85caa5d33debc4f4d65e8e8b5c97c7f9f660f215fa74fc49a321"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp38-cp38-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "c34841726348d3554d3c8800f2804352",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1383917,
"upload_time": "2024-01-29T20:42:00",
"upload_time_iso_8601": "2024-01-29T20:42:00.974540Z",
"url": "https://files.pythonhosted.org/packages/dd/3c/6185887726b6178a298f5486c253dadff62ab145f6e2e04bfe69fce10bd0/aiohttp-3.9.3-cp38-cp38-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f2d3220c5bc5eeb639fd8a59b1edfb346db8a54f0ec5a452772912e300afc1ce",
"md5": "f74cebc637439a9f17adae7ae71e2b08",
"sha256": "4b4af9f25b49a7be47c0972139e59ec0e8285c371049df1a63b6ca81fdd216a2"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "f74cebc637439a9f17adae7ae71e2b08",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1303516,
"upload_time": "2024-01-29T20:42:05",
"upload_time_iso_8601": "2024-01-29T20:42:05.090005Z",
"url": "https://files.pythonhosted.org/packages/f2/d3/220c5bc5eeb639fd8a59b1edfb346db8a54f0ec5a452772912e300afc1ce/aiohttp-3.9.3-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "039c7f8f23f912a3e7206a30731006cac75048d6354c1349900ff750cffde521",
"md5": "254efdd6008f4f99df60119e9d89ff5f",
"sha256": "298abd678033b8571995650ccee753d9458dfa0377be4dba91e4491da3f2be63"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "254efdd6008f4f99df60119e9d89ff5f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 347713,
"upload_time": "2024-01-29T20:42:07",
"upload_time_iso_8601": "2024-01-29T20:42:07.627588Z",
"url": "https://files.pythonhosted.org/packages/03/9c/7f8f23f912a3e7206a30731006cac75048d6354c1349900ff750cffde521/aiohttp-3.9.3-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4d2c961a78a32c0e057df20fd3a29c1d49bf2d9f37e3a8177bde0838e14dff03",
"md5": "7321642a7e42bd9775e19c71333840a3",
"sha256": "69361bfdca5468c0488d7017b9b1e5ce769d40b46a9f4a2eed26b78619e9396c"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "7321642a7e42bd9775e19c71333840a3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 367612,
"upload_time": "2024-01-29T20:42:09",
"upload_time_iso_8601": "2024-01-29T20:42:09.796817Z",
"url": "https://files.pythonhosted.org/packages/4d/2c/961a78a32c0e057df20fd3a29c1d49bf2d9f37e3a8177bde0838e14dff03/aiohttp-3.9.3-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ff3347599034c7d9aeaba6f7c320741c17cc56ae5accbc104e2f7e9ea657b8af",
"md5": "4955127bcf2b671f188721dbc82aa323",
"sha256": "0fa43c32d1643f518491d9d3a730f85f5bbaedcbd7fbcae27435bb8b7a061b29"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "4955127bcf2b671f188721dbc82aa323",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 595998,
"upload_time": "2024-01-29T20:42:12",
"upload_time_iso_8601": "2024-01-29T20:42:12.527005Z",
"url": "https://files.pythonhosted.org/packages/ff/33/47599034c7d9aeaba6f7c320741c17cc56ae5accbc104e2f7e9ea657b8af/aiohttp-3.9.3-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "201cb7e668a1583cbb1e5060b45baee68a50123f66470ac463f81f7e3b3c3bab",
"md5": "0c0e00e60f256cfaace548ae049f7c29",
"sha256": "835a55b7ca49468aaaac0b217092dfdff370e6c215c9224c52f30daaa735c1c1"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "0c0e00e60f256cfaace548ae049f7c29",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 398799,
"upload_time": "2024-01-29T20:42:15",
"upload_time_iso_8601": "2024-01-29T20:42:15.950262Z",
"url": "https://files.pythonhosted.org/packages/20/1c/b7e668a1583cbb1e5060b45baee68a50123f66470ac463f81f7e3b3c3bab/aiohttp-3.9.3-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6441354317518c143b672072429fa40d9ea70f34eb7ed8bff29302628fa4d860",
"md5": "05fc0af97be65d9fb66c0bd874a6d947",
"sha256": "06a9b2c8837d9a94fae16c6223acc14b4dfdff216ab9b7202e07a9a09541168f"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "05fc0af97be65d9fb66c0bd874a6d947",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 388188,
"upload_time": "2024-01-29T20:42:18",
"upload_time_iso_8601": "2024-01-29T20:42:18.391898Z",
"url": "https://files.pythonhosted.org/packages/64/41/354317518c143b672072429fa40d9ea70f34eb7ed8bff29302628fa4d860/aiohttp-3.9.3-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "975b5a71c0d39e4e45647c50f6f7388ec895e5fe864381a50f6241881b7f3014",
"md5": "bf14c9d9b6c1218d6326fdbca98fb97f",
"sha256": "abf151955990d23f84205286938796c55ff11bbfb4ccfada8c9c83ae6b3c89a3"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "bf14c9d9b6c1218d6326fdbca98fb97f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1237349,
"upload_time": "2024-01-29T20:42:21",
"upload_time_iso_8601": "2024-01-29T20:42:21.508988Z",
"url": "https://files.pythonhosted.org/packages/97/5b/5a71c0d39e4e45647c50f6f7388ec895e5fe864381a50f6241881b7f3014/aiohttp-3.9.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "16890972cbc2f48fa6ce0e5156cabbfd373455f4f9a96f21b307d924e287ae83",
"md5": "91fd7f4ba4a217a72dada5fd393fa7ab",
"sha256": "59c26c95975f26e662ca78fdf543d4eeaef70e533a672b4113dd888bd2423caa"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "91fd7f4ba4a217a72dada5fd393fa7ab",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1272848,
"upload_time": "2024-01-29T20:42:23",
"upload_time_iso_8601": "2024-01-29T20:42:23.799473Z",
"url": "https://files.pythonhosted.org/packages/16/89/0972cbc2f48fa6ce0e5156cabbfd373455f4f9a96f21b307d924e287ae83/aiohttp-3.9.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "95d9686d2c7ba9c717e4f5839bc3c1131307eca5ea8d27386cfac4785808127d",
"md5": "79436888e890d82ddb84405eab8e65ee",
"sha256": "f95511dd5d0e05fd9728bac4096319f80615aaef4acbecb35a990afebe953b0e"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "79436888e890d82ddb84405eab8e65ee",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1309019,
"upload_time": "2024-01-29T20:42:26",
"upload_time_iso_8601": "2024-01-29T20:42:26.885397Z",
"url": "https://files.pythonhosted.org/packages/95/d9/686d2c7ba9c717e4f5839bc3c1131307eca5ea8d27386cfac4785808127d/aiohttp-3.9.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bf63bff4168e4be6da032225fe3f2492b4627bf9416a62e58b7e9dc98c6280b2",
"md5": "03ab8e4f3171628b739beb6475a41305",
"sha256": "595f105710293e76b9dc09f52e0dd896bd064a79346234b521f6b968ffdd8e58"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "03ab8e4f3171628b739beb6475a41305",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1229391,
"upload_time": "2024-01-29T20:42:29",
"upload_time_iso_8601": "2024-01-29T20:42:29.224979Z",
"url": "https://files.pythonhosted.org/packages/bf/63/bff4168e4be6da032225fe3f2492b4627bf9416a62e58b7e9dc98c6280b2/aiohttp-3.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7560519dbed73c045124d978715a263d20f6e7c577fa790438a03c80e88a2b77",
"md5": "1f5bad69a58517580ab081fed9de3a17",
"sha256": "c7c8b816c2b5af5c8a436df44ca08258fc1a13b449393a91484225fcb7545533"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "1f5bad69a58517580ab081fed9de3a17",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1202270,
"upload_time": "2024-01-29T20:42:31",
"upload_time_iso_8601": "2024-01-29T20:42:31.951098Z",
"url": "https://files.pythonhosted.org/packages/75/60/519dbed73c045124d978715a263d20f6e7c577fa790438a03c80e88a2b77/aiohttp-3.9.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c98c0a387a1b8cd5f71d23533ca413a87ac3a26f87fa05664d7bd21ab75033ad",
"md5": "ff9131a94e373759ecd734f0de90a465",
"sha256": "f1088fa100bf46e7b398ffd9904f4808a0612e1d966b4aa43baa535d1b6341eb"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "ff9131a94e373759ecd734f0de90a465",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1251921,
"upload_time": "2024-01-29T20:42:34",
"upload_time_iso_8601": "2024-01-29T20:42:34.526085Z",
"url": "https://files.pythonhosted.org/packages/c9/8c/0a387a1b8cd5f71d23533ca413a87ac3a26f87fa05664d7bd21ab75033ad/aiohttp-3.9.3-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6189cf30539ebe0c23cf11ec9ab1af64affde23e4b8382e26140af9e3b2c4b05",
"md5": "66f1eecae45fba23152bbad965be3682",
"sha256": "f59dfe57bb1ec82ac0698ebfcdb7bcd0e99c255bd637ff613760d5f33e7c81b3"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "66f1eecae45fba23152bbad965be3682",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1211650,
"upload_time": "2024-01-29T20:42:37",
"upload_time_iso_8601": "2024-01-29T20:42:37.233277Z",
"url": "https://files.pythonhosted.org/packages/61/89/cf30539ebe0c23cf11ec9ab1af64affde23e4b8382e26140af9e3b2c4b05/aiohttp-3.9.3-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "130cd4ace84ca4de479aad35625e1715f29307268d859ee816e95d25fa1218bf",
"md5": "3501990a192d2e2f6bb4dbf050109d80",
"sha256": "361a1026c9dd4aba0109e4040e2aecf9884f5cfe1b1b1bd3d09419c205e2e53d"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp39-cp39-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "3501990a192d2e2f6bb4dbf050109d80",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1279671,
"upload_time": "2024-01-29T20:42:39",
"upload_time_iso_8601": "2024-01-29T20:42:39.931683Z",
"url": "https://files.pythonhosted.org/packages/13/0c/d4ace84ca4de479aad35625e1715f29307268d859ee816e95d25fa1218bf/aiohttp-3.9.3-cp39-cp39-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "082acdfe84154aef0cd29e4a383a1f1840cf7257cf22bceed1603a95a92cca7c",
"md5": "4ae496c9813ddb060c60c48c1f59973c",
"sha256": "363afe77cfcbe3a36353d8ea133e904b108feea505aa4792dad6585a8192c55a"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp39-cp39-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "4ae496c9813ddb060c60c48c1f59973c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1321535,
"upload_time": "2024-01-29T20:42:42",
"upload_time_iso_8601": "2024-01-29T20:42:42.269125Z",
"url": "https://files.pythonhosted.org/packages/08/2a/cdfe84154aef0cd29e4a383a1f1840cf7257cf22bceed1603a95a92cca7c/aiohttp-3.9.3-cp39-cp39-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5fc4114e9b0944f6ec3a294f3f7bbedf63109bfeb067bbacc9fced47d1a1ed3e",
"md5": "020ad664b786b8f7361dcd54e8a7a42e",
"sha256": "8e2c45c208c62e955e8256949eb225bd8b66a4c9b6865729a786f2aa79b72e9d"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "020ad664b786b8f7361dcd54e8a7a42e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1242350,
"upload_time": "2024-01-29T20:42:44",
"upload_time_iso_8601": "2024-01-29T20:42:44.706472Z",
"url": "https://files.pythonhosted.org/packages/5f/c4/114e9b0944f6ec3a294f3f7bbedf63109bfeb067bbacc9fced47d1a1ed3e/aiohttp-3.9.3-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9ffb7c938606d7f22e67ea9d8ea660c0a151bf82c34367c937c1e6ad49975605",
"md5": "de195b6583e4003edc78c814172d56cd",
"sha256": "f7217af2e14da0856e082e96ff637f14ae45c10a5714b63c77f26d8884cf1051"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "de195b6583e4003edc78c814172d56cd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 346674,
"upload_time": "2024-01-29T20:42:47",
"upload_time_iso_8601": "2024-01-29T20:42:47.562842Z",
"url": "https://files.pythonhosted.org/packages/9f/fb/7c938606d7f22e67ea9d8ea660c0a151bf82c34367c937c1e6ad49975605/aiohttp-3.9.3-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2803c81f6d4ea89326b182b2e31e83388734ccae07b18d573e45f7e9216b5910",
"md5": "ec66153389f92cb39ef75001eb57d72d",
"sha256": "27468897f628c627230dba07ec65dc8d0db566923c48f29e084ce382119802bc"
},
"downloads": -1,
"filename": "aiohttp-3.9.3-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "ec66153389f92cb39ef75001eb57d72d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 366014,
"upload_time": "2024-01-29T20:42:50",
"upload_time_iso_8601": "2024-01-29T20:42:50.023299Z",
"url": "https://files.pythonhosted.org/packages/28/03/c81f6d4ea89326b182b2e31e83388734ccae07b18d573e45f7e9216b5910/aiohttp-3.9.3-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "18931f005bbe044471a0444a82cdd7356f5120b9cf94fe2c50c0cdbf28f1258b",
"md5": "f237bcac4ade112b9e7c4b1098197244",
"sha256": "90842933e5d1ff760fae6caca4b2b3edba53ba8f4b71e95dacf2818a2aca06f7"
},
"downloads": -1,
"filename": "aiohttp-3.9.3.tar.gz",
"has_sig": false,
"md5_digest": "f237bcac4ade112b9e7c4b1098197244",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 7499669,
"upload_time": "2024-01-29T20:42:52",
"upload_time_iso_8601": "2024-01-29T20:42:52.411161Z",
"url": "https://files.pythonhosted.org/packages/18/93/1f005bbe044471a0444a82cdd7356f5120b9cf94fe2c50c0cdbf28f1258b/aiohttp-3.9.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.9.4": [
{
"comment_text": "",
"digests": {
"blake2b_256": "d80abb4c205a79912d48da655f9216876ba15d7f11741f677ada80ecb52bd60c",
"md5": "27979857ccf1c04c539a9f806f9be1f9",
"sha256": "76d32588ef7e4a3f3adff1956a0ba96faabbdee58f2407c122dd45aa6e34f372"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "27979857ccf1c04c539a9f806f9be1f9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 596986,
"upload_time": "2024-04-11T19:13:03",
"upload_time_iso_8601": "2024-04-11T19:13:03.449670Z",
"url": "https://files.pythonhosted.org/packages/d8/0a/bb4c205a79912d48da655f9216876ba15d7f11741f677ada80ecb52bd60c/aiohttp-3.9.4-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "08dea4266c9e509841ce828e4f5444dd281987a92264fb5487f690b8b85aeb7d",
"md5": "592389899d24f07aa99d4a08b2e2ade6",
"sha256": "56181093c10dbc6ceb8a29dfeea1e815e1dfdc020169203d87fd8d37616f73f9"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "592389899d24f07aa99d4a08b2e2ade6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 400526,
"upload_time": "2024-04-11T19:13:07",
"upload_time_iso_8601": "2024-04-11T19:13:07.929691Z",
"url": "https://files.pythonhosted.org/packages/08/de/a4266c9e509841ce828e4f5444dd281987a92264fb5487f690b8b85aeb7d/aiohttp-3.9.4-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "86234fa3a2d3e17eeb0fe2958c2e937e488a97f0fdacbfd38cb36f533f971742",
"md5": "061d391b96401f693050210e0c56980b",
"sha256": "c7a5b676d3c65e88b3aca41816bf72831898fcd73f0cbb2680e9d88e819d1e4d"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "061d391b96401f693050210e0c56980b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 389749,
"upload_time": "2024-04-11T19:13:10",
"upload_time_iso_8601": "2024-04-11T19:13:10.745325Z",
"url": "https://files.pythonhosted.org/packages/86/23/4fa3a2d3e17eeb0fe2958c2e937e488a97f0fdacbfd38cb36f533f971742/aiohttp-3.9.4-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ee7454b82e865869a3b7cdc621ed49c8bccefbf2bbd28c8c36468651f61bb129",
"md5": "7d07d4c40929dd8f58b9ec96c7fe4269",
"sha256": "d1df528a85fb404899d4207a8d9934cfd6be626e30e5d3a5544a83dbae6d8a7e"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "7d07d4c40929dd8f58b9ec96c7fe4269",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1238088,
"upload_time": "2024-04-11T19:13:13",
"upload_time_iso_8601": "2024-04-11T19:13:13.746843Z",
"url": "https://files.pythonhosted.org/packages/ee/74/54b82e865869a3b7cdc621ed49c8bccefbf2bbd28c8c36468651f61bb129/aiohttp-3.9.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "754ead707b92ee3900fbb65d64973a8624a5d31584abe731bb85df7125a41076",
"md5": "321e575bcfab593a07898a3121dc361d",
"sha256": "f595db1bceabd71c82e92df212dd9525a8a2c6947d39e3c994c4f27d2fe15b11"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "321e575bcfab593a07898a3121dc361d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1268456,
"upload_time": "2024-04-11T19:13:16",
"upload_time_iso_8601": "2024-04-11T19:13:16.932692Z",
"url": "https://files.pythonhosted.org/packages/75/4e/ad707b92ee3900fbb65d64973a8624a5d31584abe731bb85df7125a41076/aiohttp-3.9.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6c627da2ae3be8680141b3de7bbd15e4d326ee3fd6ad01bc50e67158eb256c60",
"md5": "317709712c87be575b3619691d23fbf9",
"sha256": "9c0b09d76e5a4caac3d27752027fbd43dc987b95f3748fad2b924a03fe8632ad"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "317709712c87be575b3619691d23fbf9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1303824,
"upload_time": "2024-04-11T19:13:19",
"upload_time_iso_8601": "2024-04-11T19:13:19.841750Z",
"url": "https://files.pythonhosted.org/packages/6c/62/7da2ae3be8680141b3de7bbd15e4d326ee3fd6ad01bc50e67158eb256c60/aiohttp-3.9.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "918fb1f46ef89273414735e5f8835918da305e43857086b70ff11fd89ff3f6f8",
"md5": "c73b9ae000142aa9110e59c022d8a0bc",
"sha256": "689eb4356649ec9535b3686200b231876fb4cab4aca54e3bece71d37f50c1d13"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c73b9ae000142aa9110e59c022d8a0bc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1228259,
"upload_time": "2024-04-11T19:13:22",
"upload_time_iso_8601": "2024-04-11T19:13:22.787528Z",
"url": "https://files.pythonhosted.org/packages/91/8f/b1f46ef89273414735e5f8835918da305e43857086b70ff11fd89ff3f6f8/aiohttp-3.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ef7e9b2bb79078261f1296341b7b1362782daff40ab8ee01a83f0dbe61b1accd",
"md5": "7f845e440c14c3ea3d51d625da07b788",
"sha256": "a3666cf4182efdb44d73602379a66f5fdfd5da0db5e4520f0ac0dcca644a3497"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "7f845e440c14c3ea3d51d625da07b788",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1201773,
"upload_time": "2024-04-11T19:13:24",
"upload_time_iso_8601": "2024-04-11T19:13:24.983459Z",
"url": "https://files.pythonhosted.org/packages/ef/7e/9b2bb79078261f1296341b7b1362782daff40ab8ee01a83f0dbe61b1accd/aiohttp-3.9.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c5f82df076e02e0020dea4c93b6e90503cd98c520f06de28711796aabe2d36f1",
"md5": "2bbe3cc1bdec6c03bd681675a2785e49",
"sha256": "b65b0f8747b013570eea2f75726046fa54fa8e0c5db60f3b98dd5d161052004a"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "2bbe3cc1bdec6c03bd681675a2785e49",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1253476,
"upload_time": "2024-04-11T19:13:27",
"upload_time_iso_8601": "2024-04-11T19:13:27.533251Z",
"url": "https://files.pythonhosted.org/packages/c5/f8/2df076e02e0020dea4c93b6e90503cd98c520f06de28711796aabe2d36f1/aiohttp-3.9.4-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3d5c150eda8792c34824a06b4b8fd801bd2e240d8adf8bf577b2cee8b11e6ed0",
"md5": "17be314f0cc867a36a7225a3bcde390f",
"sha256": "a1885d2470955f70dfdd33a02e1749613c5a9c5ab855f6db38e0b9389453dce7"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "17be314f0cc867a36a7225a3bcde390f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1208878,
"upload_time": "2024-04-11T19:13:29",
"upload_time_iso_8601": "2024-04-11T19:13:29.760026Z",
"url": "https://files.pythonhosted.org/packages/3d/5c/150eda8792c34824a06b4b8fd801bd2e240d8adf8bf577b2cee8b11e6ed0/aiohttp-3.9.4-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3597cf05a5e6fa0e332f613eb762e16f54da448741b7a3604694a9c2cd820da0",
"md5": "960025ba92a1668e7f04a6a862779475",
"sha256": "0593822dcdb9483d41f12041ff7c90d4d1033ec0e880bcfaf102919b715f47f1"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp310-cp310-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "960025ba92a1668e7f04a6a862779475",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1276719,
"upload_time": "2024-04-11T19:13:32",
"upload_time_iso_8601": "2024-04-11T19:13:32.218470Z",
"url": "https://files.pythonhosted.org/packages/35/97/cf05a5e6fa0e332f613eb762e16f54da448741b7a3604694a9c2cd820da0/aiohttp-3.9.4-cp310-cp310-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3d46ae477cc8a1648aebee00d6175c94836b9325defac2f345e5d060aaa96356",
"md5": "861b0f651db25a67cdb058956a4031a5",
"sha256": "47f6eb74e1ecb5e19a78f4a4228aa24df7fbab3b62d4a625d3f41194a08bd54f"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp310-cp310-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "861b0f651db25a67cdb058956a4031a5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1319448,
"upload_time": "2024-04-11T19:13:34",
"upload_time_iso_8601": "2024-04-11T19:13:34.535177Z",
"url": "https://files.pythonhosted.org/packages/3d/46/ae477cc8a1648aebee00d6175c94836b9325defac2f345e5d060aaa96356/aiohttp-3.9.4-cp310-cp310-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2782689150075b331f618364e80af3fb5417e8c9ac69fb14a3ecb7b6d03288a6",
"md5": "60b0a3949c6ef61b2fd6363fc882f917",
"sha256": "c8b04a3dbd54de6ccb7604242fe3ad67f2f3ca558f2d33fe19d4b08d90701a89"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "60b0a3949c6ef61b2fd6363fc882f917",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1243078,
"upload_time": "2024-04-11T19:13:37",
"upload_time_iso_8601": "2024-04-11T19:13:37.268783Z",
"url": "https://files.pythonhosted.org/packages/27/82/689150075b331f618364e80af3fb5417e8c9ac69fb14a3ecb7b6d03288a6/aiohttp-3.9.4-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "555caf3c34f2345256fd83de204de80aed99d0fc381472c34422ec8181807c9b",
"md5": "de904160962438cc54c641033702c6df",
"sha256": "8a78dfb198a328bfb38e4308ca8167028920fb747ddcf086ce706fbdd23b2926"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "de904160962438cc54c641033702c6df",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 351235,
"upload_time": "2024-04-11T19:13:39",
"upload_time_iso_8601": "2024-04-11T19:13:39.396605Z",
"url": "https://files.pythonhosted.org/packages/55/5c/af3c34f2345256fd83de204de80aed99d0fc381472c34422ec8181807c9b/aiohttp-3.9.4-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e57a3241f0701487183067469b049107425d842c5ba97094ac44f945e3d0b54f",
"md5": "e980b4d3b2512e0e8dd6acc8368ecf65",
"sha256": "e78da6b55275987cbc89141a1d8e75f5070e577c482dd48bd9123a76a96f0bbb"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "e980b4d3b2512e0e8dd6acc8368ecf65",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 370547,
"upload_time": "2024-04-11T19:13:41",
"upload_time_iso_8601": "2024-04-11T19:13:41.583423Z",
"url": "https://files.pythonhosted.org/packages/e5/7a/3241f0701487183067469b049107425d842c5ba97094ac44f945e3d0b54f/aiohttp-3.9.4-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9b87b88dab94133418fbab216ae051b96a44f109d0617a246b89607851308be8",
"md5": "06a6055d0e9c1e5b4b87fb6f6f9b5eb4",
"sha256": "c111b3c69060d2bafc446917534150fd049e7aedd6cbf21ba526a5a97b4402a5"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "06a6055d0e9c1e5b4b87fb6f6f9b5eb4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 599213,
"upload_time": "2024-04-11T19:13:44",
"upload_time_iso_8601": "2024-04-11T19:13:44.112078Z",
"url": "https://files.pythonhosted.org/packages/9b/87/b88dab94133418fbab216ae051b96a44f109d0617a246b89607851308be8/aiohttp-3.9.4-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "408a8728c61d75434f01a218822ddb3a9947b678957f5483c28e4c244bf1ce9a",
"md5": "8d8ac1c6b956ead4e016487d00affff1",
"sha256": "efbdd51872cf170093998c87ccdf3cb5993add3559341a8e5708bcb311934c94"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "8d8ac1c6b956ead4e016487d00affff1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 402253,
"upload_time": "2024-04-11T19:13:46",
"upload_time_iso_8601": "2024-04-11T19:13:46.604223Z",
"url": "https://files.pythonhosted.org/packages/40/8a/8728c61d75434f01a218822ddb3a9947b678957f5483c28e4c244bf1ce9a/aiohttp-3.9.4-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6c71502e9f5dc84c3794d38a350140cb860940b664d5a7025911303f84de6293",
"md5": "6fc551c36f9f33d174980b2d0f86fc16",
"sha256": "7bfdb41dc6e85d8535b00d73947548a748e9534e8e4fddd2638109ff3fb081df"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6fc551c36f9f33d174980b2d0f86fc16",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 390067,
"upload_time": "2024-04-11T19:13:48",
"upload_time_iso_8601": "2024-04-11T19:13:48.966903Z",
"url": "https://files.pythonhosted.org/packages/6c/71/502e9f5dc84c3794d38a350140cb860940b664d5a7025911303f84de6293/aiohttp-3.9.4-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "44cacaa608b4d1a81eceb7e9496109398f75351774b597fc5bf646e627425ad7",
"md5": "50302e98e4eeab6ca1f16b19d905c085",
"sha256": "2bd9d334412961125e9f68d5b73c1d0ab9ea3f74a58a475e6b119f5293eee7ba"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "50302e98e4eeab6ca1f16b19d905c085",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1312750,
"upload_time": "2024-04-11T19:13:51",
"upload_time_iso_8601": "2024-04-11T19:13:51.590969Z",
"url": "https://files.pythonhosted.org/packages/44/ca/caa608b4d1a81eceb7e9496109398f75351774b597fc5bf646e627425ad7/aiohttp-3.9.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a194fa094426f04c6e4e8dbd7d3eb0838e3722cc6aeccb4abf79d1813af36f91",
"md5": "4a4812741e0cbb9dc1580a65632164b2",
"sha256": "35d78076736f4a668d57ade00c65d30a8ce28719d8a42471b2a06ccd1a2e3063"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "4a4812741e0cbb9dc1580a65632164b2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1349446,
"upload_time": "2024-04-11T19:13:54",
"upload_time_iso_8601": "2024-04-11T19:13:54.641867Z",
"url": "https://files.pythonhosted.org/packages/a1/94/fa094426f04c6e4e8dbd7d3eb0838e3722cc6aeccb4abf79d1813af36f91/aiohttp-3.9.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8f4d72682825c0e4e46db8e7ee2da05b3b8e2ab3dc2972c614cfc28fae23a224",
"md5": "a088549ea72d457467620fb6fa6dd93f",
"sha256": "824dff4f9f4d0f59d0fa3577932ee9a20e09edec8a2f813e1d6b9f89ced8293f"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a088549ea72d457467620fb6fa6dd93f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1386893,
"upload_time": "2024-04-11T19:13:56",
"upload_time_iso_8601": "2024-04-11T19:13:56.779468Z",
"url": "https://files.pythonhosted.org/packages/8f/4d/72682825c0e4e46db8e7ee2da05b3b8e2ab3dc2972c614cfc28fae23a224/aiohttp-3.9.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c03848a5f8a2f83d6065d18bf43e3eade8f35ceab9065083e9138cd4e650b8f5",
"md5": "4fde23efd2bc88963fdda276c871d888",
"sha256": "52b8b4e06fc15519019e128abedaeb56412b106ab88b3c452188ca47a25c4093"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4fde23efd2bc88963fdda276c871d888",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1297606,
"upload_time": "2024-04-11T19:13:59",
"upload_time_iso_8601": "2024-04-11T19:13:59.659327Z",
"url": "https://files.pythonhosted.org/packages/c0/38/48a5f8a2f83d6065d18bf43e3eade8f35ceab9065083e9138cd4e650b8f5/aiohttp-3.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b5e3da8f67c5df660b0a1c457d2d1f2bb017a7a0904fb4bcc6ee8a4c91109a90",
"md5": "a0807dd654751eb5302d6b7ed816660c",
"sha256": "eae569fb1e7559d4f3919965617bb39f9e753967fae55ce13454bec2d1c54f09"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "a0807dd654751eb5302d6b7ed816660c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1257410,
"upload_time": "2024-04-11T19:14:02",
"upload_time_iso_8601": "2024-04-11T19:14:02.563629Z",
"url": "https://files.pythonhosted.org/packages/b5/e3/da8f67c5df660b0a1c457d2d1f2bb017a7a0904fb4bcc6ee8a4c91109a90/aiohttp-3.9.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "47c971f20a6fd86cfd7e52742e1c7b7a72e6a9f4267e27f9752dcd91c86f1fbc",
"md5": "45c7edd3b5562270aa0beabec50736c8",
"sha256": "69b97aa5792428f321f72aeb2f118e56893371f27e0b7d05750bcad06fc42ca1"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "45c7edd3b5562270aa0beabec50736c8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1318841,
"upload_time": "2024-04-11T19:14:04",
"upload_time_iso_8601": "2024-04-11T19:14:04.787719Z",
"url": "https://files.pythonhosted.org/packages/47/c9/71f20a6fd86cfd7e52742e1c7b7a72e6a9f4267e27f9752dcd91c86f1fbc/aiohttp-3.9.4-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0842d7b903c2a62bf14d49cb8b8853681453ffc03437dd2f151f4b48942fb573",
"md5": "63b33662a2d3da63896a6a89eb1c3977",
"sha256": "4d79aad0ad4b980663316f26d9a492e8fab2af77c69c0f33780a56843ad2f89e"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "63b33662a2d3da63896a6a89eb1c3977",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1268472,
"upload_time": "2024-04-11T19:14:07",
"upload_time_iso_8601": "2024-04-11T19:14:07.143515Z",
"url": "https://files.pythonhosted.org/packages/08/42/d7b903c2a62bf14d49cb8b8853681453ffc03437dd2f151f4b48942fb573/aiohttp-3.9.4-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e49469b1c7e757f13c03ea20f8a15354a7c63128620f967fa0996682351c82a9",
"md5": "a57f443339d38ccd1f2af4c406f16e4a",
"sha256": "d6577140cd7db19e430661e4b2653680194ea8c22c994bc65b7a19d8ec834403"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp311-cp311-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "a57f443339d38ccd1f2af4c406f16e4a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1350502,
"upload_time": "2024-04-11T19:14:09",
"upload_time_iso_8601": "2024-04-11T19:14:09.113840Z",
"url": "https://files.pythonhosted.org/packages/e4/94/69b1c7e757f13c03ea20f8a15354a7c63128620f967fa0996682351c82a9/aiohttp-3.9.4-cp311-cp311-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "876bbb19fca4982b7a425053f7f2c70a26799226234a32a093a4ee5a790d9b83",
"md5": "185b827eef25a41f663edc5f221b261e",
"sha256": "9860d455847cd98eb67897f5957b7cd69fbcb436dd3f06099230f16a66e66f79"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp311-cp311-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "185b827eef25a41f663edc5f221b261e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1394424,
"upload_time": "2024-04-11T19:14:11",
"upload_time_iso_8601": "2024-04-11T19:14:11.824875Z",
"url": "https://files.pythonhosted.org/packages/87/6b/bb19fca4982b7a425053f7f2c70a26799226234a32a093a4ee5a790d9b83/aiohttp-3.9.4-cp311-cp311-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7a3ba49ef7646571b925889dcb82044364d2c7924c735c63f54979b3d1eac95b",
"md5": "8aa6ecf4b8bb0c8a2c29229a423e2a99",
"sha256": "69ff36d3f8f5652994e08bd22f093e11cfd0444cea310f92e01b45a4e46b624e"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "8aa6ecf4b8bb0c8a2c29229a423e2a99",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1302356,
"upload_time": "2024-04-11T19:14:14",
"upload_time_iso_8601": "2024-04-11T19:14:14.111465Z",
"url": "https://files.pythonhosted.org/packages/7a/3b/a49ef7646571b925889dcb82044364d2c7924c735c63f54979b3d1eac95b/aiohttp-3.9.4-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7b91b4546c932e0a36bd3338dd02d175b1f0d6b1a48360652ef843d2b28559fc",
"md5": "547b0ff2a422a67b3d1caa07aae96560",
"sha256": "e27d3b5ed2c2013bce66ad67ee57cbf614288bda8cdf426c8d8fe548316f1b5f"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "547b0ff2a422a67b3d1caa07aae96560",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 350448,
"upload_time": "2024-04-11T19:14:16",
"upload_time_iso_8601": "2024-04-11T19:14:16.697003Z",
"url": "https://files.pythonhosted.org/packages/7b/91/b4546c932e0a36bd3338dd02d175b1f0d6b1a48360652ef843d2b28559fc/aiohttp-3.9.4-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "272a7ac476333b9cd473931b4437e16bf9d25eca5fcf2d19dad2eb61cb661cb3",
"md5": "58a49b171f97086d654d0fbbb29478e7",
"sha256": "d6a67e26daa686a6fbdb600a9af8619c80a332556245fa8e86c747d226ab1a1e"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "58a49b171f97086d654d0fbbb29478e7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 370631,
"upload_time": "2024-04-11T19:14:19",
"upload_time_iso_8601": "2024-04-11T19:14:19.268838Z",
"url": "https://files.pythonhosted.org/packages/27/2a/7ac476333b9cd473931b4437e16bf9d25eca5fcf2d19dad2eb61cb661cb3/aiohttp-3.9.4-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8b933dc56fcab9087f36439d12877c30c9b94c57de7082d0ed81317a5c1fe53b",
"md5": "21d9902bf7203c6a5235e1041c45c3fe",
"sha256": "c5ff8ff44825736a4065d8544b43b43ee4c6dd1530f3a08e6c0578a813b0aa35"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp312-cp312-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "21d9902bf7203c6a5235e1041c45c3fe",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 595166,
"upload_time": "2024-04-11T19:14:21",
"upload_time_iso_8601": "2024-04-11T19:14:21.415360Z",
"url": "https://files.pythonhosted.org/packages/8b/93/3dc56fcab9087f36439d12877c30c9b94c57de7082d0ed81317a5c1fe53b/aiohttp-3.9.4-cp312-cp312-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "61fb9b32f0b5c7bf1bb53e41951b0965d32e4be243d60dec1c544717902659ed",
"md5": "b7da857b11558cdf03bffff755d815d8",
"sha256": "d12a244627eba4e9dc52cbf924edef905ddd6cafc6513849b4876076a6f38b0e"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "b7da857b11558cdf03bffff755d815d8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 395803,
"upload_time": "2024-04-11T19:14:23",
"upload_time_iso_8601": "2024-04-11T19:14:23.626160Z",
"url": "https://files.pythonhosted.org/packages/61/fb/9b32f0b5c7bf1bb53e41951b0965d32e4be243d60dec1c544717902659ed/aiohttp-3.9.4-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "293d9dcbd75e46ee2d1ae05615e926982f72590248cddf5400f860f6b3cc4228",
"md5": "d1d69ccae2bc1132a1324ef24be45ab5",
"sha256": "dcad56c8d8348e7e468899d2fb3b309b9bc59d94e6db08710555f7436156097f"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d1d69ccae2bc1132a1324ef24be45ab5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 392234,
"upload_time": "2024-04-11T19:14:25",
"upload_time_iso_8601": "2024-04-11T19:14:25.767192Z",
"url": "https://files.pythonhosted.org/packages/29/3d/9dcbd75e46ee2d1ae05615e926982f72590248cddf5400f860f6b3cc4228/aiohttp-3.9.4-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e18f3998b71747bf3b2dcf73743df6ee7f0fd4162cf7006e0a6b6c14088f154d",
"md5": "43bd7af0fbff87d445a41ac190c7c7b9",
"sha256": "4f7e69a7fd4b5ce419238388e55abd220336bd32212c673ceabc57ccf3d05b55"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "43bd7af0fbff87d445a41ac190c7c7b9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1322472,
"upload_time": "2024-04-11T19:14:28",
"upload_time_iso_8601": "2024-04-11T19:14:28.027742Z",
"url": "https://files.pythonhosted.org/packages/e1/8f/3998b71747bf3b2dcf73743df6ee7f0fd4162cf7006e0a6b6c14088f154d/aiohttp-3.9.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7d882351a70e47d1b4ec944e4db14ecd5e562c756da5eb80b472b34f6c9162aa",
"md5": "727e98e423ced9ad7d4bae5606c7fd3c",
"sha256": "c4870cb049f10d7680c239b55428916d84158798eb8f353e74fa2c98980dcc0b"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "727e98e423ced9ad7d4bae5606c7fd3c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1361901,
"upload_time": "2024-04-11T19:14:30",
"upload_time_iso_8601": "2024-04-11T19:14:30.039076Z",
"url": "https://files.pythonhosted.org/packages/7d/88/2351a70e47d1b4ec944e4db14ecd5e562c756da5eb80b472b34f6c9162aa/aiohttp-3.9.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1d6c2da5ba31bfc80d2b6a1851eeba236ec80106970bfc6a69d440b1f51fd677",
"md5": "c448704a5c6f4ee3305c85085a2ec3b7",
"sha256": "3b2feaf1b7031ede1bc0880cec4b0776fd347259a723d625357bb4b82f62687b"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "c448704a5c6f4ee3305c85085a2ec3b7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1404496,
"upload_time": "2024-04-11T19:14:32",
"upload_time_iso_8601": "2024-04-11T19:14:32.512743Z",
"url": "https://files.pythonhosted.org/packages/1d/6c/2da5ba31bfc80d2b6a1851eeba236ec80106970bfc6a69d440b1f51fd677/aiohttp-3.9.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fad113d90775af7115d97d6fa8815cc1704fabd24080e5a6de0a88ac250e8707",
"md5": "fe11733af0c454cec75b186798eb2f17",
"sha256": "939393e8c3f0a5bcd33ef7ace67680c318dc2ae406f15e381c0054dd658397de"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "fe11733af0c454cec75b186798eb2f17",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1317596,
"upload_time": "2024-04-11T19:14:35",
"upload_time_iso_8601": "2024-04-11T19:14:35.144998Z",
"url": "https://files.pythonhosted.org/packages/fa/d1/13d90775af7115d97d6fa8815cc1704fabd24080e5a6de0a88ac250e8707/aiohttp-3.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3fb486e833f70cd4a7c5f86a7c8d5c2e4210637a9c943ac4b8c96a16d92de176",
"md5": "b6f0098836dccbcead392ae0f3eb97e1",
"sha256": "7d2334e387b2adcc944680bebcf412743f2caf4eeebd550f67249c1c3696be04"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "b6f0098836dccbcead392ae0f3eb97e1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1269459,
"upload_time": "2024-04-11T19:14:37",
"upload_time_iso_8601": "2024-04-11T19:14:37.373383Z",
"url": "https://files.pythonhosted.org/packages/3f/b4/86e833f70cd4a7c5f86a7c8d5c2e4210637a9c943ac4b8c96a16d92de176/aiohttp-3.9.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aff43e880364f49977d2ee9e724740fd318c8fc00653cefb5893471f020842c7",
"md5": "2695de1ddd6fe4437da4049250c47780",
"sha256": "e0198ea897680e480845ec0ffc5a14e8b694e25b3f104f63676d55bf76a82f1a"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "2695de1ddd6fe4437da4049250c47780",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1324782,
"upload_time": "2024-04-11T19:14:39",
"upload_time_iso_8601": "2024-04-11T19:14:39.401556Z",
"url": "https://files.pythonhosted.org/packages/af/f4/3e880364f49977d2ee9e724740fd318c8fc00653cefb5893471f020842c7/aiohttp-3.9.4-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f840a7ab46aa09db9b68e07b54c85a59615164db1f8aaac00c5a862b82b732b2",
"md5": "85ae8d26fcb225bd37e1930e5bc8cb24",
"sha256": "e40d2cd22914d67c84824045861a5bb0fb46586b15dfe4f046c7495bf08306b2"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "85ae8d26fcb225bd37e1930e5bc8cb24",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1267374,
"upload_time": "2024-04-11T19:14:41",
"upload_time_iso_8601": "2024-04-11T19:14:41.619680Z",
"url": "https://files.pythonhosted.org/packages/f8/40/a7ab46aa09db9b68e07b54c85a59615164db1f8aaac00c5a862b82b732b2/aiohttp-3.9.4-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "64fe9aaff07d02a734a4127a2b903431374e6f74fddcf354b46225fc6e4b0fe1",
"md5": "8448124abf2efbc2b91adc3d1fb71f73",
"sha256": "aba80e77c227f4234aa34a5ff2b6ff30c5d6a827a91d22ff6b999de9175d71bd"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp312-cp312-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "8448124abf2efbc2b91adc3d1fb71f73",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1352959,
"upload_time": "2024-04-11T19:14:43",
"upload_time_iso_8601": "2024-04-11T19:14:43.810801Z",
"url": "https://files.pythonhosted.org/packages/64/fe/9aaff07d02a734a4127a2b903431374e6f74fddcf354b46225fc6e4b0fe1/aiohttp-3.9.4-cp312-cp312-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a2359749ef7ca527eb478f4e0c7845b70de1e75ab2329c8ac463cf1d7a2ee398",
"md5": "c47623a7d3b59a6ab811fc06456d5860",
"sha256": "fb68dc73bc8ac322d2e392a59a9e396c4f35cb6fdbdd749e139d1d6c985f2527"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp312-cp312-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "c47623a7d3b59a6ab811fc06456d5860",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1400771,
"upload_time": "2024-04-11T19:14:46",
"upload_time_iso_8601": "2024-04-11T19:14:46.928578Z",
"url": "https://files.pythonhosted.org/packages/a2/35/9749ef7ca527eb478f4e0c7845b70de1e75ab2329c8ac463cf1d7a2ee398/aiohttp-3.9.4-cp312-cp312-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1cfd8994aa9fe735bca37230cc1439aa0744c53a198244f85abb62db4cd64112",
"md5": "d22229c0b1af23cf8dc95bd4eb89f9eb",
"sha256": "f3460a92638dce7e47062cf088d6e7663adb135e936cb117be88d5e6c48c9d53"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "d22229c0b1af23cf8dc95bd4eb89f9eb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1319181,
"upload_time": "2024-04-11T19:14:49",
"upload_time_iso_8601": "2024-04-11T19:14:49.904500Z",
"url": "https://files.pythonhosted.org/packages/1c/fd/8994aa9fe735bca37230cc1439aa0744c53a198244f85abb62db4cd64112/aiohttp-3.9.4-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "19fc3a9ae22d2eaf16a5910d6f2e6488438d634a9ad166c0f4aa88269068a615",
"md5": "161723c36a0ce705becd8741f5f7d0d7",
"sha256": "32dc814ddbb254f6170bca198fe307920f6c1308a5492f049f7f63554b88ef36"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "161723c36a0ce705becd8741f5f7d0d7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 347444,
"upload_time": "2024-04-11T19:14:52",
"upload_time_iso_8601": "2024-04-11T19:14:52.628297Z",
"url": "https://files.pythonhosted.org/packages/19/fc/3a9ae22d2eaf16a5910d6f2e6488438d634a9ad166c0f4aa88269068a615/aiohttp-3.9.4-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "50627c21c8d5180810c6a6f8e569fe7ebf5e1448b344d837f13705d6cbedf3e3",
"md5": "1364df6b25a7cee46bd30efe2fee48a8",
"sha256": "63f41a909d182d2b78fe3abef557fcc14da50c7852f70ae3be60e83ff64edba5"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "1364df6b25a7cee46bd30efe2fee48a8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 368849,
"upload_time": "2024-04-11T19:14:54",
"upload_time_iso_8601": "2024-04-11T19:14:54.733631Z",
"url": "https://files.pythonhosted.org/packages/50/62/7c21c8d5180810c6a6f8e569fe7ebf5e1448b344d837f13705d6cbedf3e3/aiohttp-3.9.4-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5d9165ef37daf7b27114f4fe941abc5998ca4745be95ce9348b892859ba90f82",
"md5": "09e14e471d063ca8a8914896670b9ce8",
"sha256": "c3770365675f6be220032f6609a8fbad994d6dcf3ef7dbcf295c7ee70884c9af"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "09e14e471d063ca8a8914896670b9ce8",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 601029,
"upload_time": "2024-04-11T19:14:56",
"upload_time_iso_8601": "2024-04-11T19:14:56.757689Z",
"url": "https://files.pythonhosted.org/packages/5d/91/65ef37daf7b27114f4fe941abc5998ca4745be95ce9348b892859ba90f82/aiohttp-3.9.4-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e20aa53924f736f780463a03fa19d851a0eef61e749ffa568d4b2bb87a4f4f6",
"md5": "08a7581b94f7b941fd9fff1550294fa6",
"sha256": "305edae1dea368ce09bcb858cf5a63a064f3bff4767dec6fa60a0cc0e805a1d3"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "08a7581b94f7b941fd9fff1550294fa6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 402447,
"upload_time": "2024-04-11T19:14:58",
"upload_time_iso_8601": "2024-04-11T19:14:58.704017Z",
"url": "https://files.pythonhosted.org/packages/5e/20/aa53924f736f780463a03fa19d851a0eef61e749ffa568d4b2bb87a4f4f6/aiohttp-3.9.4-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "758585c09b35dbe3fdeed85b375a0a361f97e0549fcbee40738a9c6fe690f908",
"md5": "f239df2d65ff4b5f5613b6f70adde1ee",
"sha256": "6f121900131d116e4a93b55ab0d12ad72573f967b100e49086e496a9b24523ea"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f239df2d65ff4b5f5613b6f70adde1ee",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 391757,
"upload_time": "2024-04-11T19:15:02",
"upload_time_iso_8601": "2024-04-11T19:15:02.256795Z",
"url": "https://files.pythonhosted.org/packages/75/85/85c09b35dbe3fdeed85b375a0a361f97e0549fcbee40738a9c6fe690f908/aiohttp-3.9.4-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f8d9c06d1ecc5615765cf6b8a60119643b40fe80ef15d0888f0d82f02a37df19",
"md5": "e52711bf99ad4f766bcba15b10d2b766",
"sha256": "b71e614c1ae35c3d62a293b19eface83d5e4d194e3eb2fabb10059d33e6e8cbf"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e52711bf99ad4f766bcba15b10d2b766",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1263000,
"upload_time": "2024-04-11T19:15:05",
"upload_time_iso_8601": "2024-04-11T19:15:05.859851Z",
"url": "https://files.pythonhosted.org/packages/f8/d9/c06d1ecc5615765cf6b8a60119643b40fe80ef15d0888f0d82f02a37df19/aiohttp-3.9.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f710d8b6b040a6cfbf35e0a8204a5167ad8800bfe2f537899b347f45a24b3e86",
"md5": "2a38ae572c283a1c7ea0ff9c03105f87",
"sha256": "419f009fa4cfde4d16a7fc070d64f36d70a8d35a90d71aa27670bba2be4fd039"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "2a38ae572c283a1c7ea0ff9c03105f87",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1315024,
"upload_time": "2024-04-11T19:15:08",
"upload_time_iso_8601": "2024-04-11T19:15:08.699552Z",
"url": "https://files.pythonhosted.org/packages/f7/10/d8b6b040a6cfbf35e0a8204a5167ad8800bfe2f537899b347f45a24b3e86/aiohttp-3.9.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ab2e7e5898d6d30e7b6f881833e8b5989b81f08317922e7c892bea897a54b5c3",
"md5": "6039b874f73093178056290270b177fa",
"sha256": "7b39476ee69cfe64061fd77a73bf692c40021f8547cda617a3466530ef63f947"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "6039b874f73093178056290270b177fa",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1348828,
"upload_time": "2024-04-11T19:15:10",
"upload_time_iso_8601": "2024-04-11T19:15:10.993112Z",
"url": "https://files.pythonhosted.org/packages/ab/2e/7e5898d6d30e7b6f881833e8b5989b81f08317922e7c892bea897a54b5c3/aiohttp-3.9.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3c63fe97fbe6d18e8ad0b484a01c9c36df122f304668c7e76745e438ad184d80",
"md5": "e69964b66e6b46c7e05b7616d549e4a5",
"sha256": "b33f34c9c7decdb2ab99c74be6443942b730b56d9c5ee48fb7df2c86492f293c"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e69964b66e6b46c7e05b7616d549e4a5",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1253408,
"upload_time": "2024-04-11T19:15:13",
"upload_time_iso_8601": "2024-04-11T19:15:13.867778Z",
"url": "https://files.pythonhosted.org/packages/3c/63/fe97fbe6d18e8ad0b484a01c9c36df122f304668c7e76745e438ad184d80/aiohttp-3.9.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a2d89dbb075f7e8032f38996f7d2f7f3694fcadd0f5bfbcb6d445278b6e7c20a",
"md5": "1f6ec1077ff5a2e6401e338d57be2647",
"sha256": "c78700130ce2dcebb1a8103202ae795be2fa8c9351d0dd22338fe3dac74847d9"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "1f6ec1077ff5a2e6401e338d57be2647",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1220338,
"upload_time": "2024-04-11T19:15:17",
"upload_time_iso_8601": "2024-04-11T19:15:17.179459Z",
"url": "https://files.pythonhosted.org/packages/a2/d8/9dbb075f7e8032f38996f7d2f7f3694fcadd0f5bfbcb6d445278b6e7c20a/aiohttp-3.9.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f5c79508ddc21f0d9375af7d848370f1efa8e71272a674f7337af36e12ff24ed",
"md5": "6087c2e3684fa4d355043db68cbe57d7",
"sha256": "268ba22d917655d1259af2d5659072b7dc11b4e1dc2cb9662fdd867d75afc6a4"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "6087c2e3684fa4d355043db68cbe57d7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1315307,
"upload_time": "2024-04-11T19:15:19",
"upload_time_iso_8601": "2024-04-11T19:15:19.904215Z",
"url": "https://files.pythonhosted.org/packages/f5/c7/9508ddc21f0d9375af7d848370f1efa8e71272a674f7337af36e12ff24ed/aiohttp-3.9.4-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fb45d0d793edf2d8f2941449b78a0b107acaa1113656d8baf17d29f56eb476c5",
"md5": "d94c6fee714670fbece410e71f12c89b",
"sha256": "17e7c051f53a0d2ebf33013a9cbf020bb4e098c4bc5bce6f7b0c962108d97eab"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "d94c6fee714670fbece410e71f12c89b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1265360,
"upload_time": "2024-04-11T19:15:22",
"upload_time_iso_8601": "2024-04-11T19:15:22.962652Z",
"url": "https://files.pythonhosted.org/packages/fb/45/d0d793edf2d8f2941449b78a0b107acaa1113656d8baf17d29f56eb476c5/aiohttp-3.9.4-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "192e8b763da103e4b2b52ff7b3c74c0ac0f90d56fe682ddb7fd9bff15d1ecd40",
"md5": "6b80eaacbae7f4f5dae0c543755fec47",
"sha256": "7be99f4abb008cb38e144f85f515598f4c2c8932bf11b65add0ff59c9c876d99"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp38-cp38-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "6b80eaacbae7f4f5dae0c543755fec47",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1344193,
"upload_time": "2024-04-11T19:15:25",
"upload_time_iso_8601": "2024-04-11T19:15:25.260476Z",
"url": "https://files.pythonhosted.org/packages/19/2e/8b763da103e4b2b52ff7b3c74c0ac0f90d56fe682ddb7fd9bff15d1ecd40/aiohttp-3.9.4-cp38-cp38-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0934e2849c249e97a3e239aae80f1990ed1b4e5676fe885a47d5c5f084b9aaef",
"md5": "43b390cfe324910670147acec04a34be",
"sha256": "d58a54d6ff08d2547656356eea8572b224e6f9bbc0cf55fa9966bcaac4ddfb10"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp38-cp38-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "43b390cfe324910670147acec04a34be",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1385179,
"upload_time": "2024-04-11T19:15:27",
"upload_time_iso_8601": "2024-04-11T19:15:27.650954Z",
"url": "https://files.pythonhosted.org/packages/09/34/e2849c249e97a3e239aae80f1990ed1b4e5676fe885a47d5c5f084b9aaef/aiohttp-3.9.4-cp38-cp38-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "57e15ed62c6aef431d39243ca6c8d2327c993943bb18dec24dfe6fc2f84beb80",
"md5": "27fe2d61fb6b3706adf104dc3321adf0",
"sha256": "7673a76772bda15d0d10d1aa881b7911d0580c980dbd16e59d7ba1422b2d83cd"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "27fe2d61fb6b3706adf104dc3321adf0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1305774,
"upload_time": "2024-04-11T19:15:29",
"upload_time_iso_8601": "2024-04-11T19:15:29.868924Z",
"url": "https://files.pythonhosted.org/packages/57/e1/5ed62c6aef431d39243ca6c8d2327c993943bb18dec24dfe6fc2f84beb80/aiohttp-3.9.4-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "adfe93758e315ec44c3a923038442ad5d468ba7d536331327a6a3dc92cc8d2cd",
"md5": "49ca18a37235fd708d1ea855a000b6e5",
"sha256": "e4370dda04dc8951012f30e1ce7956a0a226ac0714a7b6c389fb2f43f22a250e"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "49ca18a37235fd708d1ea855a000b6e5",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 353110,
"upload_time": "2024-04-11T19:15:32",
"upload_time_iso_8601": "2024-04-11T19:15:32.179048Z",
"url": "https://files.pythonhosted.org/packages/ad/fe/93758e315ec44c3a923038442ad5d468ba7d536331327a6a3dc92cc8d2cd/aiohttp-3.9.4-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1909451cdcff2de8f874b0737ba2fbf44a066821e3c3fc7a0d6a1ec28b133931",
"md5": "5d81485a804c4c9281a075b538418a97",
"sha256": "eb30c4510a691bb87081192a394fb661860e75ca3896c01c6d186febe7c88530"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "5d81485a804c4c9281a075b538418a97",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 372962,
"upload_time": "2024-04-11T19:15:35",
"upload_time_iso_8601": "2024-04-11T19:15:35.222075Z",
"url": "https://files.pythonhosted.org/packages/19/09/451cdcff2de8f874b0737ba2fbf44a066821e3c3fc7a0d6a1ec28b133931/aiohttp-3.9.4-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0243ce5a7886bf6a9373e1f9add99f68b55b1976288a0748037ddc8e90ef803a",
"md5": "2d219e4121827bf70bcae2af1e04a58a",
"sha256": "84e90494db7df3be5e056f91412f9fa9e611fbe8ce4aaef70647297f5943b276"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "2d219e4121827bf70bcae2af1e04a58a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 598753,
"upload_time": "2024-04-11T19:15:37",
"upload_time_iso_8601": "2024-04-11T19:15:37.836156Z",
"url": "https://files.pythonhosted.org/packages/02/43/ce5a7886bf6a9373e1f9add99f68b55b1976288a0748037ddc8e90ef803a/aiohttp-3.9.4-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "deff1ae7dd555295070b31ce8dff591e2d4a2ce07fe6a93469badbf96d521c6f",
"md5": "a5c863e670526d8ac320efd6ad27fa46",
"sha256": "7d4845f8501ab28ebfdbeab980a50a273b415cf69e96e4e674d43d86a464df9d"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "a5c863e670526d8ac320efd6ad27fa46",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 401402,
"upload_time": "2024-04-11T19:15:40",
"upload_time_iso_8601": "2024-04-11T19:15:40.893377Z",
"url": "https://files.pythonhosted.org/packages/de/ff/1ae7dd555295070b31ce8dff591e2d4a2ce07fe6a93469badbf96d521c6f/aiohttp-3.9.4-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2a7a7df548c13bc37c6f7f72b9dd8cd64be329fb2e61666efcc8598e5cc84d86",
"md5": "4605d1dc7e085068b92cf08579ca3f3a",
"sha256": "69046cd9a2a17245c4ce3c1f1a4ff8c70c7701ef222fce3d1d8435f09042bba1"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "4605d1dc7e085068b92cf08579ca3f3a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 390544,
"upload_time": "2024-04-11T19:15:44",
"upload_time_iso_8601": "2024-04-11T19:15:44.567308Z",
"url": "https://files.pythonhosted.org/packages/2a/7a/7df548c13bc37c6f7f72b9dd8cd64be329fb2e61666efcc8598e5cc84d86/aiohttp-3.9.4-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "40f6643ed7ca3142059838fdd8ed9c4211e6b4812da30fa480e599e4a3887a69",
"md5": "f5508e38088d71c05426f3afcc969637",
"sha256": "8b73a06bafc8dcc508420db43b4dd5850e41e69de99009d0351c4f3007960019"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f5508e38088d71c05426f3afcc969637",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1241518,
"upload_time": "2024-04-11T19:15:47",
"upload_time_iso_8601": "2024-04-11T19:15:47.485176Z",
"url": "https://files.pythonhosted.org/packages/40/f6/643ed7ca3142059838fdd8ed9c4211e6b4812da30fa480e599e4a3887a69/aiohttp-3.9.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0d53b46b871c697d2055c4162fa6cdeb7b671f0a3a46f686c8df2a02149d952d",
"md5": "8f750fd8466ff3159aaea97b8efc92ed",
"sha256": "418bb0038dfafeac923823c2e63226179976c76f981a2aaad0ad5d51f2229bca"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8f750fd8466ff3159aaea97b8efc92ed",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1275458,
"upload_time": "2024-04-11T19:15:49",
"upload_time_iso_8601": "2024-04-11T19:15:49.925118Z",
"url": "https://files.pythonhosted.org/packages/0d/53/b46b871c697d2055c4162fa6cdeb7b671f0a3a46f686c8df2a02149d952d/aiohttp-3.9.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "83dc34ff22543be0aa223f593662c7e2617089de509cdcb4d3df5ed5a20f36a8",
"md5": "f84e9d53bb974f983f42a8826ab768f1",
"sha256": "71a8f241456b6c2668374d5d28398f8e8cdae4cce568aaea54e0f39359cd928d"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "f84e9d53bb974f983f42a8826ab768f1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1310541,
"upload_time": "2024-04-11T19:15:52",
"upload_time_iso_8601": "2024-04-11T19:15:52.525531Z",
"url": "https://files.pythonhosted.org/packages/83/dc/34ff22543be0aa223f593662c7e2617089de509cdcb4d3df5ed5a20f36a8/aiohttp-3.9.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bc9118907fb56164b15ea8ef9711a2219080ed44116bd1109c3559ceb40034d7",
"md5": "642f083b4b4d7746943147ae5a0cc954",
"sha256": "935c369bf8acc2dc26f6eeb5222768aa7c62917c3554f7215f2ead7386b33748"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "642f083b4b4d7746943147ae5a0cc954",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1231296,
"upload_time": "2024-04-11T19:15:54",
"upload_time_iso_8601": "2024-04-11T19:15:54.925452Z",
"url": "https://files.pythonhosted.org/packages/bc/91/18907fb56164b15ea8ef9711a2219080ed44116bd1109c3559ceb40034d7/aiohttp-3.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dd0a8f35bd3388c0918373cef7bb00ed85ddd7911e85a8c91be97477689d2565",
"md5": "ca62510250e09f27f9634105c7eb205a",
"sha256": "74e4e48c8752d14ecfb36d2ebb3d76d614320570e14de0a3aa7a726ff150a03c"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ca62510250e09f27f9634105c7eb205a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1204485,
"upload_time": "2024-04-11T19:15:57",
"upload_time_iso_8601": "2024-04-11T19:15:57.364089Z",
"url": "https://files.pythonhosted.org/packages/dd/0a/8f35bd3388c0918373cef7bb00ed85ddd7911e85a8c91be97477689d2565/aiohttp-3.9.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0c5bf34d1003b0cc6ec8db3686309d4300f13118782374214d0d42a1b23afb15",
"md5": "8f5fd993f3266bd5accf9ac04d524be3",
"sha256": "916b0417aeddf2c8c61291238ce25286f391a6acb6f28005dd9ce282bd6311b6"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "8f5fd993f3266bd5accf9ac04d524be3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1254260,
"upload_time": "2024-04-11T19:16:00",
"upload_time_iso_8601": "2024-04-11T19:16:00.111795Z",
"url": "https://files.pythonhosted.org/packages/0c/5b/f34d1003b0cc6ec8db3686309d4300f13118782374214d0d42a1b23afb15/aiohttp-3.9.4-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fae4e639e269bd9bae7e04e346bdf0284b8287b540a64e11ffdc5531e72c9365",
"md5": "deb1b581debbc1166cb60b8d0ecf3cf3",
"sha256": "9b6787b6d0b3518b2ee4cbeadd24a507756ee703adbac1ab6dc7c4434b8c572a"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "deb1b581debbc1166cb60b8d0ecf3cf3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1214370,
"upload_time": "2024-04-11T19:16:03",
"upload_time_iso_8601": "2024-04-11T19:16:03.292161Z",
"url": "https://files.pythonhosted.org/packages/fa/e4/e639e269bd9bae7e04e346bdf0284b8287b540a64e11ffdc5531e72c9365/aiohttp-3.9.4-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3a92797688e63ce0dea0388a67325416755b96fc8954f73807bc391ee2285629",
"md5": "9d87fd48bdf7d22a85f9fa0c56d1bb00",
"sha256": "221204dbda5ef350e8db6287937621cf75e85778b296c9c52260b522231940ed"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp39-cp39-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "9d87fd48bdf7d22a85f9fa0c56d1bb00",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1284603,
"upload_time": "2024-04-11T19:16:06",
"upload_time_iso_8601": "2024-04-11T19:16:06.156650Z",
"url": "https://files.pythonhosted.org/packages/3a/92/797688e63ce0dea0388a67325416755b96fc8954f73807bc391ee2285629/aiohttp-3.9.4-cp39-cp39-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a437426884411b927d5871315dadd4e6ad27768e569853de7300b3abf539868c",
"md5": "3c6c1b4386e268526dcba139014d8d98",
"sha256": "10afd99b8251022ddf81eaed1d90f5a988e349ee7d779eb429fb07b670751e8c"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp39-cp39-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "3c6c1b4386e268526dcba139014d8d98",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1328216,
"upload_time": "2024-04-11T19:16:09",
"upload_time_iso_8601": "2024-04-11T19:16:09.057850Z",
"url": "https://files.pythonhosted.org/packages/a4/37/426884411b927d5871315dadd4e6ad27768e569853de7300b3abf539868c/aiohttp-3.9.4-cp39-cp39-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7d87d7134121ea1e7c4e8eaf133266c8269210f568a125ed550ee7689cd9fa13",
"md5": "391c6f182d6f66a3473712985ce6dffb",
"sha256": "2506d9f7a9b91033201be9ffe7d89c6a54150b0578803cce5cb84a943d075bc3"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "391c6f182d6f66a3473712985ce6dffb",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1244799,
"upload_time": "2024-04-11T19:16:11",
"upload_time_iso_8601": "2024-04-11T19:16:11.727458Z",
"url": "https://files.pythonhosted.org/packages/7d/87/d7134121ea1e7c4e8eaf133266c8269210f568a125ed550ee7689cd9fa13/aiohttp-3.9.4-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9ecbd913b3d99b49d75f38903405d71ca2e84ba7de9c5332842e61463aa7872a",
"md5": "bf02a0319557c95454883faa2d1f09f0",
"sha256": "e571fdd9efd65e86c6af2f332e0e95dad259bfe6beb5d15b3c3eca3a6eb5d87b"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "bf02a0319557c95454883faa2d1f09f0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 352078,
"upload_time": "2024-04-11T19:16:14",
"upload_time_iso_8601": "2024-04-11T19:16:14.078861Z",
"url": "https://files.pythonhosted.org/packages/9e/cb/d913b3d99b49d75f38903405d71ca2e84ba7de9c5332842e61463aa7872a/aiohttp-3.9.4-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aa78862ce810e41ebb6590fd34903e9cff84eb299d0765e4354fac7fce63c10c",
"md5": "8c768076752709527071de96016721e0",
"sha256": "7d29dd5319d20aa3b7749719ac9685fbd926f71ac8c77b2477272725f882072d"
},
"downloads": -1,
"filename": "aiohttp-3.9.4-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "8c768076752709527071de96016721e0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 371447,
"upload_time": "2024-04-11T19:16:16",
"upload_time_iso_8601": "2024-04-11T19:16:16.493591Z",
"url": "https://files.pythonhosted.org/packages/aa/78/862ce810e41ebb6590fd34903e9cff84eb299d0765e4354fac7fce63c10c/aiohttp-3.9.4-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7e0b4235b25496c741f4c9f75a94951fbc15c48537349a03448687fb226256ef",
"md5": "f833062e805c0f3cf42a720b969d649c",
"sha256": "6ff71ede6d9a5a58cfb7b6fffc83ab5d4a63138276c771ac91ceaaddf5459644"
},
"downloads": -1,
"filename": "aiohttp-3.9.4.tar.gz",
"has_sig": false,
"md5_digest": "f833062e805c0f3cf42a720b969d649c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 7500720,
"upload_time": "2024-04-11T19:16:19",
"upload_time_iso_8601": "2024-04-11T19:16:19.090036Z",
"url": "https://files.pythonhosted.org/packages/7e/0b/4235b25496c741f4c9f75a94951fbc15c48537349a03448687fb226256ef/aiohttp-3.9.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.9.4rc0": [
{
"comment_text": "",
"digests": {
"blake2b_256": "f7b3c6f401b7fd27ae12c661dbb257c027cae670d7ff3eeb3c28382622f19437",
"md5": "6ccc470c446c82534d5b1ceb49fdcca8",
"sha256": "d2b670f4973c4a7f544901fff4e786ced7578b7c604ac9260e82d83be3e7fcbf"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "6ccc470c446c82534d5b1ceb49fdcca8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 595750,
"upload_time": "2024-02-16T13:38:48",
"upload_time_iso_8601": "2024-02-16T13:38:48.302597Z",
"url": "https://files.pythonhosted.org/packages/f7/b3/c6f401b7fd27ae12c661dbb257c027cae670d7ff3eeb3c28382622f19437/aiohttp-3.9.4rc0-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f12d1b30e8828f39c8b0f98ef06011ce8b59507d509201b2b88b0956900bb775",
"md5": "8695fe756f17a397df97eb0637b3a344",
"sha256": "f4e8d2104a2eb0380342d25ab05cad2e712da46c6d9eff0ec24621bb4bcd77e8"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "8695fe756f17a397df97eb0637b3a344",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 399241,
"upload_time": "2024-02-16T13:38:52",
"upload_time_iso_8601": "2024-02-16T13:38:52.500696Z",
"url": "https://files.pythonhosted.org/packages/f1/2d/1b30e8828f39c8b0f98ef06011ce8b59507d509201b2b88b0956900bb775/aiohttp-3.9.4rc0-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "558d41b201390e70ae5d3ca31b3af913faff02aac7de35c7fb0f055cef404f16",
"md5": "896c9f3e86ad86f86c262d1c5d48ee47",
"sha256": "bcea576eff83ccbc866702fdd6e4eedf394d3c35a460221875e67c5bf6b39e2b"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "896c9f3e86ad86f86c262d1c5d48ee47",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 388474,
"upload_time": "2024-02-16T13:38:55",
"upload_time_iso_8601": "2024-02-16T13:38:55.257732Z",
"url": "https://files.pythonhosted.org/packages/55/8d/41b201390e70ae5d3ca31b3af913faff02aac7de35c7fb0f055cef404f16/aiohttp-3.9.4rc0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e9fb086baa1e14a72c9e8bdb403c81f8cb2d053603f62da40ff2c10b7bd20c08",
"md5": "4dfbcf15e2cc9fe215851fc724da410d",
"sha256": "3c5c9e63ff63f5bbbfb94802b29e6dc189feb52518758dfffbd94880dc0cbcb2"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4dfbcf15e2cc9fe215851fc724da410d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1236522,
"upload_time": "2024-02-16T13:38:57",
"upload_time_iso_8601": "2024-02-16T13:38:57.279552Z",
"url": "https://files.pythonhosted.org/packages/e9/fb/086baa1e14a72c9e8bdb403c81f8cb2d053603f62da40ff2c10b7bd20c08/aiohttp-3.9.4rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7f5c7bc5fa6f4b7142a332c7a57155d4f99ee4c5a04b84c9354927e47379dab8",
"md5": "b693d8096a89d4115a9838ad0a333bac",
"sha256": "0dee5cb6e30aed0f781050860c12d96aa4758be6dec8ef4de5f14913b13c326b"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b693d8096a89d4115a9838ad0a333bac",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1267021,
"upload_time": "2024-02-16T13:38:59",
"upload_time_iso_8601": "2024-02-16T13:38:59.256532Z",
"url": "https://files.pythonhosted.org/packages/7f/5c/7bc5fa6f4b7142a332c7a57155d4f99ee4c5a04b84c9354927e47379dab8/aiohttp-3.9.4rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "260c12d4461998dd1846cef34de8acc391236a52e8038dc16143e05dc7839737",
"md5": "82b580c6d7e441d31eb157e025d3bf94",
"sha256": "2ca46c33d5fa2d30409bac1c04df9e614e4ce5a336c8b16cfe05b0046a2b4ae6"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "82b580c6d7e441d31eb157e025d3bf94",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1302370,
"upload_time": "2024-02-16T13:39:01",
"upload_time_iso_8601": "2024-02-16T13:39:01.843500Z",
"url": "https://files.pythonhosted.org/packages/26/0c/12d4461998dd1846cef34de8acc391236a52e8038dc16143e05dc7839737/aiohttp-3.9.4rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9c55e6180741e0a7ffef56127666fa1fe41129692308cae3ce9cf7f9e9ad3583",
"md5": "33c519816e141a31c7efa87b58ab968b",
"sha256": "077b70b370162bddd11999cef1fc081857443b84e234339dfa19c59e8f14c675"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "33c519816e141a31c7efa87b58ab968b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1226897,
"upload_time": "2024-02-16T13:39:04",
"upload_time_iso_8601": "2024-02-16T13:39:04.353814Z",
"url": "https://files.pythonhosted.org/packages/9c/55/e6180741e0a7ffef56127666fa1fe41129692308cae3ce9cf7f9e9ad3583/aiohttp-3.9.4rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "858462a83bbaefcaad1bb413ca6a2ecf7571c7fd1c90c001fcad8d23222e90e8",
"md5": "6fafc2d9dfe711918ee52c69ac2cc299",
"sha256": "fa96c6c5e7da7b881d3ba632b647ee78888ecd5944b0fa0e51c2e0cbecbc6668"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "6fafc2d9dfe711918ee52c69ac2cc299",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1200401,
"upload_time": "2024-02-16T13:39:06",
"upload_time_iso_8601": "2024-02-16T13:39:06.948033Z",
"url": "https://files.pythonhosted.org/packages/85/84/62a83bbaefcaad1bb413ca6a2ecf7571c7fd1c90c001fcad8d23222e90e8/aiohttp-3.9.4rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aa2db57c4691f04dafe9f1b8cb4066d224492805da4bda784c71f8a8966432d5",
"md5": "699f43e4ddceefddb55b51160d74aebc",
"sha256": "4bcc61be06c1e629d130bd7c31904b206fb291b4d079ff01943889769deb4808"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "699f43e4ddceefddb55b51160d74aebc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1251839,
"upload_time": "2024-02-16T13:39:09",
"upload_time_iso_8601": "2024-02-16T13:39:09.321330Z",
"url": "https://files.pythonhosted.org/packages/aa/2d/b57c4691f04dafe9f1b8cb4066d224492805da4bda784c71f8a8966432d5/aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "78e66af43eca904fcf67d270122e65fc048820dc3945a50e7dc6432fb38a31a6",
"md5": "75cddf4b5c811d0f0c18b688dd17debc",
"sha256": "89186054a92b7e63a5ca926c7617ed24c33a1108d5385091e55471d540e1089b"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "75cddf4b5c811d0f0c18b688dd17debc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1207433,
"upload_time": "2024-02-16T13:39:11",
"upload_time_iso_8601": "2024-02-16T13:39:11.593903Z",
"url": "https://files.pythonhosted.org/packages/78/e6/6af43eca904fcf67d270122e65fc048820dc3945a50e7dc6432fb38a31a6/aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aca536f4378226c3e84843dc00d6196248cc9e584e08340aac32274b6dacfafa",
"md5": "deba7c88909e713b3210fffa1c51328c",
"sha256": "f3102766518468d11a1864e6f4f16b827335e060e54fb1d7e920c358c4a671c1"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "deba7c88909e713b3210fffa1c51328c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1275225,
"upload_time": "2024-02-16T13:39:13",
"upload_time_iso_8601": "2024-02-16T13:39:13.768753Z",
"url": "https://files.pythonhosted.org/packages/ac/a5/36f4378226c3e84843dc00d6196248cc9e584e08340aac32274b6dacfafa/aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d5409bda47ffde365d7acbfa29a08da723ad60cb51851ad06c76137b86d899fb",
"md5": "7fbde5489a0e9641d386b2b5fbbf3031",
"sha256": "ff556f7449f35bc27b6291ea40c5de7822424f6a43d2f67f2a544e034e057dc0"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "7fbde5489a0e9641d386b2b5fbbf3031",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1317922,
"upload_time": "2024-02-16T13:39:16",
"upload_time_iso_8601": "2024-02-16T13:39:16.259352Z",
"url": "https://files.pythonhosted.org/packages/d5/40/9bda47ffde365d7acbfa29a08da723ad60cb51851ad06c76137b86d899fb/aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3b5acd02ac163a6fd73b437f164dbc4abbcb4dac333620eb71d81fda304cc5c0",
"md5": "4889f7e2b5180840e39f8b3a3c204174",
"sha256": "a49207ae91f9e0281663a69d107ed2cf079fc2d2d8f3d7c53de304ffc891e85c"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "4889f7e2b5180840e39f8b3a3c204174",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1241636,
"upload_time": "2024-02-16T13:39:18",
"upload_time_iso_8601": "2024-02-16T13:39:18.309611Z",
"url": "https://files.pythonhosted.org/packages/3b/5a/cd02ac163a6fd73b437f164dbc4abbcb4dac333620eb71d81fda304cc5c0/aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8eef82c6093d4ebcab010c2c8ea1aa14183078102620730a4149052f9017e088",
"md5": "9aeaacf1913087097c0969b3991aa25e",
"sha256": "8a9fb29bf3a7188e11fc1bf1f5501dd020e0f3e16fc91462b29a1e3d57e0c33d"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "9aeaacf1913087097c0969b3991aa25e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 349977,
"upload_time": "2024-02-16T13:39:20",
"upload_time_iso_8601": "2024-02-16T13:39:20.915577Z",
"url": "https://files.pythonhosted.org/packages/8e/ef/82c6093d4ebcab010c2c8ea1aa14183078102620730a4149052f9017e088/aiohttp-3.9.4rc0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "936009ac6c558627179a76b7428a3f8e79435c962dcacfd139bbfdb244b695ab",
"md5": "6693e8ebb8f93ed9b20d8a54fdb2c4cd",
"sha256": "9bc71815b80ec0f2bc8f13ee0dcf221a545c67a16763137b61c04ba97a5474c9"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "6693e8ebb8f93ed9b20d8a54fdb2c4cd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 369310,
"upload_time": "2024-02-16T13:39:22",
"upload_time_iso_8601": "2024-02-16T13:39:22.829884Z",
"url": "https://files.pythonhosted.org/packages/93/60/09ac6c558627179a76b7428a3f8e79435c962dcacfd139bbfdb244b695ab/aiohttp-3.9.4rc0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "52af25bcf8547b1e6895a4ffcff50e30601fca8332ad3a9f0761af7456b94db7",
"md5": "d38d2cc9566cc11c580471fe2a613593",
"sha256": "f97bdf7a5aae476ba452f44919d569c5656b76821fa82787e6d2bb27dfd96933"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "d38d2cc9566cc11c580471fe2a613593",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 597985,
"upload_time": "2024-02-16T13:39:26",
"upload_time_iso_8601": "2024-02-16T13:39:26.740184Z",
"url": "https://files.pythonhosted.org/packages/52/af/25bcf8547b1e6895a4ffcff50e30601fca8332ad3a9f0761af7456b94db7/aiohttp-3.9.4rc0-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9e733f7a587b10143e37d7e2a8ae182e53cdaf787f73b85c2f5df122cbf54d01",
"md5": "b642c182473f1b80da01eafdc4202d02",
"sha256": "9c7a7602060a05ca7943343cc1191d55730dfa2a6eaebc3f2e9cc81bf5ec067e"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "b642c182473f1b80da01eafdc4202d02",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 401024,
"upload_time": "2024-02-16T13:39:29",
"upload_time_iso_8601": "2024-02-16T13:39:29.339129Z",
"url": "https://files.pythonhosted.org/packages/9e/73/3f7a587b10143e37d7e2a8ae182e53cdaf787f73b85c2f5df122cbf54d01/aiohttp-3.9.4rc0-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3842730f4ef647342bd11daddfad4a8fb7f764472d68603450bc9a13971e5012",
"md5": "87e628921a0587e87ba8d7756ced2512",
"sha256": "485d2a5a56f6039a7c39b3b9318ff63c3d321c4dd9b4cea12fd52d2e24393d38"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "87e628921a0587e87ba8d7756ced2512",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 388754,
"upload_time": "2024-02-16T13:39:32",
"upload_time_iso_8601": "2024-02-16T13:39:32.692516Z",
"url": "https://files.pythonhosted.org/packages/38/42/730f4ef647342bd11daddfad4a8fb7f764472d68603450bc9a13971e5012/aiohttp-3.9.4rc0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d4eaed2deb72ebbe7fa9c44ecec1f0225812f0618ae8ca1c1acad660bccb3a69",
"md5": "397e404285a706ebffb9bc0ed325a839",
"sha256": "0767310b6ec6f1f63bbcad95bf9f6995967540d69f4f5ba91eeef14ff5c1a02c"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "397e404285a706ebffb9bc0ed325a839",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1311174,
"upload_time": "2024-02-16T13:39:36",
"upload_time_iso_8601": "2024-02-16T13:39:36.192058Z",
"url": "https://files.pythonhosted.org/packages/d4/ea/ed2deb72ebbe7fa9c44ecec1f0225812f0618ae8ca1c1acad660bccb3a69/aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dc6bacebb795d898bfd06de3fbf614d8e7cb5fdeba405f37b13442cfeb771bdd",
"md5": "14aeb6cdbe452c733acc6beb7550e576",
"sha256": "1fda54d331fc7e2a13e176550885e74567814b14e35ec8c8bf58c460ba89bbf2"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "14aeb6cdbe452c733acc6beb7550e576",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1347992,
"upload_time": "2024-02-16T13:39:38",
"upload_time_iso_8601": "2024-02-16T13:39:38.544933Z",
"url": "https://files.pythonhosted.org/packages/dc/6b/acebb795d898bfd06de3fbf614d8e7cb5fdeba405f37b13442cfeb771bdd/aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d8d083ae30d67d315885f8746e8d8eeed6cd1dcf40e2dc2bc182710a041f4b71",
"md5": "4236d7659e9df38eee37f9d23e1f243a",
"sha256": "850cbaadd0bc095a9c7baa4e554f0472a8ca3beff222bbdb963805f950040f66"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "4236d7659e9df38eee37f9d23e1f243a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1385466,
"upload_time": "2024-02-16T13:39:41",
"upload_time_iso_8601": "2024-02-16T13:39:41.147384Z",
"url": "https://files.pythonhosted.org/packages/d8/d0/83ae30d67d315885f8746e8d8eeed6cd1dcf40e2dc2bc182710a041f4b71/aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ba883ec383e52cc628fa132d74ceaf1afee27eec4504123526dc5eecc896dfbe",
"md5": "2ccb434cd4222a44ffbc191a708c11b3",
"sha256": "f04f1fa39941023b39807bcbcc38b105a953a41bd990ea31eeb78c71f13e14db"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "2ccb434cd4222a44ffbc191a708c11b3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1296253,
"upload_time": "2024-02-16T13:39:43",
"upload_time_iso_8601": "2024-02-16T13:39:43.374255Z",
"url": "https://files.pythonhosted.org/packages/ba/88/3ec383e52cc628fa132d74ceaf1afee27eec4504123526dc5eecc896dfbe/aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ee5d8b391a43810e3b80120b24006fd8010243b889f421bc6b03f9781a180b40",
"md5": "f504dc767e6099112544379810336de1",
"sha256": "83abcbcaadfe8ce11278e7370e3c380f5305e4a19b892f4dfd1d6fd05389176a"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "f504dc767e6099112544379810336de1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1255972,
"upload_time": "2024-02-16T13:39:46",
"upload_time_iso_8601": "2024-02-16T13:39:46.130255Z",
"url": "https://files.pythonhosted.org/packages/ee/5d/8b391a43810e3b80120b24006fd8010243b889f421bc6b03f9781a180b40/aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "226c2a54c5490047c8ba7b8fd72124d9939dbb7e5280e72f5258e456d0071622",
"md5": "03550e92dbcb41e39127b32a765e633f",
"sha256": "3624566806545abe02ed7543a9fc31adb1a520f1467ee0b7fd249be754cb3761"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "03550e92dbcb41e39127b32a765e633f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1317378,
"upload_time": "2024-02-16T13:39:48",
"upload_time_iso_8601": "2024-02-16T13:39:48.700199Z",
"url": "https://files.pythonhosted.org/packages/22/6c/2a54c5490047c8ba7b8fd72124d9939dbb7e5280e72f5258e456d0071622/aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eb3b6845228321ce8351c146399579002c4ad227c3c2ebcde036b81e42b6f813",
"md5": "924f9839fb10c7f57ae58cdf96aa2685",
"sha256": "c7b0257b0d0c00c57b2631bf861953b85a643e0aa54f6843d7424cec6d000491"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "924f9839fb10c7f57ae58cdf96aa2685",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1267016,
"upload_time": "2024-02-16T13:39:51",
"upload_time_iso_8601": "2024-02-16T13:39:51.095463Z",
"url": "https://files.pythonhosted.org/packages/eb/3b/6845228321ce8351c146399579002c4ad227c3c2ebcde036b81e42b6f813/aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4ec6ef4a34b26fc73139d5268428a13bc0268e004864a35c3cfe85cbf78ce7dd",
"md5": "89e4427a0709ea323c2b42b50ba23973",
"sha256": "056009df6402f0d5b0ccebcc622082859189a2f6e77a250e7ce2f6b07b9e550e"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "89e4427a0709ea323c2b42b50ba23973",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1349001,
"upload_time": "2024-02-16T13:39:53",
"upload_time_iso_8601": "2024-02-16T13:39:53.307756Z",
"url": "https://files.pythonhosted.org/packages/4e/c6/ef4a34b26fc73139d5268428a13bc0268e004864a35c3cfe85cbf78ce7dd/aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "22fcd43fdd0626c27742b9307623479baf8e7ec2fbedaf62835a8e00e8b5a3c9",
"md5": "6f88b7d9d58d563e98dd61c98b2ac32e",
"sha256": "674a1fdf8403892753e410679b0aa9a9464940818f2f80de12deb12904fd1453"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "6f88b7d9d58d563e98dd61c98b2ac32e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1392992,
"upload_time": "2024-02-16T13:39:55",
"upload_time_iso_8601": "2024-02-16T13:39:55.483402Z",
"url": "https://files.pythonhosted.org/packages/22/fc/d43fdd0626c27742b9307623479baf8e7ec2fbedaf62835a8e00e8b5a3c9/aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "efdc97cfb4e9072920fce9d1d26d57f4fbb32b7bb559b89491a347732521f871",
"md5": "d6a3088efcf68fd8dbf1585f5ddea0af",
"sha256": "b5225f3d0471271a35bb7e3a83d123032f005785a2b97d7ab455beab64c0f4e0"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "d6a3088efcf68fd8dbf1585f5ddea0af",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1300963,
"upload_time": "2024-02-16T13:39:57",
"upload_time_iso_8601": "2024-02-16T13:39:57.689807Z",
"url": "https://files.pythonhosted.org/packages/ef/dc/97cfb4e9072920fce9d1d26d57f4fbb32b7bb559b89491a347732521f871/aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "01c698c68c9fed9cfa41b514f5e0932e45d71fee221f44b8f78ec551b5d1c115",
"md5": "6dc22dc1d93b8e90e3416000bba7578e",
"sha256": "4d485b038c56ffe1adbfaf2c1bbcbc6ee959ec4f1f882fabb89d5690bd56d8f4"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "6dc22dc1d93b8e90e3416000bba7578e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 349075,
"upload_time": "2024-02-16T13:40:00",
"upload_time_iso_8601": "2024-02-16T13:40:00.166409Z",
"url": "https://files.pythonhosted.org/packages/01/c6/98c68c9fed9cfa41b514f5e0932e45d71fee221f44b8f78ec551b5d1c115/aiohttp-3.9.4rc0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a74d5c9ce209759b1d9c2bdb1e3c26be6d14e0675e8494e5a1605a63a45d794c",
"md5": "1dba1ab810f380fb6e9fb509ccc4b956",
"sha256": "9c3f63d1e9eca4ace8b9aab75fce0639b5b35f79a90fd210c0c7c8159ee6a590"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "1dba1ab810f380fb6e9fb509ccc4b956",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 369295,
"upload_time": "2024-02-16T13:40:05",
"upload_time_iso_8601": "2024-02-16T13:40:05.343589Z",
"url": "https://files.pythonhosted.org/packages/a7/4d/5c9ce209759b1d9c2bdb1e3c26be6d14e0675e8494e5a1605a63a45d794c/aiohttp-3.9.4rc0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2f14ff385a71faf03e57b5cde35d7cf82436176bc3c7baf81985b66e11241172",
"md5": "33af4abd798a6e822bac188ff87d4c81",
"sha256": "880bb009f29bccf0f64932c574083ebb7d8b08daf9c3c3c990ede0e110507899"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp312-cp312-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "33af4abd798a6e822bac188ff87d4c81",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 593826,
"upload_time": "2024-02-16T13:40:11",
"upload_time_iso_8601": "2024-02-16T13:40:11.428741Z",
"url": "https://files.pythonhosted.org/packages/2f/14/ff385a71faf03e57b5cde35d7cf82436176bc3c7baf81985b66e11241172/aiohttp-3.9.4rc0-cp312-cp312-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7e5e354d81fede0655b03112089992a284c3831860da7aefcba347f04b7eff31",
"md5": "a8c6872b458f31a08f26f30ee97c9a7c",
"sha256": "10a89e0e7aea23bc555787eeb38ccabf610cf14d5ddce4db5168d459651ca6c5"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "a8c6872b458f31a08f26f30ee97c9a7c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 394502,
"upload_time": "2024-02-16T13:40:15",
"upload_time_iso_8601": "2024-02-16T13:40:15.370892Z",
"url": "https://files.pythonhosted.org/packages/7e/5e/354d81fede0655b03112089992a284c3831860da7aefcba347f04b7eff31/aiohttp-3.9.4rc0-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6b9efadddceeeb2db24750765bce615adedb5ecb9168e807c3d52299f6aa1f14",
"md5": "95e33b209bc85975fe2f2364c09c0a6a",
"sha256": "f9b063449ad7c5125330361f8eb57b831d887f90c0865c99b380d35fb805eaef"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "95e33b209bc85975fe2f2364c09c0a6a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 390928,
"upload_time": "2024-02-16T13:40:18",
"upload_time_iso_8601": "2024-02-16T13:40:18.731491Z",
"url": "https://files.pythonhosted.org/packages/6b/9e/fadddceeeb2db24750765bce615adedb5ecb9168e807c3d52299f6aa1f14/aiohttp-3.9.4rc0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0908ad710aadbf3cc7eb3b7efa7bb5379f9b30b3c78b8331e3152f65e6a95e41",
"md5": "5e9e1d7a9de82cad95a7e0c0387e1296",
"sha256": "86b783a685f16218f2ef5a5aae138e285a5f2f66ad135562b21e9b5a0b8737fa"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5e9e1d7a9de82cad95a7e0c0387e1296",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1320777,
"upload_time": "2024-02-16T13:40:23",
"upload_time_iso_8601": "2024-02-16T13:40:23.620840Z",
"url": "https://files.pythonhosted.org/packages/09/08/ad710aadbf3cc7eb3b7efa7bb5379f9b30b3c78b8331e3152f65e6a95e41/aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "35a7491d26f332f1fafeb5f51cb4859d0d4f15a54a1e80d4bc28765f9ebf3dfb",
"md5": "ca29f0626baab66ef5486b881b471ff6",
"sha256": "90bb64d4160c77ee567b76c34e3b40f4aec20f761acaa9f3950ba8d5b1fa2fa6"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "ca29f0626baab66ef5486b881b471ff6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1360502,
"upload_time": "2024-02-16T13:40:27",
"upload_time_iso_8601": "2024-02-16T13:40:27.432453Z",
"url": "https://files.pythonhosted.org/packages/35/a7/491d26f332f1fafeb5f51cb4859d0d4f15a54a1e80d4bc28765f9ebf3dfb/aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3a46f580b558092c66a8411cd5e91cb473c20f6fea06c592d6cb05aeb486b7bb",
"md5": "db3434cba2b02bba4a64d4bdf3ffec7a",
"sha256": "e6b1cf340280900e9ab12c93f2da0697bffb032b2afd4a2ffa6c2630eb9e8cbc"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "db3434cba2b02bba4a64d4bdf3ffec7a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1403156,
"upload_time": "2024-02-16T13:40:31",
"upload_time_iso_8601": "2024-02-16T13:40:31.879448Z",
"url": "https://files.pythonhosted.org/packages/3a/46/f580b558092c66a8411cd5e91cb473c20f6fea06c592d6cb05aeb486b7bb/aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5c9f5dbb4ec7dad95b776f37370117a320a64bfd31e89bab0484da031a041e2b",
"md5": "765dc83ea690355bfc573f627746eb71",
"sha256": "b385d33b454e26068b0c3c8e0d9e157aac152b5bf21c9bc2d7d9343bb19fdc49"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "765dc83ea690355bfc573f627746eb71",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1316249,
"upload_time": "2024-02-16T13:40:34",
"upload_time_iso_8601": "2024-02-16T13:40:34.976389Z",
"url": "https://files.pythonhosted.org/packages/5c/9f/5dbb4ec7dad95b776f37370117a320a64bfd31e89bab0484da031a041e2b/aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5c4787752dbb18f26fd1bf0ffd44f258838116cb04616672fea2b972b2d68314",
"md5": "a42af82ae310235a207fc1de5bd087dd",
"sha256": "df6ea211dde515db96f895b883ef6ecae0dc9a9e16b80426b7dca5f4e3cead1a"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "a42af82ae310235a207fc1de5bd087dd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1267971,
"upload_time": "2024-02-16T13:40:39",
"upload_time_iso_8601": "2024-02-16T13:40:39.702271Z",
"url": "https://files.pythonhosted.org/packages/5c/47/87752dbb18f26fd1bf0ffd44f258838116cb04616672fea2b972b2d68314/aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6a4ec4a4d74c0b63b2aab04748fff59ac3caaf9f17b61066bf9b0310a304dffc",
"md5": "7ea22d1564847ff72bd66dfc32370745",
"sha256": "6e7449ed43fd287c6daf5b5452d354365f218f3965c23a127f988bd850e47038"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "7ea22d1564847ff72bd66dfc32370745",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1323309,
"upload_time": "2024-02-16T13:40:44",
"upload_time_iso_8601": "2024-02-16T13:40:44.592803Z",
"url": "https://files.pythonhosted.org/packages/6a/4e/c4a4d74c0b63b2aab04748fff59ac3caaf9f17b61066bf9b0310a304dffc/aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "96250571910ac1abeaf5542fcc07037e95bb99e20ec456db07d2ee534610d2fb",
"md5": "24c31d6fb9a74f05c2e125211af1bb70",
"sha256": "161c3547fe8b7f8d460bd7e0d3f34e902395167e6b0d579e6f8353f7b2e7f997"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "24c31d6fb9a74f05c2e125211af1bb70",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1265909,
"upload_time": "2024-02-16T13:40:48",
"upload_time_iso_8601": "2024-02-16T13:40:48.619462Z",
"url": "https://files.pythonhosted.org/packages/96/25/0571910ac1abeaf5542fcc07037e95bb99e20ec456db07d2ee534610d2fb/aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d7fa4968c5543c2c6d2e905312d8f2155cfa69f1f461d2cdc327cc860630d446",
"md5": "706b1a9f57136c452e7cce98be0fcb31",
"sha256": "453ec6614361d2feedbc182d635600686481537358c31a5d7c7273eeef0cc30b"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "706b1a9f57136c452e7cce98be0fcb31",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1351291,
"upload_time": "2024-02-16T13:40:51",
"upload_time_iso_8601": "2024-02-16T13:40:51.827998Z",
"url": "https://files.pythonhosted.org/packages/d7/fa/4968c5543c2c6d2e905312d8f2155cfa69f1f461d2cdc327cc860630d446/aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a1df25819cf68db4b59678ccfea3443d845bfce4c5d762411cedec43a193ac9d",
"md5": "5326f49c37ae514fc56d24ea9d81ea9e",
"sha256": "147c376807d39b46d0abf0022c10a5653c55b46a8e4169c0865f3c4f74f5483d"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "5326f49c37ae514fc56d24ea9d81ea9e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1399248,
"upload_time": "2024-02-16T13:40:55",
"upload_time_iso_8601": "2024-02-16T13:40:55.923483Z",
"url": "https://files.pythonhosted.org/packages/a1/df/25819cf68db4b59678ccfea3443d845bfce4c5d762411cedec43a193ac9d/aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "262e9f5b95f4d4c1e3f6efd07567f27d9edd51ff85b9246e41755a74183fb905",
"md5": "e90a6c776d36cd8f26caf386cc794b44",
"sha256": "f410c8390f1c24989fc8bcf89a3bdf87f965e2d29ac2ab0a5d0ffe8b03f785e0"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "e90a6c776d36cd8f26caf386cc794b44",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1317756,
"upload_time": "2024-02-16T13:40:58",
"upload_time_iso_8601": "2024-02-16T13:40:58.329738Z",
"url": "https://files.pythonhosted.org/packages/26/2e/9f5b95f4d4c1e3f6efd07567f27d9edd51ff85b9246e41755a74183fb905/aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e040eace076d2d850a11378720a45e266d54909ac97e4da311792fff32900b29",
"md5": "d0f94ef00d9553ca55af9a9b36dfb4e4",
"sha256": "f557dbbf729ed09a255fa68545fb2458d77fd47eb71ad1caf6868cf9d392a22f"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "d0f94ef00d9553ca55af9a9b36dfb4e4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 346166,
"upload_time": "2024-02-16T13:41:00",
"upload_time_iso_8601": "2024-02-16T13:41:00.907882Z",
"url": "https://files.pythonhosted.org/packages/e0/40/eace076d2d850a11378720a45e266d54909ac97e4da311792fff32900b29/aiohttp-3.9.4rc0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eef3a11cecfd02057fc13e11780268a365ee5e642ff0591c198ec35d0bb6abb1",
"md5": "cfd9f1e242ba45455a556af804fd84c3",
"sha256": "1c0ac8809d6cf6847e54580839119979388c7a01f0702820ecd434a437aa41ff"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "cfd9f1e242ba45455a556af804fd84c3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 367603,
"upload_time": "2024-02-16T13:41:03",
"upload_time_iso_8601": "2024-02-16T13:41:03.298762Z",
"url": "https://files.pythonhosted.org/packages/ee/f3/a11cecfd02057fc13e11780268a365ee5e642ff0591c198ec35d0bb6abb1/aiohttp-3.9.4rc0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8146a3b6374899d393101111676eb0dc68a198d43f425860e53c6047cc9937f4",
"md5": "018a98f6fca3bb6456bf82b0edfefa7d",
"sha256": "495ff73503ad25a0475effb33554cbaf0d829a6267e89d2ce60115b3303a0914"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "018a98f6fca3bb6456bf82b0edfefa7d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 599670,
"upload_time": "2024-02-16T13:41:05",
"upload_time_iso_8601": "2024-02-16T13:41:05.879781Z",
"url": "https://files.pythonhosted.org/packages/81/46/a3b6374899d393101111676eb0dc68a198d43f425860e53c6047cc9937f4/aiohttp-3.9.4rc0-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b99608de120142e52816278460ae43e4267a981b2db781114bcd2edaa278772b",
"md5": "5fd265e27ed4ef7d93ceabb4f92885c8",
"sha256": "f6af5369775702a2efec662795144fa79bf675f2150fda4f284fac4b377bca36"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "5fd265e27ed4ef7d93ceabb4f92885c8",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 401152,
"upload_time": "2024-02-16T13:41:08",
"upload_time_iso_8601": "2024-02-16T13:41:08.295421Z",
"url": "https://files.pythonhosted.org/packages/b9/96/08de120142e52816278460ae43e4267a981b2db781114bcd2edaa278772b/aiohttp-3.9.4rc0-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d472e249f24800e9386250993518ea3bd9cc23e9e3716343feb9b46ba6a8b71c",
"md5": "2a24b97402b8d8b23821560e90678286",
"sha256": "a368eaf9106761b5b42681228693cb3a31c1a9b299461eb48b897ab7b5f91367"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2a24b97402b8d8b23821560e90678286",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 390422,
"upload_time": "2024-02-16T13:41:10",
"upload_time_iso_8601": "2024-02-16T13:41:10.285699Z",
"url": "https://files.pythonhosted.org/packages/d4/72/e249f24800e9386250993518ea3bd9cc23e9e3716343feb9b46ba6a8b71c/aiohttp-3.9.4rc0-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09b98a5a8ef283186be6248f23a8065eeaf2c97f199fbf43cfdebbb7af4100eb",
"md5": "c0bc313bb4e8b7a64c62e9685344d178",
"sha256": "0da6218b04c984fb16d13e2cdc80b8979673eb85d9acdc71c3662a055391417b"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c0bc313bb4e8b7a64c62e9685344d178",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1261452,
"upload_time": "2024-02-16T13:41:13",
"upload_time_iso_8601": "2024-02-16T13:41:13.231236Z",
"url": "https://files.pythonhosted.org/packages/09/b9/8a5a8ef283186be6248f23a8065eeaf2c97f199fbf43cfdebbb7af4100eb/aiohttp-3.9.4rc0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ef98103ac1b432a6d7b4d1ca6891a6f397e711300b0232075ac92f2adf053dbf",
"md5": "1a39ad971f9bc96c8fb6e34ae79f7b07",
"sha256": "a0d870cf660b8e824de7278b0fbd50ea34931e6a9af4da41d7d5d05f938f871a"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "1a39ad971f9bc96c8fb6e34ae79f7b07",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1313694,
"upload_time": "2024-02-16T13:41:15",
"upload_time_iso_8601": "2024-02-16T13:41:15.426422Z",
"url": "https://files.pythonhosted.org/packages/ef/98/103ac1b432a6d7b4d1ca6891a6f397e711300b0232075ac92f2adf053dbf/aiohttp-3.9.4rc0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "02cca4c9a63a1f74833597660db5d3ecfdb511a3e30715a6e45dc5e355f94a49",
"md5": "c7eb4ce2c254072abca8408387f2ffb8",
"sha256": "0ae0790d4b2f830d88f4d6edcf54510d752cedfced2cac3e48426ccb0412bfa0"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "c7eb4ce2c254072abca8408387f2ffb8",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1347512,
"upload_time": "2024-02-16T13:41:18",
"upload_time_iso_8601": "2024-02-16T13:41:18.321159Z",
"url": "https://files.pythonhosted.org/packages/02/cc/a4c9a63a1f74833597660db5d3ecfdb511a3e30715a6e45dc5e355f94a49/aiohttp-3.9.4rc0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "28aa71cae9395862713cdbffc23a2a3d90e0009385850e30423518c722b6b532",
"md5": "3763b7b0f2cc179a2ba979eeddfd3f98",
"sha256": "16b39476d4a58cebf20772ebbbdf5999accfdff2efca6876d88b47cff864977d"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3763b7b0f2cc179a2ba979eeddfd3f98",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1252084,
"upload_time": "2024-02-16T13:41:20",
"upload_time_iso_8601": "2024-02-16T13:41:20.774591Z",
"url": "https://files.pythonhosted.org/packages/28/aa/71cae9395862713cdbffc23a2a3d90e0009385850e30423518c722b6b532/aiohttp-3.9.4rc0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e55efb5b31527d50628243e73c699b1adcf633332efa32a81ee51cb866a05262",
"md5": "cc082a03d5596d8c48239b6263f2b2b1",
"sha256": "3a59af49d7cd2825b5b51193c164e428d2117427c1c52dfab55feee4f305aed9"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "cc082a03d5596d8c48239b6263f2b2b1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1218864,
"upload_time": "2024-02-16T13:41:23",
"upload_time_iso_8601": "2024-02-16T13:41:23.107462Z",
"url": "https://files.pythonhosted.org/packages/e5/5e/fb5b31527d50628243e73c699b1adcf633332efa32a81ee51cb866a05262/aiohttp-3.9.4rc0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6c76089ff3a989694829a073778ab445fb6b10e45c4b5518b982a633593da544",
"md5": "a753fc2ea665615d41ec5bc2da66bf54",
"sha256": "1cdd6b31c4b74fb0d646aacc9c822324ccb9c6edec6fdaedb7e0ac260b042cfc"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "a753fc2ea665615d41ec5bc2da66bf54",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1313852,
"upload_time": "2024-02-16T13:41:26",
"upload_time_iso_8601": "2024-02-16T13:41:26.151840Z",
"url": "https://files.pythonhosted.org/packages/6c/76/089ff3a989694829a073778ab445fb6b10e45c4b5518b982a633593da544/aiohttp-3.9.4rc0-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "daa0996dcf890dc2a5eb38f61c1867e83c86c1609cfaa9d1eb4f6820681d8515",
"md5": "d25eb4056bbcfbadd77b351785cec7d5",
"sha256": "a0c99a42aa4591f71b323e2b53e65469bfc3c79f588def72ff553110a5db1757"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "d25eb4056bbcfbadd77b351785cec7d5",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1263905,
"upload_time": "2024-02-16T13:41:28",
"upload_time_iso_8601": "2024-02-16T13:41:28.525113Z",
"url": "https://files.pythonhosted.org/packages/da/a0/996dcf890dc2a5eb38f61c1867e83c86c1609cfaa9d1eb4f6820681d8515/aiohttp-3.9.4rc0-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3886c9fbdafa7e0d988eb9013dba9dd29876a5361ca18e551d674068a571b69f",
"md5": "4c65e75b8d742b77de3c2e3d2e3dc9be",
"sha256": "22f7fad946801dfc1e2973449367944f8230885858f9e964439469176f6ee101"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp38-cp38-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "4c65e75b8d742b77de3c2e3d2e3dc9be",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1342572,
"upload_time": "2024-02-16T13:41:31",
"upload_time_iso_8601": "2024-02-16T13:41:31.229458Z",
"url": "https://files.pythonhosted.org/packages/38/86/c9fbdafa7e0d988eb9013dba9dd29876a5361ca18e551d674068a571b69f/aiohttp-3.9.4rc0-cp38-cp38-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ed0621c2f1fc4c5403f09eaac75091fc9927baa00ab3a293dcd3a9220b1bb7c7",
"md5": "399bce9271805edc1cbc0b61c6f221b3",
"sha256": "a0d18c8ac1bf9d8b12a8af4a000c5778f4ca09d4d60a609abc924079391bdc53"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp38-cp38-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "399bce9271805edc1cbc0b61c6f221b3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1383684,
"upload_time": "2024-02-16T13:41:34",
"upload_time_iso_8601": "2024-02-16T13:41:34.307035Z",
"url": "https://files.pythonhosted.org/packages/ed/06/21c2f1fc4c5403f09eaac75091fc9927baa00ab3a293dcd3a9220b1bb7c7/aiohttp-3.9.4rc0-cp38-cp38-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "62a21e1ccb5c5c7ea1878a99bbd14b79a2b01a815ff93c86cb78b0e864c53938",
"md5": "6bb6dac51cbadb16300014ac278b5630",
"sha256": "cb795c189e2dbb02f5fda273bd028f268f98d82d3fcc5a14ee7239494927c617"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "6bb6dac51cbadb16300014ac278b5630",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1304413,
"upload_time": "2024-02-16T13:41:37",
"upload_time_iso_8601": "2024-02-16T13:41:37.497015Z",
"url": "https://files.pythonhosted.org/packages/62/a2/1e1ccb5c5c7ea1878a99bbd14b79a2b01a815ff93c86cb78b0e864c53938/aiohttp-3.9.4rc0-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d8e815ce83e3897e8282721b6b17e649f7a4683d89901c7971c295aed0314214",
"md5": "8c16d8770d22f32e5c65f7eca81936a2",
"sha256": "86f6e8e9b834ff17c6486bbf80dc13e36fd6518803880790e04995ba55ae292c"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "8c16d8770d22f32e5c65f7eca81936a2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 351820,
"upload_time": "2024-02-16T13:41:42",
"upload_time_iso_8601": "2024-02-16T13:41:42.071613Z",
"url": "https://files.pythonhosted.org/packages/d8/e8/15ce83e3897e8282721b6b17e649f7a4683d89901c7971c295aed0314214/aiohttp-3.9.4rc0-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4c743af29abaaa31cce87a80188043adae7f56dba6785a59d50d6ad58dd23589",
"md5": "482ac831c741e6e72b78c543e0a21c1f",
"sha256": "18e2db6cde06ba6467766620d69dab2ea4298481b56a7d6fe53d38841eb879fd"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "482ac831c741e6e72b78c543e0a21c1f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 371699,
"upload_time": "2024-02-16T13:41:44",
"upload_time_iso_8601": "2024-02-16T13:41:44.808575Z",
"url": "https://files.pythonhosted.org/packages/4c/74/3af29abaaa31cce87a80188043adae7f56dba6785a59d50d6ad58dd23589/aiohttp-3.9.4rc0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8b3ff8bfd38b40f23f189bb4020b55406b684b8d719b7370574ac490ecd3bc3a",
"md5": "2d5164fe7bc8501230bf5490344866dc",
"sha256": "e4c90431921d07b4ca869a2b5335d3f00b8bdc0b63772b76e3990742e2b127aa"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "2d5164fe7bc8501230bf5490344866dc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 597388,
"upload_time": "2024-02-16T13:41:47",
"upload_time_iso_8601": "2024-02-16T13:41:47.229892Z",
"url": "https://files.pythonhosted.org/packages/8b/3f/f8bfd38b40f23f189bb4020b55406b684b8d719b7370574ac490ecd3bc3a/aiohttp-3.9.4rc0-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9c80d1832846e944006b54b2cf0af36c7fc99b64e4b13ad30c2c33fb0c713dd8",
"md5": "3436b83be6e25b732765b2ad01951d08",
"sha256": "25e390c4866e22437cd7b329caa3d5e3435b86dc40abc091227b00d11a29fcd4"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "3436b83be6e25b732765b2ad01951d08",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 400048,
"upload_time": "2024-02-16T13:41:49",
"upload_time_iso_8601": "2024-02-16T13:41:49.915816Z",
"url": "https://files.pythonhosted.org/packages/9c/80/d1832846e944006b54b2cf0af36c7fc99b64e4b13ad30c2c33fb0c713dd8/aiohttp-3.9.4rc0-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4d572073ec25817d80beacc1cd74e8fbecf281b57b9d66c2885eb40b858764a7",
"md5": "a96fb4d2266536bbe4ca6a1bdd238fc3",
"sha256": "8b7cfa5f9d58ce3a7050acba332750543993d97f04ac1dfa026cce1abf943911"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a96fb4d2266536bbe4ca6a1bdd238fc3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 389235,
"upload_time": "2024-02-16T13:41:52",
"upload_time_iso_8601": "2024-02-16T13:41:52.359125Z",
"url": "https://files.pythonhosted.org/packages/4d/57/2073ec25817d80beacc1cd74e8fbecf281b57b9d66c2885eb40b858764a7/aiohttp-3.9.4rc0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "190c3ee846c875161325f98856d4610ebe27baab883b7055c0376abe2067c9dd",
"md5": "e711ef670ea2bb5d4ae4bd634f6f2194",
"sha256": "b477128dd437d86dadd94fe536c44d3302a1712d1c91a7ee4fe7df638e82eb1c"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e711ef670ea2bb5d4ae4bd634f6f2194",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1240001,
"upload_time": "2024-02-16T13:41:55",
"upload_time_iso_8601": "2024-02-16T13:41:55.204210Z",
"url": "https://files.pythonhosted.org/packages/19/0c/3ee846c875161325f98856d4610ebe27baab883b7055c0376abe2067c9dd/aiohttp-3.9.4rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "58900a1e7f7820c5d7dc05e798cfd8e3b261b63fd62302d120c5fa4d2e548eed",
"md5": "b554fe64c16c095585f67aee3962f41d",
"sha256": "5187729c428245154b53501d8f577a90b64f43b2b39a8ec2aec1a6e7258446fe"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b554fe64c16c095585f67aee3962f41d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1273960,
"upload_time": "2024-02-16T13:41:57",
"upload_time_iso_8601": "2024-02-16T13:41:57.375353Z",
"url": "https://files.pythonhosted.org/packages/58/90/0a1e7f7820c5d7dc05e798cfd8e3b261b63fd62302d120c5fa4d2e548eed/aiohttp-3.9.4rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "11a6898f2e1ce5f3dc96f4d0c004178d10e4f1ec15663f052c7e97cf324646fb",
"md5": "751955cdddbb225093fe7d376f2264b1",
"sha256": "80d3637362667672d53083b5c165dad03712ee9f504a61d5f8d70ff3d4302da1"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "751955cdddbb225093fe7d376f2264b1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1309185,
"upload_time": "2024-02-16T13:42:00",
"upload_time_iso_8601": "2024-02-16T13:42:00.364693Z",
"url": "https://files.pythonhosted.org/packages/11/a6/898f2e1ce5f3dc96f4d0c004178d10e4f1ec15663f052c7e97cf324646fb/aiohttp-3.9.4rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d3cf93ad679a00c3aa240df729ec9df4874f7cae844c0543d258c0429310b5b2",
"md5": "b50df4c18a30033bc11c6c2fc2cc1358",
"sha256": "2a27084f4d0e5746534d504023630dfeb08e00ffb695b7c41bbf7f2a17e2ebe0"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b50df4c18a30033bc11c6c2fc2cc1358",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1229972,
"upload_time": "2024-02-16T13:42:07",
"upload_time_iso_8601": "2024-02-16T13:42:07.471736Z",
"url": "https://files.pythonhosted.org/packages/d3/cf/93ad679a00c3aa240df729ec9df4874f7cae844c0543d258c0429310b5b2/aiohttp-3.9.4rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a977be47a514dcf8ef55c7b0d65c2b7f1e3a6998fd6f0dc33e905bba924f3965",
"md5": "8d856bca24167400428dcf35d925557f",
"sha256": "14e16b224eb540c3cec50236bf7cc9926ca646f86cdd1875715ded2e00ae4dde"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8d856bca24167400428dcf35d925557f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1203115,
"upload_time": "2024-02-16T13:42:15",
"upload_time_iso_8601": "2024-02-16T13:42:15.252760Z",
"url": "https://files.pythonhosted.org/packages/a9/77/be47a514dcf8ef55c7b0d65c2b7f1e3a6998fd6f0dc33e905bba924f3965/aiohttp-3.9.4rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0f226d95ba8d33a0cd69434df7ac5098924ce4ef642ff5588515981bbe3560f0",
"md5": "57553efb651b06ac090d91ad85731256",
"sha256": "4557bb42e6d54a04294bccc685853fe297df7aa58b9e2de425f27b79a955fa6c"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "57553efb651b06ac090d91ad85731256",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1252853,
"upload_time": "2024-02-16T13:42:22",
"upload_time_iso_8601": "2024-02-16T13:42:22.871727Z",
"url": "https://files.pythonhosted.org/packages/0f/22/6d95ba8d33a0cd69434df7ac5098924ce4ef642ff5588515981bbe3560f0/aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8b7fc84211e6b9f6785d8af4a8d2aa4ee121ba0153e6d7acd7f7f19e99ab7a34",
"md5": "17878f1122d203b3ea14cd926b390e9b",
"sha256": "d433a690cc702ce025071a53194ac58326d3624404883c6a936fded83bbd55b0"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "17878f1122d203b3ea14cd926b390e9b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1212926,
"upload_time": "2024-02-16T13:42:25",
"upload_time_iso_8601": "2024-02-16T13:42:25.161049Z",
"url": "https://files.pythonhosted.org/packages/8b/7f/c84211e6b9f6785d8af4a8d2aa4ee121ba0153e6d7acd7f7f19e99ab7a34/aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "97c63426f07af93a6fd7a182d1f13b923bfc32a90289649aba48da2f4454c8e1",
"md5": "f94f58c1010ed2efe294414b96865314",
"sha256": "5a7882336a581e5aadd969c9e6512cbccf1fcd66f2628dc137eeca43ad60c1bb"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "f94f58c1010ed2efe294414b96865314",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1283054,
"upload_time": "2024-02-16T13:42:27",
"upload_time_iso_8601": "2024-02-16T13:42:27.887635Z",
"url": "https://files.pythonhosted.org/packages/97/c6/3426f07af93a6fd7a182d1f13b923bfc32a90289649aba48da2f4454c8e1/aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6c0b8d29b175aac832b788aad2afe0490c87cf842528cc32d73ce521111b38fd",
"md5": "fdbc12d81a684d36c4ca1b42bb2e2be9",
"sha256": "e39b0e3751977efdbb8d186895a838d3d3cf6b9f38e0b6b350493bac377a015a"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "fdbc12d81a684d36c4ca1b42bb2e2be9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1326773,
"upload_time": "2024-02-16T13:42:31",
"upload_time_iso_8601": "2024-02-16T13:42:31.150692Z",
"url": "https://files.pythonhosted.org/packages/6c/0b/8d29b175aac832b788aad2afe0490c87cf842528cc32d73ce521111b38fd/aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0fc9ae67167a2be5fa71557fefdb43834c3c4d8306e76318546efac78ba77cf1",
"md5": "db36ca59fd0a20d8a3dbe75dfa5916e8",
"sha256": "e773663d11076956529c11b3e583121247b46cfdd2ce02b4e4ac1c9e6c751be7"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "db36ca59fd0a20d8a3dbe75dfa5916e8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1243337,
"upload_time": "2024-02-16T13:42:33",
"upload_time_iso_8601": "2024-02-16T13:42:33.973730Z",
"url": "https://files.pythonhosted.org/packages/0f/c9/ae67167a2be5fa71557fefdb43834c3c4d8306e76318546efac78ba77cf1/aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ebfbe819800904a2edefde2cd7301e0fe48a2943353e5b29eed46b8fada52651",
"md5": "dc2c9dfb5bebcaae95e731f98eb2194b",
"sha256": "2639883f5a555acad7f9f27dacaf6517a0155b57d86a107feea3bee292d997b7"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "dc2c9dfb5bebcaae95e731f98eb2194b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 350816,
"upload_time": "2024-02-16T13:42:36",
"upload_time_iso_8601": "2024-02-16T13:42:36.896496Z",
"url": "https://files.pythonhosted.org/packages/eb/fb/e819800904a2edefde2cd7301e0fe48a2943353e5b29eed46b8fada52651/aiohttp-3.9.4rc0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "386a2073b3cf177e9031266d9d0824fbbe084305aac11031fb9eb97f414d03f4",
"md5": "7737b481211d16fac8655b5a16b5391f",
"sha256": "e81569300b14c415c0bca8a4edf3895aa42fdf08f4b00b84b50c86108078392c"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "7737b481211d16fac8655b5a16b5391f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 370131,
"upload_time": "2024-02-16T13:42:39",
"upload_time_iso_8601": "2024-02-16T13:42:39.139487Z",
"url": "https://files.pythonhosted.org/packages/38/6a/2073b3cf177e9031266d9d0824fbbe084305aac11031fb9eb97f414d03f4/aiohttp-3.9.4rc0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "14ab089fbe6eb1a881ee60dd3dfad77cffe02f51a13f6233c9af8290a76c9e09",
"md5": "91692e7898abe94dd849373c2dca0c5c",
"sha256": "46bb4a3c87a7508f9fdb40a0a5c98acfe8520a2cc404762e8f17bd8b834035fe"
},
"downloads": -1,
"filename": "aiohttp-3.9.4rc0.tar.gz",
"has_sig": false,
"md5_digest": "91692e7898abe94dd849373c2dca0c5c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 7496881,
"upload_time": "2024-02-16T13:42:41",
"upload_time_iso_8601": "2024-02-16T13:42:41.331469Z",
"url": "https://files.pythonhosted.org/packages/14/ab/089fbe6eb1a881ee60dd3dfad77cffe02f51a13f6233c9af8290a76c9e09/aiohttp-3.9.4rc0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.9.5": [
{
"comment_text": "",
"digests": {
"blake2b_256": "bb6bbaa5886a66dc4a9fe60df3fff543ac0cdbac3d18347889f17023b15bdceb",
"md5": "54bfc2dd0105740a31b12cd98f096006",
"sha256": "fcde4c397f673fdec23e6b05ebf8d4751314fa7c24f93334bf1f1364c1c69ac7"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "54bfc2dd0105740a31b12cd98f096006",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 597148,
"upload_time": "2024-04-16T17:45:44",
"upload_time_iso_8601": "2024-04-16T17:45:44.269305Z",
"url": "https://files.pythonhosted.org/packages/bb/6b/baa5886a66dc4a9fe60df3fff543ac0cdbac3d18347889f17023b15bdceb/aiohttp-3.9.5-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e73d557ca9d4867e0e17f69694e514999c3de0a63c11964701600c9719171b97",
"md5": "e8d641e415e3faae068398fb167c9625",
"sha256": "5d6b3f1fabe465e819aed2c421a6743d8debbde79b6a8600739300630a01bf2c"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e8d641e415e3faae068398fb167c9625",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 400697,
"upload_time": "2024-04-16T17:45:50",
"upload_time_iso_8601": "2024-04-16T17:45:50.835349Z",
"url": "https://files.pythonhosted.org/packages/e7/3d/557ca9d4867e0e17f69694e514999c3de0a63c11964701600c9719171b97/aiohttp-3.9.5-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a951d95cab6dbee773c57ff590d218633e7b9d52a103bc51060483349f3c8e1e",
"md5": "e2925763b1563e02237268a5cc6f4f39",
"sha256": "6ae79c1bc12c34082d92bf9422764f799aee4746fd7a392db46b7fd357d4a17a"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e2925763b1563e02237268a5cc6f4f39",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 389914,
"upload_time": "2024-04-16T17:45:53",
"upload_time_iso_8601": "2024-04-16T17:45:53.420588Z",
"url": "https://files.pythonhosted.org/packages/a9/51/d95cab6dbee773c57ff590d218633e7b9d52a103bc51060483349f3c8e1e/aiohttp-3.9.5-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ac035da5d4b8e88d8af96f3b2f498141cafaad9acf3282831f0036993385b2d5",
"md5": "09371fe0138f11c3fa372ac5578a6de2",
"sha256": "4d3ebb9e1316ec74277d19c5f482f98cc65a73ccd5430540d6d11682cd857430"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "09371fe0138f11c3fa372ac5578a6de2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1238262,
"upload_time": "2024-04-16T17:45:57",
"upload_time_iso_8601": "2024-04-16T17:45:57.431698Z",
"url": "https://files.pythonhosted.org/packages/ac/03/5da5d4b8e88d8af96f3b2f498141cafaad9acf3282831f0036993385b2d5/aiohttp-3.9.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7fee0c83fd6ece4200145417da81565af7e7266b3a0591fbe32129b48187a472",
"md5": "e74414fefb18ef3d647d40a88f245474",
"sha256": "84dabd95154f43a2ea80deffec9cb44d2e301e38a0c9d331cc4aa0166fe28ae3"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "e74414fefb18ef3d647d40a88f245474",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1268632,
"upload_time": "2024-04-16T17:46:00",
"upload_time_iso_8601": "2024-04-16T17:46:00.166965Z",
"url": "https://files.pythonhosted.org/packages/7f/ee/0c83fd6ece4200145417da81565af7e7266b3a0591fbe32129b48187a472/aiohttp-3.9.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6e0536471e8cbcf4c56d4917fcbe0c2c6d68119ba6e83b66d7173f39ee0125b6",
"md5": "e7888f4b2302f54df60ced8075810512",
"sha256": "c8a02fbeca6f63cb1f0475c799679057fc9268b77075ab7cf3f1c600e81dd46b"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e7888f4b2302f54df60ced8075810512",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1304001,
"upload_time": "2024-04-16T17:46:03",
"upload_time_iso_8601": "2024-04-16T17:46:03.055548Z",
"url": "https://files.pythonhosted.org/packages/6e/05/36471e8cbcf4c56d4917fcbe0c2c6d68119ba6e83b66d7173f39ee0125b6/aiohttp-3.9.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a009e7637f4f0760cad4d67347bbd8311c6ad0259a3fc01f04555af9e84bd378",
"md5": "643454e4f4cd643b8cf813ab46cfc126",
"sha256": "c26959ca7b75ff768e2776d8055bf9582a6267e24556bb7f7bd29e677932be72"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "643454e4f4cd643b8cf813ab46cfc126",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1228434,
"upload_time": "2024-04-16T17:46:05",
"upload_time_iso_8601": "2024-04-16T17:46:05.635464Z",
"url": "https://files.pythonhosted.org/packages/a0/09/e7637f4f0760cad4d67347bbd8311c6ad0259a3fc01f04555af9e84bd378/aiohttp-3.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f446c36596481a148014b0b6d4a62570baf5580aede5acc95901317b12cc3308",
"md5": "956d1586f9efd8fa4c73f153f822279e",
"sha256": "714d4e5231fed4ba2762ed489b4aec07b2b9953cf4ee31e9871caac895a839c0"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "956d1586f9efd8fa4c73f153f822279e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1201951,
"upload_time": "2024-04-16T17:46:07",
"upload_time_iso_8601": "2024-04-16T17:46:07.969871Z",
"url": "https://files.pythonhosted.org/packages/f4/46/c36596481a148014b0b6d4a62570baf5580aede5acc95901317b12cc3308/aiohttp-3.9.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dbfdf390f2a538858c0ff5d74f11226d85956d6c52b16765cc485d4f7ba7d45d",
"md5": "f8d8b77e7bee7421056a2e4a41bd4219",
"sha256": "e7a6a8354f1b62e15d48e04350f13e726fa08b62c3d7b8401c0a1314f02e3558"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "f8d8b77e7bee7421056a2e4a41bd4219",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1253651,
"upload_time": "2024-04-16T17:46:10",
"upload_time_iso_8601": "2024-04-16T17:46:10.182496Z",
"url": "https://files.pythonhosted.org/packages/db/fd/f390f2a538858c0ff5d74f11226d85956d6c52b16765cc485d4f7ba7d45d/aiohttp-3.9.5-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a35c322ffd8b6bb4a49d399685c1fccecb0bd0f7487bfefeef202c4f4c478bd0",
"md5": "0a4807e7b8ec701314d2a884de4e8490",
"sha256": "c413016880e03e69d166efb5a1a95d40f83d5a3a648d16486592c49ffb76d0db"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "0a4807e7b8ec701314d2a884de4e8490",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1209054,
"upload_time": "2024-04-16T17:46:12",
"upload_time_iso_8601": "2024-04-16T17:46:12.227378Z",
"url": "https://files.pythonhosted.org/packages/a3/5c/322ffd8b6bb4a49d399685c1fccecb0bd0f7487bfefeef202c4f4c478bd0/aiohttp-3.9.5-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "774d892098719e00bcf746a9fccc5f6854b1cfaf0d892de8ca5a646083eb12e2",
"md5": "770d1e8b7119b7cc31f6ae83b1fda24e",
"sha256": "ff84aeb864e0fac81f676be9f4685f0527b660f1efdc40dcede3c251ef1e867f"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "770d1e8b7119b7cc31f6ae83b1fda24e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1276895,
"upload_time": "2024-04-16T17:46:14",
"upload_time_iso_8601": "2024-04-16T17:46:14.304914Z",
"url": "https://files.pythonhosted.org/packages/77/4d/892098719e00bcf746a9fccc5f6854b1cfaf0d892de8ca5a646083eb12e2/aiohttp-3.9.5-cp310-cp310-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b8e617062e803031c760bc452117f0789f36545355d287258889ccfe6f57cce8",
"md5": "9365d8af2d2649493d96387eccdc735e",
"sha256": "ad7f2919d7dac062f24d6f5fe95d401597fbb015a25771f85e692d043c9d7832"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "9365d8af2d2649493d96387eccdc735e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1319624,
"upload_time": "2024-04-16T17:46:16",
"upload_time_iso_8601": "2024-04-16T17:46:16.760314Z",
"url": "https://files.pythonhosted.org/packages/b8/e6/17062e803031c760bc452117f0789f36545355d287258889ccfe6f57cce8/aiohttp-3.9.5-cp310-cp310-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2500d3d4a9e23e4d810a345f8ca24550caec0aaca7307fd692e0b939746b1d78",
"md5": "a12f7e12b6cc0b289c34995bae52094b",
"sha256": "702e2c7c187c1a498a4e2b03155d52658fdd6fda882d3d7fbb891a5cf108bb10"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "a12f7e12b6cc0b289c34995bae52094b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1243253,
"upload_time": "2024-04-16T17:46:19",
"upload_time_iso_8601": "2024-04-16T17:46:19.403720Z",
"url": "https://files.pythonhosted.org/packages/25/00/d3d4a9e23e4d810a345f8ca24550caec0aaca7307fd692e0b939746b1d78/aiohttp-3.9.5-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ebcf3b2dcbed86574b0264f9f964d1c27a120aa888a362d80cd3586de0616d1b",
"md5": "21fc6131bb5eec1bc45ac38bab8571d6",
"sha256": "67c3119f5ddc7261d47163ed86d760ddf0e625cd6246b4ed852e82159617b5fb"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "21fc6131bb5eec1bc45ac38bab8571d6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 351398,
"upload_time": "2024-04-16T17:46:21",
"upload_time_iso_8601": "2024-04-16T17:46:21.990587Z",
"url": "https://files.pythonhosted.org/packages/eb/cf/3b2dcbed86574b0264f9f964d1c27a120aa888a362d80cd3586de0616d1b/aiohttp-3.9.5-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "60693febe2b4a12bc34721eb2ddb60b50d9e7fc8bdac98abb4019ffcd8032272",
"md5": "3f264b82cb32063673a0905e1a1b385d",
"sha256": "471f0ef53ccedec9995287f02caf0c068732f026455f07db3f01a46e49d76bbb"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "3f264b82cb32063673a0905e1a1b385d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 370706,
"upload_time": "2024-04-16T17:46:24",
"upload_time_iso_8601": "2024-04-16T17:46:24.727582Z",
"url": "https://files.pythonhosted.org/packages/60/69/3febe2b4a12bc34721eb2ddb60b50d9e7fc8bdac98abb4019ffcd8032272/aiohttp-3.9.5-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "67f5aa23d04a1bb57e5f51108a6473964a2618cc83e608e23e3543031aa2bb3a",
"md5": "c51845edad50d111f0b923b4d60b1439",
"sha256": "e0ae53e33ee7476dd3d1132f932eeb39bf6125083820049d06edcdca4381f342"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "c51845edad50d111f0b923b4d60b1439",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 599387,
"upload_time": "2024-04-16T17:46:27",
"upload_time_iso_8601": "2024-04-16T17:46:27.238108Z",
"url": "https://files.pythonhosted.org/packages/67/f5/aa23d04a1bb57e5f51108a6473964a2618cc83e608e23e3543031aa2bb3a/aiohttp-3.9.5-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "97e7575ca16871071313a7a7a03fa055f0c3d52f77eb8583b373ac17fc87ec15",
"md5": "239f11867a95db6edb4d85599978ba97",
"sha256": "c088c4d70d21f8ca5c0b8b5403fe84a7bc8e024161febdd4ef04575ef35d474d"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "239f11867a95db6edb4d85599978ba97",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 402427,
"upload_time": "2024-04-16T17:46:29",
"upload_time_iso_8601": "2024-04-16T17:46:29.027642Z",
"url": "https://files.pythonhosted.org/packages/97/e7/575ca16871071313a7a7a03fa055f0c3d52f77eb8583b373ac17fc87ec15/aiohttp-3.9.5-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e78266be6e31daad1a2dc99c777dfb12b62044691ec573b6e48409a0d804fc7",
"md5": "221657e4049ff62a03bbf8f884860615",
"sha256": "639d0042b7670222f33b0028de6b4e2fad6451462ce7df2af8aee37dcac55424"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "221657e4049ff62a03bbf8f884860615",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 390243,
"upload_time": "2024-04-16T17:46:31",
"upload_time_iso_8601": "2024-04-16T17:46:31.583598Z",
"url": "https://files.pythonhosted.org/packages/4e/78/266be6e31daad1a2dc99c777dfb12b62044691ec573b6e48409a0d804fc7/aiohttp-3.9.5-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "73f1084f82069428b87d2b5c1e3e2d1d51911981f4cccd94c5c3691f10061c99",
"md5": "1dd0ef2986e279f1ef622d8d3867a545",
"sha256": "f26383adb94da5e7fb388d441bf09c61e5e35f455a3217bfd790c6b6bc64b2ee"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1dd0ef2986e279f1ef622d8d3867a545",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1312924,
"upload_time": "2024-04-16T17:46:33",
"upload_time_iso_8601": "2024-04-16T17:46:33.966215Z",
"url": "https://files.pythonhosted.org/packages/73/f1/084f82069428b87d2b5c1e3e2d1d51911981f4cccd94c5c3691f10061c99/aiohttp-3.9.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1fd6412156ea1aa44a5cc95421db85b0c7a5d1ee3ba71efad04db84305ca1968",
"md5": "8dbd8227c89a8abadf00fa3747f97fd5",
"sha256": "66331d00fb28dc90aa606d9a54304af76b335ae204d1836f65797d6fe27f1ca2"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8dbd8227c89a8abadf00fa3747f97fd5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1349620,
"upload_time": "2024-04-16T17:46:36",
"upload_time_iso_8601": "2024-04-16T17:46:36.616235Z",
"url": "https://files.pythonhosted.org/packages/1f/d6/412156ea1aa44a5cc95421db85b0c7a5d1ee3ba71efad04db84305ca1968/aiohttp-3.9.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3f42376e5e4b6f167358e1e8c6a78cae64ca49d30d6edecbab80796dbb838855",
"md5": "409868dc13928474790fe2e902ab88ae",
"sha256": "4ff550491f5492ab5ed3533e76b8567f4b37bd2995e780a1f46bca2024223233"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "409868dc13928474790fe2e902ab88ae",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1387070,
"upload_time": "2024-04-16T17:46:39",
"upload_time_iso_8601": "2024-04-16T17:46:39.460597Z",
"url": "https://files.pythonhosted.org/packages/3f/42/376e5e4b6f167358e1e8c6a78cae64ca49d30d6edecbab80796dbb838855/aiohttp-3.9.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2499e76e65ca811100b445d3c8af9764b27c5180ca11a15af694366424896647",
"md5": "d3bc3d7907fa984bace019d582b304b3",
"sha256": "f22eb3a6c1080d862befa0a89c380b4dafce29dc6cd56083f630073d102eb595"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d3bc3d7907fa984bace019d582b304b3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1297781,
"upload_time": "2024-04-16T17:46:41",
"upload_time_iso_8601": "2024-04-16T17:46:41.964626Z",
"url": "https://files.pythonhosted.org/packages/24/99/e76e65ca811100b445d3c8af9764b27c5180ca11a15af694366424896647/aiohttp-3.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "01af8da680fa69632f413860d3f4dcace47f7fc50486fe920ec43447ffaccee7",
"md5": "003a4ca592ff2db3e6e65078a9188239",
"sha256": "a81b1143d42b66ffc40a441379387076243ef7b51019204fd3ec36b9f69e77d6"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "003a4ca592ff2db3e6e65078a9188239",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1257586,
"upload_time": "2024-04-16T17:46:44",
"upload_time_iso_8601": "2024-04-16T17:46:44.295460Z",
"url": "https://files.pythonhosted.org/packages/01/af/8da680fa69632f413860d3f4dcace47f7fc50486fe920ec43447ffaccee7/aiohttp-3.9.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "90aea0741922ef3e99e71faa18ddf1a3a00309dd01107d3dc51f46bedd30e5c6",
"md5": "0704767499f9ebb3d2befaca585cf5fb",
"sha256": "f64fd07515dad67f24b6ea4a66ae2876c01031de91c93075b8093f07c0a2d93d"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "0704767499f9ebb3d2befaca585cf5fb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1319016,
"upload_time": "2024-04-16T17:46:47",
"upload_time_iso_8601": "2024-04-16T17:46:47.173304Z",
"url": "https://files.pythonhosted.org/packages/90/ae/a0741922ef3e99e71faa18ddf1a3a00309dd01107d3dc51f46bedd30e5c6/aiohttp-3.9.5-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "efbd61671d071518ac18875c1471cf5f6e210f48c855bdfc9e6cbe47134e2921",
"md5": "a84a25a9eeecbefb48e9749a73206bbb",
"sha256": "93e22add827447d2e26d67c9ac0161756007f152fdc5210277d00a85f6c92323"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "a84a25a9eeecbefb48e9749a73206bbb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1268646,
"upload_time": "2024-04-16T17:46:49",
"upload_time_iso_8601": "2024-04-16T17:46:49.682753Z",
"url": "https://files.pythonhosted.org/packages/ef/bd/61671d071518ac18875c1471cf5f6e210f48c855bdfc9e6cbe47134e2921/aiohttp-3.9.5-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ead10e1d60543d68583ed5b87f4d2eb1c72e54c68933e7799e649de04ffbb6b0",
"md5": "e4e25315c969357d972b20af8dbb10e0",
"sha256": "55b39c8684a46e56ef8c8d24faf02de4a2b2ac60d26cee93bc595651ff545de9"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "e4e25315c969357d972b20af8dbb10e0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1350674,
"upload_time": "2024-04-16T17:46:51",
"upload_time_iso_8601": "2024-04-16T17:46:51.912993Z",
"url": "https://files.pythonhosted.org/packages/ea/d1/0e1d60543d68583ed5b87f4d2eb1c72e54c68933e7799e649de04ffbb6b0/aiohttp-3.9.5-cp311-cp311-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "46604f5225360aebb03d9fbf2a26c79fa01c6da326eeb160d212050990a7f658",
"md5": "3754b0625ae0e798af7cd72f26996737",
"sha256": "4715a9b778f4293b9f8ae7a0a7cef9829f02ff8d6277a39d7f40565c737d3771"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "3754b0625ae0e798af7cd72f26996737",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1394599,
"upload_time": "2024-04-16T17:46:54",
"upload_time_iso_8601": "2024-04-16T17:46:54.081669Z",
"url": "https://files.pythonhosted.org/packages/46/60/4f5225360aebb03d9fbf2a26c79fa01c6da326eeb160d212050990a7f658/aiohttp-3.9.5-cp311-cp311-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6b99c742967d54091496a5675ae9faa910765f572e7863461ccc7fb22a1501e2",
"md5": "2f595f359111395f5d04dbb09aa504a7",
"sha256": "afc52b8d969eff14e069a710057d15ab9ac17cd4b6753042c407dcea0e40bf75"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "2f595f359111395f5d04dbb09aa504a7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1302531,
"upload_time": "2024-04-16T17:46:56",
"upload_time_iso_8601": "2024-04-16T17:46:56.706219Z",
"url": "https://files.pythonhosted.org/packages/6b/99/c742967d54091496a5675ae9faa910765f572e7863461ccc7fb22a1501e2/aiohttp-3.9.5-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a7a5e8e0e4bf0adb3ebd3773ebb0fb006d4e4850d1a9eef0a911482eba883814",
"md5": "18396cffcf20e7309413bdcef8a02673",
"sha256": "b3df71da99c98534be076196791adca8819761f0bf6e08e07fd7da25127150d6"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "18396cffcf20e7309413bdcef8a02673",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 350613,
"upload_time": "2024-04-16T17:46:59",
"upload_time_iso_8601": "2024-04-16T17:46:59.819680Z",
"url": "https://files.pythonhosted.org/packages/a7/a5/e8e0e4bf0adb3ebd3773ebb0fb006d4e4850d1a9eef0a911482eba883814/aiohttp-3.9.5-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a4690d415c6d8450842652ce01b29f43416a0f30122b75899de01485623c7850",
"md5": "496cb257d6cec65a26a161df90c5772a",
"sha256": "88e311d98cc0bf45b62fc46c66753a83445f5ab20038bcc1b8a1cc05666f428a"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "496cb257d6cec65a26a161df90c5772a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 370792,
"upload_time": "2024-04-16T17:47:02",
"upload_time_iso_8601": "2024-04-16T17:47:02.843624Z",
"url": "https://files.pythonhosted.org/packages/a4/69/0d415c6d8450842652ce01b29f43416a0f30122b75899de01485623c7850/aiohttp-3.9.5-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e25c6bd6cb160a4dc81f83adbc9bdd6758f01932a6c81a3e4ac707746e7855e",
"md5": "04c2e105863b971a75d5685f7612cc1b",
"sha256": "c7a4b7a6cf5b6eb11e109a9755fd4fda7d57395f8c575e166d363b9fc3ec4678"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "04c2e105863b971a75d5685f7612cc1b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 595330,
"upload_time": "2024-04-16T17:47:05",
"upload_time_iso_8601": "2024-04-16T17:47:05.671890Z",
"url": "https://files.pythonhosted.org/packages/5e/25/c6bd6cb160a4dc81f83adbc9bdd6758f01932a6c81a3e4ac707746e7855e/aiohttp-3.9.5-cp312-cp312-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "185ff6428eb55244d44e1c674c8c823ae1567136ac1d2f8b128e194dd4febbe1",
"md5": "92630fa0515fbc9109e47c3b23f0bc38",
"sha256": "0a158704edf0abcac8ac371fbb54044f3270bdbc93e254a82b6c82be1ef08f3c"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "92630fa0515fbc9109e47c3b23f0bc38",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 395974,
"upload_time": "2024-04-16T17:47:08",
"upload_time_iso_8601": "2024-04-16T17:47:08.508260Z",
"url": "https://files.pythonhosted.org/packages/18/5f/f6428eb55244d44e1c674c8c823ae1567136ac1d2f8b128e194dd4febbe1/aiohttp-3.9.5-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "78282080ed3140b7d25c406f77fe2d5776edd9c7a25228f7f905d7058a6e2d61",
"md5": "fcbee2e5b93b1845e4955aaa893529ea",
"sha256": "d153f652a687a8e95ad367a86a61e8d53d528b0530ef382ec5aaf533140ed00f"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "fcbee2e5b93b1845e4955aaa893529ea",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 392399,
"upload_time": "2024-04-16T17:47:11",
"upload_time_iso_8601": "2024-04-16T17:47:11.220897Z",
"url": "https://files.pythonhosted.org/packages/78/28/2080ed3140b7d25c406f77fe2d5776edd9c7a25228f7f905d7058a6e2d61/aiohttp-3.9.5-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d3c0cd9d02e1b9e1b1073c94f7692ffe69067987c4acc0252bbc0c7645360d37",
"md5": "e3088ee9433e748d4ff42c3baebb65d5",
"sha256": "82a6a97d9771cb48ae16979c3a3a9a18b600a8505b1115cfe354dfb2054468b4"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e3088ee9433e748d4ff42c3baebb65d5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1322648,
"upload_time": "2024-04-16T17:47:13",
"upload_time_iso_8601": "2024-04-16T17:47:13.615457Z",
"url": "https://files.pythonhosted.org/packages/d3/c0/cd9d02e1b9e1b1073c94f7692ffe69067987c4acc0252bbc0c7645360d37/aiohttp-3.9.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f2fbd65d58230e9ed5cfed886b0c433634bfb14cbe183125e84de909559e29e7",
"md5": "bcd713e84af632084b7885b0b1b99b43",
"sha256": "60cdbd56f4cad9f69c35eaac0fbbdf1f77b0ff9456cebd4902f3dd1cf096464c"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "bcd713e84af632084b7885b0b1b99b43",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1362078,
"upload_time": "2024-04-16T17:47:17",
"upload_time_iso_8601": "2024-04-16T17:47:17.145436Z",
"url": "https://files.pythonhosted.org/packages/f2/fb/d65d58230e9ed5cfed886b0c433634bfb14cbe183125e84de909559e29e7/aiohttp-3.9.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a639ca4fc97af53167ff6c8888a59002b17447bddd8dd474ae0f0e778446cfe7",
"md5": "745ecfc736a3a397b94938dafbfc6ef3",
"sha256": "8676e8fd73141ded15ea586de0b7cda1542960a7b9ad89b2b06428e97125d4fa"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "745ecfc736a3a397b94938dafbfc6ef3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1404667,
"upload_time": "2024-04-16T17:47:19",
"upload_time_iso_8601": "2024-04-16T17:47:19.531501Z",
"url": "https://files.pythonhosted.org/packages/a6/39/ca4fc97af53167ff6c8888a59002b17447bddd8dd474ae0f0e778446cfe7/aiohttp-3.9.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dd0a526c8480bd846b9155c624c7e54db94733fc6b381dfd748cc8dd69c994b0",
"md5": "2cfa252e925a9e6f68105a7008607815",
"sha256": "da00da442a0e31f1c69d26d224e1efd3a1ca5bcbf210978a2ca7426dfcae9f58"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "2cfa252e925a9e6f68105a7008607815",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1317772,
"upload_time": "2024-04-16T17:47:22",
"upload_time_iso_8601": "2024-04-16T17:47:22.204975Z",
"url": "https://files.pythonhosted.org/packages/dd/0a/526c8480bd846b9155c624c7e54db94733fc6b381dfd748cc8dd69c994b0/aiohttp-3.9.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0cea8e1bd13e39b3f4c37889b8480f04ed398e07017f5709d66d4e1d0dee39fe",
"md5": "ae861f6bf0ca0f2a55585f11b036e0db",
"sha256": "18f634d540dd099c262e9f887c8bbacc959847cfe5da7a0e2e1cf3f14dbf2daf"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ae861f6bf0ca0f2a55585f11b036e0db",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1269636,
"upload_time": "2024-04-16T17:47:24",
"upload_time_iso_8601": "2024-04-16T17:47:24.903052Z",
"url": "https://files.pythonhosted.org/packages/0c/ea/8e1bd13e39b3f4c37889b8480f04ed398e07017f5709d66d4e1d0dee39fe/aiohttp-3.9.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2aac7c00027510f42a21c0a905f2472d9afef7ea276573357829bfe8c12883d4",
"md5": "58266f2d7f28b6d95804385bb8665427",
"sha256": "320e8618eda64e19d11bdb3bd04ccc0a816c17eaecb7e4945d01deee2a22f95f"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "58266f2d7f28b6d95804385bb8665427",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1324957,
"upload_time": "2024-04-16T17:47:27",
"upload_time_iso_8601": "2024-04-16T17:47:27.514397Z",
"url": "https://files.pythonhosted.org/packages/2a/ac/7c00027510f42a21c0a905f2472d9afef7ea276573357829bfe8c12883d4/aiohttp-3.9.5-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e3f5e0c216a12b2490cbecd79e9b7671f4e50dfc72e9a52347943aabe6f5bc44",
"md5": "90b9739297dde35329ac5209c8fc97e8",
"sha256": "2faa61a904b83142747fc6a6d7ad8fccff898c849123030f8e75d5d967fd4a81"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "90b9739297dde35329ac5209c8fc97e8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1267548,
"upload_time": "2024-04-16T17:47:30",
"upload_time_iso_8601": "2024-04-16T17:47:30.480956Z",
"url": "https://files.pythonhosted.org/packages/e3/f5/e0c216a12b2490cbecd79e9b7671f4e50dfc72e9a52347943aabe6f5bc44/aiohttp-3.9.5-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8831e55083b026428324cde827c04bdfbc837c131f9d3ee38d28c766614b09ef",
"md5": "29f84931561554015480305a248622ff",
"sha256": "8c64a6dc3fe5db7b1b4d2b5cb84c4f677768bdc340611eca673afb7cf416ef5a"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "29f84931561554015480305a248622ff",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1353136,
"upload_time": "2024-04-16T17:47:32",
"upload_time_iso_8601": "2024-04-16T17:47:32.851585Z",
"url": "https://files.pythonhosted.org/packages/88/31/e55083b026428324cde827c04bdfbc837c131f9d3ee38d28c766614b09ef/aiohttp-3.9.5-cp312-cp312-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "548e72d1ddd6e653b6d4b7b1fece7619287d3319bae10ad3a7f12d956bcc9e96",
"md5": "3dbf3823540776f4cb78b01385ee9667",
"sha256": "393c7aba2b55559ef7ab791c94b44f7482a07bf7640d17b341b79081f5e5cd1a"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "3dbf3823540776f4cb78b01385ee9667",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1400946,
"upload_time": "2024-04-16T17:47:35",
"upload_time_iso_8601": "2024-04-16T17:47:35.487962Z",
"url": "https://files.pythonhosted.org/packages/54/8e/72d1ddd6e653b6d4b7b1fece7619287d3319bae10ad3a7f12d956bcc9e96/aiohttp-3.9.5-cp312-cp312-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5cf1f61b397a0eaf01d197e610b0f56935b0002d688f27d73af2882b282fc2f8",
"md5": "b63656acce1e9adf48187be64cccc0da",
"sha256": "c671dc117c2c21a1ca10c116cfcd6e3e44da7fcde37bf83b2be485ab377b25da"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "b63656acce1e9adf48187be64cccc0da",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1319358,
"upload_time": "2024-04-16T17:47:37",
"upload_time_iso_8601": "2024-04-16T17:47:37.881492Z",
"url": "https://files.pythonhosted.org/packages/5c/f1/f61b397a0eaf01d197e610b0f56935b0002d688f27d73af2882b282fc2f8/aiohttp-3.9.5-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d15d8cb20df780921adf9f436f214350729b12873742abd697c981229c554acc",
"md5": "0de273b8e8bdffa3580edacd86da98d1",
"sha256": "5a7ee16aab26e76add4afc45e8f8206c95d1d75540f1039b84a03c3b3800dd59"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "0de273b8e8bdffa3580edacd86da98d1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 347602,
"upload_time": "2024-04-16T17:47:40",
"upload_time_iso_8601": "2024-04-16T17:47:40.081580Z",
"url": "https://files.pythonhosted.org/packages/d1/5d/8cb20df780921adf9f436f214350729b12873742abd697c981229c554acc/aiohttp-3.9.5-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a000cdbda8b406ce7b656b9cb765f8134b1edb999f816f54e47347d2bc67f4bf",
"md5": "b5c6154fb7b35dc81a871857cf234505",
"sha256": "5ca51eadbd67045396bc92a4345d1790b7301c14d1848feaac1d6a6c9289e888"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "b5c6154fb7b35dc81a871857cf234505",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 369012,
"upload_time": "2024-04-16T17:47:42",
"upload_time_iso_8601": "2024-04-16T17:47:42.663451Z",
"url": "https://files.pythonhosted.org/packages/a0/00/cdbda8b406ce7b656b9cb765f8134b1edb999f816f54e47347d2bc67f4bf/aiohttp-3.9.5-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "854968a2da7fef9195b3fcfc27ebb469c06ebc2777546eb8311cdab4fe8c8aca",
"md5": "67596741330f8add0176c27e1f492b02",
"sha256": "694d828b5c41255e54bc2dddb51a9f5150b4eefa9886e38b52605a05d96566e8"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "67596741330f8add0176c27e1f492b02",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 601191,
"upload_time": "2024-04-16T17:47:48",
"upload_time_iso_8601": "2024-04-16T17:47:48.686069Z",
"url": "https://files.pythonhosted.org/packages/85/49/68a2da7fef9195b3fcfc27ebb469c06ebc2777546eb8311cdab4fe8c8aca/aiohttp-3.9.5-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "edaa555091d9ad3e036a91922bfbf6d4fc9906e78b22d776c25150caa96cb387",
"md5": "cfdda7037662d0e09c5889088f00c6e7",
"sha256": "0605cc2c0088fcaae79f01c913a38611ad09ba68ff482402d3410bf59039bfb8"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "cfdda7037662d0e09c5889088f00c6e7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 402616,
"upload_time": "2024-04-16T17:47:51",
"upload_time_iso_8601": "2024-04-16T17:47:51.906099Z",
"url": "https://files.pythonhosted.org/packages/ed/aa/555091d9ad3e036a91922bfbf6d4fc9906e78b22d776c25150caa96cb387/aiohttp-3.9.5-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6937ca379996ae72e7795d5b3f6bd13c0b24ad8641d11d02732606fd363b7bed",
"md5": "38df7882dfcadb54f3aeac56a3d52503",
"sha256": "4558e5012ee03d2638c681e156461d37b7a113fe13970d438d95d10173d25f78"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "38df7882dfcadb54f3aeac56a3d52503",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 391927,
"upload_time": "2024-04-16T17:47:54",
"upload_time_iso_8601": "2024-04-16T17:47:54.267991Z",
"url": "https://files.pythonhosted.org/packages/69/37/ca379996ae72e7795d5b3f6bd13c0b24ad8641d11d02732606fd363b7bed/aiohttp-3.9.5-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "40c7331f8ef2cfa04592a0f397c451d32526778891fc5309646f6a2dbfa8b89a",
"md5": "4b6e63de1f87831347cbffd87543752a",
"sha256": "9dbc053ac75ccc63dc3a3cc547b98c7258ec35a215a92bd9f983e0aac95d3d5b"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4b6e63de1f87831347cbffd87543752a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1263175,
"upload_time": "2024-04-16T17:47:56",
"upload_time_iso_8601": "2024-04-16T17:47:56.918648Z",
"url": "https://files.pythonhosted.org/packages/40/c7/331f8ef2cfa04592a0f397c451d32526778891fc5309646f6a2dbfa8b89a/aiohttp-3.9.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3aafefbb5c0d22f5c4656c5c19b7ef1495ef6b03aa3fb6def05a57e7e3f682e7",
"md5": "22f07fb7ef918e9d85b63db0ad227958",
"sha256": "4109adee842b90671f1b689901b948f347325045c15f46b39797ae1bf17019de"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "22f07fb7ef918e9d85b63db0ad227958",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1315199,
"upload_time": "2024-04-16T17:47:59",
"upload_time_iso_8601": "2024-04-16T17:47:59.060132Z",
"url": "https://files.pythonhosted.org/packages/3a/af/efbb5c0d22f5c4656c5c19b7ef1495ef6b03aa3fb6def05a57e7e3f682e7/aiohttp-3.9.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5031da05d395ab732368795c01feb264e192b4e738597012d7d86a45df79640b",
"md5": "7d4d42b09ddfcc53dcee399eb73e504d",
"sha256": "a6ea1a5b409a85477fd8e5ee6ad8f0e40bf2844c270955e09360418cfd09abac"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "7d4d42b09ddfcc53dcee399eb73e504d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1349005,
"upload_time": "2024-04-16T17:48:02",
"upload_time_iso_8601": "2024-04-16T17:48:02.307702Z",
"url": "https://files.pythonhosted.org/packages/50/31/da05d395ab732368795c01feb264e192b4e738597012d7d86a45df79640b/aiohttp-3.9.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bf856166b71dc124cbca726f1d062218a61f2541d7c5192bef8c9b518b787132",
"md5": "7c177d7fc4c77ad7d763282497a56209",
"sha256": "f3c2890ca8c59ee683fd09adf32321a40fe1cf164e3387799efb2acebf090c11"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7c177d7fc4c77ad7d763282497a56209",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1253582,
"upload_time": "2024-04-16T17:48:05",
"upload_time_iso_8601": "2024-04-16T17:48:05.351328Z",
"url": "https://files.pythonhosted.org/packages/bf/85/6166b71dc124cbca726f1d062218a61f2541d7c5192bef8c9b518b787132/aiohttp-3.9.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b71461ab6b7427e252c3bc0ee94eeb06394c003cc295edf6558114e6e54ef882",
"md5": "80788ba27faaf402feb130c901b577dc",
"sha256": "3916c8692dbd9d55c523374a3b8213e628424d19116ac4308e434dbf6d95bbdd"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "80788ba27faaf402feb130c901b577dc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1220512,
"upload_time": "2024-04-16T17:48:07",
"upload_time_iso_8601": "2024-04-16T17:48:07.920205Z",
"url": "https://files.pythonhosted.org/packages/b7/14/61ab6b7427e252c3bc0ee94eeb06394c003cc295edf6558114e6e54ef882/aiohttp-3.9.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "34af8d96e889d7d5f9e450545bad8694af66ef38afc0f28a77f058212d3662e2",
"md5": "4a071b41ded6b4cc6608cc4099e27c31",
"sha256": "8d1964eb7617907c792ca00b341b5ec3e01ae8c280825deadbbd678447b127e1"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "4a071b41ded6b4cc6608cc4099e27c31",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1315483,
"upload_time": "2024-04-16T17:48:10",
"upload_time_iso_8601": "2024-04-16T17:48:10.118610Z",
"url": "https://files.pythonhosted.org/packages/34/af/8d96e889d7d5f9e450545bad8694af66ef38afc0f28a77f058212d3662e2/aiohttp-3.9.5-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4741a1ace3e0d5b7dfd72ce7a30629e75afcb5e731291ed8b8aa717bc0e1b8c7",
"md5": "1dbe586d3f501f90b2dc2af6d866389d",
"sha256": "d5ab8e1f6bee051a4bf6195e38a5c13e5e161cb7bad83d8854524798bd9fcd6e"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "1dbe586d3f501f90b2dc2af6d866389d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1265535,
"upload_time": "2024-04-16T17:48:13",
"upload_time_iso_8601": "2024-04-16T17:48:13.010802Z",
"url": "https://files.pythonhosted.org/packages/47/41/a1ace3e0d5b7dfd72ce7a30629e75afcb5e731291ed8b8aa717bc0e1b8c7/aiohttp-3.9.5-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6cfc9656ec8b3546cf0a74ba0d39d5e497fc7712b51c958ea2ec03ca28ed2a55",
"md5": "a5f25e64811bdf2b2be0ed5d40418203",
"sha256": "52c27110f3862a1afbcb2af4281fc9fdc40327fa286c4625dfee247c3ba90156"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "a5f25e64811bdf2b2be0ed5d40418203",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1344370,
"upload_time": "2024-04-16T17:48:16",
"upload_time_iso_8601": "2024-04-16T17:48:16.225977Z",
"url": "https://files.pythonhosted.org/packages/6c/fc/9656ec8b3546cf0a74ba0d39d5e497fc7712b51c958ea2ec03ca28ed2a55/aiohttp-3.9.5-cp38-cp38-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "74caf55eac020a2c4df8607bf42ae0e31cddb93801406d2fd4d70b34a370fa23",
"md5": "8a35b570735b6975bab7ef6327622b39",
"sha256": "7f64cbd44443e80094309875d4f9c71d0401e966d191c3d469cde4642bc2e031"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "8a35b570735b6975bab7ef6327622b39",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1385354,
"upload_time": "2024-04-16T17:48:19",
"upload_time_iso_8601": "2024-04-16T17:48:19.028946Z",
"url": "https://files.pythonhosted.org/packages/74/ca/f55eac020a2c4df8607bf42ae0e31cddb93801406d2fd4d70b34a370fa23/aiohttp-3.9.5-cp38-cp38-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eb41a470f19879f861eb2183046493d57d0ae166ba432ef4b304ab3dd6843379",
"md5": "48f384c848bedd51f2b00ce244c18c22",
"sha256": "8b4f72fbb66279624bfe83fd5eb6aea0022dad8eec62b71e7bf63ee1caadeafe"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "48f384c848bedd51f2b00ce244c18c22",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1305948,
"upload_time": "2024-04-16T17:48:21",
"upload_time_iso_8601": "2024-04-16T17:48:21.780102Z",
"url": "https://files.pythonhosted.org/packages/eb/41/a470f19879f861eb2183046493d57d0ae166ba432ef4b304ab3dd6843379/aiohttp-3.9.5-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "53c199c560b044c252cf47b71b5d7d33e9d38dc40d7a9a660579036b9d09f252",
"md5": "dcbb3e20bfb3ec04fd7e6cd9ce4636bf",
"sha256": "6380c039ec52866c06d69b5c7aad5478b24ed11696f0e72f6b807cfb261453da"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "dcbb3e20bfb3ec04fd7e6cd9ce4636bf",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 353271,
"upload_time": "2024-04-16T17:48:24",
"upload_time_iso_8601": "2024-04-16T17:48:24.750147Z",
"url": "https://files.pythonhosted.org/packages/53/c1/99c560b044c252cf47b71b5d7d33e9d38dc40d7a9a660579036b9d09f252/aiohttp-3.9.5-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c52be7260c532ea3057dfdee64d84e9860ed1e84cf54b775ece475d560382d1f",
"md5": "edc089fdc3319b7003f65efb6f2418f9",
"sha256": "da22dab31d7180f8c3ac7c7635f3bcd53808f374f6aa333fe0b0b9e14b01f91a"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "edc089fdc3319b7003f65efb6f2418f9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 373122,
"upload_time": "2024-04-16T17:48:27",
"upload_time_iso_8601": "2024-04-16T17:48:27.462309Z",
"url": "https://files.pythonhosted.org/packages/c5/2b/e7260c532ea3057dfdee64d84e9860ed1e84cf54b775ece475d560382d1f/aiohttp-3.9.5-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f99f5ee4aaf09c95da6e71c9f0d5578449d5288ad4fdf225124c7b8124c6287a",
"md5": "7f512715325ebeec4173fa60bd1c38d8",
"sha256": "1732102949ff6087589408d76cd6dea656b93c896b011ecafff418c9661dc4ed"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "7f512715325ebeec4173fa60bd1c38d8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 598940,
"upload_time": "2024-04-16T17:48:30",
"upload_time_iso_8601": "2024-04-16T17:48:30.118240Z",
"url": "https://files.pythonhosted.org/packages/f9/9f/5ee4aaf09c95da6e71c9f0d5578449d5288ad4fdf225124c7b8124c6287a/aiohttp-3.9.5-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "74216ef1ccb2bead0a5a5c9c198f56f0ef22781a759f8c0dbec067e6be947a87",
"md5": "cc3a882c75b65a51cf8d6a82c81d3801",
"sha256": "c6021d296318cb6f9414b48e6a439a7f5d1f665464da507e8ff640848ee2a58a"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "cc3a882c75b65a51cf8d6a82c81d3801",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 401576,
"upload_time": "2024-04-16T17:48:33",
"upload_time_iso_8601": "2024-04-16T17:48:33.215505Z",
"url": "https://files.pythonhosted.org/packages/74/21/6ef1ccb2bead0a5a5c9c198f56f0ef22781a759f8c0dbec067e6be947a87/aiohttp-3.9.5-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4c8f04381aa090cffc3dbb6673935bdb4a7c7690d3bc40949d1e66fc136dac15",
"md5": "483305e97b4e690bcec2de69867f62ec",
"sha256": "239f975589a944eeb1bad26b8b140a59a3a320067fb3cd10b75c3092405a1372"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "483305e97b4e690bcec2de69867f62ec",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 390716,
"upload_time": "2024-04-16T17:48:35",
"upload_time_iso_8601": "2024-04-16T17:48:35.756411Z",
"url": "https://files.pythonhosted.org/packages/4c/8f/04381aa090cffc3dbb6673935bdb4a7c7690d3bc40949d1e66fc136dac15/aiohttp-3.9.5-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eb45eebe8d2215328434f33ccb44a05d2741ff7ed4b96b56ca507e2ecf598b73",
"md5": "08504aaa663747025c87540742fac40e",
"sha256": "3b7b30258348082826d274504fbc7c849959f1989d86c29bc355107accec6cfb"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "08504aaa663747025c87540742fac40e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1241694,
"upload_time": "2024-04-16T17:48:38",
"upload_time_iso_8601": "2024-04-16T17:48:38.831491Z",
"url": "https://files.pythonhosted.org/packages/eb/45/eebe8d2215328434f33ccb44a05d2741ff7ed4b96b56ca507e2ecf598b73/aiohttp-3.9.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "29b0e2728ce40ac9bd9e8998c5f1a36ff8273ada5c302607b720200607daff8b",
"md5": "813b0610b06783de965529c580a0f6fd",
"sha256": "cd2adf5c87ff6d8b277814a28a535b59e20bfea40a101db6b3bdca7e9926bc24"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "813b0610b06783de965529c580a0f6fd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1275633,
"upload_time": "2024-04-16T17:48:41",
"upload_time_iso_8601": "2024-04-16T17:48:41.663405Z",
"url": "https://files.pythonhosted.org/packages/29/b0/e2728ce40ac9bd9e8998c5f1a36ff8273ada5c302607b720200607daff8b/aiohttp-3.9.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a476bd2f2eae52e9e00002fcc0910428d2aabcd81edd420cb8dbc36adee99f0a",
"md5": "75d0faaa46a112b9e82afaf594e78a65",
"sha256": "e9a3d838441bebcf5cf442700e3963f58b5c33f015341f9ea86dcd7d503c07e2"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "75d0faaa46a112b9e82afaf594e78a65",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1310717,
"upload_time": "2024-04-16T17:48:44",
"upload_time_iso_8601": "2024-04-16T17:48:44.121458Z",
"url": "https://files.pythonhosted.org/packages/a4/76/bd2f2eae52e9e00002fcc0910428d2aabcd81edd420cb8dbc36adee99f0a/aiohttp-3.9.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "944f3c99f1cdab4fb55e12a914c80828f0958f04d79ef6b6ce1e05d07c30c46b",
"md5": "6fe324b4905995511271ce47ecfee8bf",
"sha256": "9e3a1ae66e3d0c17cf65c08968a5ee3180c5a95920ec2731f53343fac9bad106"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6fe324b4905995511271ce47ecfee8bf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1231470,
"upload_time": "2024-04-16T17:48:46",
"upload_time_iso_8601": "2024-04-16T17:48:46.640269Z",
"url": "https://files.pythonhosted.org/packages/94/4f/3c99f1cdab4fb55e12a914c80828f0958f04d79ef6b6ce1e05d07c30c46b/aiohttp-3.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4646dc7da6d44f66026649c6b66584b3d4362b4450a5eb1237b0f1853ac673d3",
"md5": "8e7d2127554eb905c371ba154c9ece5a",
"sha256": "9c69e77370cce2d6df5d12b4e12bdcca60c47ba13d1cbbc8645dd005a20b738b"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8e7d2127554eb905c371ba154c9ece5a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1204661,
"upload_time": "2024-04-16T17:48:49",
"upload_time_iso_8601": "2024-04-16T17:48:49.212931Z",
"url": "https://files.pythonhosted.org/packages/46/46/dc7da6d44f66026649c6b66584b3d4362b4450a5eb1237b0f1853ac673d3/aiohttp-3.9.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3d8dd4ac343b9decf7458bf75020a76680163fef16c28dad4a5283084a90f06a",
"md5": "9477d3a5e1789b07762139fe75ac22fd",
"sha256": "0cbf56238f4bbf49dab8c2dc2e6b1b68502b1e88d335bea59b3f5b9f4c001475"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "9477d3a5e1789b07762139fe75ac22fd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1254435,
"upload_time": "2024-04-16T17:48:52",
"upload_time_iso_8601": "2024-04-16T17:48:52.121194Z",
"url": "https://files.pythonhosted.org/packages/3d/8d/d4ac343b9decf7458bf75020a76680163fef16c28dad4a5283084a90f06a/aiohttp-3.9.5-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fa1ff0ab436f8fed9373b8a0bc8f8aa735dd9d18f0a09df8228a4df07e0cd885",
"md5": "ce7a135007096773263fab08fde6e6f3",
"sha256": "d1469f228cd9ffddd396d9948b8c9cd8022b6d1bf1e40c6f25b0fb90b4f893ed"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "ce7a135007096773263fab08fde6e6f3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1214547,
"upload_time": "2024-04-16T17:48:54",
"upload_time_iso_8601": "2024-04-16T17:48:54.319705Z",
"url": "https://files.pythonhosted.org/packages/fa/1f/f0ab436f8fed9373b8a0bc8f8aa735dd9d18f0a09df8228a4df07e0cd885/aiohttp-3.9.5-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "320ddb026b8ddb76447fc0d0ff58f10819feaeb09900142c9042bdec73d409f2",
"md5": "58410b0c42f4267047eb3423b7b5a9df",
"sha256": "45731330e754f5811c314901cebdf19dd776a44b31927fa4b4dbecab9e457b0c"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "58410b0c42f4267047eb3423b7b5a9df",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1284779,
"upload_time": "2024-04-16T17:48:56",
"upload_time_iso_8601": "2024-04-16T17:48:56.778590Z",
"url": "https://files.pythonhosted.org/packages/32/0d/db026b8ddb76447fc0d0ff58f10819feaeb09900142c9042bdec73d409f2/aiohttp-3.9.5-cp39-cp39-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0aec3c69a88382d0424150c109da8e85bc285b915fdbfdcaae2f72c6d430d479",
"md5": "cfb8b3e9164621ae2225325c8115cc07",
"sha256": "3fcb4046d2904378e3aeea1df51f697b0467f2aac55d232c87ba162709478c46"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "cfb8b3e9164621ae2225325c8115cc07",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1328392,
"upload_time": "2024-04-16T17:48:59",
"upload_time_iso_8601": "2024-04-16T17:48:59.211125Z",
"url": "https://files.pythonhosted.org/packages/0a/ec/3c69a88382d0424150c109da8e85bc285b915fdbfdcaae2f72c6d430d479/aiohttp-3.9.5-cp39-cp39-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a06fcdf328227c511dffdab5431807ee742342e489d5c984cf5a60f0ef142e28",
"md5": "2a084a52f8e48a62ca299daa244f938d",
"sha256": "8cf142aa6c1a751fcb364158fd710b8a9be874b81889c2bd13aa8893197455e2"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "2a084a52f8e48a62ca299daa244f938d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1244976,
"upload_time": "2024-04-16T17:49:02",
"upload_time_iso_8601": "2024-04-16T17:49:02.020519Z",
"url": "https://files.pythonhosted.org/packages/a0/6f/cdf328227c511dffdab5431807ee742342e489d5c984cf5a60f0ef142e28/aiohttp-3.9.5-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ea549f0c6d42af5808b1b6dd011e9a25b219cc892a811a1067b9bc1d8ae6536d",
"md5": "6a853539e33f1fbdca97a2eda934a261",
"sha256": "7b179eea70833c8dee51ec42f3b4097bd6370892fa93f510f76762105568cf09"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "6a853539e33f1fbdca97a2eda934a261",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 352238,
"upload_time": "2024-04-16T17:49:04",
"upload_time_iso_8601": "2024-04-16T17:49:04.858275Z",
"url": "https://files.pythonhosted.org/packages/ea/54/9f0c6d42af5808b1b6dd011e9a25b219cc892a811a1067b9bc1d8ae6536d/aiohttp-3.9.5-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e6361480e47a31fe1424a991ca9e59609f37409ff74d7f891f47e096e0ac709c",
"md5": "71f836689cf4d3592ca785b3cb20d497",
"sha256": "38d80498e2e169bc61418ff36170e0aad0cd268da8b38a17c4cf29d254a8b3f1"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "71f836689cf4d3592ca785b3cb20d497",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 371614,
"upload_time": "2024-04-16T17:49:08",
"upload_time_iso_8601": "2024-04-16T17:49:08.079462Z",
"url": "https://files.pythonhosted.org/packages/e6/36/1480e47a31fe1424a991ca9e59609f37409ff74d7f891f47e096e0ac709c/aiohttp-3.9.5-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "04a4e3679773ea7eb5b37a2c998e25b017cc5349edf6ba2739d1f32855cfb11b",
"md5": "14829a5ea507c8219e3f679fceeb5585",
"sha256": "edea7d15772ceeb29db4aff55e482d4bcfb6ae160ce144f2682de02f6d693551"
},
"downloads": -1,
"filename": "aiohttp-3.9.5.tar.gz",
"has_sig": false,
"md5_digest": "14829a5ea507c8219e3f679fceeb5585",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 7504841,
"upload_time": "2024-04-16T17:49:10",
"upload_time_iso_8601": "2024-04-16T17:49:10.915476Z",
"url": "https://files.pythonhosted.org/packages/04/a4/e3679773ea7eb5b37a2c998e25b017cc5349edf6ba2739d1f32855cfb11b/aiohttp-3.9.5.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"4.0.0a0": [
{
"comment_text": "",
"digests": {
"blake2b_256": "c50dd3da901cfbd2094e4f91827d61391d588098ff3afa9d53cc07468b7c9b19",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ad41703b5c7149ded3a580951e3b9306d55274002c1453126164d551e0eeec9a",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4ce9d57f4f96978198c060aa47504ee5c51d52ebefb74640147c2529ef6fd6f6",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "43212ea6706620c287b7077a890b40c0e099cfdb5ce5b8a605d8dcc9c469be1b",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4a9fc0bfc666ec3295d05139daad63b26f366cb4cd0654e61243be6916e1c231",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b1987410e7ee22fd76dafba53a349f929a9cd6bf12cf34b4714811dd3088d396",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f25dd0170507c42d5ede061927fb65bfc9e34280fb45b4ffbb34713f780b6687",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aa0efc1fb21b224ef1d0a5984e6b342a04ed95c6b6e01207326c0f37537e251f",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e4066c258d420304ad36437d3f7f04b6b7c97518e3b7736df560ccc79a846e0f",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5a6b4b857c8d35dcff7742fecf4dacbb86f3beb9c8452bc4b99d1941862ef59c",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "473d6c23a267ab99835ffd098331f8398544238721dc4698624e191c42e77c57",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "02d095aa6e81c978fe436d41a1a0511dfb66598888c7fc7d93ade5fee9483d7a",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5f3af1855591da81066203282207085be693568c6b33ccfb1e1cd0a397b6cc92",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b52f47e14bf2bdf53a6e87daa7f777210fe4e23eed719de4df1c24aab13dac1e",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "507a20a174ce0ab8c65ddee27d886e95b334f9338a34db9c7e711a55f1d23810",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2eb718eb453a8dad77fa26be0c4e459bd30f59c694a25429618d9f6a1d349c92",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "356c4291d4a5df67cfc6b30926331c688c0d0806c3e82b6994e8fc6d37e0e8e8",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5649d33ce192f876034d6b41108a1c0bf089ed95228f3a95e81ddfc215f25b4a",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3274652b3103e10c036eefbaadba5a4d7cfc146fbf352f132fd4ef33dc29ea2d",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c5b095f47a79cab51300af846e8e83da149336d1f7e639b7c90091836d04322b",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d7ce54337d8270600f214b293e763fded18352e19b3c1ee65ddbe83548a33558",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ef548926aef41c43f9126c65359eab8b0260fd53da29102ceeffe654e88215cc",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
}
],
"4.0.0a1": [
{
"comment_text": "",
"digests": {
"blake2b_256": "68b35bf381221c0008774ea127152ac22aaefd8c0d23c5b56c7d545bba7fa3e2",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cb58adf4457076102c02060eed24d46abc549b3a37b5268000d6d018fe6baaf2",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c8d96bebdff96c5aa414790306a83efc30c4878e8deedc82fbc0a959815aa291",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "027cdbff9702300827856658780ad885610d8ac573f34535809fd9d16d7c923c",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "47dda007fa4b959680d437f58033f56d63595eca1b8a082eabe6971a81a2f774",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f9ab00a073841b7c0b869b0c5c9939fa6aa2e1aac60e0d5ef3e1bc4549c4dd74",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c01bc7015a30c8a54e9b44446c176e4162b365b7e7fbb2591b27a2651944bbc1",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8afb7ba4c3fdafa052fe5f2d389261f282ac2190d1a09b25a61621eb6e41c430",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f0f2703dba52c7620199ea0ec8ea9a4a2f06203b4893b94f60240c2c10225043",
"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": true,
"yanked_reason": "It confuses people who expect the highest pre-release to be the newest one. This has been built from a years-old version of the master branch."
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "bb6bbaa5886a66dc4a9fe60df3fff543ac0cdbac3d18347889f17023b15bdceb",
"md5": "54bfc2dd0105740a31b12cd98f096006",
"sha256": "fcde4c397f673fdec23e6b05ebf8d4751314fa7c24f93334bf1f1364c1c69ac7"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "54bfc2dd0105740a31b12cd98f096006",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 597148,
"upload_time": "2024-04-16T17:45:44",
"upload_time_iso_8601": "2024-04-16T17:45:44.269305Z",
"url": "https://files.pythonhosted.org/packages/bb/6b/baa5886a66dc4a9fe60df3fff543ac0cdbac3d18347889f17023b15bdceb/aiohttp-3.9.5-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e73d557ca9d4867e0e17f69694e514999c3de0a63c11964701600c9719171b97",
"md5": "e8d641e415e3faae068398fb167c9625",
"sha256": "5d6b3f1fabe465e819aed2c421a6743d8debbde79b6a8600739300630a01bf2c"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e8d641e415e3faae068398fb167c9625",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 400697,
"upload_time": "2024-04-16T17:45:50",
"upload_time_iso_8601": "2024-04-16T17:45:50.835349Z",
"url": "https://files.pythonhosted.org/packages/e7/3d/557ca9d4867e0e17f69694e514999c3de0a63c11964701600c9719171b97/aiohttp-3.9.5-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a951d95cab6dbee773c57ff590d218633e7b9d52a103bc51060483349f3c8e1e",
"md5": "e2925763b1563e02237268a5cc6f4f39",
"sha256": "6ae79c1bc12c34082d92bf9422764f799aee4746fd7a392db46b7fd357d4a17a"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e2925763b1563e02237268a5cc6f4f39",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 389914,
"upload_time": "2024-04-16T17:45:53",
"upload_time_iso_8601": "2024-04-16T17:45:53.420588Z",
"url": "https://files.pythonhosted.org/packages/a9/51/d95cab6dbee773c57ff590d218633e7b9d52a103bc51060483349f3c8e1e/aiohttp-3.9.5-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ac035da5d4b8e88d8af96f3b2f498141cafaad9acf3282831f0036993385b2d5",
"md5": "09371fe0138f11c3fa372ac5578a6de2",
"sha256": "4d3ebb9e1316ec74277d19c5f482f98cc65a73ccd5430540d6d11682cd857430"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "09371fe0138f11c3fa372ac5578a6de2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1238262,
"upload_time": "2024-04-16T17:45:57",
"upload_time_iso_8601": "2024-04-16T17:45:57.431698Z",
"url": "https://files.pythonhosted.org/packages/ac/03/5da5d4b8e88d8af96f3b2f498141cafaad9acf3282831f0036993385b2d5/aiohttp-3.9.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7fee0c83fd6ece4200145417da81565af7e7266b3a0591fbe32129b48187a472",
"md5": "e74414fefb18ef3d647d40a88f245474",
"sha256": "84dabd95154f43a2ea80deffec9cb44d2e301e38a0c9d331cc4aa0166fe28ae3"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "e74414fefb18ef3d647d40a88f245474",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1268632,
"upload_time": "2024-04-16T17:46:00",
"upload_time_iso_8601": "2024-04-16T17:46:00.166965Z",
"url": "https://files.pythonhosted.org/packages/7f/ee/0c83fd6ece4200145417da81565af7e7266b3a0591fbe32129b48187a472/aiohttp-3.9.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6e0536471e8cbcf4c56d4917fcbe0c2c6d68119ba6e83b66d7173f39ee0125b6",
"md5": "e7888f4b2302f54df60ced8075810512",
"sha256": "c8a02fbeca6f63cb1f0475c799679057fc9268b77075ab7cf3f1c600e81dd46b"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e7888f4b2302f54df60ced8075810512",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1304001,
"upload_time": "2024-04-16T17:46:03",
"upload_time_iso_8601": "2024-04-16T17:46:03.055548Z",
"url": "https://files.pythonhosted.org/packages/6e/05/36471e8cbcf4c56d4917fcbe0c2c6d68119ba6e83b66d7173f39ee0125b6/aiohttp-3.9.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a009e7637f4f0760cad4d67347bbd8311c6ad0259a3fc01f04555af9e84bd378",
"md5": "643454e4f4cd643b8cf813ab46cfc126",
"sha256": "c26959ca7b75ff768e2776d8055bf9582a6267e24556bb7f7bd29e677932be72"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "643454e4f4cd643b8cf813ab46cfc126",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1228434,
"upload_time": "2024-04-16T17:46:05",
"upload_time_iso_8601": "2024-04-16T17:46:05.635464Z",
"url": "https://files.pythonhosted.org/packages/a0/09/e7637f4f0760cad4d67347bbd8311c6ad0259a3fc01f04555af9e84bd378/aiohttp-3.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f446c36596481a148014b0b6d4a62570baf5580aede5acc95901317b12cc3308",
"md5": "956d1586f9efd8fa4c73f153f822279e",
"sha256": "714d4e5231fed4ba2762ed489b4aec07b2b9953cf4ee31e9871caac895a839c0"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "956d1586f9efd8fa4c73f153f822279e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1201951,
"upload_time": "2024-04-16T17:46:07",
"upload_time_iso_8601": "2024-04-16T17:46:07.969871Z",
"url": "https://files.pythonhosted.org/packages/f4/46/c36596481a148014b0b6d4a62570baf5580aede5acc95901317b12cc3308/aiohttp-3.9.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dbfdf390f2a538858c0ff5d74f11226d85956d6c52b16765cc485d4f7ba7d45d",
"md5": "f8d8b77e7bee7421056a2e4a41bd4219",
"sha256": "e7a6a8354f1b62e15d48e04350f13e726fa08b62c3d7b8401c0a1314f02e3558"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "f8d8b77e7bee7421056a2e4a41bd4219",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1253651,
"upload_time": "2024-04-16T17:46:10",
"upload_time_iso_8601": "2024-04-16T17:46:10.182496Z",
"url": "https://files.pythonhosted.org/packages/db/fd/f390f2a538858c0ff5d74f11226d85956d6c52b16765cc485d4f7ba7d45d/aiohttp-3.9.5-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a35c322ffd8b6bb4a49d399685c1fccecb0bd0f7487bfefeef202c4f4c478bd0",
"md5": "0a4807e7b8ec701314d2a884de4e8490",
"sha256": "c413016880e03e69d166efb5a1a95d40f83d5a3a648d16486592c49ffb76d0db"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "0a4807e7b8ec701314d2a884de4e8490",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1209054,
"upload_time": "2024-04-16T17:46:12",
"upload_time_iso_8601": "2024-04-16T17:46:12.227378Z",
"url": "https://files.pythonhosted.org/packages/a3/5c/322ffd8b6bb4a49d399685c1fccecb0bd0f7487bfefeef202c4f4c478bd0/aiohttp-3.9.5-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "774d892098719e00bcf746a9fccc5f6854b1cfaf0d892de8ca5a646083eb12e2",
"md5": "770d1e8b7119b7cc31f6ae83b1fda24e",
"sha256": "ff84aeb864e0fac81f676be9f4685f0527b660f1efdc40dcede3c251ef1e867f"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "770d1e8b7119b7cc31f6ae83b1fda24e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1276895,
"upload_time": "2024-04-16T17:46:14",
"upload_time_iso_8601": "2024-04-16T17:46:14.304914Z",
"url": "https://files.pythonhosted.org/packages/77/4d/892098719e00bcf746a9fccc5f6854b1cfaf0d892de8ca5a646083eb12e2/aiohttp-3.9.5-cp310-cp310-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b8e617062e803031c760bc452117f0789f36545355d287258889ccfe6f57cce8",
"md5": "9365d8af2d2649493d96387eccdc735e",
"sha256": "ad7f2919d7dac062f24d6f5fe95d401597fbb015a25771f85e692d043c9d7832"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "9365d8af2d2649493d96387eccdc735e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1319624,
"upload_time": "2024-04-16T17:46:16",
"upload_time_iso_8601": "2024-04-16T17:46:16.760314Z",
"url": "https://files.pythonhosted.org/packages/b8/e6/17062e803031c760bc452117f0789f36545355d287258889ccfe6f57cce8/aiohttp-3.9.5-cp310-cp310-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2500d3d4a9e23e4d810a345f8ca24550caec0aaca7307fd692e0b939746b1d78",
"md5": "a12f7e12b6cc0b289c34995bae52094b",
"sha256": "702e2c7c187c1a498a4e2b03155d52658fdd6fda882d3d7fbb891a5cf108bb10"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "a12f7e12b6cc0b289c34995bae52094b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1243253,
"upload_time": "2024-04-16T17:46:19",
"upload_time_iso_8601": "2024-04-16T17:46:19.403720Z",
"url": "https://files.pythonhosted.org/packages/25/00/d3d4a9e23e4d810a345f8ca24550caec0aaca7307fd692e0b939746b1d78/aiohttp-3.9.5-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ebcf3b2dcbed86574b0264f9f964d1c27a120aa888a362d80cd3586de0616d1b",
"md5": "21fc6131bb5eec1bc45ac38bab8571d6",
"sha256": "67c3119f5ddc7261d47163ed86d760ddf0e625cd6246b4ed852e82159617b5fb"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "21fc6131bb5eec1bc45ac38bab8571d6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 351398,
"upload_time": "2024-04-16T17:46:21",
"upload_time_iso_8601": "2024-04-16T17:46:21.990587Z",
"url": "https://files.pythonhosted.org/packages/eb/cf/3b2dcbed86574b0264f9f964d1c27a120aa888a362d80cd3586de0616d1b/aiohttp-3.9.5-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "60693febe2b4a12bc34721eb2ddb60b50d9e7fc8bdac98abb4019ffcd8032272",
"md5": "3f264b82cb32063673a0905e1a1b385d",
"sha256": "471f0ef53ccedec9995287f02caf0c068732f026455f07db3f01a46e49d76bbb"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "3f264b82cb32063673a0905e1a1b385d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 370706,
"upload_time": "2024-04-16T17:46:24",
"upload_time_iso_8601": "2024-04-16T17:46:24.727582Z",
"url": "https://files.pythonhosted.org/packages/60/69/3febe2b4a12bc34721eb2ddb60b50d9e7fc8bdac98abb4019ffcd8032272/aiohttp-3.9.5-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "67f5aa23d04a1bb57e5f51108a6473964a2618cc83e608e23e3543031aa2bb3a",
"md5": "c51845edad50d111f0b923b4d60b1439",
"sha256": "e0ae53e33ee7476dd3d1132f932eeb39bf6125083820049d06edcdca4381f342"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "c51845edad50d111f0b923b4d60b1439",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 599387,
"upload_time": "2024-04-16T17:46:27",
"upload_time_iso_8601": "2024-04-16T17:46:27.238108Z",
"url": "https://files.pythonhosted.org/packages/67/f5/aa23d04a1bb57e5f51108a6473964a2618cc83e608e23e3543031aa2bb3a/aiohttp-3.9.5-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "97e7575ca16871071313a7a7a03fa055f0c3d52f77eb8583b373ac17fc87ec15",
"md5": "239f11867a95db6edb4d85599978ba97",
"sha256": "c088c4d70d21f8ca5c0b8b5403fe84a7bc8e024161febdd4ef04575ef35d474d"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "239f11867a95db6edb4d85599978ba97",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 402427,
"upload_time": "2024-04-16T17:46:29",
"upload_time_iso_8601": "2024-04-16T17:46:29.027642Z",
"url": "https://files.pythonhosted.org/packages/97/e7/575ca16871071313a7a7a03fa055f0c3d52f77eb8583b373ac17fc87ec15/aiohttp-3.9.5-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e78266be6e31daad1a2dc99c777dfb12b62044691ec573b6e48409a0d804fc7",
"md5": "221657e4049ff62a03bbf8f884860615",
"sha256": "639d0042b7670222f33b0028de6b4e2fad6451462ce7df2af8aee37dcac55424"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "221657e4049ff62a03bbf8f884860615",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 390243,
"upload_time": "2024-04-16T17:46:31",
"upload_time_iso_8601": "2024-04-16T17:46:31.583598Z",
"url": "https://files.pythonhosted.org/packages/4e/78/266be6e31daad1a2dc99c777dfb12b62044691ec573b6e48409a0d804fc7/aiohttp-3.9.5-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "73f1084f82069428b87d2b5c1e3e2d1d51911981f4cccd94c5c3691f10061c99",
"md5": "1dd0ef2986e279f1ef622d8d3867a545",
"sha256": "f26383adb94da5e7fb388d441bf09c61e5e35f455a3217bfd790c6b6bc64b2ee"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1dd0ef2986e279f1ef622d8d3867a545",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1312924,
"upload_time": "2024-04-16T17:46:33",
"upload_time_iso_8601": "2024-04-16T17:46:33.966215Z",
"url": "https://files.pythonhosted.org/packages/73/f1/084f82069428b87d2b5c1e3e2d1d51911981f4cccd94c5c3691f10061c99/aiohttp-3.9.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1fd6412156ea1aa44a5cc95421db85b0c7a5d1ee3ba71efad04db84305ca1968",
"md5": "8dbd8227c89a8abadf00fa3747f97fd5",
"sha256": "66331d00fb28dc90aa606d9a54304af76b335ae204d1836f65797d6fe27f1ca2"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8dbd8227c89a8abadf00fa3747f97fd5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1349620,
"upload_time": "2024-04-16T17:46:36",
"upload_time_iso_8601": "2024-04-16T17:46:36.616235Z",
"url": "https://files.pythonhosted.org/packages/1f/d6/412156ea1aa44a5cc95421db85b0c7a5d1ee3ba71efad04db84305ca1968/aiohttp-3.9.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3f42376e5e4b6f167358e1e8c6a78cae64ca49d30d6edecbab80796dbb838855",
"md5": "409868dc13928474790fe2e902ab88ae",
"sha256": "4ff550491f5492ab5ed3533e76b8567f4b37bd2995e780a1f46bca2024223233"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "409868dc13928474790fe2e902ab88ae",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1387070,
"upload_time": "2024-04-16T17:46:39",
"upload_time_iso_8601": "2024-04-16T17:46:39.460597Z",
"url": "https://files.pythonhosted.org/packages/3f/42/376e5e4b6f167358e1e8c6a78cae64ca49d30d6edecbab80796dbb838855/aiohttp-3.9.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2499e76e65ca811100b445d3c8af9764b27c5180ca11a15af694366424896647",
"md5": "d3bc3d7907fa984bace019d582b304b3",
"sha256": "f22eb3a6c1080d862befa0a89c380b4dafce29dc6cd56083f630073d102eb595"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d3bc3d7907fa984bace019d582b304b3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1297781,
"upload_time": "2024-04-16T17:46:41",
"upload_time_iso_8601": "2024-04-16T17:46:41.964626Z",
"url": "https://files.pythonhosted.org/packages/24/99/e76e65ca811100b445d3c8af9764b27c5180ca11a15af694366424896647/aiohttp-3.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "01af8da680fa69632f413860d3f4dcace47f7fc50486fe920ec43447ffaccee7",
"md5": "003a4ca592ff2db3e6e65078a9188239",
"sha256": "a81b1143d42b66ffc40a441379387076243ef7b51019204fd3ec36b9f69e77d6"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "003a4ca592ff2db3e6e65078a9188239",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1257586,
"upload_time": "2024-04-16T17:46:44",
"upload_time_iso_8601": "2024-04-16T17:46:44.295460Z",
"url": "https://files.pythonhosted.org/packages/01/af/8da680fa69632f413860d3f4dcace47f7fc50486fe920ec43447ffaccee7/aiohttp-3.9.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "90aea0741922ef3e99e71faa18ddf1a3a00309dd01107d3dc51f46bedd30e5c6",
"md5": "0704767499f9ebb3d2befaca585cf5fb",
"sha256": "f64fd07515dad67f24b6ea4a66ae2876c01031de91c93075b8093f07c0a2d93d"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "0704767499f9ebb3d2befaca585cf5fb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1319016,
"upload_time": "2024-04-16T17:46:47",
"upload_time_iso_8601": "2024-04-16T17:46:47.173304Z",
"url": "https://files.pythonhosted.org/packages/90/ae/a0741922ef3e99e71faa18ddf1a3a00309dd01107d3dc51f46bedd30e5c6/aiohttp-3.9.5-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "efbd61671d071518ac18875c1471cf5f6e210f48c855bdfc9e6cbe47134e2921",
"md5": "a84a25a9eeecbefb48e9749a73206bbb",
"sha256": "93e22add827447d2e26d67c9ac0161756007f152fdc5210277d00a85f6c92323"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "a84a25a9eeecbefb48e9749a73206bbb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1268646,
"upload_time": "2024-04-16T17:46:49",
"upload_time_iso_8601": "2024-04-16T17:46:49.682753Z",
"url": "https://files.pythonhosted.org/packages/ef/bd/61671d071518ac18875c1471cf5f6e210f48c855bdfc9e6cbe47134e2921/aiohttp-3.9.5-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ead10e1d60543d68583ed5b87f4d2eb1c72e54c68933e7799e649de04ffbb6b0",
"md5": "e4e25315c969357d972b20af8dbb10e0",
"sha256": "55b39c8684a46e56ef8c8d24faf02de4a2b2ac60d26cee93bc595651ff545de9"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "e4e25315c969357d972b20af8dbb10e0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1350674,
"upload_time": "2024-04-16T17:46:51",
"upload_time_iso_8601": "2024-04-16T17:46:51.912993Z",
"url": "https://files.pythonhosted.org/packages/ea/d1/0e1d60543d68583ed5b87f4d2eb1c72e54c68933e7799e649de04ffbb6b0/aiohttp-3.9.5-cp311-cp311-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "46604f5225360aebb03d9fbf2a26c79fa01c6da326eeb160d212050990a7f658",
"md5": "3754b0625ae0e798af7cd72f26996737",
"sha256": "4715a9b778f4293b9f8ae7a0a7cef9829f02ff8d6277a39d7f40565c737d3771"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "3754b0625ae0e798af7cd72f26996737",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1394599,
"upload_time": "2024-04-16T17:46:54",
"upload_time_iso_8601": "2024-04-16T17:46:54.081669Z",
"url": "https://files.pythonhosted.org/packages/46/60/4f5225360aebb03d9fbf2a26c79fa01c6da326eeb160d212050990a7f658/aiohttp-3.9.5-cp311-cp311-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6b99c742967d54091496a5675ae9faa910765f572e7863461ccc7fb22a1501e2",
"md5": "2f595f359111395f5d04dbb09aa504a7",
"sha256": "afc52b8d969eff14e069a710057d15ab9ac17cd4b6753042c407dcea0e40bf75"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "2f595f359111395f5d04dbb09aa504a7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1302531,
"upload_time": "2024-04-16T17:46:56",
"upload_time_iso_8601": "2024-04-16T17:46:56.706219Z",
"url": "https://files.pythonhosted.org/packages/6b/99/c742967d54091496a5675ae9faa910765f572e7863461ccc7fb22a1501e2/aiohttp-3.9.5-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a7a5e8e0e4bf0adb3ebd3773ebb0fb006d4e4850d1a9eef0a911482eba883814",
"md5": "18396cffcf20e7309413bdcef8a02673",
"sha256": "b3df71da99c98534be076196791adca8819761f0bf6e08e07fd7da25127150d6"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "18396cffcf20e7309413bdcef8a02673",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 350613,
"upload_time": "2024-04-16T17:46:59",
"upload_time_iso_8601": "2024-04-16T17:46:59.819680Z",
"url": "https://files.pythonhosted.org/packages/a7/a5/e8e0e4bf0adb3ebd3773ebb0fb006d4e4850d1a9eef0a911482eba883814/aiohttp-3.9.5-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a4690d415c6d8450842652ce01b29f43416a0f30122b75899de01485623c7850",
"md5": "496cb257d6cec65a26a161df90c5772a",
"sha256": "88e311d98cc0bf45b62fc46c66753a83445f5ab20038bcc1b8a1cc05666f428a"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "496cb257d6cec65a26a161df90c5772a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 370792,
"upload_time": "2024-04-16T17:47:02",
"upload_time_iso_8601": "2024-04-16T17:47:02.843624Z",
"url": "https://files.pythonhosted.org/packages/a4/69/0d415c6d8450842652ce01b29f43416a0f30122b75899de01485623c7850/aiohttp-3.9.5-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e25c6bd6cb160a4dc81f83adbc9bdd6758f01932a6c81a3e4ac707746e7855e",
"md5": "04c2e105863b971a75d5685f7612cc1b",
"sha256": "c7a4b7a6cf5b6eb11e109a9755fd4fda7d57395f8c575e166d363b9fc3ec4678"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "04c2e105863b971a75d5685f7612cc1b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 595330,
"upload_time": "2024-04-16T17:47:05",
"upload_time_iso_8601": "2024-04-16T17:47:05.671890Z",
"url": "https://files.pythonhosted.org/packages/5e/25/c6bd6cb160a4dc81f83adbc9bdd6758f01932a6c81a3e4ac707746e7855e/aiohttp-3.9.5-cp312-cp312-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "185ff6428eb55244d44e1c674c8c823ae1567136ac1d2f8b128e194dd4febbe1",
"md5": "92630fa0515fbc9109e47c3b23f0bc38",
"sha256": "0a158704edf0abcac8ac371fbb54044f3270bdbc93e254a82b6c82be1ef08f3c"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "92630fa0515fbc9109e47c3b23f0bc38",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 395974,
"upload_time": "2024-04-16T17:47:08",
"upload_time_iso_8601": "2024-04-16T17:47:08.508260Z",
"url": "https://files.pythonhosted.org/packages/18/5f/f6428eb55244d44e1c674c8c823ae1567136ac1d2f8b128e194dd4febbe1/aiohttp-3.9.5-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "78282080ed3140b7d25c406f77fe2d5776edd9c7a25228f7f905d7058a6e2d61",
"md5": "fcbee2e5b93b1845e4955aaa893529ea",
"sha256": "d153f652a687a8e95ad367a86a61e8d53d528b0530ef382ec5aaf533140ed00f"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "fcbee2e5b93b1845e4955aaa893529ea",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 392399,
"upload_time": "2024-04-16T17:47:11",
"upload_time_iso_8601": "2024-04-16T17:47:11.220897Z",
"url": "https://files.pythonhosted.org/packages/78/28/2080ed3140b7d25c406f77fe2d5776edd9c7a25228f7f905d7058a6e2d61/aiohttp-3.9.5-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d3c0cd9d02e1b9e1b1073c94f7692ffe69067987c4acc0252bbc0c7645360d37",
"md5": "e3088ee9433e748d4ff42c3baebb65d5",
"sha256": "82a6a97d9771cb48ae16979c3a3a9a18b600a8505b1115cfe354dfb2054468b4"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e3088ee9433e748d4ff42c3baebb65d5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1322648,
"upload_time": "2024-04-16T17:47:13",
"upload_time_iso_8601": "2024-04-16T17:47:13.615457Z",
"url": "https://files.pythonhosted.org/packages/d3/c0/cd9d02e1b9e1b1073c94f7692ffe69067987c4acc0252bbc0c7645360d37/aiohttp-3.9.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f2fbd65d58230e9ed5cfed886b0c433634bfb14cbe183125e84de909559e29e7",
"md5": "bcd713e84af632084b7885b0b1b99b43",
"sha256": "60cdbd56f4cad9f69c35eaac0fbbdf1f77b0ff9456cebd4902f3dd1cf096464c"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "bcd713e84af632084b7885b0b1b99b43",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1362078,
"upload_time": "2024-04-16T17:47:17",
"upload_time_iso_8601": "2024-04-16T17:47:17.145436Z",
"url": "https://files.pythonhosted.org/packages/f2/fb/d65d58230e9ed5cfed886b0c433634bfb14cbe183125e84de909559e29e7/aiohttp-3.9.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a639ca4fc97af53167ff6c8888a59002b17447bddd8dd474ae0f0e778446cfe7",
"md5": "745ecfc736a3a397b94938dafbfc6ef3",
"sha256": "8676e8fd73141ded15ea586de0b7cda1542960a7b9ad89b2b06428e97125d4fa"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "745ecfc736a3a397b94938dafbfc6ef3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1404667,
"upload_time": "2024-04-16T17:47:19",
"upload_time_iso_8601": "2024-04-16T17:47:19.531501Z",
"url": "https://files.pythonhosted.org/packages/a6/39/ca4fc97af53167ff6c8888a59002b17447bddd8dd474ae0f0e778446cfe7/aiohttp-3.9.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dd0a526c8480bd846b9155c624c7e54db94733fc6b381dfd748cc8dd69c994b0",
"md5": "2cfa252e925a9e6f68105a7008607815",
"sha256": "da00da442a0e31f1c69d26d224e1efd3a1ca5bcbf210978a2ca7426dfcae9f58"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "2cfa252e925a9e6f68105a7008607815",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1317772,
"upload_time": "2024-04-16T17:47:22",
"upload_time_iso_8601": "2024-04-16T17:47:22.204975Z",
"url": "https://files.pythonhosted.org/packages/dd/0a/526c8480bd846b9155c624c7e54db94733fc6b381dfd748cc8dd69c994b0/aiohttp-3.9.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0cea8e1bd13e39b3f4c37889b8480f04ed398e07017f5709d66d4e1d0dee39fe",
"md5": "ae861f6bf0ca0f2a55585f11b036e0db",
"sha256": "18f634d540dd099c262e9f887c8bbacc959847cfe5da7a0e2e1cf3f14dbf2daf"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ae861f6bf0ca0f2a55585f11b036e0db",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1269636,
"upload_time": "2024-04-16T17:47:24",
"upload_time_iso_8601": "2024-04-16T17:47:24.903052Z",
"url": "https://files.pythonhosted.org/packages/0c/ea/8e1bd13e39b3f4c37889b8480f04ed398e07017f5709d66d4e1d0dee39fe/aiohttp-3.9.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2aac7c00027510f42a21c0a905f2472d9afef7ea276573357829bfe8c12883d4",
"md5": "58266f2d7f28b6d95804385bb8665427",
"sha256": "320e8618eda64e19d11bdb3bd04ccc0a816c17eaecb7e4945d01deee2a22f95f"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "58266f2d7f28b6d95804385bb8665427",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1324957,
"upload_time": "2024-04-16T17:47:27",
"upload_time_iso_8601": "2024-04-16T17:47:27.514397Z",
"url": "https://files.pythonhosted.org/packages/2a/ac/7c00027510f42a21c0a905f2472d9afef7ea276573357829bfe8c12883d4/aiohttp-3.9.5-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e3f5e0c216a12b2490cbecd79e9b7671f4e50dfc72e9a52347943aabe6f5bc44",
"md5": "90b9739297dde35329ac5209c8fc97e8",
"sha256": "2faa61a904b83142747fc6a6d7ad8fccff898c849123030f8e75d5d967fd4a81"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "90b9739297dde35329ac5209c8fc97e8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1267548,
"upload_time": "2024-04-16T17:47:30",
"upload_time_iso_8601": "2024-04-16T17:47:30.480956Z",
"url": "https://files.pythonhosted.org/packages/e3/f5/e0c216a12b2490cbecd79e9b7671f4e50dfc72e9a52347943aabe6f5bc44/aiohttp-3.9.5-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8831e55083b026428324cde827c04bdfbc837c131f9d3ee38d28c766614b09ef",
"md5": "29f84931561554015480305a248622ff",
"sha256": "8c64a6dc3fe5db7b1b4d2b5cb84c4f677768bdc340611eca673afb7cf416ef5a"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "29f84931561554015480305a248622ff",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1353136,
"upload_time": "2024-04-16T17:47:32",
"upload_time_iso_8601": "2024-04-16T17:47:32.851585Z",
"url": "https://files.pythonhosted.org/packages/88/31/e55083b026428324cde827c04bdfbc837c131f9d3ee38d28c766614b09ef/aiohttp-3.9.5-cp312-cp312-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "548e72d1ddd6e653b6d4b7b1fece7619287d3319bae10ad3a7f12d956bcc9e96",
"md5": "3dbf3823540776f4cb78b01385ee9667",
"sha256": "393c7aba2b55559ef7ab791c94b44f7482a07bf7640d17b341b79081f5e5cd1a"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "3dbf3823540776f4cb78b01385ee9667",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1400946,
"upload_time": "2024-04-16T17:47:35",
"upload_time_iso_8601": "2024-04-16T17:47:35.487962Z",
"url": "https://files.pythonhosted.org/packages/54/8e/72d1ddd6e653b6d4b7b1fece7619287d3319bae10ad3a7f12d956bcc9e96/aiohttp-3.9.5-cp312-cp312-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5cf1f61b397a0eaf01d197e610b0f56935b0002d688f27d73af2882b282fc2f8",
"md5": "b63656acce1e9adf48187be64cccc0da",
"sha256": "c671dc117c2c21a1ca10c116cfcd6e3e44da7fcde37bf83b2be485ab377b25da"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "b63656acce1e9adf48187be64cccc0da",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1319358,
"upload_time": "2024-04-16T17:47:37",
"upload_time_iso_8601": "2024-04-16T17:47:37.881492Z",
"url": "https://files.pythonhosted.org/packages/5c/f1/f61b397a0eaf01d197e610b0f56935b0002d688f27d73af2882b282fc2f8/aiohttp-3.9.5-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d15d8cb20df780921adf9f436f214350729b12873742abd697c981229c554acc",
"md5": "0de273b8e8bdffa3580edacd86da98d1",
"sha256": "5a7ee16aab26e76add4afc45e8f8206c95d1d75540f1039b84a03c3b3800dd59"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "0de273b8e8bdffa3580edacd86da98d1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 347602,
"upload_time": "2024-04-16T17:47:40",
"upload_time_iso_8601": "2024-04-16T17:47:40.081580Z",
"url": "https://files.pythonhosted.org/packages/d1/5d/8cb20df780921adf9f436f214350729b12873742abd697c981229c554acc/aiohttp-3.9.5-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a000cdbda8b406ce7b656b9cb765f8134b1edb999f816f54e47347d2bc67f4bf",
"md5": "b5c6154fb7b35dc81a871857cf234505",
"sha256": "5ca51eadbd67045396bc92a4345d1790b7301c14d1848feaac1d6a6c9289e888"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "b5c6154fb7b35dc81a871857cf234505",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 369012,
"upload_time": "2024-04-16T17:47:42",
"upload_time_iso_8601": "2024-04-16T17:47:42.663451Z",
"url": "https://files.pythonhosted.org/packages/a0/00/cdbda8b406ce7b656b9cb765f8134b1edb999f816f54e47347d2bc67f4bf/aiohttp-3.9.5-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "854968a2da7fef9195b3fcfc27ebb469c06ebc2777546eb8311cdab4fe8c8aca",
"md5": "67596741330f8add0176c27e1f492b02",
"sha256": "694d828b5c41255e54bc2dddb51a9f5150b4eefa9886e38b52605a05d96566e8"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "67596741330f8add0176c27e1f492b02",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 601191,
"upload_time": "2024-04-16T17:47:48",
"upload_time_iso_8601": "2024-04-16T17:47:48.686069Z",
"url": "https://files.pythonhosted.org/packages/85/49/68a2da7fef9195b3fcfc27ebb469c06ebc2777546eb8311cdab4fe8c8aca/aiohttp-3.9.5-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "edaa555091d9ad3e036a91922bfbf6d4fc9906e78b22d776c25150caa96cb387",
"md5": "cfdda7037662d0e09c5889088f00c6e7",
"sha256": "0605cc2c0088fcaae79f01c913a38611ad09ba68ff482402d3410bf59039bfb8"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "cfdda7037662d0e09c5889088f00c6e7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 402616,
"upload_time": "2024-04-16T17:47:51",
"upload_time_iso_8601": "2024-04-16T17:47:51.906099Z",
"url": "https://files.pythonhosted.org/packages/ed/aa/555091d9ad3e036a91922bfbf6d4fc9906e78b22d776c25150caa96cb387/aiohttp-3.9.5-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6937ca379996ae72e7795d5b3f6bd13c0b24ad8641d11d02732606fd363b7bed",
"md5": "38df7882dfcadb54f3aeac56a3d52503",
"sha256": "4558e5012ee03d2638c681e156461d37b7a113fe13970d438d95d10173d25f78"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "38df7882dfcadb54f3aeac56a3d52503",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 391927,
"upload_time": "2024-04-16T17:47:54",
"upload_time_iso_8601": "2024-04-16T17:47:54.267991Z",
"url": "https://files.pythonhosted.org/packages/69/37/ca379996ae72e7795d5b3f6bd13c0b24ad8641d11d02732606fd363b7bed/aiohttp-3.9.5-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "40c7331f8ef2cfa04592a0f397c451d32526778891fc5309646f6a2dbfa8b89a",
"md5": "4b6e63de1f87831347cbffd87543752a",
"sha256": "9dbc053ac75ccc63dc3a3cc547b98c7258ec35a215a92bd9f983e0aac95d3d5b"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4b6e63de1f87831347cbffd87543752a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1263175,
"upload_time": "2024-04-16T17:47:56",
"upload_time_iso_8601": "2024-04-16T17:47:56.918648Z",
"url": "https://files.pythonhosted.org/packages/40/c7/331f8ef2cfa04592a0f397c451d32526778891fc5309646f6a2dbfa8b89a/aiohttp-3.9.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3aafefbb5c0d22f5c4656c5c19b7ef1495ef6b03aa3fb6def05a57e7e3f682e7",
"md5": "22f07fb7ef918e9d85b63db0ad227958",
"sha256": "4109adee842b90671f1b689901b948f347325045c15f46b39797ae1bf17019de"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "22f07fb7ef918e9d85b63db0ad227958",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1315199,
"upload_time": "2024-04-16T17:47:59",
"upload_time_iso_8601": "2024-04-16T17:47:59.060132Z",
"url": "https://files.pythonhosted.org/packages/3a/af/efbb5c0d22f5c4656c5c19b7ef1495ef6b03aa3fb6def05a57e7e3f682e7/aiohttp-3.9.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5031da05d395ab732368795c01feb264e192b4e738597012d7d86a45df79640b",
"md5": "7d4d42b09ddfcc53dcee399eb73e504d",
"sha256": "a6ea1a5b409a85477fd8e5ee6ad8f0e40bf2844c270955e09360418cfd09abac"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "7d4d42b09ddfcc53dcee399eb73e504d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1349005,
"upload_time": "2024-04-16T17:48:02",
"upload_time_iso_8601": "2024-04-16T17:48:02.307702Z",
"url": "https://files.pythonhosted.org/packages/50/31/da05d395ab732368795c01feb264e192b4e738597012d7d86a45df79640b/aiohttp-3.9.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bf856166b71dc124cbca726f1d062218a61f2541d7c5192bef8c9b518b787132",
"md5": "7c177d7fc4c77ad7d763282497a56209",
"sha256": "f3c2890ca8c59ee683fd09adf32321a40fe1cf164e3387799efb2acebf090c11"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7c177d7fc4c77ad7d763282497a56209",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1253582,
"upload_time": "2024-04-16T17:48:05",
"upload_time_iso_8601": "2024-04-16T17:48:05.351328Z",
"url": "https://files.pythonhosted.org/packages/bf/85/6166b71dc124cbca726f1d062218a61f2541d7c5192bef8c9b518b787132/aiohttp-3.9.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b71461ab6b7427e252c3bc0ee94eeb06394c003cc295edf6558114e6e54ef882",
"md5": "80788ba27faaf402feb130c901b577dc",
"sha256": "3916c8692dbd9d55c523374a3b8213e628424d19116ac4308e434dbf6d95bbdd"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "80788ba27faaf402feb130c901b577dc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1220512,
"upload_time": "2024-04-16T17:48:07",
"upload_time_iso_8601": "2024-04-16T17:48:07.920205Z",
"url": "https://files.pythonhosted.org/packages/b7/14/61ab6b7427e252c3bc0ee94eeb06394c003cc295edf6558114e6e54ef882/aiohttp-3.9.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "34af8d96e889d7d5f9e450545bad8694af66ef38afc0f28a77f058212d3662e2",
"md5": "4a071b41ded6b4cc6608cc4099e27c31",
"sha256": "8d1964eb7617907c792ca00b341b5ec3e01ae8c280825deadbbd678447b127e1"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "4a071b41ded6b4cc6608cc4099e27c31",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1315483,
"upload_time": "2024-04-16T17:48:10",
"upload_time_iso_8601": "2024-04-16T17:48:10.118610Z",
"url": "https://files.pythonhosted.org/packages/34/af/8d96e889d7d5f9e450545bad8694af66ef38afc0f28a77f058212d3662e2/aiohttp-3.9.5-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4741a1ace3e0d5b7dfd72ce7a30629e75afcb5e731291ed8b8aa717bc0e1b8c7",
"md5": "1dbe586d3f501f90b2dc2af6d866389d",
"sha256": "d5ab8e1f6bee051a4bf6195e38a5c13e5e161cb7bad83d8854524798bd9fcd6e"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "1dbe586d3f501f90b2dc2af6d866389d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1265535,
"upload_time": "2024-04-16T17:48:13",
"upload_time_iso_8601": "2024-04-16T17:48:13.010802Z",
"url": "https://files.pythonhosted.org/packages/47/41/a1ace3e0d5b7dfd72ce7a30629e75afcb5e731291ed8b8aa717bc0e1b8c7/aiohttp-3.9.5-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6cfc9656ec8b3546cf0a74ba0d39d5e497fc7712b51c958ea2ec03ca28ed2a55",
"md5": "a5f25e64811bdf2b2be0ed5d40418203",
"sha256": "52c27110f3862a1afbcb2af4281fc9fdc40327fa286c4625dfee247c3ba90156"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "a5f25e64811bdf2b2be0ed5d40418203",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1344370,
"upload_time": "2024-04-16T17:48:16",
"upload_time_iso_8601": "2024-04-16T17:48:16.225977Z",
"url": "https://files.pythonhosted.org/packages/6c/fc/9656ec8b3546cf0a74ba0d39d5e497fc7712b51c958ea2ec03ca28ed2a55/aiohttp-3.9.5-cp38-cp38-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "74caf55eac020a2c4df8607bf42ae0e31cddb93801406d2fd4d70b34a370fa23",
"md5": "8a35b570735b6975bab7ef6327622b39",
"sha256": "7f64cbd44443e80094309875d4f9c71d0401e966d191c3d469cde4642bc2e031"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "8a35b570735b6975bab7ef6327622b39",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1385354,
"upload_time": "2024-04-16T17:48:19",
"upload_time_iso_8601": "2024-04-16T17:48:19.028946Z",
"url": "https://files.pythonhosted.org/packages/74/ca/f55eac020a2c4df8607bf42ae0e31cddb93801406d2fd4d70b34a370fa23/aiohttp-3.9.5-cp38-cp38-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eb41a470f19879f861eb2183046493d57d0ae166ba432ef4b304ab3dd6843379",
"md5": "48f384c848bedd51f2b00ce244c18c22",
"sha256": "8b4f72fbb66279624bfe83fd5eb6aea0022dad8eec62b71e7bf63ee1caadeafe"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "48f384c848bedd51f2b00ce244c18c22",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1305948,
"upload_time": "2024-04-16T17:48:21",
"upload_time_iso_8601": "2024-04-16T17:48:21.780102Z",
"url": "https://files.pythonhosted.org/packages/eb/41/a470f19879f861eb2183046493d57d0ae166ba432ef4b304ab3dd6843379/aiohttp-3.9.5-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "53c199c560b044c252cf47b71b5d7d33e9d38dc40d7a9a660579036b9d09f252",
"md5": "dcbb3e20bfb3ec04fd7e6cd9ce4636bf",
"sha256": "6380c039ec52866c06d69b5c7aad5478b24ed11696f0e72f6b807cfb261453da"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "dcbb3e20bfb3ec04fd7e6cd9ce4636bf",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 353271,
"upload_time": "2024-04-16T17:48:24",
"upload_time_iso_8601": "2024-04-16T17:48:24.750147Z",
"url": "https://files.pythonhosted.org/packages/53/c1/99c560b044c252cf47b71b5d7d33e9d38dc40d7a9a660579036b9d09f252/aiohttp-3.9.5-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c52be7260c532ea3057dfdee64d84e9860ed1e84cf54b775ece475d560382d1f",
"md5": "edc089fdc3319b7003f65efb6f2418f9",
"sha256": "da22dab31d7180f8c3ac7c7635f3bcd53808f374f6aa333fe0b0b9e14b01f91a"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "edc089fdc3319b7003f65efb6f2418f9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 373122,
"upload_time": "2024-04-16T17:48:27",
"upload_time_iso_8601": "2024-04-16T17:48:27.462309Z",
"url": "https://files.pythonhosted.org/packages/c5/2b/e7260c532ea3057dfdee64d84e9860ed1e84cf54b775ece475d560382d1f/aiohttp-3.9.5-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f99f5ee4aaf09c95da6e71c9f0d5578449d5288ad4fdf225124c7b8124c6287a",
"md5": "7f512715325ebeec4173fa60bd1c38d8",
"sha256": "1732102949ff6087589408d76cd6dea656b93c896b011ecafff418c9661dc4ed"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "7f512715325ebeec4173fa60bd1c38d8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 598940,
"upload_time": "2024-04-16T17:48:30",
"upload_time_iso_8601": "2024-04-16T17:48:30.118240Z",
"url": "https://files.pythonhosted.org/packages/f9/9f/5ee4aaf09c95da6e71c9f0d5578449d5288ad4fdf225124c7b8124c6287a/aiohttp-3.9.5-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "74216ef1ccb2bead0a5a5c9c198f56f0ef22781a759f8c0dbec067e6be947a87",
"md5": "cc3a882c75b65a51cf8d6a82c81d3801",
"sha256": "c6021d296318cb6f9414b48e6a439a7f5d1f665464da507e8ff640848ee2a58a"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "cc3a882c75b65a51cf8d6a82c81d3801",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 401576,
"upload_time": "2024-04-16T17:48:33",
"upload_time_iso_8601": "2024-04-16T17:48:33.215505Z",
"url": "https://files.pythonhosted.org/packages/74/21/6ef1ccb2bead0a5a5c9c198f56f0ef22781a759f8c0dbec067e6be947a87/aiohttp-3.9.5-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4c8f04381aa090cffc3dbb6673935bdb4a7c7690d3bc40949d1e66fc136dac15",
"md5": "483305e97b4e690bcec2de69867f62ec",
"sha256": "239f975589a944eeb1bad26b8b140a59a3a320067fb3cd10b75c3092405a1372"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "483305e97b4e690bcec2de69867f62ec",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 390716,
"upload_time": "2024-04-16T17:48:35",
"upload_time_iso_8601": "2024-04-16T17:48:35.756411Z",
"url": "https://files.pythonhosted.org/packages/4c/8f/04381aa090cffc3dbb6673935bdb4a7c7690d3bc40949d1e66fc136dac15/aiohttp-3.9.5-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eb45eebe8d2215328434f33ccb44a05d2741ff7ed4b96b56ca507e2ecf598b73",
"md5": "08504aaa663747025c87540742fac40e",
"sha256": "3b7b30258348082826d274504fbc7c849959f1989d86c29bc355107accec6cfb"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "08504aaa663747025c87540742fac40e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1241694,
"upload_time": "2024-04-16T17:48:38",
"upload_time_iso_8601": "2024-04-16T17:48:38.831491Z",
"url": "https://files.pythonhosted.org/packages/eb/45/eebe8d2215328434f33ccb44a05d2741ff7ed4b96b56ca507e2ecf598b73/aiohttp-3.9.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "29b0e2728ce40ac9bd9e8998c5f1a36ff8273ada5c302607b720200607daff8b",
"md5": "813b0610b06783de965529c580a0f6fd",
"sha256": "cd2adf5c87ff6d8b277814a28a535b59e20bfea40a101db6b3bdca7e9926bc24"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "813b0610b06783de965529c580a0f6fd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1275633,
"upload_time": "2024-04-16T17:48:41",
"upload_time_iso_8601": "2024-04-16T17:48:41.663405Z",
"url": "https://files.pythonhosted.org/packages/29/b0/e2728ce40ac9bd9e8998c5f1a36ff8273ada5c302607b720200607daff8b/aiohttp-3.9.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a476bd2f2eae52e9e00002fcc0910428d2aabcd81edd420cb8dbc36adee99f0a",
"md5": "75d0faaa46a112b9e82afaf594e78a65",
"sha256": "e9a3d838441bebcf5cf442700e3963f58b5c33f015341f9ea86dcd7d503c07e2"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "75d0faaa46a112b9e82afaf594e78a65",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1310717,
"upload_time": "2024-04-16T17:48:44",
"upload_time_iso_8601": "2024-04-16T17:48:44.121458Z",
"url": "https://files.pythonhosted.org/packages/a4/76/bd2f2eae52e9e00002fcc0910428d2aabcd81edd420cb8dbc36adee99f0a/aiohttp-3.9.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "944f3c99f1cdab4fb55e12a914c80828f0958f04d79ef6b6ce1e05d07c30c46b",
"md5": "6fe324b4905995511271ce47ecfee8bf",
"sha256": "9e3a1ae66e3d0c17cf65c08968a5ee3180c5a95920ec2731f53343fac9bad106"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6fe324b4905995511271ce47ecfee8bf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1231470,
"upload_time": "2024-04-16T17:48:46",
"upload_time_iso_8601": "2024-04-16T17:48:46.640269Z",
"url": "https://files.pythonhosted.org/packages/94/4f/3c99f1cdab4fb55e12a914c80828f0958f04d79ef6b6ce1e05d07c30c46b/aiohttp-3.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4646dc7da6d44f66026649c6b66584b3d4362b4450a5eb1237b0f1853ac673d3",
"md5": "8e7d2127554eb905c371ba154c9ece5a",
"sha256": "9c69e77370cce2d6df5d12b4e12bdcca60c47ba13d1cbbc8645dd005a20b738b"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8e7d2127554eb905c371ba154c9ece5a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1204661,
"upload_time": "2024-04-16T17:48:49",
"upload_time_iso_8601": "2024-04-16T17:48:49.212931Z",
"url": "https://files.pythonhosted.org/packages/46/46/dc7da6d44f66026649c6b66584b3d4362b4450a5eb1237b0f1853ac673d3/aiohttp-3.9.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3d8dd4ac343b9decf7458bf75020a76680163fef16c28dad4a5283084a90f06a",
"md5": "9477d3a5e1789b07762139fe75ac22fd",
"sha256": "0cbf56238f4bbf49dab8c2dc2e6b1b68502b1e88d335bea59b3f5b9f4c001475"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "9477d3a5e1789b07762139fe75ac22fd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1254435,
"upload_time": "2024-04-16T17:48:52",
"upload_time_iso_8601": "2024-04-16T17:48:52.121194Z",
"url": "https://files.pythonhosted.org/packages/3d/8d/d4ac343b9decf7458bf75020a76680163fef16c28dad4a5283084a90f06a/aiohttp-3.9.5-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fa1ff0ab436f8fed9373b8a0bc8f8aa735dd9d18f0a09df8228a4df07e0cd885",
"md5": "ce7a135007096773263fab08fde6e6f3",
"sha256": "d1469f228cd9ffddd396d9948b8c9cd8022b6d1bf1e40c6f25b0fb90b4f893ed"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "ce7a135007096773263fab08fde6e6f3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1214547,
"upload_time": "2024-04-16T17:48:54",
"upload_time_iso_8601": "2024-04-16T17:48:54.319705Z",
"url": "https://files.pythonhosted.org/packages/fa/1f/f0ab436f8fed9373b8a0bc8f8aa735dd9d18f0a09df8228a4df07e0cd885/aiohttp-3.9.5-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "320ddb026b8ddb76447fc0d0ff58f10819feaeb09900142c9042bdec73d409f2",
"md5": "58410b0c42f4267047eb3423b7b5a9df",
"sha256": "45731330e754f5811c314901cebdf19dd776a44b31927fa4b4dbecab9e457b0c"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-musllinux_1_1_ppc64le.whl",
"has_sig": false,
"md5_digest": "58410b0c42f4267047eb3423b7b5a9df",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1284779,
"upload_time": "2024-04-16T17:48:56",
"upload_time_iso_8601": "2024-04-16T17:48:56.778590Z",
"url": "https://files.pythonhosted.org/packages/32/0d/db026b8ddb76447fc0d0ff58f10819feaeb09900142c9042bdec73d409f2/aiohttp-3.9.5-cp39-cp39-musllinux_1_1_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0aec3c69a88382d0424150c109da8e85bc285b915fdbfdcaae2f72c6d430d479",
"md5": "cfb8b3e9164621ae2225325c8115cc07",
"sha256": "3fcb4046d2904378e3aeea1df51f697b0467f2aac55d232c87ba162709478c46"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-musllinux_1_1_s390x.whl",
"has_sig": false,
"md5_digest": "cfb8b3e9164621ae2225325c8115cc07",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1328392,
"upload_time": "2024-04-16T17:48:59",
"upload_time_iso_8601": "2024-04-16T17:48:59.211125Z",
"url": "https://files.pythonhosted.org/packages/0a/ec/3c69a88382d0424150c109da8e85bc285b915fdbfdcaae2f72c6d430d479/aiohttp-3.9.5-cp39-cp39-musllinux_1_1_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a06fcdf328227c511dffdab5431807ee742342e489d5c984cf5a60f0ef142e28",
"md5": "2a084a52f8e48a62ca299daa244f938d",
"sha256": "8cf142aa6c1a751fcb364158fd710b8a9be874b81889c2bd13aa8893197455e2"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "2a084a52f8e48a62ca299daa244f938d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1244976,
"upload_time": "2024-04-16T17:49:02",
"upload_time_iso_8601": "2024-04-16T17:49:02.020519Z",
"url": "https://files.pythonhosted.org/packages/a0/6f/cdf328227c511dffdab5431807ee742342e489d5c984cf5a60f0ef142e28/aiohttp-3.9.5-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ea549f0c6d42af5808b1b6dd011e9a25b219cc892a811a1067b9bc1d8ae6536d",
"md5": "6a853539e33f1fbdca97a2eda934a261",
"sha256": "7b179eea70833c8dee51ec42f3b4097bd6370892fa93f510f76762105568cf09"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "6a853539e33f1fbdca97a2eda934a261",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 352238,
"upload_time": "2024-04-16T17:49:04",
"upload_time_iso_8601": "2024-04-16T17:49:04.858275Z",
"url": "https://files.pythonhosted.org/packages/ea/54/9f0c6d42af5808b1b6dd011e9a25b219cc892a811a1067b9bc1d8ae6536d/aiohttp-3.9.5-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e6361480e47a31fe1424a991ca9e59609f37409ff74d7f891f47e096e0ac709c",
"md5": "71f836689cf4d3592ca785b3cb20d497",
"sha256": "38d80498e2e169bc61418ff36170e0aad0cd268da8b38a17c4cf29d254a8b3f1"
},
"downloads": -1,
"filename": "aiohttp-3.9.5-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "71f836689cf4d3592ca785b3cb20d497",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 371614,
"upload_time": "2024-04-16T17:49:08",
"upload_time_iso_8601": "2024-04-16T17:49:08.079462Z",
"url": "https://files.pythonhosted.org/packages/e6/36/1480e47a31fe1424a991ca9e59609f37409ff74d7f891f47e096e0ac709c/aiohttp-3.9.5-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "04a4e3679773ea7eb5b37a2c998e25b017cc5349edf6ba2739d1f32855cfb11b",
"md5": "14829a5ea507c8219e3f679fceeb5585",
"sha256": "edea7d15772ceeb29db4aff55e482d4bcfb6ae160ce144f2682de02f6d693551"
},
"downloads": -1,
"filename": "aiohttp-3.9.5.tar.gz",
"has_sig": false,
"md5_digest": "14829a5ea507c8219e3f679fceeb5585",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 7504841,
"upload_time": "2024-04-16T17:49:10",
"upload_time_iso_8601": "2024-04-16T17:49:10.915476Z",
"url": "https://files.pythonhosted.org/packages/04/a4/e3679773ea7eb5b37a2c998e25b017cc5349edf6ba2739d1f32855cfb11b/aiohttp-3.9.5.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"vulnerabilities": []
}