aiohttp


Nameaiohttp JSON
Version 3.9.5 PyPI version JSON
download
home_pagehttps://github.com/aio-libs/aiohttp
SummaryAsync http client/server framework (asyncio)
upload_time2024-04-16 17:49:10
maintaineraiohttp team <team@aiohttp.org>
docs_urlNone
authorNone
requires_python>=3.8
licenseApache 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/matrix/aio-libs:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat
   :target: https://matrix.to/#/%23aio-libs:matrix.org
   :alt: Matrix Room — #aio-libs:matrix.org

.. 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
   :target: https://matrix.to/#/%23aio-libs-space:matrix.org
   :alt: Matrix Space — #aio-libs-space:matrix.org


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 middleware and pluggable 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 Discussions*: https://github.com/aio-libs/aiohttp/discussions

*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
============

- async-timeout_
- attrs_
- multidict_
- yarl_
- frozenlist_

Optionally you may install the aiodns_ library (highly recommended for sake of speed).

.. _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

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.8",
    "maintainer_email": "team@aiohttp.org",
    "keywords": null,
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/04/a4/e3679773ea7eb5b37a2c998e25b017cc5349edf6ba2739d1f32855cfb11b/aiohttp-3.9.5.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/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: <!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 Discussions*: https://github.com/aio-libs/aiohttp/discussions\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- 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",
    "bugtrack_url": null,
    "license": "Apache 2",
    "summary": "Async http client/server framework (asyncio)",
    "version": "3.9.5",
    "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"
    },
    "split_keywords": [],
    "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
        }
    ],
    "upload_time": "2024-04-16 17:49:10",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "aio-libs",
    "github_project": "aiohttp",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "aiohttp"
}
        
Elapsed time: 0.28583s