| Name | aiohttp JSON |
| Version |
3.13.1
JSON |
| download |
| home_page | None |
| Summary | Async http client/server framework (asyncio) |
| upload_time | 2025-10-17 14:03:29 |
| maintainer | None |
| docs_url | None |
| author | None |
| requires_python | >=3.9 |
| license | Apache-2.0 AND MIT |
| 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://img.shields.io/pypi/dm/aiohttp
:target: https://pypistats.org/packages/aiohttp
:alt: Downloads count
.. image:: https://readthedocs.org/projects/aiohttp/badge/?version=latest
:target: https://docs.aiohttp.org/
:alt: Latest Read The Docs
.. 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
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
--------
.. 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
.. image:: https://insights.linuxfoundation.org/api/badge/health-score?project=aiohttp
:target: https://insights.linuxfoundation.org/project/aiohttp
:alt: LFX Health Score
Raw data
{
"_id": null,
"home_page": null,
"name": "aiohttp",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": "aiohttp team <team@aiohttp.org>",
"keywords": null,
"author": null,
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/ba/fa/3ae643cd525cf6844d3dc810481e5748107368eb49563c15a5fb9f680750/aiohttp-3.13.1.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://img.shields.io/pypi/dm/aiohttp\n :target: https://pypistats.org/packages/aiohttp\n :alt: Downloads count\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/endpoint?url=https://codspeed.io/badge.json\n :target: https://codspeed.io/aio-libs/aiohttp\n :alt: Codspeed.io status for aiohttp\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\n--------\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.. image:: https://insights.linuxfoundation.org/api/badge/health-score?project=aiohttp\n :target: https://insights.linuxfoundation.org/project/aiohttp\n :alt: LFX Health Score\n",
"bugtrack_url": null,
"license": "Apache-2.0 AND MIT",
"summary": "Async http client/server framework (asyncio)",
"version": "3.13.1",
"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": null,
"digests": {
"blake2b_256": "e6345097441cc3047eccc2e0bfed3760ed068489b8392545d3aec0d8fbfab2b5",
"md5": "7e636b6c7cc997a511b37f0245b7bd52",
"sha256": "2349a6b642020bf20116a8a5c83bae8ba071acf1461c7cbe45fc7fafd552e7e2"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "7e636b6c7cc997a511b37f0245b7bd52",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 735069,
"upload_time": "2025-10-17T13:58:56",
"upload_time_iso_8601": "2025-10-17T13:58:56.602217Z",
"url": "https://files.pythonhosted.org/packages/e6/34/5097441cc3047eccc2e0bfed3760ed068489b8392545d3aec0d8fbfab2b5/aiohttp-3.13.1-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8c2b726466b4b4b16271a3db2a8a914d754d6cb9cee7bebde1f3ac6043e4e030",
"md5": "9a04ea7bd7951f15deae24234be609bd",
"sha256": "2a8434ca31c093a90edb94d7d70e98706ce4d912d7f7a39f56e1af26287f4bb7"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "9a04ea7bd7951f15deae24234be609bd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 492575,
"upload_time": "2025-10-17T13:58:58",
"upload_time_iso_8601": "2025-10-17T13:58:58.696057Z",
"url": "https://files.pythonhosted.org/packages/8c/2b/726466b4b4b16271a3db2a8a914d754d6cb9cee7bebde1f3ac6043e4e030/aiohttp-3.13.1-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "821f364e64292c95bb6c9e2823b0afa1ad3f06524c573d45df82294be572489d",
"md5": "53fd07db9a213f3c952ef0e7693723b8",
"sha256": "0bd610a7e87431741021a9a6ab775e769ea8c01bf01766d481282bfb17df597f"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "53fd07db9a213f3c952ef0e7693723b8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 487862,
"upload_time": "2025-10-17T13:59:00",
"upload_time_iso_8601": "2025-10-17T13:59:00.315533Z",
"url": "https://files.pythonhosted.org/packages/82/1f/364e64292c95bb6c9e2823b0afa1ad3f06524c573d45df82294be572489d/aiohttp-3.13.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "23b0c5a774b3125ac854987b8ca45a6d995829987d01ece4525d3fc369a9ca88",
"md5": "6a13228c4b2f6cb8368793628ad2f976",
"sha256": "777ec887264b629395b528af59b8523bf3164d4c6738cd8989485ff3eda002e2"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "6a13228c4b2f6cb8368793628ad2f976",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1666761,
"upload_time": "2025-10-17T13:59:02",
"upload_time_iso_8601": "2025-10-17T13:59:02.224314Z",
"url": "https://files.pythonhosted.org/packages/23/b0/c5a774b3125ac854987b8ca45a6d995829987d01ece4525d3fc369a9ca88/aiohttp-3.13.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "29be32c6c1d3a6c69e594b855bbf4014bea4c42008b0daac8c6e5c9f03207b89",
"md5": "058478eaabe70e973931edfde69d37d7",
"sha256": "ac1892f56e2c445aca5ba28f3bf8e16b26dfc05f3c969867b7ef553b74cb4ebe"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "058478eaabe70e973931edfde69d37d7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1634627,
"upload_time": "2025-10-17T13:59:03",
"upload_time_iso_8601": "2025-10-17T13:59:03.829773Z",
"url": "https://files.pythonhosted.org/packages/29/be/32c6c1d3a6c69e594b855bbf4014bea4c42008b0daac8c6e5c9f03207b89/aiohttp-3.13.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "738dfde3a8f4801b14e0b9490f5bc86c5106cb7d96bd60ff2aaee53749c72fe1",
"md5": "3b8b62940b3657c1233739583e49b80a",
"sha256": "499a047d1c5e490c31d16c033e2e47d1358f0e15175c7a1329afc6dfeb04bc09"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"has_sig": false,
"md5_digest": "3b8b62940b3657c1233739583e49b80a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1726564,
"upload_time": "2025-10-17T13:59:05",
"upload_time_iso_8601": "2025-10-17T13:59:05.997330Z",
"url": "https://files.pythonhosted.org/packages/73/8d/fde3a8f4801b14e0b9490f5bc86c5106cb7d96bd60ff2aaee53749c72fe1/aiohttp-3.13.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "52b28290556f1f6b17b1af976a9abb17f9b54dc7218e11bbf6abbebaa7cc70fb",
"md5": "8b8954b51e21bd8f592a5c70baccf174",
"sha256": "610be925f89501938c770f1e28ca9dd62e9b308592c81bd5d223ce92434c0089"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
"has_sig": false,
"md5_digest": "8b8954b51e21bd8f592a5c70baccf174",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1814413,
"upload_time": "2025-10-17T13:59:08",
"upload_time_iso_8601": "2025-10-17T13:59:08.975880Z",
"url": "https://files.pythonhosted.org/packages/52/b2/8290556f1f6b17b1af976a9abb17f9b54dc7218e11bbf6abbebaa7cc70fb/aiohttp-3.13.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ef6b4b657e9fa72479df38117609d4ec8e4b07e8110b872df3872f9c6a96e26b",
"md5": "9c1692dc73dfc0ecbab555c010990698",
"sha256": "90eb902c06c6ac85d6b80fa9f2bd681f25b1ebf73433d428b3d182a507242711"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "9c1692dc73dfc0ecbab555c010990698",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1667964,
"upload_time": "2025-10-17T13:59:10",
"upload_time_iso_8601": "2025-10-17T13:59:10.606492Z",
"url": "https://files.pythonhosted.org/packages/ef/6b/4b657e9fa72479df38117609d4ec8e4b07e8110b872df3872f9c6a96e26b/aiohttp-3.13.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eeed563de175d01fa26459a60a7c82dbf69d20e356d459476a7526329091b4c3",
"md5": "e55921051e8d3cb810a6efe2b2c3ad10",
"sha256": "ab8ac3224b2beb46266c094b3869d68d5f96f35dba98e03dea0acbd055eefa03"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"has_sig": false,
"md5_digest": "e55921051e8d3cb810a6efe2b2c3ad10",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1553917,
"upload_time": "2025-10-17T13:59:12",
"upload_time_iso_8601": "2025-10-17T13:59:12.312796Z",
"url": "https://files.pythonhosted.org/packages/ee/ed/563de175d01fa26459a60a7c82dbf69d20e356d459476a7526329091b4c3/aiohttp-3.13.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "392648a4b5681eada16eb5b39cae277765aed1644b03610c43eadb8b331ccfea",
"md5": "5575e041677eaff7c4dfc84267fa6aa3",
"sha256": "79ac65b6e2731558aad1e4c1a655d2aa2a77845b62acecf5898b0d4fe8c76618"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "5575e041677eaff7c4dfc84267fa6aa3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1637730,
"upload_time": "2025-10-17T13:59:14",
"upload_time_iso_8601": "2025-10-17T13:59:14.395252Z",
"url": "https://files.pythonhosted.org/packages/39/26/48a4b5681eada16eb5b39cae277765aed1644b03610c43eadb8b331ccfea/aiohttp-3.13.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c14357b137af37344e03c7f6b28ddf38a4af820b53c1fa9ce13f668fe468d2e2",
"md5": "5940a9ad2bae3518228952995db7f825",
"sha256": "4dadbd858ed8c04d1aa7a2a91ad65f8e1fbd253ae762ef5be8111e763d576c3c"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "5940a9ad2bae3518228952995db7f825",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1644088,
"upload_time": "2025-10-17T13:59:16",
"upload_time_iso_8601": "2025-10-17T13:59:16.749500Z",
"url": "https://files.pythonhosted.org/packages/c1/43/57b137af37344e03c7f6b28ddf38a4af820b53c1fa9ce13f668fe468d2e2/aiohttp-3.13.1-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0dc4e49bafa4babef09929b10968a6b6efe3707fbaa5c5bb7c8db7f810232269",
"md5": "556672dc6a5c7b2b3ba4b8e0b3017612",
"sha256": "e0b2ccd331bc77149e88e919aa95c228a011e03e1168fd938e6aeb1a317d7a8a"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp310-cp310-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "556672dc6a5c7b2b3ba4b8e0b3017612",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1696215,
"upload_time": "2025-10-17T13:59:18",
"upload_time_iso_8601": "2025-10-17T13:59:18.711621Z",
"url": "https://files.pythonhosted.org/packages/0d/c4/e49bafa4babef09929b10968a6b6efe3707fbaa5c5bb7c8db7f810232269/aiohttp-3.13.1-cp310-cp310-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "15e48414be434b3e50f9089ffa7c4d5130ba6ff0d1c6fa9f55cd760b088abbe0",
"md5": "df082ddbecb5c453df711a9ab13446d9",
"sha256": "fba3c85fb24fe204e73f3c92f09f4f5cfa55fa7e54b34d59d91b7c5a258d0f6a"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp310-cp310-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "df082ddbecb5c453df711a9ab13446d9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1540617,
"upload_time": "2025-10-17T13:59:20",
"upload_time_iso_8601": "2025-10-17T13:59:20.460375Z",
"url": "https://files.pythonhosted.org/packages/15/e4/8414be434b3e50f9089ffa7c4d5130ba6ff0d1c6fa9f55cd760b088abbe0/aiohttp-3.13.1-cp310-cp310-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bd8b31cb6725f819b74a9c0b0055c500187294e73aea40708b6a5aa7b328ea4c",
"md5": "46e6aecedc643e06ebbe4018cd2e0928",
"sha256": "8d5011e4e741d2635cda18f2997a56e8e1d1b94591dc8732f2ef1d3e1bfc5f45"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp310-cp310-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "46e6aecedc643e06ebbe4018cd2e0928",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1713509,
"upload_time": "2025-10-17T13:59:22",
"upload_time_iso_8601": "2025-10-17T13:59:22.610600Z",
"url": "https://files.pythonhosted.org/packages/bd/8b/31cb6725f819b74a9c0b0055c500187294e73aea40708b6a5aa7b328ea4c/aiohttp-3.13.1-cp310-cp310-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "24ac49a79c2711423cfa091e265c46e58617de31258c64502b890f25421cb742",
"md5": "cd004b99472db186f0949a698169d802",
"sha256": "c5fe2728a89c82574bd3132d59237c3b5fb83e2e00a320e928d05d74d1ae895f"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "cd004b99472db186f0949a698169d802",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1654702,
"upload_time": "2025-10-17T13:59:24",
"upload_time_iso_8601": "2025-10-17T13:59:24.396537Z",
"url": "https://files.pythonhosted.org/packages/24/ac/49a79c2711423cfa091e265c46e58617de31258c64502b890f25421cb742/aiohttp-3.13.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "30521cf23cffeda1f079f20cd9c72174a76e8b0c6595def6803892e37ee35c8a",
"md5": "d81eb512297ff4d24db91f3cae81994a",
"sha256": "add14a5e68cbcfc526c89c1ed8ea963f5ff8b9b4b854985b07820c6fbfdb3c3c"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "d81eb512297ff4d24db91f3cae81994a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 430898,
"upload_time": "2025-10-17T13:59:26",
"upload_time_iso_8601": "2025-10-17T13:59:26.227946Z",
"url": "https://files.pythonhosted.org/packages/30/52/1cf23cffeda1f079f20cd9c72174a76e8b0c6595def6803892e37ee35c8a/aiohttp-3.13.1-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0e13214a01f2936f4645b1fbd5cba9001331ca5af5c04bbdbe747eed330a8516",
"md5": "8773948da3e5fcb494a689a0704935a6",
"sha256": "a4cc9d9cfdf75a69ae921c407e02d0c1799ab333b0bc6f7928c175f47c080d6a"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "8773948da3e5fcb494a689a0704935a6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 453684,
"upload_time": "2025-10-17T13:59:28",
"upload_time_iso_8601": "2025-10-17T13:59:28.129553Z",
"url": "https://files.pythonhosted.org/packages/0e/13/214a01f2936f4645b1fbd5cba9001331ca5af5c04bbdbe747eed330a8516/aiohttp-3.13.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "be2c739d03730ffce57d2093e2e611e1541ac9a4b3bb88288c33275058b9ffc2",
"md5": "7c2370dd1e45f85f9f05769fc30bec31",
"sha256": "9eefa0a891e85dca56e2d00760945a6325bd76341ec386d3ad4ff72eb97b7e64"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "7c2370dd1e45f85f9f05769fc30bec31",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 742004,
"upload_time": "2025-10-17T13:59:29",
"upload_time_iso_8601": "2025-10-17T13:59:29.730543Z",
"url": "https://files.pythonhosted.org/packages/be/2c/739d03730ffce57d2093e2e611e1541ac9a4b3bb88288c33275058b9ffc2/aiohttp-3.13.1-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fcf87f5b7f7184d7c80e421dbaecbd13e0b2a0bb8663fd0406864f9a167a438c",
"md5": "4bc6bab5ff39fd9455f8d34804203dff",
"sha256": "6c20eb646371a5a57a97de67e52aac6c47badb1564e719b3601bbb557a2e8fd0"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "4bc6bab5ff39fd9455f8d34804203dff",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 495601,
"upload_time": "2025-10-17T13:59:31",
"upload_time_iso_8601": "2025-10-17T13:59:31.312963Z",
"url": "https://files.pythonhosted.org/packages/fc/f8/7f5b7f7184d7c80e421dbaecbd13e0b2a0bb8663fd0406864f9a167a438c/aiohttp-3.13.1-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3eaffb78d028b9642dd33ff127d9a6a151586f33daff631b05250fecd0ab23f8",
"md5": "07dec56201503b87fbc2260efe151dfb",
"sha256": "bfc28038cd86fb1deed5cc75c8fda45c6b0f5c51dfd76f8c63d3d22dc1ab3d1b"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "07dec56201503b87fbc2260efe151dfb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 491790,
"upload_time": "2025-10-17T13:59:33",
"upload_time_iso_8601": "2025-10-17T13:59:33.304376Z",
"url": "https://files.pythonhosted.org/packages/3e/af/fb78d028b9642dd33ff127d9a6a151586f33daff631b05250fecd0ab23f8/aiohttp-3.13.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1eaee40e422ee995e4f91f7f087b86304e3dd622d3a5b9ca902a1e94ebf9a117",
"md5": "db9cd7fa03d00b68cdc79a3db085a783",
"sha256": "8b22eeffca2e522451990c31a36fe0e71079e6112159f39a4391f1c1e259a795"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "db9cd7fa03d00b68cdc79a3db085a783",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1746350,
"upload_time": "2025-10-17T13:59:35",
"upload_time_iso_8601": "2025-10-17T13:59:35.158987Z",
"url": "https://files.pythonhosted.org/packages/1e/ae/e40e422ee995e4f91f7f087b86304e3dd622d3a5b9ca902a1e94ebf9a117/aiohttp-3.13.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "28a5fe6022bb869bf2d2633b155ed8348d76358c22d5ff9692a15016b2d1019f",
"md5": "95127881b2dbda06f5dd7d3ab1241839",
"sha256": "65782b2977c05ebd78787e3c834abe499313bf69d6b8be4ff9c340901ee7541f"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "95127881b2dbda06f5dd7d3ab1241839",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1703046,
"upload_time": "2025-10-17T13:59:37",
"upload_time_iso_8601": "2025-10-17T13:59:37.077956Z",
"url": "https://files.pythonhosted.org/packages/28/a5/fe6022bb869bf2d2633b155ed8348d76358c22d5ff9692a15016b2d1019f/aiohttp-3.13.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5aa5c4ef3617d7cdc49f2d5af077f19794946f0f2d94b93c631ace79047361a2",
"md5": "487b4da9ca681fe3a80fd6e60e308d65",
"sha256": "dacba54f9be3702eb866b0b9966754b475e1e39996e29e442c3cd7f1117b43a9"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"has_sig": false,
"md5_digest": "487b4da9ca681fe3a80fd6e60e308d65",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1806161,
"upload_time": "2025-10-17T13:59:38",
"upload_time_iso_8601": "2025-10-17T13:59:38.837153Z",
"url": "https://files.pythonhosted.org/packages/5a/a5/c4ef3617d7cdc49f2d5af077f19794946f0f2d94b93c631ace79047361a2/aiohttp-3.13.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ad45b87d2430aee7e7d00b24e3dff2c5bd69f21017f6edb19cfd91e514664fc8",
"md5": "6eac15696081217b93b93e98a97a7a74",
"sha256": "aa878da718e8235302c365e376b768035add36b55177706d784a122cb822a6a4"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
"has_sig": false,
"md5_digest": "6eac15696081217b93b93e98a97a7a74",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1894546,
"upload_time": "2025-10-17T13:59:40",
"upload_time_iso_8601": "2025-10-17T13:59:40.741282Z",
"url": "https://files.pythonhosted.org/packages/ad/45/b87d2430aee7e7d00b24e3dff2c5bd69f21017f6edb19cfd91e514664fc8/aiohttp-3.13.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e8a279eb466786a7f11a0292c353a8a9b95e88268c48c389239d7531d66dbb48",
"md5": "4cdad9efb3eee01d6d6c96a7d735eb39",
"sha256": "0e4b4e607fbd4964d65945a7b9d1e7f98b0d5545736ea613f77d5a2a37ff1e46"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "4cdad9efb3eee01d6d6c96a7d735eb39",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1745683,
"upload_time": "2025-10-17T13:59:42",
"upload_time_iso_8601": "2025-10-17T13:59:42.590437Z",
"url": "https://files.pythonhosted.org/packages/e8/a2/79eb466786a7f11a0292c353a8a9b95e88268c48c389239d7531d66dbb48/aiohttp-3.13.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "931a153b0ad694f377e94eacc85338efe03ed4776a396c8bb47bd9227135792a",
"md5": "dc192992c2a23eca5da4975a9d158528",
"sha256": "0c3db2d0e5477ad561bf7ba978c3ae5f8f78afda70daa05020179f759578754f"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"has_sig": false,
"md5_digest": "dc192992c2a23eca5da4975a9d158528",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1605418,
"upload_time": "2025-10-17T13:59:45",
"upload_time_iso_8601": "2025-10-17T13:59:45.229655Z",
"url": "https://files.pythonhosted.org/packages/93/1a/153b0ad694f377e94eacc85338efe03ed4776a396c8bb47bd9227135792a/aiohttp-3.13.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3f4e18605b1bfeb4b00d3396d833647cdb213118e2a96862e5aebee62ad065b4",
"md5": "0dfdd6552525fc6113fab18b471b3757",
"sha256": "9739d34506fdf59bf2c092560d502aa728b8cdb33f34ba15fb5e2852c35dd829"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "0dfdd6552525fc6113fab18b471b3757",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1722379,
"upload_time": "2025-10-17T13:59:46",
"upload_time_iso_8601": "2025-10-17T13:59:46.969621Z",
"url": "https://files.pythonhosted.org/packages/3f/4e/18605b1bfeb4b00d3396d833647cdb213118e2a96862e5aebee62ad065b4/aiohttp-3.13.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "72130a38ad385d547fb283e0e1fe1ff1dff8899bd4ed0aaceeb13ec14abbf136",
"md5": "3ffbe2db7eaa7d7d7e48b80225c2cd9c",
"sha256": "b902e30a268a85d50197b4997edc6e78842c14c0703450f632c2d82f17577845"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "3ffbe2db7eaa7d7d7e48b80225c2cd9c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1716693,
"upload_time": "2025-10-17T13:59:49",
"upload_time_iso_8601": "2025-10-17T13:59:49.217735Z",
"url": "https://files.pythonhosted.org/packages/72/13/0a38ad385d547fb283e0e1fe1ff1dff8899bd4ed0aaceeb13ec14abbf136/aiohttp-3.13.1-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "55657029d7573ab9009adde380052c6130d02c8db52195fda112db35e914fe7b",
"md5": "df605f6f02b8c203434eb3919a91d8ca",
"sha256": "1bbfc04c8de7def6504cce0a97f9885a5c805fd2395a0634bc10f9d6ecb42524"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp311-cp311-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "df605f6f02b8c203434eb3919a91d8ca",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1784174,
"upload_time": "2025-10-17T13:59:51",
"upload_time_iso_8601": "2025-10-17T13:59:51.439294Z",
"url": "https://files.pythonhosted.org/packages/55/65/7029d7573ab9009adde380052c6130d02c8db52195fda112db35e914fe7b/aiohttp-3.13.1-cp311-cp311-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2d36fd46e39cb85418e45b0e4a8bfc39651ee0b8f08ea006adf217a221cdb269",
"md5": "313d01155a548e50f48590ba3e6d0be3",
"sha256": "6941853405a38a5eeb7d9776db77698df373ff7fa8c765cb81ea14a344fccbeb"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp311-cp311-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "313d01155a548e50f48590ba3e6d0be3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1593716,
"upload_time": "2025-10-17T13:59:53",
"upload_time_iso_8601": "2025-10-17T13:59:53.367833Z",
"url": "https://files.pythonhosted.org/packages/2d/36/fd46e39cb85418e45b0e4a8bfc39651ee0b8f08ea006adf217a221cdb269/aiohttp-3.13.1-cp311-cp311-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "85b8188e0cb1be37b4408373171070fda17c3bf9c67c0d3d4fd5ee5b1fa108e1",
"md5": "fc748d12fed8c4437ada5c27e3b29e6a",
"sha256": "7764adcd2dc8bd21c8228a53dda2005428498dc4d165f41b6086f0ac1c65b1c9"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp311-cp311-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "fc748d12fed8c4437ada5c27e3b29e6a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1799254,
"upload_time": "2025-10-17T13:59:55",
"upload_time_iso_8601": "2025-10-17T13:59:55.352341Z",
"url": "https://files.pythonhosted.org/packages/85/b8/188e0cb1be37b4408373171070fda17c3bf9c67c0d3d4fd5ee5b1fa108e1/aiohttp-3.13.1-cp311-cp311-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "67fffdf768764eb427b0cc9ebb2cebddf990f94d98b430679f8383c35aa114be",
"md5": "2e088e5118837fbdb10f7b32b01677dc",
"sha256": "c09e08d38586fa59e5a2f9626505a0326fadb8e9c45550f029feeb92097a0afc"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "2e088e5118837fbdb10f7b32b01677dc",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1738122,
"upload_time": "2025-10-17T13:59:57",
"upload_time_iso_8601": "2025-10-17T13:59:57.263661Z",
"url": "https://files.pythonhosted.org/packages/67/ff/fdf768764eb427b0cc9ebb2cebddf990f94d98b430679f8383c35aa114be/aiohttp-3.13.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9484fce7a4d575943394d7c0e632273838eb6f39de8edf25386017bf5f0de23b",
"md5": "b25a592118397b363bf858cab7ff629c",
"sha256": "ce1371675e74f6cf271d0b5530defb44cce713fd0ab733713562b3a2b870815c"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "b25a592118397b363bf858cab7ff629c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 430491,
"upload_time": "2025-10-17T13:59:59",
"upload_time_iso_8601": "2025-10-17T13:59:59.466351Z",
"url": "https://files.pythonhosted.org/packages/94/84/fce7a4d575943394d7c0e632273838eb6f39de8edf25386017bf5f0de23b/aiohttp-3.13.1-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "acd2d21b8ab6315a5d588c550ab285b4f02ae363edf012920e597904c5a56608",
"md5": "a49c851cde8fe75464ca6cc95355ec36",
"sha256": "77a2f5cc28cf4704cc157be135c6a6cfb38c9dea478004f1c0fd7449cf445c28"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "a49c851cde8fe75464ca6cc95355ec36",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 454808,
"upload_time": "2025-10-17T14:00:01",
"upload_time_iso_8601": "2025-10-17T14:00:01.247246Z",
"url": "https://files.pythonhosted.org/packages/ac/d2/d21b8ab6315a5d588c550ab285b4f02ae363edf012920e597904c5a56608/aiohttp-3.13.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1a72d463a10bf29871f6e3f63bcf3c91362dc4d72ed5917a8271f96672c415ad",
"md5": "8c5102a9512f06b82f39c9352c0d9505",
"sha256": "0760bd9a28efe188d77b7c3fe666e6ef74320d0f5b105f2e931c7a7e884c8230"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp312-cp312-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "8c5102a9512f06b82f39c9352c0d9505",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 736218,
"upload_time": "2025-10-17T14:00:03",
"upload_time_iso_8601": "2025-10-17T14:00:03.510019Z",
"url": "https://files.pythonhosted.org/packages/1a/72/d463a10bf29871f6e3f63bcf3c91362dc4d72ed5917a8271f96672c415ad/aiohttp-3.13.1-cp312-cp312-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2613f7bccedbe52ea5a6eef1e4ebb686a8d7765319dfd0a5939f4238cb6e79e6",
"md5": "8e5ab9eaa66ac7f9a451b3f4d1166eb0",
"sha256": "7129a424b441c3fe018a414401bf1b9e1d49492445f5676a3aecf4f74f67fcdb"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "8e5ab9eaa66ac7f9a451b3f4d1166eb0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 491251,
"upload_time": "2025-10-17T14:00:05",
"upload_time_iso_8601": "2025-10-17T14:00:05.756824Z",
"url": "https://files.pythonhosted.org/packages/26/13/f7bccedbe52ea5a6eef1e4ebb686a8d7765319dfd0a5939f4238cb6e79e6/aiohttp-3.13.1-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0c7c7ea51b5aed6cc69c873f62548da8345032aa3416336f2d26869d4d37b4a2",
"md5": "acadd64bb66fef615832bc3775d64b01",
"sha256": "e1cb04ae64a594f6ddf5cbb024aba6b4773895ab6ecbc579d60414f8115e9e26"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "acadd64bb66fef615832bc3775d64b01",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 490394,
"upload_time": "2025-10-17T14:00:07",
"upload_time_iso_8601": "2025-10-17T14:00:07.504062Z",
"url": "https://files.pythonhosted.org/packages/0c/7c/7ea51b5aed6cc69c873f62548da8345032aa3416336f2d26869d4d37b4a2/aiohttp-3.13.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "31051172cc4af4557f6522efdee6eb2b9f900e1e320a97e25dffd3c5a6af651b",
"md5": "3c0c8d725f5017c386edd39642bad185",
"sha256": "782d656a641e755decd6bd98d61d2a8ea062fd45fd3ff8d4173605dd0d2b56a1"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "3c0c8d725f5017c386edd39642bad185",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1737455,
"upload_time": "2025-10-17T14:00:09",
"upload_time_iso_8601": "2025-10-17T14:00:09.403613Z",
"url": "https://files.pythonhosted.org/packages/31/05/1172cc4af4557f6522efdee6eb2b9f900e1e320a97e25dffd3c5a6af651b/aiohttp-3.13.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "243dce6e4eca42f797d6b1cd3053cf3b0a22032eef3e4d1e71b9e93c92a3f201",
"md5": "cf7daaf2191cca84854e776e36cdb567",
"sha256": "f92ad8169767429a6d2237331726c03ccc5f245222f9373aa045510976af2b35"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "cf7daaf2191cca84854e776e36cdb567",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1699176,
"upload_time": "2025-10-17T14:00:11",
"upload_time_iso_8601": "2025-10-17T14:00:11.314933Z",
"url": "https://files.pythonhosted.org/packages/24/3d/ce6e4eca42f797d6b1cd3053cf3b0a22032eef3e4d1e71b9e93c92a3f201/aiohttp-3.13.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "25047127ba55653e04da51477372566b16ae786ef854e06222a1c96b4ba6c8ef",
"md5": "ef0350c2f5a726e6872b0d274c63eccf",
"sha256": "0e778f634ca50ec005eefa2253856921c429581422d887be050f2c1c92e5ce12"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"has_sig": false,
"md5_digest": "ef0350c2f5a726e6872b0d274c63eccf",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1767216,
"upload_time": "2025-10-17T14:00:13",
"upload_time_iso_8601": "2025-10-17T14:00:13.668232Z",
"url": "https://files.pythonhosted.org/packages/25/04/7127ba55653e04da51477372566b16ae786ef854e06222a1c96b4ba6c8ef/aiohttp-3.13.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b83b43bca1e75847e600f40df829a6b2f0f4e1d4c70fb6c4818fdc09a462afd5",
"md5": "0c66300237270bd78c1019cfdae075ad",
"sha256": "9bc36b41cf4aab5d3b34d22934a696ab83516603d1bc1f3e4ff9930fe7d245e5"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
"has_sig": false,
"md5_digest": "0c66300237270bd78c1019cfdae075ad",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1865870,
"upload_time": "2025-10-17T14:00:15",
"upload_time_iso_8601": "2025-10-17T14:00:15.852703Z",
"url": "https://files.pythonhosted.org/packages/b8/3b/43bca1e75847e600f40df829a6b2f0f4e1d4c70fb6c4818fdc09a462afd5/aiohttp-3.13.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9e69b204e5d43384197a614c88c1717c324319f5b4e7d0a1b5118da583028d40",
"md5": "cdbb687476f99b6ea313f03bc8654a9b",
"sha256": "3fd4570ea696aee27204dd524f287127ed0966d14d309dc8cc440f474e3e7dbd"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "cdbb687476f99b6ea313f03bc8654a9b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1751021,
"upload_time": "2025-10-17T14:00:18",
"upload_time_iso_8601": "2025-10-17T14:00:18.297500Z",
"url": "https://files.pythonhosted.org/packages/9e/69/b204e5d43384197a614c88c1717c324319f5b4e7d0a1b5118da583028d40/aiohttp-3.13.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1caf845dc6b6fdf378791d720364bf5150f80d22c990f7e3a42331d93b337cc7",
"md5": "d9a765ad062d441e494c409a1849f509",
"sha256": "7bda795f08b8a620836ebfb0926f7973972a4bf8c74fdf9145e489f88c416811"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"has_sig": false,
"md5_digest": "d9a765ad062d441e494c409a1849f509",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1561448,
"upload_time": "2025-10-17T14:00:20",
"upload_time_iso_8601": "2025-10-17T14:00:20.152795Z",
"url": "https://files.pythonhosted.org/packages/1c/af/845dc6b6fdf378791d720364bf5150f80d22c990f7e3a42331d93b337cc7/aiohttp-3.13.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7a91d2ab08cd77ed76a49e4106b1cfb60bce2768242dd0c4f9ec0cb01e2cbf94",
"md5": "5d444f08a2c34c2257c54d69ad680c00",
"sha256": "055a51d90e351aae53dcf324d0eafb2abe5b576d3ea1ec03827d920cf81a1c15"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "5d444f08a2c34c2257c54d69ad680c00",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1698196,
"upload_time": "2025-10-17T14:00:22",
"upload_time_iso_8601": "2025-10-17T14:00:22.131999Z",
"url": "https://files.pythonhosted.org/packages/7a/91/d2ab08cd77ed76a49e4106b1cfb60bce2768242dd0c4f9ec0cb01e2cbf94/aiohttp-3.13.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5ed1082f0620dc428ecb8f21c08a191a4694915cd50f14791c74a24d9161cc50",
"md5": "1137fb9a00614229e6f69530c0aad96b",
"sha256": "d4131df864cbcc09bb16d3612a682af0db52f10736e71312574d90f16406a867"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "1137fb9a00614229e6f69530c0aad96b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1719252,
"upload_time": "2025-10-17T14:00:24",
"upload_time_iso_8601": "2025-10-17T14:00:24.453688Z",
"url": "https://files.pythonhosted.org/packages/5e/d1/082f0620dc428ecb8f21c08a191a4694915cd50f14791c74a24d9161cc50/aiohttp-3.13.1-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fc782af2f44491be7b08e43945b72d2b4fd76f0a14ba850ba9e41d28a7ce716a",
"md5": "84d80b3924b04d26833d38e4122a932d",
"sha256": "163d3226e043f79bf47c87f8dfc89c496cc7bc9128cb7055ce026e435d551720"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp312-cp312-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "84d80b3924b04d26833d38e4122a932d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1736529,
"upload_time": "2025-10-17T14:00:26",
"upload_time_iso_8601": "2025-10-17T14:00:26.567343Z",
"url": "https://files.pythonhosted.org/packages/fc/78/2af2f44491be7b08e43945b72d2b4fd76f0a14ba850ba9e41d28a7ce716a/aiohttp-3.13.1-cp312-cp312-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b0343e919ecdc93edaea8d140138049a0d9126141072e519535e2efa38eb7a02",
"md5": "21a0914900200ee318d58e2ba1a84060",
"sha256": "a2370986a3b75c1a5f3d6f6d763fc6be4b430226577b0ed16a7c13a75bf43d8f"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp312-cp312-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "21a0914900200ee318d58e2ba1a84060",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1553723,
"upload_time": "2025-10-17T14:00:28",
"upload_time_iso_8601": "2025-10-17T14:00:28.592074Z",
"url": "https://files.pythonhosted.org/packages/b0/34/3e919ecdc93edaea8d140138049a0d9126141072e519535e2efa38eb7a02/aiohttp-3.13.1-cp312-cp312-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "214bd8003aeda2f67f359b37e70a5a4b53fee336d8e89511ac307ff62aeefcdb",
"md5": "d34d4964cdd8a935ac0bfcc9c1cdb1d8",
"sha256": "d7c14de0c7c9f1e6e785ce6cbe0ed817282c2af0012e674f45b4e58c6d4ea030"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp312-cp312-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "d34d4964cdd8a935ac0bfcc9c1cdb1d8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1763394,
"upload_time": "2025-10-17T14:00:31",
"upload_time_iso_8601": "2025-10-17T14:00:31.051267Z",
"url": "https://files.pythonhosted.org/packages/21/4b/d8003aeda2f67f359b37e70a5a4b53fee336d8e89511ac307ff62aeefcdb/aiohttp-3.13.1-cp312-cp312-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4c7b1dbe6a39e33af9baaafc3fc016a280663684af47ba9f0e5d44249c1f72ec",
"md5": "e2442a6f57562f34e16f7e00b491f952",
"sha256": "bb611489cf0db10b99beeb7280bd39e0ef72bc3eb6d8c0f0a16d8a56075d1eb7"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e2442a6f57562f34e16f7e00b491f952",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1718104,
"upload_time": "2025-10-17T14:00:33",
"upload_time_iso_8601": "2025-10-17T14:00:33.407560Z",
"url": "https://files.pythonhosted.org/packages/4c/7b/1dbe6a39e33af9baaafc3fc016a280663684af47ba9f0e5d44249c1f72ec/aiohttp-3.13.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5c88bd1b38687257cce67681b9b0fa0b16437be03383fa1be4d1a45b168bef25",
"md5": "cbe44cf2625b76097c80343b8dcd7fef",
"sha256": "f90fe0ee75590f7428f7c8b5479389d985d83c949ea10f662ab928a5ed5cf5e6"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "cbe44cf2625b76097c80343b8dcd7fef",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 425303,
"upload_time": "2025-10-17T14:00:35",
"upload_time_iso_8601": "2025-10-17T14:00:35.829627Z",
"url": "https://files.pythonhosted.org/packages/5c/88/bd1b38687257cce67681b9b0fa0b16437be03383fa1be4d1a45b168bef25/aiohttp-3.13.1-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0ee34481f50dd6f27e9e58c19a60cff44029641640237e35d32b04aaee8cf95f",
"md5": "c77f310040269cabe5c8f74075678f33",
"sha256": "3461919a9dca272c183055f2aab8e6af0adc810a1b386cce28da11eb00c859d9"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "c77f310040269cabe5c8f74075678f33",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 452071,
"upload_time": "2025-10-17T14:00:37",
"upload_time_iso_8601": "2025-10-17T14:00:37.764309Z",
"url": "https://files.pythonhosted.org/packages/0e/e3/4481f50dd6f27e9e58c19a60cff44029641640237e35d32b04aaee8cf95f/aiohttp-3.13.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "166dd267b132342e1080f4c1bb7e1b4e96b168b3cbce931ec45780bff693ff95",
"md5": "013caf0bb0ce617559bb5aebbd58196c",
"sha256": "55785a7f8f13df0c9ca30b5243d9909bd59f48b274262a8fe78cee0828306e5d"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp313-cp313-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "013caf0bb0ce617559bb5aebbd58196c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 730727,
"upload_time": "2025-10-17T14:00:39",
"upload_time_iso_8601": "2025-10-17T14:00:39.681836Z",
"url": "https://files.pythonhosted.org/packages/16/6d/d267b132342e1080f4c1bb7e1b4e96b168b3cbce931ec45780bff693ff95/aiohttp-3.13.1-cp313-cp313-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "92c81cf495bac85cf71b80fad5f6d7693e84894f11b9fe876b64b0a1e7cbf32f",
"md5": "56790b2598ca0eaae9b2776b532175da",
"sha256": "4bef5b83296cebb8167707b4f8d06c1805db0af632f7a72d7c5288a84667e7c3"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "56790b2598ca0eaae9b2776b532175da",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 488678,
"upload_time": "2025-10-17T14:00:41",
"upload_time_iso_8601": "2025-10-17T14:00:41.541423Z",
"url": "https://files.pythonhosted.org/packages/92/c8/1cf495bac85cf71b80fad5f6d7693e84894f11b9fe876b64b0a1e7cbf32f/aiohttp-3.13.1-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a81923c6b81cca587ec96943d977a58d11d05a82837022e65cd5502d665a7d11",
"md5": "22f63fdffcd5286eba6816b3a1e31ce0",
"sha256": "27af0619c33f9ca52f06069ec05de1a357033449ab101836f431768ecfa63ff5"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "22f63fdffcd5286eba6816b3a1e31ce0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 487637,
"upload_time": "2025-10-17T14:00:43",
"upload_time_iso_8601": "2025-10-17T14:00:43.527187Z",
"url": "https://files.pythonhosted.org/packages/a8/19/23c6b81cca587ec96943d977a58d11d05a82837022e65cd5502d665a7d11/aiohttp-3.13.1-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "48588f9464afb88b3eed145ad7c665293739b3a6f91589694a2bb7e5778cbc72",
"md5": "566ccd1fd43ace89a19fa958d6d89973",
"sha256": "a47fe43229a8efd3764ef7728a5c1158f31cdf2a12151fe99fde81c9ac87019c"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "566ccd1fd43ace89a19fa958d6d89973",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1718975,
"upload_time": "2025-10-17T14:00:45",
"upload_time_iso_8601": "2025-10-17T14:00:45.496915Z",
"url": "https://files.pythonhosted.org/packages/48/58/8f9464afb88b3eed145ad7c665293739b3a6f91589694a2bb7e5778cbc72/aiohttp-3.13.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e18bc3da064ca392b2702f53949fd7c403afa38d9ee10bf52c6ad59a42537103",
"md5": "e6662532e8b8113ca936ae09421804e6",
"sha256": "6e68e126de5b46e8b2bee73cab086b5d791e7dc192056916077aa1e2e2b04437"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "e6662532e8b8113ca936ae09421804e6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1686905,
"upload_time": "2025-10-17T14:00:47",
"upload_time_iso_8601": "2025-10-17T14:00:47.707547Z",
"url": "https://files.pythonhosted.org/packages/e1/8b/c3da064ca392b2702f53949fd7c403afa38d9ee10bf52c6ad59a42537103/aiohttp-3.13.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0aa49c8a3843ecf526daee6010af1a66eb62579be1531d2d5af48ea6f405ad3c",
"md5": "4b1f9b77b3551b67b58ccdf57666f91b",
"sha256": "e65ef49dd22514329c55970d39079618a8abf856bae7147913bb774a3ab3c02f"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"has_sig": false,
"md5_digest": "4b1f9b77b3551b67b58ccdf57666f91b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1754907,
"upload_time": "2025-10-17T14:00:49",
"upload_time_iso_8601": "2025-10-17T14:00:49.702066Z",
"url": "https://files.pythonhosted.org/packages/0a/a4/9c8a3843ecf526daee6010af1a66eb62579be1531d2d5af48ea6f405ad3c/aiohttp-3.13.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a4801f470ed93e06436e3fc2659a9fc329c192fa893fb7ed4e884d399dbfb2a8",
"md5": "9109999e6db152b0af7875bd73bbce94",
"sha256": "0e425a7e0511648b3376839dcc9190098671a47f21a36e815b97762eb7d556b0"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
"has_sig": false,
"md5_digest": "9109999e6db152b0af7875bd73bbce94",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1857129,
"upload_time": "2025-10-17T14:00:51",
"upload_time_iso_8601": "2025-10-17T14:00:51.822033Z",
"url": "https://files.pythonhosted.org/packages/a4/80/1f470ed93e06436e3fc2659a9fc329c192fa893fb7ed4e884d399dbfb2a8/aiohttp-3.13.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cce633d305e6cce0a8daeb79c7d8d6547d6e5f27f4e35fa4883fc9c9eb638596",
"md5": "3a5595de9d1736fa7a5f758b5cef8733",
"sha256": "010dc9b7110f055006acd3648d5d5955bb6473b37c3663ec42a1b4cba7413e6b"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "3a5595de9d1736fa7a5f758b5cef8733",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1738189,
"upload_time": "2025-10-17T14:00:53",
"upload_time_iso_8601": "2025-10-17T14:00:53.976079Z",
"url": "https://files.pythonhosted.org/packages/cc/e6/33d305e6cce0a8daeb79c7d8d6547d6e5f27f4e35fa4883fc9c9eb638596/aiohttp-3.13.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ac428df03367e5a64327fe0c39291080697795430c438fc1139c7cc1831aa1df",
"md5": "c03d668568aff49eb0ef0c49945ec162",
"sha256": "1b5c722d0ca5f57d61066b5dfa96cdb87111e2519156b35c1f8dd17c703bee7a"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"has_sig": false,
"md5_digest": "c03d668568aff49eb0ef0c49945ec162",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1553608,
"upload_time": "2025-10-17T14:00:56",
"upload_time_iso_8601": "2025-10-17T14:00:56.144222Z",
"url": "https://files.pythonhosted.org/packages/ac/42/8df03367e5a64327fe0c39291080697795430c438fc1139c7cc1831aa1df/aiohttp-3.13.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "96176d5c73cd862f1cf29fddcbb54aac147037ff70a043a2829d03a379e95742",
"md5": "eaccc3b84c2728c2d52eca261414e159",
"sha256": "93029f0e9b77b714904a281b5aa578cdc8aa8ba018d78c04e51e1c3d8471b8ec"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "eaccc3b84c2728c2d52eca261414e159",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1681809,
"upload_time": "2025-10-17T14:00:58",
"upload_time_iso_8601": "2025-10-17T14:00:58.603905Z",
"url": "https://files.pythonhosted.org/packages/96/17/6d5c73cd862f1cf29fddcbb54aac147037ff70a043a2829d03a379e95742/aiohttp-3.13.1-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "be318926c8ab18533f6076ce28d2c329a203b58c6861681906e2d73b9c397588",
"md5": "e701236622977f7612751b9a5b23db04",
"sha256": "d1824c7d08d8ddfc8cb10c847f696942e5aadbd16fd974dfde8bd2c3c08a9fa1"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp313-cp313-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "e701236622977f7612751b9a5b23db04",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1711161,
"upload_time": "2025-10-17T14:01:01",
"upload_time_iso_8601": "2025-10-17T14:01:01.744811Z",
"url": "https://files.pythonhosted.org/packages/be/31/8926c8ab18533f6076ce28d2c329a203b58c6861681906e2d73b9c397588/aiohttp-3.13.1-cp313-cp313-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f2362f83e1ca730b1e0a8cf1c8ab9559834c5eec9f5da86e77ac71f0d16b521d",
"md5": "fd162e7ac229a9f17be5b236a34e45e8",
"sha256": "8f47d0ff5b3eb9c1278a2f56ea48fda667da8ebf28bd2cb378b7c453936ce003"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp313-cp313-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "fd162e7ac229a9f17be5b236a34e45e8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1731999,
"upload_time": "2025-10-17T14:01:04",
"upload_time_iso_8601": "2025-10-17T14:01:04.626874Z",
"url": "https://files.pythonhosted.org/packages/f2/36/2f83e1ca730b1e0a8cf1c8ab9559834c5eec9f5da86e77ac71f0d16b521d/aiohttp-3.13.1-cp313-cp313-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b9ec1f818cc368dfd4d5ab4e9efc8f2f6f283bfc31e1c06d3e848bcc862d4591",
"md5": "c691e9fc37610a2d69546e05315b79ba",
"sha256": "8a396b1da9b51ded79806ac3b57a598f84e0769eaa1ba300655d8b5e17b70c7b"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp313-cp313-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "c691e9fc37610a2d69546e05315b79ba",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1548684,
"upload_time": "2025-10-17T14:01:06",
"upload_time_iso_8601": "2025-10-17T14:01:06.828444Z",
"url": "https://files.pythonhosted.org/packages/b9/ec/1f818cc368dfd4d5ab4e9efc8f2f6f283bfc31e1c06d3e848bcc862d4591/aiohttp-3.13.1-cp313-cp313-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d3ad33d36efd16e4fefee91b09a22a3a0e1b830f65471c3567ac5a8041fac812",
"md5": "24d23dc88d8f0a3d01176f20f1f2a2c6",
"sha256": "d9c52a65f54796e066b5d674e33b53178014752d28bca555c479c2c25ffcec5b"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp313-cp313-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "24d23dc88d8f0a3d01176f20f1f2a2c6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1756676,
"upload_time": "2025-10-17T14:01:09",
"upload_time_iso_8601": "2025-10-17T14:01:09.517012Z",
"url": "https://files.pythonhosted.org/packages/d3/ad/33d36efd16e4fefee91b09a22a3a0e1b830f65471c3567ac5a8041fac812/aiohttp-3.13.1-cp313-cp313-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3cc44a526d84e77d464437713ca909364988ed2e0cd0cdad2c06cb065ece9e08",
"md5": "f0ce7067ca4d648fbbe6eb2c5869d2ca",
"sha256": "a89da72d18d6c95a653470b78d8ee5aa3c4b37212004c103403d0776cbea6ff0"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "f0ce7067ca4d648fbbe6eb2c5869d2ca",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1715577,
"upload_time": "2025-10-17T14:01:11",
"upload_time_iso_8601": "2025-10-17T14:01:11.958548Z",
"url": "https://files.pythonhosted.org/packages/3c/c4/4a526d84e77d464437713ca909364988ed2e0cd0cdad2c06cb065ece9e08/aiohttp-3.13.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a221e39638b7d9c7f1362c4113a91870f89287e60a7ea2d037e258b81e8b37d5",
"md5": "34b4627f7097114cc5dd59f04f15959a",
"sha256": "02e0258b7585ddf5d01c79c716ddd674386bfbf3041fbbfe7bdf9c7c32eb4a9b"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "34b4627f7097114cc5dd59f04f15959a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 424468,
"upload_time": "2025-10-17T14:01:14",
"upload_time_iso_8601": "2025-10-17T14:01:14.344727Z",
"url": "https://files.pythonhosted.org/packages/a2/21/e39638b7d9c7f1362c4113a91870f89287e60a7ea2d037e258b81e8b37d5/aiohttp-3.13.1-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cc00f3a92c592a845ebb2f47d102a67f35f0925cb854c5e7386f1a3a1fdff2ab",
"md5": "68c9dba5fe8e703ab43fa090b418dccc",
"sha256": "ef56ffe60e8d97baac123272bde1ab889ee07d3419606fae823c80c2b86c403e"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "68c9dba5fe8e703ab43fa090b418dccc",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 450806,
"upload_time": "2025-10-17T14:01:16",
"upload_time_iso_8601": "2025-10-17T14:01:16.437730Z",
"url": "https://files.pythonhosted.org/packages/cc/00/f3a92c592a845ebb2f47d102a67f35f0925cb854c5e7386f1a3a1fdff2ab/aiohttp-3.13.1-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "97be0f6c41d2fd0aab0af133c509cabaf5b1d78eab882cb0ceb872e87ceeabf7",
"md5": "bc4f3d5d45515562401d57308a50b944",
"sha256": "77f83b3dc5870a2ea79a0fcfdcc3fc398187ec1675ff61ec2ceccad27ecbd303"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "bc4f3d5d45515562401d57308a50b944",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 733828,
"upload_time": "2025-10-17T14:01:18",
"upload_time_iso_8601": "2025-10-17T14:01:18.580164Z",
"url": "https://files.pythonhosted.org/packages/97/be/0f6c41d2fd0aab0af133c509cabaf5b1d78eab882cb0ceb872e87ceeabf7/aiohttp-3.13.1-cp314-cp314-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "751424e2ac5efa76ae30e05813e0f50737005fd52da8ddffee474d4a5e7f38a6",
"md5": "8a8d0faf2a67bbd5091bdb1a589580bb",
"sha256": "9cafd2609ebb755e47323306c7666283fbba6cf82b5f19982ea627db907df23a"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "8a8d0faf2a67bbd5091bdb1a589580bb",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 489320,
"upload_time": "2025-10-17T14:01:20",
"upload_time_iso_8601": "2025-10-17T14:01:20.644044Z",
"url": "https://files.pythonhosted.org/packages/75/14/24e2ac5efa76ae30e05813e0f50737005fd52da8ddffee474d4a5e7f38a6/aiohttp-3.13.1-cp314-cp314-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "da5a4cbe599358d05ea7db4869aff44707b57d13f01724d48123dc68b3288d5a",
"md5": "e11963e275393f9554ed05c1d8da7de1",
"sha256": "9c489309a2ca548d5f11131cfb4092f61d67954f930bba7e413bcdbbb82d7fae"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e11963e275393f9554ed05c1d8da7de1",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 489899,
"upload_time": "2025-10-17T14:01:22",
"upload_time_iso_8601": "2025-10-17T14:01:22.638464Z",
"url": "https://files.pythonhosted.org/packages/da/5a/4cbe599358d05ea7db4869aff44707b57d13f01724d48123dc68b3288d5a/aiohttp-3.13.1-cp314-cp314-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "67963aec9d9cfc723273d4386328a1e2562cf23629d2f57d137047c49adb2afb",
"md5": "a983366e37f9a9e9e0e8788d4336e95d",
"sha256": "79ac15fe5fdbf3c186aa74b656cd436d9a1e492ba036db8901c75717055a5b1c"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "a983366e37f9a9e9e0e8788d4336e95d",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1716556,
"upload_time": "2025-10-17T14:01:25",
"upload_time_iso_8601": "2025-10-17T14:01:25.406195Z",
"url": "https://files.pythonhosted.org/packages/67/96/3aec9d9cfc723273d4386328a1e2562cf23629d2f57d137047c49adb2afb/aiohttp-3.13.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b99939a3d250595b5c8172843831221fa5662884f63f8005b00b4034f2a7a836",
"md5": "90a42ff16aec006c623b666279734fd5",
"sha256": "095414be94fce3bc080684b4cd50fb70d439bc4662b2a1984f45f3bf9ede08aa"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "90a42ff16aec006c623b666279734fd5",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1665814,
"upload_time": "2025-10-17T14:01:27",
"upload_time_iso_8601": "2025-10-17T14:01:27.683984Z",
"url": "https://files.pythonhosted.org/packages/b9/99/39a3d250595b5c8172843831221fa5662884f63f8005b00b4034f2a7a836/aiohttp-3.13.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3b968319e7060a85db14a9c178bc7b3cf17fad458db32ba6d2910de3ca71452d",
"md5": "1d80aaff611a1189d61371b10c2bb577",
"sha256": "c68172e1a2dca65fa1272c85ca72e802d78b67812b22827df01017a15c5089fa"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"has_sig": false,
"md5_digest": "1d80aaff611a1189d61371b10c2bb577",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1755767,
"upload_time": "2025-10-17T14:01:29",
"upload_time_iso_8601": "2025-10-17T14:01:29.914608Z",
"url": "https://files.pythonhosted.org/packages/3b/96/8319e7060a85db14a9c178bc7b3cf17fad458db32ba6d2910de3ca71452d/aiohttp-3.13.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1cc60a2b3d886b40aa740fa2294cd34ed46d2e8108696748492be722e23082a7",
"md5": "47b431769fe6a1212d51abe66c0dd2a5",
"sha256": "3751f9212bcd119944d4ea9de6a3f0fee288c177b8ca55442a2cdff0c8201eb3"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
"has_sig": false,
"md5_digest": "47b431769fe6a1212d51abe66c0dd2a5",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1836591,
"upload_time": "2025-10-17T14:01:32",
"upload_time_iso_8601": "2025-10-17T14:01:32.280695Z",
"url": "https://files.pythonhosted.org/packages/1c/c6/0a2b3d886b40aa740fa2294cd34ed46d2e8108696748492be722e23082a7/aiohttp-3.13.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fb348ab5904b3331c91a58507234a1e2f662f837e193741609ee5832eb436251",
"md5": "1dece44f5fcd0897598ebccb9c8d7bf8",
"sha256": "8619dca57d98a8353abdc7a1eeb415548952b39d6676def70d9ce76d41a046a9"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "1dece44f5fcd0897598ebccb9c8d7bf8",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1714915,
"upload_time": "2025-10-17T14:01:35",
"upload_time_iso_8601": "2025-10-17T14:01:35.138922Z",
"url": "https://files.pythonhosted.org/packages/fb/34/8ab5904b3331c91a58507234a1e2f662f837e193741609ee5832eb436251/aiohttp-3.13.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b5d3d36077ca5f447649112189074ac6c192a666bf68165b693e48c23b0d008c",
"md5": "ed0635645a688f6f24bc0b2cf1fbd5fb",
"sha256": "97795a0cb0a5f8a843759620e9cbd8889f8079551f5dcf1ccd99ed2f056d9632"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"has_sig": false,
"md5_digest": "ed0635645a688f6f24bc0b2cf1fbd5fb",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1546579,
"upload_time": "2025-10-17T14:01:38",
"upload_time_iso_8601": "2025-10-17T14:01:38.237240Z",
"url": "https://files.pythonhosted.org/packages/b5/d3/d36077ca5f447649112189074ac6c192a666bf68165b693e48c23b0d008c/aiohttp-3.13.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a814dbc426a1bb1305c4fc78ce69323498c9e7c699983366ef676aa5d3f949fa",
"md5": "15e80ce2c002f6b8a33105d51a1abdca",
"sha256": "1060e058da8f9f28a7026cdfca9fc886e45e551a658f6a5c631188f72a3736d2"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "15e80ce2c002f6b8a33105d51a1abdca",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1680633,
"upload_time": "2025-10-17T14:01:40",
"upload_time_iso_8601": "2025-10-17T14:01:40.902296Z",
"url": "https://files.pythonhosted.org/packages/a8/14/dbc426a1bb1305c4fc78ce69323498c9e7c699983366ef676aa5d3f949fa/aiohttp-3.13.1-cp314-cp314-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "29831e68e519aff9f3ef6d4acb6cdda7b5f592ef5c67c8f095dc0d8e06ce1c3e",
"md5": "7a66e89fcc505f2019605404953b30e2",
"sha256": "f48a2c26333659101ef214907d29a76fe22ad7e912aa1e40aeffdff5e8180977"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "7a66e89fcc505f2019605404953b30e2",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1678675,
"upload_time": "2025-10-17T14:01:43",
"upload_time_iso_8601": "2025-10-17T14:01:43.779032Z",
"url": "https://files.pythonhosted.org/packages/29/83/1e68e519aff9f3ef6d4acb6cdda7b5f592ef5c67c8f095dc0d8e06ce1c3e/aiohttp-3.13.1-cp314-cp314-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "38b97f3e32a81c08b6d29ea15060c377e1f038ad96cd9923a85f30e817afff22",
"md5": "ee1db7802bf3ab146505229b39bc82f7",
"sha256": "f1dfad638b9c91ff225162b2824db0e99ae2d1abe0dc7272b5919701f0a1e685"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "ee1db7802bf3ab146505229b39bc82f7",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1726829,
"upload_time": "2025-10-17T14:01:46",
"upload_time_iso_8601": "2025-10-17T14:01:46.546212Z",
"url": "https://files.pythonhosted.org/packages/38/b9/7f3e32a81c08b6d29ea15060c377e1f038ad96cd9923a85f30e817afff22/aiohttp-3.13.1-cp314-cp314-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "23ce610b1f77525a0a46639aea91377b12348e9f9412cc5ddcb17502aa4681c7",
"md5": "1f209c72b20f98c5b80503336fe50b00",
"sha256": "8fa09ab6dd567cb105db4e8ac4d60f377a7a94f67cf669cac79982f626360f32"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "1f209c72b20f98c5b80503336fe50b00",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1542985,
"upload_time": "2025-10-17T14:01:49",
"upload_time_iso_8601": "2025-10-17T14:01:49.082060Z",
"url": "https://files.pythonhosted.org/packages/23/ce/610b1f77525a0a46639aea91377b12348e9f9412cc5ddcb17502aa4681c7/aiohttp-3.13.1-cp314-cp314-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "53393ac8dfdad5de38c401846fa071fcd24cb3b88ccfb024854df6cbd9b4a07e",
"md5": "4d1badcff3a9fcf01d926234ba9b01b2",
"sha256": "4159fae827f9b5f655538a4f99b7cbc3a2187e5ca2eee82f876ef1da802ccfa9"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "4d1badcff3a9fcf01d926234ba9b01b2",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1741556,
"upload_time": "2025-10-17T14:01:51",
"upload_time_iso_8601": "2025-10-17T14:01:51.846518Z",
"url": "https://files.pythonhosted.org/packages/53/39/3ac8dfdad5de38c401846fa071fcd24cb3b88ccfb024854df6cbd9b4a07e/aiohttp-3.13.1-cp314-cp314-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2a48b1948b74fea7930b0f29595d1956842324336de200593d49a51a40607fdc",
"md5": "e3c301620e7827cac4acb60211031062",
"sha256": "ad671118c19e9cfafe81a7a05c294449fe0ebb0d0c6d5bb445cd2190023f5cef"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e3c301620e7827cac4acb60211031062",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1696175,
"upload_time": "2025-10-17T14:01:54",
"upload_time_iso_8601": "2025-10-17T14:01:54.232308Z",
"url": "https://files.pythonhosted.org/packages/2a/48/b1948b74fea7930b0f29595d1956842324336de200593d49a51a40607fdc/aiohttp-3.13.1-cp314-cp314-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d49f9ba6059de4bad25c71cd88e3da53f93e9618ea369cf875c9f924b1c167e2",
"md5": "e9e15fbdb16a0d6fcc6f5ad08665eb20",
"sha256": "390b73e99d7a1f0f658b3f626ba345b76382f3edc65f49d6385e326e777ed00e"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314t-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "e9e15fbdb16a0d6fcc6f5ad08665eb20",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 765956,
"upload_time": "2025-10-17T14:02:01",
"upload_time_iso_8601": "2025-10-17T14:02:01.515150Z",
"url": "https://files.pythonhosted.org/packages/d4/9f/9ba6059de4bad25c71cd88e3da53f93e9618ea369cf875c9f924b1c167e2/aiohttp-3.13.1-cp314-cp314t-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1f30b86da68b494447d3060f45c7ebb461347535dab4af9162a9267d9d86ca31",
"md5": "20e37ece07579b97452989b34de171d5",
"sha256": "27e83abb330e687e019173d8fc1fd6a1cf471769624cf89b1bb49131198a810a"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314t-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "20e37ece07579b97452989b34de171d5",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 503206,
"upload_time": "2025-10-17T14:02:03",
"upload_time_iso_8601": "2025-10-17T14:02:03.818519Z",
"url": "https://files.pythonhosted.org/packages/1f/30/b86da68b494447d3060f45c7ebb461347535dab4af9162a9267d9d86ca31/aiohttp-3.13.1-cp314-cp314t-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c121d27a506552843ff9eeb9fcc2d45f943b09eefdfdf205aab044f4f1f39f6a",
"md5": "baef05981c6e2d482492aced1154cdd2",
"sha256": "2b20eed07131adbf3e873e009c2869b16a579b236e9d4b2f211bf174d8bef44a"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314t-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "baef05981c6e2d482492aced1154cdd2",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 507719,
"upload_time": "2025-10-17T14:02:05",
"upload_time_iso_8601": "2025-10-17T14:02:05.947994Z",
"url": "https://files.pythonhosted.org/packages/c1/21/d27a506552843ff9eeb9fcc2d45f943b09eefdfdf205aab044f4f1f39f6a/aiohttp-3.13.1-cp314-cp314t-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "58234042230ec7e4edc7ba43d0342b5a3d2fe0222ca046933c4251a35aaf17f5",
"md5": "93be94242d7fa1f5fe1420ac94251452",
"sha256": "58fee9ef8477fd69e823b92cfd1f590ee388521b5ff8f97f3497e62ee0656212"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "93be94242d7fa1f5fe1420ac94251452",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1862758,
"upload_time": "2025-10-17T14:02:08",
"upload_time_iso_8601": "2025-10-17T14:02:08.469037Z",
"url": "https://files.pythonhosted.org/packages/58/23/4042230ec7e4edc7ba43d0342b5a3d2fe0222ca046933c4251a35aaf17f5/aiohttp-3.13.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "df88525c45bea7cbb9f65df42cadb4ff69f6a0dbf95931b0ff7d1fdc40a1cb5f",
"md5": "6debc22829c9925d0feefe3ccfecbacd",
"sha256": "1f62608fcb7b3d034d5e9496bea52d94064b7b62b06edba82cd38191336bbeda"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "6debc22829c9925d0feefe3ccfecbacd",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1717790,
"upload_time": "2025-10-17T14:02:11",
"upload_time_iso_8601": "2025-10-17T14:02:11.370906Z",
"url": "https://files.pythonhosted.org/packages/df/88/525c45bea7cbb9f65df42cadb4ff69f6a0dbf95931b0ff7d1fdc40a1cb5f/aiohttp-3.13.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1d8021e9b5eb77df352a5788713f37359b570a793f0473f3a72db2e46df379b9",
"md5": "bc04d10e9dbe73a7d4a41235701683fe",
"sha256": "fdc4d81c3dfc999437f23e36d197e8b557a3f779625cd13efe563a9cfc2ce712"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"has_sig": false,
"md5_digest": "bc04d10e9dbe73a7d4a41235701683fe",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1842088,
"upload_time": "2025-10-17T14:02:13",
"upload_time_iso_8601": "2025-10-17T14:02:13.872525Z",
"url": "https://files.pythonhosted.org/packages/1d/80/21e9b5eb77df352a5788713f37359b570a793f0473f3a72db2e46df379b9/aiohttp-3.13.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d2bfd1738f6d63fe8b2a0ad49533911b3347f4953cd001bf3223cb7b61f18dff",
"md5": "6821910b4553d6a281ef01920c38de55",
"sha256": "601d7ec812f746fd80ff8af38eeb3f196e1bab4a4d39816ccbc94c222d23f1d0"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
"has_sig": false,
"md5_digest": "6821910b4553d6a281ef01920c38de55",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1934292,
"upload_time": "2025-10-17T14:02:16",
"upload_time_iso_8601": "2025-10-17T14:02:16.624269Z",
"url": "https://files.pythonhosted.org/packages/d2/bf/d1738f6d63fe8b2a0ad49533911b3347f4953cd001bf3223cb7b61f18dff/aiohttp-3.13.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "04e626cab509b42610ca49573f2fc2867810f72bd6a2070182256c31b14f2e98",
"md5": "53a1077927da350823e7a3ad7b8f7de5",
"sha256": "47c3f21c469b840d9609089435c0d9918ae89f41289bf7cc4afe5ff7af5458db"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "53a1077927da350823e7a3ad7b8f7de5",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1791328,
"upload_time": "2025-10-17T14:02:19",
"upload_time_iso_8601": "2025-10-17T14:02:19.051083Z",
"url": "https://files.pythonhosted.org/packages/04/e6/26cab509b42610ca49573f2fc2867810f72bd6a2070182256c31b14f2e98/aiohttp-3.13.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8a6dbaf7b462852475c9d045bee8418d9cdf280efb687752b553e82d0c58bcc2",
"md5": "f32a74913c74429d940e94d0432fa954",
"sha256": "d6c6cdc0750db88520332d4aaa352221732b0cafe89fd0e42feec7cb1b5dc236"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"has_sig": false,
"md5_digest": "f32a74913c74429d940e94d0432fa954",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1622663,
"upload_time": "2025-10-17T14:02:21",
"upload_time_iso_8601": "2025-10-17T14:02:21.397079Z",
"url": "https://files.pythonhosted.org/packages/8a/6d/baf7b462852475c9d045bee8418d9cdf280efb687752b553e82d0c58bcc2/aiohttp-3.13.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c848396a97318af9b5f4ca8b3dc14a67976f71c6400a9609c622f96da341453f",
"md5": "d889324050be75cd3a89453935aa3147",
"sha256": "58a12299eeb1fca2414ee2bc345ac69b0f765c20b82c3ab2a75d91310d95a9f6"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "d889324050be75cd3a89453935aa3147",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1787791,
"upload_time": "2025-10-17T14:02:24",
"upload_time_iso_8601": "2025-10-17T14:02:24.212736Z",
"url": "https://files.pythonhosted.org/packages/c8/48/396a97318af9b5f4ca8b3dc14a67976f71c6400a9609c622f96da341453f/aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a8e26925f6784134ce3ff3ce1a8502ab366432a3b5605387618c1a939ce778d9",
"md5": "be4da4e5cb5d3fd3d110ac5bb28817e6",
"sha256": "0989cbfc195a4de1bb48f08454ef1cb47424b937e53ed069d08404b9d3c7aea1"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "be4da4e5cb5d3fd3d110ac5bb28817e6",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1775459,
"upload_time": "2025-10-17T14:02:26",
"upload_time_iso_8601": "2025-10-17T14:02:26.971355Z",
"url": "https://files.pythonhosted.org/packages/a8/e2/6925f6784134ce3ff3ce1a8502ab366432a3b5605387618c1a939ce778d9/aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c3e3b372047ba739fc39f199b99290c4cc5578ce5fd125f69168c967dac44021",
"md5": "1dfa02b6b0d85966492d8159e6064905",
"sha256": "feb5ee664300e2435e0d1bc3443a98925013dfaf2cae9699c1f3606b88544898"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "1dfa02b6b0d85966492d8159e6064905",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1789250,
"upload_time": "2025-10-17T14:02:29",
"upload_time_iso_8601": "2025-10-17T14:02:29.686260Z",
"url": "https://files.pythonhosted.org/packages/c3/e3/b372047ba739fc39f199b99290c4cc5578ce5fd125f69168c967dac44021/aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "028c9f48b93d7d57fc9ef2ad4adace62e4663ea1ce1753806c4872fb36b54c39",
"md5": "5b45df84004b8eb4ac14d73b57e98c16",
"sha256": "58a6f8702da0c3606fb5cf2e669cce0ca681d072fe830968673bb4c69eb89e88"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "5b45df84004b8eb4ac14d73b57e98c16",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1616139,
"upload_time": "2025-10-17T14:02:32",
"upload_time_iso_8601": "2025-10-17T14:02:32.151054Z",
"url": "https://files.pythonhosted.org/packages/02/8c/9f48b93d7d57fc9ef2ad4adace62e4663ea1ce1753806c4872fb36b54c39/aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5cc6c64e39d61aaa33d7de1be5206c0af3ead4b369bf975dac9fdf907a4291c1",
"md5": "6ada7d2039ca49c462e0b0aee8e9e0a1",
"sha256": "a417ceb433b9d280e2368ffea22d4bc6e3e0d894c4bc7768915124d57d0964b6"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "6ada7d2039ca49c462e0b0aee8e9e0a1",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1815829,
"upload_time": "2025-10-17T14:02:34",
"upload_time_iso_8601": "2025-10-17T14:02:34.635328Z",
"url": "https://files.pythonhosted.org/packages/5c/c6/c64e39d61aaa33d7de1be5206c0af3ead4b369bf975dac9fdf907a4291c1/aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2275e19e93965ea675f1151753b409af97a14f1d888588a555e53af1e62b83eb",
"md5": "82ce2bb39b5bd8f3fbe5608066c70850",
"sha256": "8ac8854f7b0466c5d6a9ea49249b3f6176013859ac8f4bb2522ad8ed6b94ded2"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "82ce2bb39b5bd8f3fbe5608066c70850",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1760923,
"upload_time": "2025-10-17T14:02:37",
"upload_time_iso_8601": "2025-10-17T14:02:37.364260Z",
"url": "https://files.pythonhosted.org/packages/22/75/e19e93965ea675f1151753b409af97a14f1d888588a555e53af1e62b83eb/aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6ca406ed38f1dabd98ea136fd116cba1d02c9b51af5a37d513b6850a9a567d86",
"md5": "6047c897202b2b0f74b573cbc5761b8b",
"sha256": "be697a5aeff42179ed13b332a411e674994bcd406c81642d014ace90bf4bb968"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314t-win32.whl",
"has_sig": false,
"md5_digest": "6047c897202b2b0f74b573cbc5761b8b",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 463318,
"upload_time": "2025-10-17T14:02:39",
"upload_time_iso_8601": "2025-10-17T14:02:39.924506Z",
"url": "https://files.pythonhosted.org/packages/6c/a4/06ed38f1dabd98ea136fd116cba1d02c9b51af5a37d513b6850a9a567d86/aiohttp-3.13.1-cp314-cp314t-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "040f27e4fdde899e1e90e35eeff56b54ed63826435ad6cdb06b09ed312d1b3fa",
"md5": "05087f06f49f3f653df2f23b8c7da995",
"sha256": "f1d6aa90546a4e8f20c3500cb68ab14679cd91f927fa52970035fd3207dfb3da"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314t-win_amd64.whl",
"has_sig": false,
"md5_digest": "05087f06f49f3f653df2f23b8c7da995",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 496721,
"upload_time": "2025-10-17T14:02:42",
"upload_time_iso_8601": "2025-10-17T14:02:42.199740Z",
"url": "https://files.pythonhosted.org/packages/04/0f/27e4fdde899e1e90e35eeff56b54ed63826435ad6cdb06b09ed312d1b3fa/aiohttp-3.13.1-cp314-cp314t-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9626063bba38e4b27b640f56cc89fe83cc3546a7ae162c2e30ca345f0ccdc3d1",
"md5": "7b393e38124a03686e7d84984a8f9891",
"sha256": "c5c970c148c48cf6acb65224ca3c87a47f74436362dde75c27bc44155ccf7dfc"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314-win32.whl",
"has_sig": false,
"md5_digest": "7b393e38124a03686e7d84984a8f9891",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 430254,
"upload_time": "2025-10-17T14:01:56",
"upload_time_iso_8601": "2025-10-17T14:01:56.451953Z",
"url": "https://files.pythonhosted.org/packages/96/26/063bba38e4b27b640f56cc89fe83cc3546a7ae162c2e30ca345f0ccdc3d1/aiohttp-3.13.1-cp314-cp314-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "88aa25fd764384dc4eab714023112d3548a8dd69a058840d61d816ea736097a2",
"md5": "5b426bbd2c56692e58258478b24f06a2",
"sha256": "748a00167b7a88385756fa615417d24081cba7e58c8727d2e28817068b97c18c"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp314-cp314-win_amd64.whl",
"has_sig": false,
"md5_digest": "5b426bbd2c56692e58258478b24f06a2",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 456256,
"upload_time": "2025-10-17T14:01:58",
"upload_time_iso_8601": "2025-10-17T14:01:58.752393Z",
"url": "https://files.pythonhosted.org/packages/88/aa/25fd764384dc4eab714023112d3548a8dd69a058840d61d816ea736097a2/aiohttp-3.13.1-cp314-cp314-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1dc876ef829954d9b08c0b785f43394e6cdce5c87673bf5cd6bc6dd04e1c3a04",
"md5": "f013e606fe8d530cbcafeda190a5905b",
"sha256": "a5dc5c3b086adc232fd07e691dcc452e8e407bf7c810e6f7e18fd3941a24c5c0"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "f013e606fe8d530cbcafeda190a5905b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 737600,
"upload_time": "2025-10-17T14:02:44",
"upload_time_iso_8601": "2025-10-17T14:02:44.458039Z",
"url": "https://files.pythonhosted.org/packages/1d/c8/76ef829954d9b08c0b785f43394e6cdce5c87673bf5cd6bc6dd04e1c3a04/aiohttp-3.13.1-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "32822e73cd55d35d6ecc4c5180d9388d8255c07010553badaa3634d2a77ab05a",
"md5": "90a7e696bf644167f2dc39f3083a916d",
"sha256": "fb7c5f0b35f5a3a06bd5e1a7b46204c2dca734cd839da830db81f56ce60981fe"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "90a7e696bf644167f2dc39f3083a916d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 493893,
"upload_time": "2025-10-17T14:02:47",
"upload_time_iso_8601": "2025-10-17T14:02:47.003978Z",
"url": "https://files.pythonhosted.org/packages/32/82/2e73cd55d35d6ecc4c5180d9388d8255c07010553badaa3634d2a77ab05a/aiohttp-3.13.1-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0e4fb57cb7a1d16844ec58fa436fa8f8d80afd6de9281162f93a4087cd69a962",
"md5": "8deaa3738cba988d9d572b53662516d4",
"sha256": "cb1e557bd1a90f28dc88a6e31332753795cd471f8d18da749c35930e53d11880"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8deaa3738cba988d9d572b53662516d4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 489224,
"upload_time": "2025-10-17T14:02:49",
"upload_time_iso_8601": "2025-10-17T14:02:49.520184Z",
"url": "https://files.pythonhosted.org/packages/0e/4f/b57cb7a1d16844ec58fa436fa8f8d80afd6de9281162f93a4087cd69a962/aiohttp-3.13.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5593ab03a54fa57fbba05a40cae18b704965a5f2b5deec9ae11fb81b554cd393",
"md5": "ecf46a0bdcdf2f391ad525ebd1e8df55",
"sha256": "e95ea8fb27fbf667d322626a12db708be308b66cd9afd4a997230ded66ffcab4"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "ecf46a0bdcdf2f391ad525ebd1e8df55",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1661558,
"upload_time": "2025-10-17T14:02:51",
"upload_time_iso_8601": "2025-10-17T14:02:51.897275Z",
"url": "https://files.pythonhosted.org/packages/55/93/ab03a54fa57fbba05a40cae18b704965a5f2b5deec9ae11fb81b554cd393/aiohttp-3.13.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "27dec50d56b8a2baaf2178743758cb013aae343fec47a4f3e261459142df7b83",
"md5": "7035b35ba237795d2c24cc7d34162d3a",
"sha256": "f37da298a486e53f9b5e8ef522719b3787c4fe852639a1edcfcc9f981f2c20ba"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "7035b35ba237795d2c24cc7d34162d3a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1625710,
"upload_time": "2025-10-17T14:02:54",
"upload_time_iso_8601": "2025-10-17T14:02:54.390694Z",
"url": "https://files.pythonhosted.org/packages/27/de/c50d56b8a2baaf2178743758cb013aae343fec47a4f3e261459142df7b83/aiohttp-3.13.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "11071b4db771161afa796a86ffb4787fab7d81199a428d285742b553ba8d3c66",
"md5": "93f04bd021f3cf65060b0e2aa91f269c",
"sha256": "37cc1b9773d2a01c3f221c3ebecf0c82b1c93f55f3fde52929e40cf2ed777e6c"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"has_sig": false,
"md5_digest": "93f04bd021f3cf65060b0e2aa91f269c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1722626,
"upload_time": "2025-10-17T14:02:56",
"upload_time_iso_8601": "2025-10-17T14:02:56.879123Z",
"url": "https://files.pythonhosted.org/packages/11/07/1b4db771161afa796a86ffb4787fab7d81199a428d285742b553ba8d3c66/aiohttp-3.13.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "50c6b79780419bde91bac24ca91919f4a2bbd534cf52dc4a80b6a32bf9cfe60d",
"md5": "51c8b093334fa57a9e73893f100079d5",
"sha256": "412bfc63a6de4907aae6041da256d183f875bf4dc01e05412b1d19cfc25ee08c"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
"has_sig": false,
"md5_digest": "51c8b093334fa57a9e73893f100079d5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1811491,
"upload_time": "2025-10-17T14:02:59",
"upload_time_iso_8601": "2025-10-17T14:02:59.765726Z",
"url": "https://files.pythonhosted.org/packages/50/c6/b79780419bde91bac24ca91919f4a2bbd534cf52dc4a80b6a32bf9cfe60d/aiohttp-3.13.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "790308dc71a29a32ef1b2e1d76c2d72559d0b729eb82933f824f149517f72d02",
"md5": "3280c73afdb9097adc9fca4c3e2bf6bd",
"sha256": "d8ccd2946aadf7793643b57d98d5a82598295a37f98d218984039d5179823cd5"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "3280c73afdb9097adc9fca4c3e2bf6bd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1659551,
"upload_time": "2025-10-17T14:03:02",
"upload_time_iso_8601": "2025-10-17T14:03:02.377990Z",
"url": "https://files.pythonhosted.org/packages/79/03/08dc71a29a32ef1b2e1d76c2d72559d0b729eb82933f824f149517f72d02/aiohttp-3.13.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3b3d0c43bef82e5ed691bf7b47bebe7323010bd5c9b685285829d4381e6514a3",
"md5": "1b92d861bfc4436ea598f12becda6421",
"sha256": "51b3c44434a50bca1763792c6b98b9ba1d614339284780b43107ef37ec3aa1dc"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"has_sig": false,
"md5_digest": "1b92d861bfc4436ea598f12becda6421",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1552454,
"upload_time": "2025-10-17T14:03:04",
"upload_time_iso_8601": "2025-10-17T14:03:04.894034Z",
"url": "https://files.pythonhosted.org/packages/3b/3d/0c43bef82e5ed691bf7b47bebe7323010bd5c9b685285829d4381e6514a3/aiohttp-3.13.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "09e47f606092153e2f85868462efbe038da97f00459a787ba1dae84e43196041",
"md5": "b0803e3428b635832ddc628ccc37f6d5",
"sha256": "9bff813424c70ad38667edfad4fefe8ca1b09a53621ce7d0fd017e418438f58a"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "b0803e3428b635832ddc628ccc37f6d5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1632849,
"upload_time": "2025-10-17T14:03:07",
"upload_time_iso_8601": "2025-10-17T14:03:07.301774Z",
"url": "https://files.pythonhosted.org/packages/09/e4/7f606092153e2f85868462efbe038da97f00459a787ba1dae84e43196041/aiohttp-3.13.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f8e87b5dfa9c405022f6e08a97fe1e5f6aa3b8d368c0eaaca03888d4f91ede64",
"md5": "a4e710c1cdf213421816029d494dd0ee",
"sha256": "ed782a438ff4b66ce29503a1555be51a36e4b5048c3b524929378aa7450c26a9"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "a4e710c1cdf213421816029d494dd0ee",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1638089,
"upload_time": "2025-10-17T14:03:09",
"upload_time_iso_8601": "2025-10-17T14:03:09.798125Z",
"url": "https://files.pythonhosted.org/packages/f8/e8/7b5dfa9c405022f6e08a97fe1e5f6aa3b8d368c0eaaca03888d4f91ede64/aiohttp-3.13.1-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8fd73bdb019f03c95238112eca8a02894b191ca1dd267544971433adc856912a",
"md5": "465a90621da234099e0b0f76fd614f25",
"sha256": "a1d6fd6e9e3578a7aeb0fa11e9a544dceccb840330277bf281325aa0fe37787e"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp39-cp39-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "465a90621da234099e0b0f76fd614f25",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1692679,
"upload_time": "2025-10-17T14:03:12",
"upload_time_iso_8601": "2025-10-17T14:03:12.274169Z",
"url": "https://files.pythonhosted.org/packages/8f/d7/3bdb019f03c95238112eca8a02894b191ca1dd267544971433adc856912a/aiohttp-3.13.1-cp39-cp39-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2926a4910cad8e2699bf64f68bb01a585f164829c0b89036d4141f915c2a26ca",
"md5": "cf7a08f74dba52c4277d2877949de888",
"sha256": "7c5e2660c6d6ab0d85c45bc8bd9f685983ebc63a5c7c0fd3ddeb647712722eca"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp39-cp39-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "cf7a08f74dba52c4277d2877949de888",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1539122,
"upload_time": "2025-10-17T14:03:15",
"upload_time_iso_8601": "2025-10-17T14:03:15.106087Z",
"url": "https://files.pythonhosted.org/packages/29/26/a4910cad8e2699bf64f68bb01a585f164829c0b89036d4141f915c2a26ca/aiohttp-3.13.1-cp39-cp39-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ebaef4d1da25e352bee6a6973adee6f7fd551a5790b1ab2141a630d321c902c1",
"md5": "02d7efc8269e2843d7b0a02b15ac249d",
"sha256": "168279a11571a39d689fc7b9725ddcde0dc68f2336b06b69fcea0203f9fb25d8"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp39-cp39-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "02d7efc8269e2843d7b0a02b15ac249d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1708961,
"upload_time": "2025-10-17T14:03:17",
"upload_time_iso_8601": "2025-10-17T14:03:17.756462Z",
"url": "https://files.pythonhosted.org/packages/eb/ae/f4d1da25e352bee6a6973adee6f7fd551a5790b1ab2141a630d321c902c1/aiohttp-3.13.1-cp39-cp39-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9240b355f78d1c8a25568831847bddcb9e0999374b514bae566d53588e21a56f",
"md5": "58f1f3e9039e3a1c4cc49eb2e9707879",
"sha256": "ff0357fa3dd28cf49ad8c515452a1d1d7ad611b513e0a4f6fa6ad6780abaddfd"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "58f1f3e9039e3a1c4cc49eb2e9707879",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1647886,
"upload_time": "2025-10-17T14:03:20",
"upload_time_iso_8601": "2025-10-17T14:03:20.231065Z",
"url": "https://files.pythonhosted.org/packages/92/40/b355f78d1c8a25568831847bddcb9e0999374b514bae566d53588e21a56f/aiohttp-3.13.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fd41c1a23276181d1f7a59e1569ae1f2ea4b03067753672791bb3587b7202899",
"md5": "9a03714ca7e39ab4b3a62d02323096c3",
"sha256": "a617769e8294ca58601a579697eae0b0e1b1ef770c5920d55692827d6b330ff9"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "9a03714ca7e39ab4b3a62d02323096c3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 431590,
"upload_time": "2025-10-17T14:03:22",
"upload_time_iso_8601": "2025-10-17T14:03:22.939893Z",
"url": "https://files.pythonhosted.org/packages/fd/41/c1a23276181d1f7a59e1569ae1f2ea4b03067753672791bb3587b7202899/aiohttp-3.13.1-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8668c83126f351ffa50b8b83b88c5e9bc219b6709a74139447d2e05786510873",
"md5": "9f137f61db10d94162b8e2a2183f643d",
"sha256": "f2543eebf890739fd93d06e2c16d97bdf1301d2cda5ffceb7a68441c7b590a92"
},
"downloads": -1,
"filename": "aiohttp-3.13.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "9f137f61db10d94162b8e2a2183f643d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 454627,
"upload_time": "2025-10-17T14:03:26",
"upload_time_iso_8601": "2025-10-17T14:03:26.698017Z",
"url": "https://files.pythonhosted.org/packages/86/68/c83126f351ffa50b8b83b88c5e9bc219b6709a74139447d2e05786510873/aiohttp-3.13.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bafa3ae643cd525cf6844d3dc810481e5748107368eb49563c15a5fb9f680750",
"md5": "687492c57302cf21c6a15cff18a95a72",
"sha256": "4b7ee9c355015813a6aa085170b96ec22315dabc3d866fd77d147927000e9464"
},
"downloads": -1,
"filename": "aiohttp-3.13.1.tar.gz",
"has_sig": false,
"md5_digest": "687492c57302cf21c6a15cff18a95a72",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 7835344,
"upload_time": "2025-10-17T14:03:29",
"upload_time_iso_8601": "2025-10-17T14:03:29.337477Z",
"url": "https://files.pythonhosted.org/packages/ba/fa/3ae643cd525cf6844d3dc810481e5748107368eb49563c15a5fb9f680750/aiohttp-3.13.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-17 14:03:29",
"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"
}