==================================
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://img.shields.io/endpoint?url=https://codspeed.io/badge.json
:target: https://codspeed.io/aio-libs/aiohttp
:alt: Codspeed.io status for aiohttp
.. 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
*Matrix*: `#aio-libs:matrix.org <https://matrix.to/#/#aio-libs:matrix.org>`_
We support `Stack Overflow
<https://stackoverflow.com/questions/tagged/aiohttp>`_.
Please add *aiohttp* tag to your question there.
Requirements
============
- 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.9",
"maintainer_email": "team@aiohttp.org",
"keywords": null,
"author": null,
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/94/c4/3b5a937b16f6c2a0ada842a9066aad0b7a5708427d4a202a07bf09c67cbb/aiohttp-3.11.10.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://img.shields.io/endpoint?url=https://codspeed.io/badge.json\n :target: https://codspeed.io/aio-libs/aiohttp\n :alt: Codspeed.io status for aiohttp\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*Matrix*: `#aio-libs:matrix.org <https://matrix.to/#/#aio-libs:matrix.org>`_\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- 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.0",
"summary": "Async http client/server framework (asyncio)",
"version": "3.11.10",
"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": "47f2ba44492f257a296c4bb910bf47acf41672421fd455540911b3f13d10d6cd",
"md5": "be7f81c26dc592c2b2ea2f14ffe63e8e",
"sha256": "cbad88a61fa743c5d283ad501b01c153820734118b65aee2bd7dbb735475ce0d"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "be7f81c26dc592c2b2ea2f14ffe63e8e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 708322,
"upload_time": "2024-12-05T23:51:02",
"upload_time_iso_8601": "2024-12-05T23:51:02.269174Z",
"url": "https://files.pythonhosted.org/packages/47/f2/ba44492f257a296c4bb910bf47acf41672421fd455540911b3f13d10d6cd/aiohttp-3.11.10-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2bc722b0ed548c8660e978e736671f166907fb272d0a4281b2b6833310bce529",
"md5": "0068acb2e0a43ea9e12b252a33d1ee18",
"sha256": "80886dac673ceaef499de2f393fc80bb4481a129e6cb29e624a12e3296cc088f"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "0068acb2e0a43ea9e12b252a33d1ee18",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 468211,
"upload_time": "2024-12-05T23:51:04",
"upload_time_iso_8601": "2024-12-05T23:51:04.304514Z",
"url": "https://files.pythonhosted.org/packages/2b/c7/22b0ed548c8660e978e736671f166907fb272d0a4281b2b6833310bce529/aiohttp-3.11.10-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c90bd326251888bb86ff7cb00b171e1cf3b0f0ed695622857f84a98bbc5f254b",
"md5": "ff270847f2b699fe4d7b2e8db21f138e",
"sha256": "61b9bae80ed1f338c42f57c16918853dc51775fb5cb61da70d590de14d8b5fb4"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ff270847f2b699fe4d7b2e8db21f138e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 455370,
"upload_time": "2024-12-05T23:51:06",
"upload_time_iso_8601": "2024-12-05T23:51:06.514687Z",
"url": "https://files.pythonhosted.org/packages/c9/0b/d326251888bb86ff7cb00b171e1cf3b0f0ed695622857f84a98bbc5f254b/aiohttp-3.11.10-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e8328feef5a0bda728adf76e0d076566c26c6da3d29f0ccd998d07c260cae9d",
"md5": "3c31f79851a77256b6f98cac691df0fd",
"sha256": "9e2e576caec5c6a6b93f41626c9c02fc87cd91538b81a3670b2e04452a63def6"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3c31f79851a77256b6f98cac691df0fd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1584399,
"upload_time": "2024-12-05T23:51:08",
"upload_time_iso_8601": "2024-12-05T23:51:08.171632Z",
"url": "https://files.pythonhosted.org/packages/4e/83/28feef5a0bda728adf76e0d076566c26c6da3d29f0ccd998d07c260cae9d/aiohttp-3.11.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dc976bdd39c4134ef243ffa9fd19a072ac9a0758d64b6d51eaaaaa34e67b8bcb",
"md5": "58628c338581a70e4ae379b738af88ec",
"sha256": "02c13415b5732fb6ee7ff64583a5e6ed1c57aa68f17d2bda79c04888dfdc2769"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "58628c338581a70e4ae379b738af88ec",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1632131,
"upload_time": "2024-12-05T23:51:10",
"upload_time_iso_8601": "2024-12-05T23:51:10.756583Z",
"url": "https://files.pythonhosted.org/packages/dc/97/6bdd39c4134ef243ffa9fd19a072ac9a0758d64b6d51eaaaaa34e67b8bcb/aiohttp-3.11.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1bf18c3a1623b9d526986f03d8158c9c856e00531217998275cc6b4a14b2fb85",
"md5": "e0dde9cb5f4ea83498ee54c5d76a5661",
"sha256": "4cfce37f31f20800a6a6620ce2cdd6737b82e42e06e6e9bd1b36f546feb3c44f"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e0dde9cb5f4ea83498ee54c5d76a5661",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1668081,
"upload_time": "2024-12-05T23:51:13",
"upload_time_iso_8601": "2024-12-05T23:51:13.508552Z",
"url": "https://files.pythonhosted.org/packages/1b/f1/8c3a1623b9d526986f03d8158c9c856e00531217998275cc6b4a14b2fb85/aiohttp-3.11.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9c3ea2f4cee0dca934b1d2c4b6a7821040ce4452b9b2e4347c9be6cb10eaa835",
"md5": "f9995d24e2d6015895c2adfe5e4c9852",
"sha256": "3bbbfff4c679c64e6e23cb213f57cc2c9165c9a65d63717108a644eb5a7398df"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f9995d24e2d6015895c2adfe5e4c9852",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1589313,
"upload_time": "2024-12-05T23:51:17",
"upload_time_iso_8601": "2024-12-05T23:51:17.534577Z",
"url": "https://files.pythonhosted.org/packages/9c/3e/a2f4cee0dca934b1d2c4b6a7821040ce4452b9b2e4347c9be6cb10eaa835/aiohttp-3.11.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fd9c93e9a8f39c78f0c6d938721101e28c57597046f78057ffced8a3fd571839",
"md5": "8b5d2423a7debaa381101a99db796004",
"sha256": "49c7dbbc1a559ae14fc48387a115b7d4bbc84b4a2c3b9299c31696953c2a5219"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8b5d2423a7debaa381101a99db796004",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1544349,
"upload_time": "2024-12-05T23:51:19",
"upload_time_iso_8601": "2024-12-05T23:51:19.252714Z",
"url": "https://files.pythonhosted.org/packages/fd/9c/93e9a8f39c78f0c6d938721101e28c57597046f78057ffced8a3fd571839/aiohttp-3.11.10-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": "68d22054efe02be87a1af92cfcaf6875d7b2c34906c3ee2b90ce82afbc8927a5",
"md5": "defc286613dcd54872ea53e62abf36e4",
"sha256": "68386d78743e6570f054fe7949d6cb37ef2b672b4d3405ce91fafa996f7d9b4d"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "defc286613dcd54872ea53e62abf36e4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1529018,
"upload_time": "2024-12-05T23:51:22",
"upload_time_iso_8601": "2024-12-05T23:51:22.426947Z",
"url": "https://files.pythonhosted.org/packages/68/d2/2054efe02be87a1af92cfcaf6875d7b2c34906c3ee2b90ce82afbc8927a5/aiohttp-3.11.10-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "10b0a258bfd5ddd3d9c871a8d24e96531cb6e6f0cd98dc3028f0b98302454b23",
"md5": "a9035882e42bf58d68eab1b3a4d3565c",
"sha256": "9ef405356ba989fb57f84cac66f7b0260772836191ccefbb987f414bcd2979d9"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "a9035882e42bf58d68eab1b3a4d3565c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1536357,
"upload_time": "2024-12-05T23:51:24",
"upload_time_iso_8601": "2024-12-05T23:51:24.116594Z",
"url": "https://files.pythonhosted.org/packages/10/b0/a258bfd5ddd3d9c871a8d24e96531cb6e6f0cd98dc3028f0b98302454b23/aiohttp-3.11.10-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "767f8b60b93e7dc58d371813a9b8d451b7c9c9c4350f9c505edf6fae80e0812b",
"md5": "efaf081b7a531991aeecdf3702ace0a4",
"sha256": "5d6958671b296febe7f5f859bea581a21c1d05430d1bbdcf2b393599b1cdce77"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "efaf081b7a531991aeecdf3702ace0a4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1607214,
"upload_time": "2024-12-05T23:51:26",
"upload_time_iso_8601": "2024-12-05T23:51:26.488242Z",
"url": "https://files.pythonhosted.org/packages/76/7f/8b60b93e7dc58d371813a9b8d451b7c9c9c4350f9c505edf6fae80e0812b/aiohttp-3.11.10-cp310-cp310-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2a1097a11dba0f6d16878164b92ce75e2e0196a2fd25560cae8283388a24289b",
"md5": "31ad568f297c12150c999a953bd20999",
"sha256": "99b7920e7165be5a9e9a3a7f1b680f06f68ff0d0328ff4079e5163990d046767"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "31ad568f297c12150c999a953bd20999",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1628573,
"upload_time": "2024-12-05T23:51:29",
"upload_time_iso_8601": "2024-12-05T23:51:29.219098Z",
"url": "https://files.pythonhosted.org/packages/2a/10/97a11dba0f6d16878164b92ce75e2e0196a2fd25560cae8283388a24289b/aiohttp-3.11.10-cp310-cp310-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "456670419d6cb9495ddcebfa54d3db07e6a9716049ef341ded1edd8982f9b7f9",
"md5": "10dc0cb34d050ed0af91f540d0eb65e3",
"sha256": "0dc49f42422163efb7e6f1df2636fe3db72713f6cd94688e339dbe33fe06d61d"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "10dc0cb34d050ed0af91f540d0eb65e3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1564058,
"upload_time": "2024-12-05T23:51:30",
"upload_time_iso_8601": "2024-12-05T23:51:30.943498Z",
"url": "https://files.pythonhosted.org/packages/45/66/70419d6cb9495ddcebfa54d3db07e6a9716049ef341ded1edd8982f9b7f9/aiohttp-3.11.10-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2dd6d94506afaea3aca15ab3f4732d666ad80acd5a035a7478aa6377c9816cf3",
"md5": "d7971f363ed7c30c4bc2457f3da32f0d",
"sha256": "40d1c7a7f750b5648642586ba7206999650208dbe5afbcc5284bcec6579c9b91"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "d7971f363ed7c30c4bc2457f3da32f0d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 416360,
"upload_time": "2024-12-05T23:51:32",
"upload_time_iso_8601": "2024-12-05T23:51:32.633759Z",
"url": "https://files.pythonhosted.org/packages/2d/d6/d94506afaea3aca15ab3f4732d666ad80acd5a035a7478aa6377c9816cf3/aiohttp-3.11.10-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5503731d1116d09ea7a3c6be731ab0eb1faa37b844d3e54fed28e3a6785ba5ab",
"md5": "fc4973f2b575e40a8595387d203dbb2a",
"sha256": "68ff6f48b51bd78ea92b31079817aff539f6c8fc80b6b8d6ca347d7c02384e33"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "fc4973f2b575e40a8595387d203dbb2a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 441763,
"upload_time": "2024-12-05T23:51:34",
"upload_time_iso_8601": "2024-12-05T23:51:34.248563Z",
"url": "https://files.pythonhosted.org/packages/55/03/731d1116d09ea7a3c6be731ab0eb1faa37b844d3e54fed28e3a6785ba5ab/aiohttp-3.11.10-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "db7c584d5ca19343c9462d054337828f72628e6dc204424f525df59ebfe75d1e",
"md5": "ff79af5dd673408b703ab6b6b8e54d14",
"sha256": "77c4aa15a89847b9891abf97f3d4048f3c2d667e00f8a623c89ad2dccee6771b"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "ff79af5dd673408b703ab6b6b8e54d14",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 708395,
"upload_time": "2024-12-05T23:51:35",
"upload_time_iso_8601": "2024-12-05T23:51:35.952112Z",
"url": "https://files.pythonhosted.org/packages/db/7c/584d5ca19343c9462d054337828f72628e6dc204424f525df59ebfe75d1e/aiohttp-3.11.10-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cd2d61c33e01baeb23aebd07620ee4d780ff40f4c17c42289bf02a405f2ac312",
"md5": "31f6ea68feca24a6b77e58591b8fe18e",
"sha256": "909af95a72cedbefe5596f0bdf3055740f96c1a4baa0dd11fd74ca4de0b4e3f1"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "31f6ea68feca24a6b77e58591b8fe18e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 468281,
"upload_time": "2024-12-05T23:51:37",
"upload_time_iso_8601": "2024-12-05T23:51:37.809674Z",
"url": "https://files.pythonhosted.org/packages/cd/2d/61c33e01baeb23aebd07620ee4d780ff40f4c17c42289bf02a405f2ac312/aiohttp-3.11.10-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ab700ddb3a61b835068eb0badbe8016b4b65b966bad5f8af0f2d63998ff4cfa4",
"md5": "727d1d04e9596bafb58377ff8378167f",
"sha256": "386fbe79863eb564e9f3615b959e28b222259da0c48fd1be5929ac838bc65683"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "727d1d04e9596bafb58377ff8378167f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 455345,
"upload_time": "2024-12-05T23:51:39",
"upload_time_iso_8601": "2024-12-05T23:51:39.373136Z",
"url": "https://files.pythonhosted.org/packages/ab/70/0ddb3a61b835068eb0badbe8016b4b65b966bad5f8af0f2d63998ff4cfa4/aiohttp-3.11.10-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "448c4e14e9c1767d9a6ab1af1fbad9df9c77e050b39b6afe9e8343ec1ba96508",
"md5": "6df8e7e581253ae1d386ca64fcacdc52",
"sha256": "3de34936eb1a647aa919655ff8d38b618e9f6b7f250cc19a57a4bf7fd2062b6d"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6df8e7e581253ae1d386ca64fcacdc52",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1685464,
"upload_time": "2024-12-05T23:51:41",
"upload_time_iso_8601": "2024-12-05T23:51:41.137379Z",
"url": "https://files.pythonhosted.org/packages/44/8c/4e14e9c1767d9a6ab1af1fbad9df9c77e050b39b6afe9e8343ec1ba96508/aiohttp-3.11.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ef6e1bab78ebb4f5a1c54f0fc10f8d52abc06816a9cb1db52b9c908e3d69f9a8",
"md5": "3c59770755cd7114eae120207734992a",
"sha256": "0c9527819b29cd2b9f52033e7fb9ff08073df49b4799c89cb5754624ecd98299"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "3c59770755cd7114eae120207734992a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1743427,
"upload_time": "2024-12-05T23:51:42",
"upload_time_iso_8601": "2024-12-05T23:51:42.845540Z",
"url": "https://files.pythonhosted.org/packages/ef/6e/1bab78ebb4f5a1c54f0fc10f8d52abc06816a9cb1db52b9c908e3d69f9a8/aiohttp-3.11.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5d5ec1b03bef621a8cc51ff551ef223c6ac606fabe0e35c950f56d01423ec2aa",
"md5": "670f7aaf6d05883bbfe7ee767e4eff69",
"sha256": "65a96e3e03300b41f261bbfd40dfdbf1c301e87eab7cd61c054b1f2e7c89b9e8"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "670f7aaf6d05883bbfe7ee767e4eff69",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1785188,
"upload_time": "2024-12-05T23:51:44",
"upload_time_iso_8601": "2024-12-05T23:51:44.678893Z",
"url": "https://files.pythonhosted.org/packages/5d/5e/c1b03bef621a8cc51ff551ef223c6ac606fabe0e35c950f56d01423ec2aa/aiohttp-3.11.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7cb8df6d76a149cbd969a58da478baec0be617287c496c842ddf21fe6bce07b3",
"md5": "0317a98c54554a32735dda3d72afae5d",
"sha256": "98f5635f7b74bcd4f6f72fcd85bea2154b323a9f05226a80bc7398d0c90763b0"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0317a98c54554a32735dda3d72afae5d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1674911,
"upload_time": "2024-12-05T23:51:46",
"upload_time_iso_8601": "2024-12-05T23:51:46.662659Z",
"url": "https://files.pythonhosted.org/packages/7c/b8/df6d76a149cbd969a58da478baec0be617287c496c842ddf21fe6bce07b3/aiohttp-3.11.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ee8ee460e7bb820a08cec399971fc3176afc8090dc32fb941f386e0c68bc4ecc",
"md5": "cd29cd2aee001ce96302b0693c8f8455",
"sha256": "03b6002e20938fc6ee0918c81d9e776bebccc84690e2b03ed132331cca065ee5"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "cd29cd2aee001ce96302b0693c8f8455",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1619570,
"upload_time": "2024-12-05T23:51:49",
"upload_time_iso_8601": "2024-12-05T23:51:49.189721Z",
"url": "https://files.pythonhosted.org/packages/ee/8e/e460e7bb820a08cec399971fc3176afc8090dc32fb941f386e0c68bc4ecc/aiohttp-3.11.10-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": "c2ae3b597e09eae4e75b77ee6c65443593d245bfa067ae6a5d895abaf27cce6c",
"md5": "bd3617d0d286e00e24c2e16ee26a2c97",
"sha256": "6362cc6c23c08d18ddbf0e8c4d5159b5df74fea1a5278ff4f2c79aed3f4e9f46"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "bd3617d0d286e00e24c2e16ee26a2c97",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1653772,
"upload_time": "2024-12-05T23:51:50",
"upload_time_iso_8601": "2024-12-05T23:51:50.960796Z",
"url": "https://files.pythonhosted.org/packages/c2/ae/3b597e09eae4e75b77ee6c65443593d245bfa067ae6a5d895abaf27cce6c/aiohttp-3.11.10-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b8d199852f2925992c4d7004e590344e5398eb163750de2a7c1fbe07f182d3c8",
"md5": "20ac34a6ea41fd7c4052f3158cf7f7be",
"sha256": "3691ed7726fef54e928fe26344d930c0c8575bc968c3e239c2e1a04bd8cf7838"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "20ac34a6ea41fd7c4052f3158cf7f7be",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1649787,
"upload_time": "2024-12-05T23:51:52",
"upload_time_iso_8601": "2024-12-05T23:51:52.786599Z",
"url": "https://files.pythonhosted.org/packages/b8/d1/99852f2925992c4d7004e590344e5398eb163750de2a7c1fbe07f182d3c8/aiohttp-3.11.10-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "39c0ea24627e08d722d5a6a00b3f6c9763fe3ad4650b8485f7a7a56ff932e3af",
"md5": "67891c578ab756df14a2162514926ecd",
"sha256": "31d5093d3acd02b31c649d3a69bb072d539d4c7659b87caa4f6d2bcf57c2fa2b"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "67891c578ab756df14a2162514926ecd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1732666,
"upload_time": "2024-12-05T23:51:54",
"upload_time_iso_8601": "2024-12-05T23:51:54.604034Z",
"url": "https://files.pythonhosted.org/packages/39/c0/ea24627e08d722d5a6a00b3f6c9763fe3ad4650b8485f7a7a56ff932e3af/aiohttp-3.11.10-cp311-cp311-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f127ab52dee4443ef8bdb26473b53c841caafd2bb637a8d85751694e089913bb",
"md5": "027ec829192f9e3d2901ac85a0c8c06e",
"sha256": "8b3cf2dc0f0690a33f2d2b2cb15db87a65f1c609f53c37e226f84edb08d10f52"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "027ec829192f9e3d2901ac85a0c8c06e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1754910,
"upload_time": "2024-12-05T23:51:57",
"upload_time_iso_8601": "2024-12-05T23:51:57.050406Z",
"url": "https://files.pythonhosted.org/packages/f1/27/ab52dee4443ef8bdb26473b53c841caafd2bb637a8d85751694e089913bb/aiohttp-3.11.10-cp311-cp311-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cd0857c919d6b1f3b70bc14433c080a6152bf99454b636eb8a88552de8baaca9",
"md5": "254767ae9a298528f738dc0ff9f97789",
"sha256": "fbbaea811a2bba171197b08eea288b9402faa2bab2ba0858eecdd0a4105753a3"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "254767ae9a298528f738dc0ff9f97789",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1692502,
"upload_time": "2024-12-05T23:51:59",
"upload_time_iso_8601": "2024-12-05T23:51:59.511389Z",
"url": "https://files.pythonhosted.org/packages/cd/08/57c919d6b1f3b70bc14433c080a6152bf99454b636eb8a88552de8baaca9/aiohttp-3.11.10-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ae37015006f669275735049e0549c37cb79c7a4a9350cbee070bbccb5a5b4b8a",
"md5": "09e28721539311639e5b0b9ebbc012f3",
"sha256": "4b2c7ac59c5698a7a8207ba72d9e9c15b0fc484a560be0788b31312c2c5504e4"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "09e28721539311639e5b0b9ebbc012f3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 416178,
"upload_time": "2024-12-05T23:52:01",
"upload_time_iso_8601": "2024-12-05T23:52:01.571201Z",
"url": "https://files.pythonhosted.org/packages/ae/37/015006f669275735049e0549c37cb79c7a4a9350cbee070bbccb5a5b4b8a/aiohttp-3.11.10-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cf8d7bb48ae503989b15114baf9f9b19398c86ae93d30959065bc061b31331ee",
"md5": "5298f9c86c2f638c0f0fdd0513c0dbbf",
"sha256": "974d3a2cce5fcfa32f06b13ccc8f20c6ad9c51802bb7f829eae8a1845c4019ec"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "5298f9c86c2f638c0f0fdd0513c0dbbf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 442269,
"upload_time": "2024-12-05T23:52:03",
"upload_time_iso_8601": "2024-12-05T23:52:03.900808Z",
"url": "https://files.pythonhosted.org/packages/cf/8d/7bb48ae503989b15114baf9f9b19398c86ae93d30959065bc061b31331ee/aiohttp-3.11.10-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "25171dbe2f619f77795409c1a13ab395b98ed1b215d3e938cacde9b8ffdac53d",
"md5": "94f2441be3a7f579a66771949b5e14d8",
"sha256": "b78f053a7ecfc35f0451d961dacdc671f4bcbc2f58241a7c820e9d82559844cf"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp312-cp312-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "94f2441be3a7f579a66771949b5e14d8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 704448,
"upload_time": "2024-12-05T23:52:06",
"upload_time_iso_8601": "2024-12-05T23:52:06.606199Z",
"url": "https://files.pythonhosted.org/packages/25/17/1dbe2f619f77795409c1a13ab395b98ed1b215d3e938cacde9b8ffdac53d/aiohttp-3.11.10-cp312-cp312-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e39b112247ad47e9d7f6640889c6e42cc0ded8c8345dd0033c66bcede799b051",
"md5": "f87a45889323d67643351be7607d4d3d",
"sha256": "ab7485222db0959a87fbe8125e233b5a6f01f4400785b36e8a7878170d8c3138"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "f87a45889323d67643351be7607d4d3d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 463829,
"upload_time": "2024-12-05T23:52:08",
"upload_time_iso_8601": "2024-12-05T23:52:08.754910Z",
"url": "https://files.pythonhosted.org/packages/e3/9b/112247ad47e9d7f6640889c6e42cc0ded8c8345dd0033c66bcede799b051/aiohttp-3.11.10-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8a36a64b583771fc673062a7a1374728a6241d49e2eda5a9041fbf248e18c804",
"md5": "b5add3714e459a29c192a73e6bd5213f",
"sha256": "cf14627232dfa8730453752e9cdc210966490992234d77ff90bc8dc0dce361d5"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b5add3714e459a29c192a73e6bd5213f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 455774,
"upload_time": "2024-12-05T23:52:11",
"upload_time_iso_8601": "2024-12-05T23:52:11.288806Z",
"url": "https://files.pythonhosted.org/packages/8a/36/a64b583771fc673062a7a1374728a6241d49e2eda5a9041fbf248e18c804/aiohttp-3.11.10-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e575ee1b8f510978b3de5f185c62535b135e4fc3f5a247ca0c2245137a02d800",
"md5": "761eb8dbfd7eaab668406952d7438a65",
"sha256": "076bc454a7e6fd646bc82ea7f98296be0b1219b5e3ef8a488afbdd8e81fbac50"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "761eb8dbfd7eaab668406952d7438a65",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1682134,
"upload_time": "2024-12-05T23:52:13",
"upload_time_iso_8601": "2024-12-05T23:52:13.314559Z",
"url": "https://files.pythonhosted.org/packages/e5/75/ee1b8f510978b3de5f185c62535b135e4fc3f5a247ca0c2245137a02d800/aiohttp-3.11.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "874665e8259432d5f73ca9ebf5edb645ef90e5303724e4e52477516cb4042240",
"md5": "2f7a3b8cdb4a417427cba223252a57ad",
"sha256": "482cafb7dc886bebeb6c9ba7925e03591a62ab34298ee70d3dd47ba966370d2c"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "2f7a3b8cdb4a417427cba223252a57ad",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1736757,
"upload_time": "2024-12-05T23:52:15",
"upload_time_iso_8601": "2024-12-05T23:52:15.831102Z",
"url": "https://files.pythonhosted.org/packages/87/46/65e8259432d5f73ca9ebf5edb645ef90e5303724e4e52477516cb4042240/aiohttp-3.11.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "03f6a6d1e791b7153fb2d101278f7146c0771b0e1569c547f8a8bc3035651984",
"md5": "bda027ae619a6ebc584fee4ece810fc8",
"sha256": "bf3d1a519a324af764a46da4115bdbd566b3c73fb793ffb97f9111dbc684fc4d"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "bda027ae619a6ebc584fee4ece810fc8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1793033,
"upload_time": "2024-12-05T23:52:18",
"upload_time_iso_8601": "2024-12-05T23:52:18.291088Z",
"url": "https://files.pythonhosted.org/packages/03/f6/a6d1e791b7153fb2d101278f7146c0771b0e1569c547f8a8bc3035651984/aiohttp-3.11.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a8e91ac90733e36e7848693aece522936a13bf17eeb617da662f94adfafc1c25",
"md5": "6a4e569fb599b78e8590e98217c27cd6",
"sha256": "24213ba85a419103e641e55c27dc7ff03536c4873470c2478cce3311ba1eee7b"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6a4e569fb599b78e8590e98217c27cd6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1691609,
"upload_time": "2024-12-05T23:52:20",
"upload_time_iso_8601": "2024-12-05T23:52:20.300611Z",
"url": "https://files.pythonhosted.org/packages/a8/e9/1ac90733e36e7848693aece522936a13bf17eeb617da662f94adfafc1c25/aiohttp-3.11.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6da677b33da5a0bc04566c7ddcca94500f2c2a2334eecab4885387fffd1fc600",
"md5": "8d8987b07f9c8b0c3e3d87d389ad17d8",
"sha256": "b99acd4730ad1b196bfb03ee0803e4adac371ae8efa7e1cbc820200fc5ded109"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8d8987b07f9c8b0c3e3d87d389ad17d8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1619082,
"upload_time": "2024-12-05T23:52:22",
"upload_time_iso_8601": "2024-12-05T23:52:22.896431Z",
"url": "https://files.pythonhosted.org/packages/6d/a6/77b33da5a0bc04566c7ddcca94500f2c2a2334eecab4885387fffd1fc600/aiohttp-3.11.10-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": "48945bf5f927d9a2fedd2c978adfb70a3680e16f46d178361685b56244eb52ed",
"md5": "5860b360b0e1130d14573f046e49ae01",
"sha256": "14cdb5a9570be5a04eec2ace174a48ae85833c2aadc86de68f55541f66ce42ab"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "5860b360b0e1130d14573f046e49ae01",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1641186,
"upload_time": "2024-12-05T23:52:25",
"upload_time_iso_8601": "2024-12-05T23:52:25.568642Z",
"url": "https://files.pythonhosted.org/packages/48/94/5bf5f927d9a2fedd2c978adfb70a3680e16f46d178361685b56244eb52ed/aiohttp-3.11.10-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "992de85103aa01d1064e51bc50cb51e7b40150a8ff5d34e5a3173a46b241860b",
"md5": "497847a79f314d9ec7a40f3cef696896",
"sha256": "7e97d622cb083e86f18317282084bc9fbf261801b0192c34fe4b1febd9f7ae69"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "497847a79f314d9ec7a40f3cef696896",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1646280,
"upload_time": "2024-12-05T23:52:27",
"upload_time_iso_8601": "2024-12-05T23:52:27.494310Z",
"url": "https://files.pythonhosted.org/packages/99/2d/e85103aa01d1064e51bc50cb51e7b40150a8ff5d34e5a3173a46b241860b/aiohttp-3.11.10-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7be044651fda8c1d865a51b3a81f1956ea55ce16fc568fe7a3e05db7fc22f139",
"md5": "5637e9af9230795dcc8753dec21e7f74",
"sha256": "012f176945af138abc10c4a48743327a92b4ca9adc7a0e078077cdb5dbab7be0"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "5637e9af9230795dcc8753dec21e7f74",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1701862,
"upload_time": "2024-12-05T23:52:29",
"upload_time_iso_8601": "2024-12-05T23:52:29.692880Z",
"url": "https://files.pythonhosted.org/packages/7b/e0/44651fda8c1d865a51b3a81f1956ea55ce16fc568fe7a3e05db7fc22f139/aiohttp-3.11.10-cp312-cp312-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e1e0804459ae325a5b95f6f349778fb465f29d2b863e522b6a349db0aaad54c",
"md5": "66261a7c9619e85773a6ce33d7651805",
"sha256": "44224d815853962f48fe124748227773acd9686eba6dc102578defd6fc99e8d9"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "66261a7c9619e85773a6ce33d7651805",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1734373,
"upload_time": "2024-12-05T23:52:32",
"upload_time_iso_8601": "2024-12-05T23:52:32.212322Z",
"url": "https://files.pythonhosted.org/packages/4e/1e/0804459ae325a5b95f6f349778fb465f29d2b863e522b6a349db0aaad54c/aiohttp-3.11.10-cp312-cp312-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0787b8f6721668cad74bcc9c7cfe6d0230b304d1250196b221e54294a0d78dbe",
"md5": "cd52cd4f9eac3b121d97c4ac934cd3d6",
"sha256": "c87bf31b7fdab94ae3adbe4a48e711bfc5f89d21cf4c197e75561def39e223bc"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "cd52cd4f9eac3b121d97c4ac934cd3d6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1694343,
"upload_time": "2024-12-05T23:52:34",
"upload_time_iso_8601": "2024-12-05T23:52:34.088721Z",
"url": "https://files.pythonhosted.org/packages/07/87/b8f6721668cad74bcc9c7cfe6d0230b304d1250196b221e54294a0d78dbe/aiohttp-3.11.10-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4b2042813fc60d9178ba9b1b86c58a5441ddb6cf8ffdfe66387345bff173bcff",
"md5": "1d3e4d181395b11eb5c5ba4ce1221e0f",
"sha256": "06a8e2ee1cbac16fe61e51e0b0c269400e781b13bcfc33f5425912391a542985"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "1d3e4d181395b11eb5c5ba4ce1221e0f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 411118,
"upload_time": "2024-12-05T23:52:35",
"upload_time_iso_8601": "2024-12-05T23:52:35.949366Z",
"url": "https://files.pythonhosted.org/packages/4b/20/42813fc60d9178ba9b1b86c58a5441ddb6cf8ffdfe66387345bff173bcff/aiohttp-3.11.10-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3a51df9c263c861ce93998b5ad2ba3212caab2112d5b66dbe91ddbe90c41ded4",
"md5": "4b9aa89f17c67c97ddee54d95d700849",
"sha256": "be2b516f56ea883a3e14dda17059716593526e10fb6303189aaf5503937db408"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "4b9aa89f17c67c97ddee54d95d700849",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 437424,
"upload_time": "2024-12-05T23:52:38",
"upload_time_iso_8601": "2024-12-05T23:52:38.547489Z",
"url": "https://files.pythonhosted.org/packages/3a/51/df9c263c861ce93998b5ad2ba3212caab2112d5b66dbe91ddbe90c41ded4/aiohttp-3.11.10-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8c1d88bfdbe28a3d1ba5b94a235f188f27726caf8ade9a0e13574848f44fe0fe",
"md5": "c2be1b3d994af5bda7bb1bf6ffbc51e8",
"sha256": "8cc5203b817b748adccb07f36390feb730b1bc5f56683445bfe924fc270b8816"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp313-cp313-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "c2be1b3d994af5bda7bb1bf6ffbc51e8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 697755,
"upload_time": "2024-12-05T23:52:40",
"upload_time_iso_8601": "2024-12-05T23:52:40.343801Z",
"url": "https://files.pythonhosted.org/packages/8c/1d/88bfdbe28a3d1ba5b94a235f188f27726caf8ade9a0e13574848f44fe0fe/aiohttp-3.11.10-cp313-cp313-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "86004c4619d6fe5c5be32f74d1422fc719b3e6cd7097af0c9e03877ca9bd4ebc",
"md5": "a24217bf0eded967cc491439cec0e81c",
"sha256": "5ef359ebc6949e3a34c65ce20230fae70920714367c63afd80ea0c2702902ccf"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "a24217bf0eded967cc491439cec0e81c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 460440,
"upload_time": "2024-12-05T23:52:42",
"upload_time_iso_8601": "2024-12-05T23:52:42.143572Z",
"url": "https://files.pythonhosted.org/packages/86/00/4c4619d6fe5c5be32f74d1422fc719b3e6cd7097af0c9e03877ca9bd4ebc/aiohttp-3.11.10-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aa1c2f927408f50593a29465d198ec3c57c835c8602330233163e8d89c1093db",
"md5": "1e3e825fc826ded1dc1bd0b64a762c53",
"sha256": "9bca390cb247dbfaec3c664326e034ef23882c3f3bfa5fbf0b56cad0320aaca5"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1e3e825fc826ded1dc1bd0b64a762c53",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 452726,
"upload_time": "2024-12-05T23:52:44",
"upload_time_iso_8601": "2024-12-05T23:52:44.904632Z",
"url": "https://files.pythonhosted.org/packages/aa/1c/2f927408f50593a29465d198ec3c57c835c8602330233163e8d89c1093db/aiohttp-3.11.10-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "066aff00ed0a2ba45c34b3c366aa5b0004b1a4adcec5a9b5f67dd0648ee1c88a",
"md5": "9ea51b77b36e2eb87042dae52b1060f9",
"sha256": "811f23b3351ca532af598405db1093f018edf81368e689d1b508c57dcc6b6a32"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9ea51b77b36e2eb87042dae52b1060f9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1664944,
"upload_time": "2024-12-05T23:52:46",
"upload_time_iso_8601": "2024-12-05T23:52:46.685335Z",
"url": "https://files.pythonhosted.org/packages/06/6a/ff00ed0a2ba45c34b3c366aa5b0004b1a4adcec5a9b5f67dd0648ee1c88a/aiohttp-3.11.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "02c261923f2a7c2e14d7424b3a526e054f0358f57ccdf5573d4d3d033b01921a",
"md5": "eb6f2cc059fe663385658bda8a426ff1",
"sha256": "ddf5f7d877615f6a1e75971bfa5ac88609af3b74796ff3e06879e8422729fd01"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "eb6f2cc059fe663385658bda8a426ff1",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1717707,
"upload_time": "2024-12-05T23:52:48",
"upload_time_iso_8601": "2024-12-05T23:52:48.715188Z",
"url": "https://files.pythonhosted.org/packages/02/c2/61923f2a7c2e14d7424b3a526e054f0358f57ccdf5573d4d3d033b01921a/aiohttp-3.11.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8a080d3d074b24d377569ec89d476a95ca918443099c0401bb31b331104e35d1",
"md5": "aac81d3181615dd52c8ff0896f70f596",
"sha256": "6ab29b8a0beb6f8eaf1e5049252cfe74adbaafd39ba91e10f18caeb0e99ffb34"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "aac81d3181615dd52c8ff0896f70f596",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1774890,
"upload_time": "2024-12-05T23:52:50",
"upload_time_iso_8601": "2024-12-05T23:52:50.966405Z",
"url": "https://files.pythonhosted.org/packages/8a/08/0d3d074b24d377569ec89d476a95ca918443099c0401bb31b331104e35d1/aiohttp-3.11.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e849052ada2b6e90ed65f0e6a7e548614621b5f8dcd193cb9415d2e6bcecc94a",
"md5": "5db1efa07a5256c64ced26dbac978f09",
"sha256": "c49a76c1038c2dd116fa443eba26bbb8e6c37e924e2513574856de3b6516be99"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5db1efa07a5256c64ced26dbac978f09",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1676945,
"upload_time": "2024-12-05T23:52:53",
"upload_time_iso_8601": "2024-12-05T23:52:53.688195Z",
"url": "https://files.pythonhosted.org/packages/e8/49/052ada2b6e90ed65f0e6a7e548614621b5f8dcd193cb9415d2e6bcecc94a/aiohttp-3.11.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7c9e0c48e1a48e072a869b8b5e3920c9f6a8092861524a4a6f159cd7e6fda939",
"md5": "429027a58474ba201c5d954de0e33f3d",
"sha256": "7f3dc0e330575f5b134918976a645e79adf333c0a1439dcf6899a80776c9ab39"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "429027a58474ba201c5d954de0e33f3d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1602959,
"upload_time": "2024-12-05T23:52:55",
"upload_time_iso_8601": "2024-12-05T23:52:55.644256Z",
"url": "https://files.pythonhosted.org/packages/7c/9e/0c48e1a48e072a869b8b5e3920c9f6a8092861524a4a6f159cd7e6fda939/aiohttp-3.11.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ab98791f979093ff7f67f80344c182cb0ca4c2c60daed397ecaf454cc8d7a5cd",
"md5": "58e235f57201718af2164317665ee908",
"sha256": "efb15a17a12497685304b2d976cb4939e55137df7b09fa53f1b6a023f01fcb4e"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "58e235f57201718af2164317665ee908",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1618058,
"upload_time": "2024-12-05T23:52:58",
"upload_time_iso_8601": "2024-12-05T23:52:58.366525Z",
"url": "https://files.pythonhosted.org/packages/ab/98/791f979093ff7f67f80344c182cb0ca4c2c60daed397ecaf454cc8d7a5cd/aiohttp-3.11.10-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7b5d2d4b05feb3fd68eb7c8335f73c81079b56e582633b91002da695ccb439ef",
"md5": "41e02cecc95fa73de088343e848d395c",
"sha256": "db1d0b28fcb7f1d35600150c3e4b490775251dea70f894bf15c678fdd84eda6a"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "41e02cecc95fa73de088343e848d395c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1616289,
"upload_time": "2024-12-05T23:53:00",
"upload_time_iso_8601": "2024-12-05T23:53:00.410676Z",
"url": "https://files.pythonhosted.org/packages/7b/5d/2d4b05feb3fd68eb7c8335f73c81079b56e582633b91002da695ccb439ef/aiohttp-3.11.10-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "508368cc28c00fe681dce6150614f105efe98282da19252cd6e32dfa893bb328",
"md5": "c335d7fee5de3ec1b46e9170e075746a",
"sha256": "15fccaf62a4889527539ecb86834084ecf6e9ea70588efde86e8bc775e0e7542"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "c335d7fee5de3ec1b46e9170e075746a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1685239,
"upload_time": "2024-12-05T23:53:02",
"upload_time_iso_8601": "2024-12-05T23:53:02.477589Z",
"url": "https://files.pythonhosted.org/packages/50/83/68cc28c00fe681dce6150614f105efe98282da19252cd6e32dfa893bb328/aiohttp-3.11.10-cp313-cp313-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "16f968fc5c8928f63238ce9314f04f3f59d9190a4db924998bb9be99c7aacce8",
"md5": "47b4b99333ddaadff078201d7d373b4c",
"sha256": "593c114a2221444f30749cc5e5f4012488f56bd14de2af44fe23e1e9894a9c60"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "47b4b99333ddaadff078201d7d373b4c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1715078,
"upload_time": "2024-12-05T23:53:04",
"upload_time_iso_8601": "2024-12-05T23:53:04.546199Z",
"url": "https://files.pythonhosted.org/packages/16/f9/68fc5c8928f63238ce9314f04f3f59d9190a4db924998bb9be99c7aacce8/aiohttp-3.11.10-cp313-cp313-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3fe03dd3f0451c532c77e35780bafb2b6469a046bc15a6ec2e039475a1d2f161",
"md5": "2d8ae858a72ff6c0d30003fbe70456a1",
"sha256": "7852bbcb4d0d2f0c4d583f40c3bc750ee033265d80598d0f9cb6f372baa6b836"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "2d8ae858a72ff6c0d30003fbe70456a1",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1672544,
"upload_time": "2024-12-05T23:53:06",
"upload_time_iso_8601": "2024-12-05T23:53:06.656581Z",
"url": "https://files.pythonhosted.org/packages/3f/e0/3dd3f0451c532c77e35780bafb2b6469a046bc15a6ec2e039475a1d2f161/aiohttp-3.11.10-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a5b13530ab040dd5d7fb016b47115016f9b3a07ea29593b0e07e53dbe06a380c",
"md5": "f469f273776f3208b5805302893b1783",
"sha256": "65e55ca7debae8faaffee0ebb4b47a51b4075f01e9b641c31e554fd376595c6c"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "f469f273776f3208b5805302893b1783",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 409984,
"upload_time": "2024-12-05T23:53:09",
"upload_time_iso_8601": "2024-12-05T23:53:09.353870Z",
"url": "https://files.pythonhosted.org/packages/a5/b1/3530ab040dd5d7fb016b47115016f9b3a07ea29593b0e07e53dbe06a380c/aiohttp-3.11.10-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "491fdeed34e9fca639a7f873d01150d46925d3e1312051eaa591c1aa1f2e6ddc",
"md5": "d661f6f46976e7d8c2cfb79c134bb906",
"sha256": "beb39a6d60a709ae3fb3516a1581777e7e8b76933bb88c8f4420d875bb0267c6"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "d661f6f46976e7d8c2cfb79c134bb906",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 435837,
"upload_time": "2024-12-05T23:53:11",
"upload_time_iso_8601": "2024-12-05T23:53:11.159510Z",
"url": "https://files.pythonhosted.org/packages/49/1f/deed34e9fca639a7f873d01150d46925d3e1312051eaa591c1aa1f2e6ddc/aiohttp-3.11.10-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1f4b60725fcffe8af2ff2e9c0aaef20a89b11cb8fa1d453abd951e64151db4c9",
"md5": "277cd869e068e1f7da1cdcfe9187d1a8",
"sha256": "0580f2e12de2138f34debcd5d88894786453a76e98febaf3e8fe5db62d01c9bf"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "277cd869e068e1f7da1cdcfe9187d1a8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 709195,
"upload_time": "2024-12-05T23:53:13",
"upload_time_iso_8601": "2024-12-05T23:53:13.035305Z",
"url": "https://files.pythonhosted.org/packages/1f/4b/60725fcffe8af2ff2e9c0aaef20a89b11cb8fa1d453abd951e64151db4c9/aiohttp-3.11.10-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6f5d81a920e34bb43cd8d6e35b68e62c2ab1597826c6511d6ec5c5c99a4595b5",
"md5": "8ee061d2006f2e7c55174a5b22d2be45",
"sha256": "a55d2ad345684e7c3dd2c20d2f9572e9e1d5446d57200ff630e6ede7612e307f"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "8ee061d2006f2e7c55174a5b22d2be45",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 468687,
"upload_time": "2024-12-05T23:53:15",
"upload_time_iso_8601": "2024-12-05T23:53:15.147076Z",
"url": "https://files.pythonhosted.org/packages/6f/5d/81a920e34bb43cd8d6e35b68e62c2ab1597826c6511d6ec5c5c99a4595b5/aiohttp-3.11.10-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7958de3da0f281460c3c415b2d1fe0d09137612dfcd7d0070837df14f9f3ef9f",
"md5": "677a0eeb2581155fa2cb50f146d4f10a",
"sha256": "04814571cb72d65a6899db6099e377ed00710bf2e3eafd2985166f2918beaf59"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "677a0eeb2581155fa2cb50f146d4f10a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 455744,
"upload_time": "2024-12-05T23:53:17",
"upload_time_iso_8601": "2024-12-05T23:53:17.070767Z",
"url": "https://files.pythonhosted.org/packages/79/58/de3da0f281460c3c415b2d1fe0d09137612dfcd7d0070837df14f9f3ef9f/aiohttp-3.11.10-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "99cc18d24ffb6b33071e295707ee5b0133bea46bc84b5c0c0606586855ed69bc",
"md5": "d3ed1a0a1ef113256668bc7e79940658",
"sha256": "e44a9a3c053b90c6f09b1bb4edd880959f5328cf63052503f892c41ea786d99f"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d3ed1a0a1ef113256668bc7e79940658",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1587161,
"upload_time": "2024-12-05T23:53:19",
"upload_time_iso_8601": "2024-12-05T23:53:19.037340Z",
"url": "https://files.pythonhosted.org/packages/99/cc/18d24ffb6b33071e295707ee5b0133bea46bc84b5c0c0606586855ed69bc/aiohttp-3.11.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "19664430ef0ba5c88559bc18abeda095fce0225e4fae618c7de0ed6d952ffc47",
"md5": "d68c01537f94e02abac928a6b97f432c",
"sha256": "502a1464ccbc800b4b1995b302efaf426e8763fadf185e933c2931df7db9a199"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "d68c01537f94e02abac928a6b97f432c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1636007,
"upload_time": "2024-12-05T23:53:21",
"upload_time_iso_8601": "2024-12-05T23:53:21.093249Z",
"url": "https://files.pythonhosted.org/packages/19/66/4430ef0ba5c88559bc18abeda095fce0225e4fae618c7de0ed6d952ffc47/aiohttp-3.11.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0fb810a83d1d0dc9b90c461a58041d8bb0b00f68c6cf07fedf74f1a171383cfa",
"md5": "3d875ff53e759ae9c4774706f1d77082",
"sha256": "613e5169f8ae77b1933e42e418a95931fb4867b2991fc311430b15901ed67079"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "3d875ff53e759ae9c4774706f1d77082",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1672088,
"upload_time": "2024-12-05T23:53:23",
"upload_time_iso_8601": "2024-12-05T23:53:23.062375Z",
"url": "https://files.pythonhosted.org/packages/0f/b8/10a83d1d0dc9b90c461a58041d8bb0b00f68c6cf07fedf74f1a171383cfa/aiohttp-3.11.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5bcc7a8fadec9610b11af3c65944666e0702c5a8a8f5632c60b2b198c6180a45",
"md5": "87e67307787339ba937bc888815cc5c4",
"sha256": "4cca22a61b7fe45da8fc73c3443150c3608750bbe27641fc7558ec5117b27fdf"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "87e67307787339ba937bc888815cc5c4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1589287,
"upload_time": "2024-12-05T23:53:25",
"upload_time_iso_8601": "2024-12-05T23:53:25.213835Z",
"url": "https://files.pythonhosted.org/packages/5b/cc/7a8fadec9610b11af3c65944666e0702c5a8a8f5632c60b2b198c6180a45/aiohttp-3.11.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "161262f6058e0a9cf09a14a002594da02134ee1eb6cd404e1e379034f38cf589",
"md5": "3fc9a8f7d34c2340383f13d755e561c1",
"sha256": "86a5dfcc39309470bd7b68c591d84056d195428d5d2e0b5ccadfbaf25b026ebc"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "3fc9a8f7d34c2340383f13d755e561c1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1543823,
"upload_time": "2024-12-05T23:53:27",
"upload_time_iso_8601": "2024-12-05T23:53:27.979377Z",
"url": "https://files.pythonhosted.org/packages/16/12/62f6058e0a9cf09a14a002594da02134ee1eb6cd404e1e379034f38cf589/aiohttp-3.11.10-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": "b9effc5bfe84911484092026f6399dfa7227f3d1839e416b9b3c121a7fbcabfb",
"md5": "e0cc9f61a7b9f1196c52efc0036c1f34",
"sha256": "77ae58586930ee6b2b6f696c82cf8e78c8016ec4795c53e36718365f6959dc82"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "e0cc9f61a7b9f1196c52efc0036c1f34",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1529984,
"upload_time": "2024-12-05T23:53:30",
"upload_time_iso_8601": "2024-12-05T23:53:30.045888Z",
"url": "https://files.pythonhosted.org/packages/b9/ef/fc5bfe84911484092026f6399dfa7227f3d1839e416b9b3c121a7fbcabfb/aiohttp-3.11.10-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "91b0c491bd8509501f5fb83795df2363544ac7aaa35be842f4d7fd5e83beed0d",
"md5": "77ceec98e81166f1270f3aeaf617f01b",
"sha256": "78153314f26d5abef3239b4a9af20c229c6f3ecb97d4c1c01b22c4f87669820c"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "77ceec98e81166f1270f3aeaf617f01b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1535846,
"upload_time": "2024-12-05T23:53:32",
"upload_time_iso_8601": "2024-12-05T23:53:32.082399Z",
"url": "https://files.pythonhosted.org/packages/91/b0/c491bd8509501f5fb83795df2363544ac7aaa35be842f4d7fd5e83beed0d/aiohttp-3.11.10-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bb8cf9cd0e127b7b0044138f57ab531fbfac6a8786e6bbcfdee0fbf254ddfefd",
"md5": "2b42897f5bc19fe5608c7ca8af1a4225",
"sha256": "98283b94cc0e11c73acaf1c9698dea80c830ca476492c0fe2622bd931f34b487"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "2b42897f5bc19fe5608c7ca8af1a4225",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1606682,
"upload_time": "2024-12-05T23:53:34",
"upload_time_iso_8601": "2024-12-05T23:53:34.164282Z",
"url": "https://files.pythonhosted.org/packages/bb/8c/f9cd0e127b7b0044138f57ab531fbfac6a8786e6bbcfdee0fbf254ddfefd/aiohttp-3.11.10-cp39-cp39-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c556ac432399cb7f9ab1babd8b41c24edde58a35cc9736dacafcb9c582a26c0f",
"md5": "682b471940d75a93bec071a5345047a7",
"sha256": "53bf2097e05c2accc166c142a2090e4c6fd86581bde3fd9b2d3f9e93dda66ac1"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "682b471940d75a93bec071a5345047a7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1628868,
"upload_time": "2024-12-05T23:53:36",
"upload_time_iso_8601": "2024-12-05T23:53:36.668975Z",
"url": "https://files.pythonhosted.org/packages/c5/56/ac432399cb7f9ab1babd8b41c24edde58a35cc9736dacafcb9c582a26c0f/aiohttp-3.11.10-cp39-cp39-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "737369b6568b0774ef5905fe69d4e53c7602c5454550dbb927f002f21d9a28fb",
"md5": "6213cf9469d2aab40a576fcbed01466f",
"sha256": "c5532f0441fc09c119e1dca18fbc0687e64fbeb45aa4d6a87211ceaee50a74c4"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "6213cf9469d2aab40a576fcbed01466f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1567107,
"upload_time": "2024-12-05T23:53:38",
"upload_time_iso_8601": "2024-12-05T23:53:38.730592Z",
"url": "https://files.pythonhosted.org/packages/73/73/69b6568b0774ef5905fe69d4e53c7602c5454550dbb927f002f21d9a28fb/aiohttp-3.11.10-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f88a34d119e6513179d7d5a7f5bdacf3a775445837c78b3b5f323e6413a88188",
"md5": "0ed5730845d2429946daf13374997784",
"sha256": "47ad15a65fb41c570cd0ad9a9ff8012489e68176e7207ec7b82a0940dddfd8be"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "0ed5730845d2429946daf13374997784",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 416669,
"upload_time": "2024-12-05T23:53:40",
"upload_time_iso_8601": "2024-12-05T23:53:40.762463Z",
"url": "https://files.pythonhosted.org/packages/f8/8a/34d119e6513179d7d5a7f5bdacf3a775445837c78b3b5f323e6413a88188/aiohttp-3.11.10-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a5fbc5b72bb6fa02660447fdfd0d8aa77fab3c64cf3690b4d7fe490ced18c57a",
"md5": "d8c61313ca576c3fd44380e9b02f5be3",
"sha256": "c6b9e6d7e41656d78e37ce754813fa44b455c3d0d0dced2a047def7dc5570b74"
},
"downloads": -1,
"filename": "aiohttp-3.11.10-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "d8c61313ca576c3fd44380e9b02f5be3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 441979,
"upload_time": "2024-12-05T23:53:42",
"upload_time_iso_8601": "2024-12-05T23:53:42.690664Z",
"url": "https://files.pythonhosted.org/packages/a5/fb/c5b72bb6fa02660447fdfd0d8aa77fab3c64cf3690b4d7fe490ced18c57a/aiohttp-3.11.10-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "94c43b5a937b16f6c2a0ada842a9066aad0b7a5708427d4a202a07bf09c67cbb",
"md5": "93ad05a76d839040d6061221b837be91",
"sha256": "b1fc6b45010a8d0ff9e88f9f2418c6fd408c99c211257334aff41597ebece42e"
},
"downloads": -1,
"filename": "aiohttp-3.11.10.tar.gz",
"has_sig": false,
"md5_digest": "93ad05a76d839040d6061221b837be91",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 7668832,
"upload_time": "2024-12-05T23:53:45",
"upload_time_iso_8601": "2024-12-05T23:53:45.670739Z",
"url": "https://files.pythonhosted.org/packages/94/c4/3b5a937b16f6c2a0ada842a9066aad0b7a5708427d4a202a07bf09c67cbb/aiohttp-3.11.10.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-05 23:53:45",
"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"
}