Name | aiohttp JSON |
Version |
3.8.3
JSON |
| download |
home_page | https://github.com/aio-libs/aiohttp |
Summary | Async http client/server framework (asyncio) |
upload_time | 2022-09-21 14:42:37 |
maintainer | aiohttp team <team@aiohttp.org> |
docs_url | None |
author | |
requires_python | >=3.6 |
license | Apache 2 |
keywords |
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
|
==================================
Async http client/server framework
==================================
.. image:: https://raw.githubusercontent.com/aio-libs/aiohttp/master/docs/aiohttp-plain.svg
:height: 64px
:width: 64px
:alt: aiohttp logo
|
.. image:: https://github.com/aio-libs/aiohttp/workflows/CI/badge.svg
:target: https://github.com/aio-libs/aiohttp/actions?query=workflow%3ACI
:alt: GitHub Actions status for master branch
.. image:: https://codecov.io/gh/aio-libs/aiohttp/branch/master/graph/badge.svg
:target: https://codecov.io/gh/aio-libs/aiohttp
:alt: codecov.io status for master branch
.. image:: https://badge.fury.io/py/aiohttp.svg
:target: https://pypi.org/project/aiohttp
:alt: Latest PyPI package version
.. image:: https://readthedocs.org/projects/aiohttp/badge/?version=latest
:target: https://docs.aiohttp.org/
:alt: Latest Read The Docs
.. image:: https://img.shields.io/discourse/status?server=https%3A%2F%2Faio-libs.discourse.group
:target: https://aio-libs.discourse.group
:alt: Discourse status
.. image:: https://badges.gitter.im/Join%20Chat.svg
:target: https://gitter.im/aio-libs/Lobby
:alt: Chat on Gitter
Key Features
============
- Supports both client and server side of HTTP protocol.
- Supports both client and server Web-Sockets out-of-the-box and avoids
Callback Hell.
- Provides Web-server with middlewares and plugable routing.
Getting started
===============
Client
------
To get something from the web:
.. code-block:: python
import aiohttp
import asyncio
async def main():
async with aiohttp.ClientSession() as session:
async with session.get('http://python.org') as response:
print("Status:", response.status)
print("Content-type:", response.headers['content-type'])
html = await response.text()
print("Body:", html[:15], "...")
asyncio.run(main())
This prints:
.. code-block::
Status: 200
Content-type: text/html; charset=utf-8
Body: <!doctype html> ...
Coming from `requests <https://requests.readthedocs.io/>`_ ? Read `why we need so many lines <https://aiohttp.readthedocs.io/en/latest/http_request_lifecycle.html>`_.
Server
------
An example using a simple server:
.. code-block:: python
# examples/server_simple.py
from aiohttp import web
async def handle(request):
name = request.match_info.get('name', "Anonymous")
text = "Hello, " + name
return web.Response(text=text)
async def wshandle(request):
ws = web.WebSocketResponse()
await ws.prepare(request)
async for msg in ws:
if msg.type == web.WSMsgType.text:
await ws.send_str("Hello, {}".format(msg.data))
elif msg.type == web.WSMsgType.binary:
await ws.send_bytes(msg.data)
elif msg.type == web.WSMsgType.close:
break
return ws
app = web.Application()
app.add_routes([web.get('/', handle),
web.get('/echo', wshandle),
web.get('/{name}', handle)])
if __name__ == '__main__':
web.run_app(app)
Documentation
=============
https://aiohttp.readthedocs.io/
Demos
=====
https://github.com/aio-libs/aiohttp-demos
External links
==============
* `Third party libraries
<http://aiohttp.readthedocs.io/en/latest/third_party.html>`_
* `Built with aiohttp
<http://aiohttp.readthedocs.io/en/latest/built_with.html>`_
* `Powered by aiohttp
<http://aiohttp.readthedocs.io/en/latest/powered_by.html>`_
Feel free to make a Pull Request for adding your link to these pages!
Communication channels
======================
*aio-libs discourse group*: https://aio-libs.discourse.group
*gitter chat* https://gitter.im/aio-libs/Lobby
We support `Stack Overflow
<https://stackoverflow.com/questions/tagged/aiohttp>`_.
Please add *aiohttp* tag to your question there.
Requirements
============
- Python >= 3.6
- async-timeout_
- attrs_
- charset-normalizer_
- multidict_
- yarl_
- frozenlist_
Optionally you may install the cChardet_ and aiodns_ libraries (highly
recommended for sake of speed).
.. _charset-normalizer: https://pypi.org/project/charset-normalizer
.. _aiodns: https://pypi.python.org/pypi/aiodns
.. _attrs: https://github.com/python-attrs/attrs
.. _multidict: https://pypi.python.org/pypi/multidict
.. _frozenlist: https://pypi.org/project/frozenlist/
.. _yarl: https://pypi.python.org/pypi/yarl
.. _async-timeout: https://pypi.python.org/pypi/async_timeout
.. _cChardet: https://pypi.python.org/pypi/cchardet
License
=======
``aiohttp`` is offered under the Apache 2 license.
Keepsafe
========
The aiohttp community would like to thank Keepsafe
(https://www.getkeepsafe.com) for its support in the early days of
the project.
Source code
===========
The latest developer version is available in a GitHub repository:
https://github.com/aio-libs/aiohttp
Benchmarks
==========
If you are interested in efficiency, the AsyncIO community maintains a
list of benchmarks on the official wiki:
https://github.com/python/asyncio/wiki/Benchmarks
Raw data
{
"_id": null,
"home_page": "https://github.com/aio-libs/aiohttp",
"name": "aiohttp",
"maintainer": "aiohttp team <team@aiohttp.org>",
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": "team@aiohttp.org",
"keywords": "",
"author": "",
"author_email": "",
"download_url": "https://files.pythonhosted.org/packages/ff/4f/62d9859b7d4e6dc32feda67815c5f5ab4421e6909e48cbc970b6a40d60b7/aiohttp-3.8.3.tar.gz",
"platform": null,
"description": "==================================\nAsync http client/server framework\n==================================\n\n.. image:: https://raw.githubusercontent.com/aio-libs/aiohttp/master/docs/aiohttp-plain.svg\n :height: 64px\n :width: 64px\n :alt: aiohttp logo\n\n|\n\n.. image:: https://github.com/aio-libs/aiohttp/workflows/CI/badge.svg\n :target: https://github.com/aio-libs/aiohttp/actions?query=workflow%3ACI\n :alt: GitHub Actions status for master branch\n\n.. image:: https://codecov.io/gh/aio-libs/aiohttp/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/aio-libs/aiohttp\n :alt: codecov.io status for master branch\n\n.. image:: https://badge.fury.io/py/aiohttp.svg\n :target: https://pypi.org/project/aiohttp\n :alt: Latest PyPI package version\n\n.. image:: https://readthedocs.org/projects/aiohttp/badge/?version=latest\n :target: https://docs.aiohttp.org/\n :alt: Latest Read The Docs\n\n.. image:: https://img.shields.io/discourse/status?server=https%3A%2F%2Faio-libs.discourse.group\n :target: https://aio-libs.discourse.group\n :alt: Discourse status\n\n.. image:: https://badges.gitter.im/Join%20Chat.svg\n :target: https://gitter.im/aio-libs/Lobby\n :alt: Chat on Gitter\n\n\nKey Features\n============\n\n- Supports both client and server side of HTTP protocol.\n- Supports both client and server Web-Sockets out-of-the-box and avoids\n Callback Hell.\n- Provides Web-server with middlewares and plugable routing.\n\n\nGetting started\n===============\n\nClient\n------\n\nTo get something from the web:\n\n.. code-block:: python\n\n import aiohttp\n import asyncio\n\n async def main():\n\n async with aiohttp.ClientSession() as session:\n async with session.get('http://python.org') as response:\n\n print(\"Status:\", response.status)\n print(\"Content-type:\", response.headers['content-type'])\n\n html = await response.text()\n print(\"Body:\", html[:15], \"...\")\n\n asyncio.run(main())\n\nThis prints:\n\n.. code-block::\n\n Status: 200\n Content-type: text/html; charset=utf-8\n Body: <!doctype html> ...\n\nComing from `requests <https://requests.readthedocs.io/>`_ ? Read `why we need so many lines <https://aiohttp.readthedocs.io/en/latest/http_request_lifecycle.html>`_.\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 <http://aiohttp.readthedocs.io/en/latest/third_party.html>`_\n* `Built with aiohttp\n <http://aiohttp.readthedocs.io/en/latest/built_with.html>`_\n* `Powered by aiohttp\n <http://aiohttp.readthedocs.io/en/latest/powered_by.html>`_\n\nFeel free to make a Pull Request for adding your link to these pages!\n\n\nCommunication channels\n======================\n\n*aio-libs discourse group*: https://aio-libs.discourse.group\n\n*gitter chat* https://gitter.im/aio-libs/Lobby\n\nWe support `Stack Overflow\n<https://stackoverflow.com/questions/tagged/aiohttp>`_.\nPlease add *aiohttp* tag to your question there.\n\nRequirements\n============\n\n- Python >= 3.6\n- async-timeout_\n- attrs_\n- charset-normalizer_\n- multidict_\n- yarl_\n- frozenlist_\n\nOptionally you may install the cChardet_ and aiodns_ libraries (highly\nrecommended for sake of speed).\n\n.. _charset-normalizer: https://pypi.org/project/charset-normalizer\n.. _aiodns: https://pypi.python.org/pypi/aiodns\n.. _attrs: https://github.com/python-attrs/attrs\n.. _multidict: https://pypi.python.org/pypi/multidict\n.. _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.. _cChardet: https://pypi.python.org/pypi/cchardet\n\nLicense\n=======\n\n``aiohttp`` is offered under the Apache 2 license.\n\n\nKeepsafe\n========\n\nThe aiohttp community would like to thank Keepsafe\n(https://www.getkeepsafe.com) for its support in the early days of\nthe project.\n\n\nSource code\n===========\n\nThe latest developer version is available in a GitHub repository:\nhttps://github.com/aio-libs/aiohttp\n\nBenchmarks\n==========\n\nIf you are interested in efficiency, the AsyncIO community maintains a\nlist of benchmarks on the official wiki:\nhttps://github.com/python/asyncio/wiki/Benchmarks\n",
"bugtrack_url": null,
"license": "Apache 2",
"summary": "Async http client/server framework (asyncio)",
"version": "3.8.3",
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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": {
"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
}
],
"upload_time": "2022-09-21 14:42:37",
"github": true,
"gitlab": false,
"bitbucket": false,
"github_user": "aio-libs",
"github_project": "aiohttp",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"lcname": "aiohttp"
}