==================================
Async http client/server framework
==================================
.. image:: https://raw.githubusercontent.com/aio-libs/aiohttp/master/docs/aiohttp-plain.svg
:height: 64px
:width: 64px
:alt: aiohttp logo
|
.. image:: https://github.com/aio-libs/aiohttp/workflows/CI/badge.svg
:target: https://github.com/aio-libs/aiohttp/actions?query=workflow%3ACI
:alt: GitHub Actions status for master branch
.. image:: https://codecov.io/gh/aio-libs/aiohttp/branch/master/graph/badge.svg
:target: https://codecov.io/gh/aio-libs/aiohttp
:alt: codecov.io status for master branch
.. image:: https://img.shields.io/endpoint?url=https://codspeed.io/badge.json
:target: https://codspeed.io/aio-libs/aiohttp
:alt: Codspeed.io status for aiohttp
.. image:: https://badge.fury.io/py/aiohttp.svg
:target: https://pypi.org/project/aiohttp
:alt: Latest PyPI package version
.. image:: https://readthedocs.org/projects/aiohttp/badge/?version=latest
:target: https://docs.aiohttp.org/
:alt: Latest Read The Docs
.. image:: https://img.shields.io/matrix/aio-libs:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat
:target: https://matrix.to/#/%23aio-libs:matrix.org
:alt: Matrix Room — #aio-libs:matrix.org
.. image:: https://img.shields.io/matrix/aio-libs-space:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs-space%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat
:target: https://matrix.to/#/%23aio-libs-space:matrix.org
:alt: Matrix Space — #aio-libs-space:matrix.org
Key Features
============
- Supports both client and server side of HTTP protocol.
- Supports both client and server Web-Sockets out-of-the-box and avoids
Callback Hell.
- Provides Web-server with middleware and pluggable routing.
Getting started
===============
Client
------
To get something from the web:
.. code-block:: python
import aiohttp
import asyncio
async def main():
async with aiohttp.ClientSession() as session:
async with session.get('http://python.org') as response:
print("Status:", response.status)
print("Content-type:", response.headers['content-type'])
html = await response.text()
print("Body:", html[:15], "...")
asyncio.run(main())
This prints:
.. code-block::
Status: 200
Content-type: text/html; charset=utf-8
Body: <!doctype html> ...
Coming from `requests <https://requests.readthedocs.io/>`_ ? Read `why we need so many lines <https://aiohttp.readthedocs.io/en/latest/http_request_lifecycle.html>`_.
Server
------
An example using a simple server:
.. code-block:: python
# examples/server_simple.py
from aiohttp import web
async def handle(request):
name = request.match_info.get('name', "Anonymous")
text = "Hello, " + name
return web.Response(text=text)
async def wshandle(request):
ws = web.WebSocketResponse()
await ws.prepare(request)
async for msg in ws:
if msg.type == web.WSMsgType.text:
await ws.send_str("Hello, {}".format(msg.data))
elif msg.type == web.WSMsgType.binary:
await ws.send_bytes(msg.data)
elif msg.type == web.WSMsgType.close:
break
return ws
app = web.Application()
app.add_routes([web.get('/', handle),
web.get('/echo', wshandle),
web.get('/{name}', handle)])
if __name__ == '__main__':
web.run_app(app)
Documentation
=============
https://aiohttp.readthedocs.io/
Demos
=====
https://github.com/aio-libs/aiohttp-demos
External links
==============
* `Third party libraries
<http://aiohttp.readthedocs.io/en/latest/third_party.html>`_
* `Built with aiohttp
<http://aiohttp.readthedocs.io/en/latest/built_with.html>`_
* `Powered by aiohttp
<http://aiohttp.readthedocs.io/en/latest/powered_by.html>`_
Feel free to make a Pull Request for adding your link to these pages!
Communication channels
======================
*aio-libs Discussions*: https://github.com/aio-libs/aiohttp/discussions
*Matrix*: `#aio-libs:matrix.org <https://matrix.to/#/#aio-libs:matrix.org>`_
We support `Stack Overflow
<https://stackoverflow.com/questions/tagged/aiohttp>`_.
Please add *aiohttp* tag to your question there.
Requirements
============
- attrs_
- multidict_
- yarl_
- frozenlist_
Optionally you may install the aiodns_ library (highly recommended for sake of speed).
.. _aiodns: https://pypi.python.org/pypi/aiodns
.. _attrs: https://github.com/python-attrs/attrs
.. _multidict: https://pypi.python.org/pypi/multidict
.. _frozenlist: https://pypi.org/project/frozenlist/
.. _yarl: https://pypi.python.org/pypi/yarl
.. _async-timeout: https://pypi.python.org/pypi/async_timeout
License
=======
``aiohttp`` is offered under the Apache 2 license.
Keepsafe
========
The aiohttp community would like to thank Keepsafe
(https://www.getkeepsafe.com) for its support in the early days of
the project.
Source code
===========
The latest developer version is available in a GitHub repository:
https://github.com/aio-libs/aiohttp
Benchmarks
==========
If you are interested in efficiency, the AsyncIO community maintains a
list of benchmarks on the official wiki:
https://github.com/python/asyncio/wiki/Benchmarks
Raw data
{
"_id": null,
"home_page": "https://github.com/aio-libs/aiohttp",
"name": "aiohttp",
"maintainer": "aiohttp team <team@aiohttp.org>",
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": "team@aiohttp.org",
"keywords": null,
"author": null,
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/fe/ed/f26db39d29cd3cb2f5a3374304c713fe5ab5a0e4c8ee25a0c45cc6adf844/aiohttp-3.11.11.tar.gz",
"platform": null,
"description": "==================================\nAsync http client/server framework\n==================================\n\n.. image:: https://raw.githubusercontent.com/aio-libs/aiohttp/master/docs/aiohttp-plain.svg\n :height: 64px\n :width: 64px\n :alt: aiohttp logo\n\n|\n\n.. image:: https://github.com/aio-libs/aiohttp/workflows/CI/badge.svg\n :target: https://github.com/aio-libs/aiohttp/actions?query=workflow%3ACI\n :alt: GitHub Actions status for master branch\n\n.. image:: https://codecov.io/gh/aio-libs/aiohttp/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/aio-libs/aiohttp\n :alt: codecov.io status for master branch\n\n.. image:: https://img.shields.io/endpoint?url=https://codspeed.io/badge.json\n :target: https://codspeed.io/aio-libs/aiohttp\n :alt: Codspeed.io status for aiohttp\n\n.. image:: https://badge.fury.io/py/aiohttp.svg\n :target: https://pypi.org/project/aiohttp\n :alt: Latest PyPI package version\n\n.. image:: https://readthedocs.org/projects/aiohttp/badge/?version=latest\n :target: https://docs.aiohttp.org/\n :alt: Latest Read The Docs\n\n.. image:: https://img.shields.io/matrix/aio-libs:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat\n :target: https://matrix.to/#/%23aio-libs:matrix.org\n :alt: Matrix Room \u2014 #aio-libs:matrix.org\n\n.. image:: https://img.shields.io/matrix/aio-libs-space:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs-space%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat\n :target: https://matrix.to/#/%23aio-libs-space:matrix.org\n :alt: Matrix Space \u2014 #aio-libs-space:matrix.org\n\n\nKey Features\n============\n\n- Supports both client and server side of HTTP protocol.\n- Supports both client and server Web-Sockets out-of-the-box and avoids\n Callback Hell.\n- Provides Web-server with middleware and pluggable routing.\n\n\nGetting started\n===============\n\nClient\n------\n\nTo get something from the web:\n\n.. code-block:: python\n\n import aiohttp\n import asyncio\n\n async def main():\n\n async with aiohttp.ClientSession() as session:\n async with session.get('http://python.org') as response:\n\n print(\"Status:\", response.status)\n print(\"Content-type:\", response.headers['content-type'])\n\n html = await response.text()\n print(\"Body:\", html[:15], \"...\")\n\n asyncio.run(main())\n\nThis prints:\n\n.. code-block::\n\n Status: 200\n Content-type: text/html; charset=utf-8\n Body: <!doctype html> ...\n\nComing from `requests <https://requests.readthedocs.io/>`_ ? Read `why we need so many lines <https://aiohttp.readthedocs.io/en/latest/http_request_lifecycle.html>`_.\n\nServer\n------\n\nAn example using a simple server:\n\n.. code-block:: python\n\n # examples/server_simple.py\n from aiohttp import web\n\n async def handle(request):\n name = request.match_info.get('name', \"Anonymous\")\n text = \"Hello, \" + name\n return web.Response(text=text)\n\n async def wshandle(request):\n ws = web.WebSocketResponse()\n await ws.prepare(request)\n\n async for msg in ws:\n if msg.type == web.WSMsgType.text:\n await ws.send_str(\"Hello, {}\".format(msg.data))\n elif msg.type == web.WSMsgType.binary:\n await ws.send_bytes(msg.data)\n elif msg.type == web.WSMsgType.close:\n break\n\n return ws\n\n\n app = web.Application()\n app.add_routes([web.get('/', handle),\n web.get('/echo', wshandle),\n web.get('/{name}', handle)])\n\n if __name__ == '__main__':\n web.run_app(app)\n\n\nDocumentation\n=============\n\nhttps://aiohttp.readthedocs.io/\n\n\nDemos\n=====\n\nhttps://github.com/aio-libs/aiohttp-demos\n\n\nExternal links\n==============\n\n* `Third party libraries\n <http://aiohttp.readthedocs.io/en/latest/third_party.html>`_\n* `Built with aiohttp\n <http://aiohttp.readthedocs.io/en/latest/built_with.html>`_\n* `Powered by aiohttp\n <http://aiohttp.readthedocs.io/en/latest/powered_by.html>`_\n\nFeel free to make a Pull Request for adding your link to these pages!\n\n\nCommunication channels\n======================\n\n*aio-libs Discussions*: https://github.com/aio-libs/aiohttp/discussions\n\n*Matrix*: `#aio-libs:matrix.org <https://matrix.to/#/#aio-libs:matrix.org>`_\n\nWe support `Stack Overflow\n<https://stackoverflow.com/questions/tagged/aiohttp>`_.\nPlease add *aiohttp* tag to your question there.\n\nRequirements\n============\n\n- attrs_\n- multidict_\n- yarl_\n- frozenlist_\n\nOptionally you may install the aiodns_ library (highly recommended for sake of speed).\n\n.. _aiodns: https://pypi.python.org/pypi/aiodns\n.. _attrs: https://github.com/python-attrs/attrs\n.. _multidict: https://pypi.python.org/pypi/multidict\n.. _frozenlist: https://pypi.org/project/frozenlist/\n.. _yarl: https://pypi.python.org/pypi/yarl\n.. _async-timeout: https://pypi.python.org/pypi/async_timeout\n\nLicense\n=======\n\n``aiohttp`` is offered under the Apache 2 license.\n\n\nKeepsafe\n========\n\nThe aiohttp community would like to thank Keepsafe\n(https://www.getkeepsafe.com) for its support in the early days of\nthe project.\n\n\nSource code\n===========\n\nThe latest developer version is available in a GitHub repository:\nhttps://github.com/aio-libs/aiohttp\n\nBenchmarks\n==========\n\nIf you are interested in efficiency, the AsyncIO community maintains a\nlist of benchmarks on the official wiki:\nhttps://github.com/python/asyncio/wiki/Benchmarks\n",
"bugtrack_url": null,
"license": "Apache-2.0",
"summary": "Async http client/server framework (asyncio)",
"version": "3.11.11",
"project_urls": {
"CI: GitHub Actions": "https://github.com/aio-libs/aiohttp/actions?query=workflow%3ACI",
"Chat: Matrix": "https://matrix.to/#/#aio-libs:matrix.org",
"Chat: Matrix Space": "https://matrix.to/#/#aio-libs-space:matrix.org",
"Coverage: codecov": "https://codecov.io/github/aio-libs/aiohttp",
"Docs: Changelog": "https://docs.aiohttp.org/en/stable/changes.html",
"Docs: RTD": "https://docs.aiohttp.org",
"GitHub: issues": "https://github.com/aio-libs/aiohttp/issues",
"GitHub: repo": "https://github.com/aio-libs/aiohttp",
"Homepage": "https://github.com/aio-libs/aiohttp"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "757dff2e314b8f9e0b1df833e2d4778eaf23eae6b8cc8f922495d110ddcbf9e1",
"md5": "1490e2dd57a7e5178d22312dbbd6814d",
"sha256": "a60804bff28662cbcf340a4d61598891f12eea3a66af48ecfdc975ceec21e3c8"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "1490e2dd57a7e5178d22312dbbd6814d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 708550,
"upload_time": "2024-12-18T21:17:26",
"upload_time_iso_8601": "2024-12-18T21:17:26.358446Z",
"url": "https://files.pythonhosted.org/packages/75/7d/ff2e314b8f9e0b1df833e2d4778eaf23eae6b8cc8f922495d110ddcbf9e1/aiohttp-3.11.11-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09b8aeb4975d5bba233d6f246941f5957a5ad4e3def8b0855a72742e391925f2",
"md5": "83d2808d1b506bfdff452ee103fdf7cb",
"sha256": "4b4fa1cb5f270fb3eab079536b764ad740bb749ce69a94d4ec30ceee1b5940d5"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "83d2808d1b506bfdff452ee103fdf7cb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 468430,
"upload_time": "2024-12-18T21:17:30",
"upload_time_iso_8601": "2024-12-18T21:17:30.826403Z",
"url": "https://files.pythonhosted.org/packages/09/b8/aeb4975d5bba233d6f246941f5957a5ad4e3def8b0855a72742e391925f2/aiohttp-3.11.11-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9c5b5b620279b3df46e597008b09fa1e10027a39467387c2332657288e25811a",
"md5": "f26ac0a82b6c3b21a3f7ff39a7fb1fbc",
"sha256": "731468f555656767cda219ab42e033355fe48c85fbe3ba83a349631541715ba2"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f26ac0a82b6c3b21a3f7ff39a7fb1fbc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 455593,
"upload_time": "2024-12-18T21:17:34",
"upload_time_iso_8601": "2024-12-18T21:17:34.195995Z",
"url": "https://files.pythonhosted.org/packages/9c/5b/5b620279b3df46e597008b09fa1e10027a39467387c2332657288e25811a/aiohttp-3.11.11-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d8750cdf014b816867d86c0bc26f3d3e3f194198dbf33037890beed629cd4f8f",
"md5": "cc47e3dc9233dd5c4faae686aa97884c",
"sha256": "cb23d8bb86282b342481cad4370ea0853a39e4a32a0042bb52ca6bdde132df43"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "cc47e3dc9233dd5c4faae686aa97884c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1584635,
"upload_time": "2024-12-18T21:17:37",
"upload_time_iso_8601": "2024-12-18T21:17:37.288842Z",
"url": "https://files.pythonhosted.org/packages/d8/75/0cdf014b816867d86c0bc26f3d3e3f194198dbf33037890beed629cd4f8f/aiohttp-3.11.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "df2f95b8f4e4dfeb57c1d9ad9fa911ede35a0249d75aa339edd2c2270dc539da",
"md5": "b15e3eabe7ebdc5ca1cdc87f789fd9dd",
"sha256": "f047569d655f81cb70ea5be942ee5d4421b6219c3f05d131f64088c73bb0917f"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b15e3eabe7ebdc5ca1cdc87f789fd9dd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1632363,
"upload_time": "2024-12-18T21:17:40",
"upload_time_iso_8601": "2024-12-18T21:17:40.821244Z",
"url": "https://files.pythonhosted.org/packages/df/2f/95b8f4e4dfeb57c1d9ad9fa911ede35a0249d75aa339edd2c2270dc539da/aiohttp-3.11.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "39cb70cf69ea7c50f5b0021a84f4c59c3622b2b3b81695f48a2f0e42ef7eba6e",
"md5": "e271307920c061bb438749bacf7b2277",
"sha256": "dd7659baae9ccf94ae5fe8bfaa2c7bc2e94d24611528395ce88d009107e00c6d"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e271307920c061bb438749bacf7b2277",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1668315,
"upload_time": "2024-12-18T21:17:42",
"upload_time_iso_8601": "2024-12-18T21:17:42.574453Z",
"url": "https://files.pythonhosted.org/packages/39/cb/70cf69ea7c50f5b0021a84f4c59c3622b2b3b81695f48a2f0e42ef7eba6e/aiohttp-3.11.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2fcc3a3fc7a290eabc59839a7e15289cd48f33dd9337d06e301064e1e7fb26c5",
"md5": "d78907acdc9609c98f5c835054a00a7a",
"sha256": "af01e42ad87ae24932138f154105e88da13ce7d202a6de93fafdafb2883a00ef"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d78907acdc9609c98f5c835054a00a7a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1589546,
"upload_time": "2024-12-18T21:17:45",
"upload_time_iso_8601": "2024-12-18T21:17:45.477768Z",
"url": "https://files.pythonhosted.org/packages/2f/cc/3a3fc7a290eabc59839a7e15289cd48f33dd9337d06e301064e1e7fb26c5/aiohttp-3.11.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "15b40f7b0ed41ac6000e283e7332f0f608d734b675a8509763ca78e93714cfb0",
"md5": "461073a564778c42fe675bf7235c181d",
"sha256": "5854be2f3e5a729800bac57a8d76af464e160f19676ab6aea74bde18ad19d438"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "461073a564778c42fe675bf7235c181d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1544581,
"upload_time": "2024-12-18T21:17:48",
"upload_time_iso_8601": "2024-12-18T21:17:48.475098Z",
"url": "https://files.pythonhosted.org/packages/15/b4/0f7b0ed41ac6000e283e7332f0f608d734b675a8509763ca78e93714cfb0/aiohttp-3.11.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "58b94d06470fd85c687b6b0e31935ef73dde6e31767c9576d617309a2206556f",
"md5": "675a1aa822a9d17f0359daf83374a150",
"sha256": "6526e5fb4e14f4bbf30411216780c9967c20c5a55f2f51d3abd6de68320cc2f3"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "675a1aa822a9d17f0359daf83374a150",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1529256,
"upload_time": "2024-12-18T21:17:51",
"upload_time_iso_8601": "2024-12-18T21:17:51.356149Z",
"url": "https://files.pythonhosted.org/packages/58/b9/4d06470fd85c687b6b0e31935ef73dde6e31767c9576d617309a2206556f/aiohttp-3.11.11-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "61a26958b1b880fc017fd35f5dfb2c26a9a50c755b75fd9ae001dc2236a4fb79",
"md5": "164ec676205e90b4632563bb3490ce44",
"sha256": "85992ee30a31835fc482468637b3e5bd085fa8fe9392ba0bdcbdc1ef5e9e3c55"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "164ec676205e90b4632563bb3490ce44",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1536592,
"upload_time": "2024-12-18T21:17:54",
"upload_time_iso_8601": "2024-12-18T21:17:54.164135Z",
"url": "https://files.pythonhosted.org/packages/61/a2/6958b1b880fc017fd35f5dfb2c26a9a50c755b75fd9ae001dc2236a4fb79/aiohttp-3.11.11-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0fddb974012a9551fd654f5bb95a6dd3f03d6e6472a17e1a8216dd42e9638d6c",
"md5": "1160f272080d3d34174789757fe0c18d",
"sha256": "88a12ad8ccf325a8a5ed80e6d7c3bdc247d66175afedbe104ee2aaca72960d8e"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp310-cp310-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "1160f272080d3d34174789757fe0c18d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1607446,
"upload_time": "2024-12-18T21:17:57",
"upload_time_iso_8601": "2024-12-18T21:17:57.109423Z",
"url": "https://files.pythonhosted.org/packages/0f/dd/b974012a9551fd654f5bb95a6dd3f03d6e6472a17e1a8216dd42e9638d6c/aiohttp-3.11.11-cp310-cp310-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e0d36c98fd87e638e51f074a3f2061e81fcb92123bcaf1439ac1b4a896446e40",
"md5": "a3dc8532d0f6bf0b80a256c75ad20edf",
"sha256": "0a6d3fbf2232e3a08c41eca81ae4f1dff3d8f1a30bae415ebe0af2d2458b8a33"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp310-cp310-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "a3dc8532d0f6bf0b80a256c75ad20edf",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1628809,
"upload_time": "2024-12-18T21:17:59",
"upload_time_iso_8601": "2024-12-18T21:17:59.931977Z",
"url": "https://files.pythonhosted.org/packages/e0/d3/6c98fd87e638e51f074a3f2061e81fcb92123bcaf1439ac1b4a896446e40/aiohttp-3.11.11-cp310-cp310-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a82e86e6f85cbca02be042c268c3d93e7f35977a0e127de56e319bdd1569eaa8",
"md5": "4c8134e10fca3f83e252243169265b7d",
"sha256": "84a585799c58b795573c7fa9b84c455adf3e1d72f19a2bf498b54a95ae0d194c"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "4c8134e10fca3f83e252243169265b7d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1564291,
"upload_time": "2024-12-18T21:18:02",
"upload_time_iso_8601": "2024-12-18T21:18:02.828456Z",
"url": "https://files.pythonhosted.org/packages/a8/2e/86e6f85cbca02be042c268c3d93e7f35977a0e127de56e319bdd1569eaa8/aiohttp-3.11.11-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0b8d1f4ef3503b767717f65e1f5178b0173ab03cba1a19997ebf7b052161189f",
"md5": "dacd9ae2ab82807eab1cd2507adefad8",
"sha256": "bfde76a8f430cf5c5584553adf9926534352251d379dcb266ad2b93c54a29745"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "dacd9ae2ab82807eab1cd2507adefad8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 416601,
"upload_time": "2024-12-18T21:18:05",
"upload_time_iso_8601": "2024-12-18T21:18:05.872867Z",
"url": "https://files.pythonhosted.org/packages/0b/8d/1f4ef3503b767717f65e1f5178b0173ab03cba1a19997ebf7b052161189f/aiohttp-3.11.11-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ad8681cb83691b5ace3d9aa148dc42bacc3450d749fc88c5ec1973573c1c1779",
"md5": "6537b6b395465127ab10b7160387ce1d",
"sha256": "0fd82b8e9c383af11d2b26f27a478640b6b83d669440c0a71481f7c865a51da9"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "6537b6b395465127ab10b7160387ce1d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 442007,
"upload_time": "2024-12-18T21:18:07",
"upload_time_iso_8601": "2024-12-18T21:18:07.593238Z",
"url": "https://files.pythonhosted.org/packages/ad/86/81cb83691b5ace3d9aa148dc42bacc3450d749fc88c5ec1973573c1c1779/aiohttp-3.11.11-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "34aee8806a9f054e15f1d18b04db75c23ec38ec954a10c0a68d3bd275d7e8be3",
"md5": "98670e6e272efc9e4afaf953a058b605",
"sha256": "ba74ec819177af1ef7f59063c6d35a214a8fde6f987f7661f4f0eecc468a8f76"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "98670e6e272efc9e4afaf953a058b605",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 708624,
"upload_time": "2024-12-18T21:18:10",
"upload_time_iso_8601": "2024-12-18T21:18:10.575615Z",
"url": "https://files.pythonhosted.org/packages/34/ae/e8806a9f054e15f1d18b04db75c23ec38ec954a10c0a68d3bd275d7e8be3/aiohttp-3.11.11-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c7e0313ef1a333fb4d58d0c55a6acb3cd772f5d7756604b455181049e222c020",
"md5": "b1b57577b048943ba1d79e2922623fc0",
"sha256": "4af57160800b7a815f3fe0eba9b46bf28aafc195555f1824555fa2cfab6c1538"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "b1b57577b048943ba1d79e2922623fc0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 468507,
"upload_time": "2024-12-18T21:18:12",
"upload_time_iso_8601": "2024-12-18T21:18:12.224818Z",
"url": "https://files.pythonhosted.org/packages/c7/e0/313ef1a333fb4d58d0c55a6acb3cd772f5d7756604b455181049e222c020/aiohttp-3.11.11-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a96003455476bf1f467e5b4a32a465c450548b2ce724eec39d69f737191f936a",
"md5": "cb0f9907c8e3555f83cb45c169bf1ebf",
"sha256": "ffa336210cf9cd8ed117011085817d00abe4c08f99968deef0013ea283547204"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "cb0f9907c8e3555f83cb45c169bf1ebf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 455571,
"upload_time": "2024-12-18T21:18:15",
"upload_time_iso_8601": "2024-12-18T21:18:15.506309Z",
"url": "https://files.pythonhosted.org/packages/a9/60/03455476bf1f467e5b4a32a465c450548b2ce724eec39d69f737191f936a/aiohttp-3.11.11-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bef9469588603bd75bf02c8ffb8c8a0d4b217eed446b49d4a767684685aa33fd",
"md5": "c58ff52736d72407ee08559d15f7b333",
"sha256": "81b8fe282183e4a3c7a1b72f5ade1094ed1c6345a8f153506d114af5bf8accd9"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c58ff52736d72407ee08559d15f7b333",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1685694,
"upload_time": "2024-12-18T21:18:17",
"upload_time_iso_8601": "2024-12-18T21:18:17.512976Z",
"url": "https://files.pythonhosted.org/packages/be/f9/469588603bd75bf02c8ffb8c8a0d4b217eed446b49d4a767684685aa33fd/aiohttp-3.11.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "88b91b7fa43faf6c8616fa94c568dc1309ffee2b6b68b04ac268e5d64b738688",
"md5": "d0c36d4e09e5969f63b2c0ce9bb6c653",
"sha256": "3af41686ccec6a0f2bdc66686dc0f403c41ac2089f80e2214a0f82d001052c03"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "d0c36d4e09e5969f63b2c0ce9bb6c653",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1743660,
"upload_time": "2024-12-18T21:18:20",
"upload_time_iso_8601": "2024-12-18T21:18:20.878135Z",
"url": "https://files.pythonhosted.org/packages/88/b9/1b7fa43faf6c8616fa94c568dc1309ffee2b6b68b04ac268e5d64b738688/aiohttp-3.11.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2a8b0248d19dbb16b67222e75f6aecedd014656225733157e5afaf6a6a07e2e8",
"md5": "5ea3182f5af0098b672ab0687d7f5dc7",
"sha256": "70d1f9dde0e5dd9e292a6d4d00058737052b01f3532f69c0c65818dac26dc287"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "5ea3182f5af0098b672ab0687d7f5dc7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1785421,
"upload_time": "2024-12-18T21:18:22",
"upload_time_iso_8601": "2024-12-18T21:18:22.948734Z",
"url": "https://files.pythonhosted.org/packages/2a/8b/0248d19dbb16b67222e75f6aecedd014656225733157e5afaf6a6a07e2e8/aiohttp-3.11.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c411f478e071815a46ca0a5ae974651ff0c7a35898c55063305a896e58aa1247",
"md5": "1edf5c3bf26ffd65acf87b90d5cca9ee",
"sha256": "249cc6912405917344192b9f9ea5cd5b139d49e0d2f5c7f70bdfaf6b4dbf3a2e"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1edf5c3bf26ffd65acf87b90d5cca9ee",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1675145,
"upload_time": "2024-12-18T21:18:24",
"upload_time_iso_8601": "2024-12-18T21:18:24.788209Z",
"url": "https://files.pythonhosted.org/packages/c4/11/f478e071815a46ca0a5ae974651ff0c7a35898c55063305a896e58aa1247/aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "265d284d182fecbb5075ae10153ff7374f57314c93a8681666600e3a9e09c505",
"md5": "a3befc2e32b50eb29c50f613147496ae",
"sha256": "0eb98d90b6690827dcc84c246811feeb4e1eea683c0eac6caed7549be9c84665"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "a3befc2e32b50eb29c50f613147496ae",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1619804,
"upload_time": "2024-12-18T21:18:26",
"upload_time_iso_8601": "2024-12-18T21:18:26.602951Z",
"url": "https://files.pythonhosted.org/packages/26/5d/284d182fecbb5075ae10153ff7374f57314c93a8681666600e3a9e09c505/aiohttp-3.11.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1b78980064c2ad685c64ce0e8aeeb7ef1e53f43c5b005edcd7d32e60809c4992",
"md5": "c823c0e1e99016b619f2bf45e99411db",
"sha256": "ec82bf1fda6cecce7f7b915f9196601a1bd1a3079796b76d16ae4cce6d0ef89b"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "c823c0e1e99016b619f2bf45e99411db",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1654007,
"upload_time": "2024-12-18T21:18:29",
"upload_time_iso_8601": "2024-12-18T21:18:29.669945Z",
"url": "https://files.pythonhosted.org/packages/1b/78/980064c2ad685c64ce0e8aeeb7ef1e53f43c5b005edcd7d32e60809c4992/aiohttp-3.11.11-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "218d9e658d63b1438ad42b96f94da227f2e2c1d5c6001c9e8ffcc0bfb22e9105",
"md5": "05346ee6048d38cfe21c691cbe833f85",
"sha256": "9fd46ce0845cfe28f108888b3ab17abff84ff695e01e73657eec3f96d72eef34"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "05346ee6048d38cfe21c691cbe833f85",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1650022,
"upload_time": "2024-12-18T21:18:33",
"upload_time_iso_8601": "2024-12-18T21:18:33.249833Z",
"url": "https://files.pythonhosted.org/packages/21/8d/9e658d63b1438ad42b96f94da227f2e2c1d5c6001c9e8ffcc0bfb22e9105/aiohttp-3.11.11-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "85fda032bf7f2755c2df4f87f9effa34ccc1ef5cea465377dbaeef93bb56bbd6",
"md5": "d02367d677bb9f8915da4d56f2a4980e",
"sha256": "bd176afcf8f5d2aed50c3647d4925d0db0579d96f75a31e77cbaf67d8a87742d"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp311-cp311-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "d02367d677bb9f8915da4d56f2a4980e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1732899,
"upload_time": "2024-12-18T21:18:35",
"upload_time_iso_8601": "2024-12-18T21:18:35.225260Z",
"url": "https://files.pythonhosted.org/packages/85/fd/a032bf7f2755c2df4f87f9effa34ccc1ef5cea465377dbaeef93bb56bbd6/aiohttp-3.11.11-cp311-cp311-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c50cc2b85fde167dd440c7ba50af2aac20b5a5666392b174df54c00f888c5a75",
"md5": "16efd6818a7e0e24210aca8df742d52f",
"sha256": "ec2aa89305006fba9ffb98970db6c8221541be7bee4c1d027421d6f6df7d1ce2"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp311-cp311-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "16efd6818a7e0e24210aca8df742d52f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1755142,
"upload_time": "2024-12-18T21:18:37",
"upload_time_iso_8601": "2024-12-18T21:18:37.480861Z",
"url": "https://files.pythonhosted.org/packages/c5/0c/c2b85fde167dd440c7ba50af2aac20b5a5666392b174df54c00f888c5a75/aiohttp-3.11.11-cp311-cp311-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bc7891ae1a3b3b3bed8b893c5d69c07023e151b1c95d79544ad04cf68f596c2f",
"md5": "9dea04f5a934913d9eca31d7f53785a0",
"sha256": "92cde43018a2e17d48bb09c79e4d4cb0e236de5063ce897a5e40ac7cb4878773"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "9dea04f5a934913d9eca31d7f53785a0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1692736,
"upload_time": "2024-12-18T21:18:40",
"upload_time_iso_8601": "2024-12-18T21:18:40.967098Z",
"url": "https://files.pythonhosted.org/packages/bc/78/91ae1a3b3b3bed8b893c5d69c07023e151b1c95d79544ad04cf68f596c2f/aiohttp-3.11.11-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7789a7ef9c4b4cdb546fcc650ca7f7395aaffbd267f0e1f648a436bec33c9b95",
"md5": "ceb560f33e5af1cf17ae85024f1f0866",
"sha256": "aba807f9569455cba566882c8938f1a549f205ee43c27b126e5450dc9f83cc62"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "ceb560f33e5af1cf17ae85024f1f0866",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 416418,
"upload_time": "2024-12-18T21:18:44",
"upload_time_iso_8601": "2024-12-18T21:18:44.281055Z",
"url": "https://files.pythonhosted.org/packages/77/89/a7ef9c4b4cdb546fcc650ca7f7395aaffbd267f0e1f648a436bec33c9b95/aiohttp-3.11.11-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fcdb2192489a8a51b52e06627506f8ac8df69ee221de88ab9bdea77aa793aa6a",
"md5": "9e46dea3f1d4f951aae085ffd66bcc05",
"sha256": "ae545f31489548c87b0cced5755cfe5a5308d00407000e72c4fa30b19c3220ac"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "9e46dea3f1d4f951aae085ffd66bcc05",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 442509,
"upload_time": "2024-12-18T21:18:47",
"upload_time_iso_8601": "2024-12-18T21:18:47.323204Z",
"url": "https://files.pythonhosted.org/packages/fc/db/2192489a8a51b52e06627506f8ac8df69ee221de88ab9bdea77aa793aa6a/aiohttp-3.11.11-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "69cf4bda538c502f9738d6b95ada11603c05ec260807246e15e869fc3ec5de97",
"md5": "a5945567e320a0179b529a7c3011b14a",
"sha256": "e595c591a48bbc295ebf47cb91aebf9bd32f3ff76749ecf282ea7f9f6bb73886"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp312-cp312-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "a5945567e320a0179b529a7c3011b14a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 704666,
"upload_time": "2024-12-18T21:18:49",
"upload_time_iso_8601": "2024-12-18T21:18:49.254800Z",
"url": "https://files.pythonhosted.org/packages/69/cf/4bda538c502f9738d6b95ada11603c05ec260807246e15e869fc3ec5de97/aiohttp-3.11.11-cp312-cp312-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "467b87fcef2cad2fad420ca77bef981e815df6904047d0a1bd6aeded1b0d1d66",
"md5": "bce4141e4c6a2d3c39ed6352016d8b49",
"sha256": "3ea1b59dc06396b0b424740a10a0a63974c725b1c64736ff788a3689d36c02d2"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "bce4141e4c6a2d3c39ed6352016d8b49",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 464057,
"upload_time": "2024-12-18T21:18:51",
"upload_time_iso_8601": "2024-12-18T21:18:51.375036Z",
"url": "https://files.pythonhosted.org/packages/46/7b/87fcef2cad2fad420ca77bef981e815df6904047d0a1bd6aeded1b0d1d66/aiohttp-3.11.11-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5aa6789e1f17a1b6f4a38939fbc39d29e1d960d5f89f73d0629a939410171bc0",
"md5": "cb140ed183e27b97f71da3c83e2ac9b1",
"sha256": "8811f3f098a78ffa16e0ea36dffd577eb031aea797cbdba81be039a4169e242c"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "cb140ed183e27b97f71da3c83e2ac9b1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 455996,
"upload_time": "2024-12-18T21:18:53",
"upload_time_iso_8601": "2024-12-18T21:18:53.110047Z",
"url": "https://files.pythonhosted.org/packages/5a/a6/789e1f17a1b6f4a38939fbc39d29e1d960d5f89f73d0629a939410171bc0/aiohttp-3.11.11-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b7dd485061fbfef33165ce7320db36e530cd7116ee1098e9c3774d15a732b3fd",
"md5": "dca2331b9c46179b53413e94875795ff",
"sha256": "bd7227b87a355ce1f4bf83bfae4399b1f5bb42e0259cb9405824bd03d2f4336a"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "dca2331b9c46179b53413e94875795ff",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1682367,
"upload_time": "2024-12-18T21:18:55",
"upload_time_iso_8601": "2024-12-18T21:18:55.053573Z",
"url": "https://files.pythonhosted.org/packages/b7/dd/485061fbfef33165ce7320db36e530cd7116ee1098e9c3774d15a732b3fd/aiohttp-3.11.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e9d79ec5b3ea9ae215c311d88b2093e8da17e67b8856673e4166c994e117ee3e",
"md5": "cc6207cc01e6655f994108df1d69c976",
"sha256": "d40f9da8cabbf295d3a9dae1295c69975b86d941bc20f0a087f0477fa0a66231"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "cc6207cc01e6655f994108df1d69c976",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1736989,
"upload_time": "2024-12-18T21:18:56",
"upload_time_iso_8601": "2024-12-18T21:18:56.933393Z",
"url": "https://files.pythonhosted.org/packages/e9/d7/9ec5b3ea9ae215c311d88b2093e8da17e67b8856673e4166c994e117ee3e/aiohttp-3.11.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d6fbea94927f7bfe1d86178c9d3e0a8c54f651a0a655214cce930b3c679b8f64",
"md5": "89466373cd12c65d2934d217947f90bf",
"sha256": "ffb3dc385f6bb1568aa974fe65da84723210e5d9707e360e9ecb51f59406cd2e"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "89466373cd12c65d2934d217947f90bf",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1793265,
"upload_time": "2024-12-18T21:19:00",
"upload_time_iso_8601": "2024-12-18T21:19:00.174014Z",
"url": "https://files.pythonhosted.org/packages/d6/fb/ea94927f7bfe1d86178c9d3e0a8c54f651a0a655214cce930b3c679b8f64/aiohttp-3.11.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "407f6de218084f9b653026bd7063cd8045123a7ba90c25176465f266976d8c82",
"md5": "68cb9e2e7d9093d27ef5bab666c85068",
"sha256": "a8f5f7515f3552d899c61202d99dcb17d6e3b0de777900405611cd747cecd1b8"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "68cb9e2e7d9093d27ef5bab666c85068",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1691841,
"upload_time": "2024-12-18T21:19:02",
"upload_time_iso_8601": "2024-12-18T21:19:02.300032Z",
"url": "https://files.pythonhosted.org/packages/40/7f/6de218084f9b653026bd7063cd8045123a7ba90c25176465f266976d8c82/aiohttp-3.11.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "77e2992f43d87831cbddb6b09c57ab55499332f60ad6fdbf438ff4419c2925fc",
"md5": "1757638efeab42f45a2e21958e37acfb",
"sha256": "3499c7ffbfd9c6a3d8d6a2b01c26639da7e43d47c7b4f788016226b1e711caa8"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "1757638efeab42f45a2e21958e37acfb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1619317,
"upload_time": "2024-12-18T21:19:04",
"upload_time_iso_8601": "2024-12-18T21:19:04.330915Z",
"url": "https://files.pythonhosted.org/packages/77/e2/992f43d87831cbddb6b09c57ab55499332f60ad6fdbf438ff4419c2925fc/aiohttp-3.11.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9674879b23cdd816db4133325a201287c95bef4ce669acde37f8f1b8669e1755",
"md5": "ba45425518eb5024fb42ddbf9f41abd9",
"sha256": "8e2bf8029dbf0810c7bfbc3e594b51c4cc9101fbffb583a3923aea184724203c"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ba45425518eb5024fb42ddbf9f41abd9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1641416,
"upload_time": "2024-12-18T21:19:09",
"upload_time_iso_8601": "2024-12-18T21:19:09.842563Z",
"url": "https://files.pythonhosted.org/packages/96/74/879b23cdd816db4133325a201287c95bef4ce669acde37f8f1b8669e1755/aiohttp-3.11.11-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3098b123f6b15d87c54e58fd7ae3558ff594f898d7f30a90899718f3215ad328",
"md5": "7d096beaef004777c8458c88ffb8ec6a",
"sha256": "b6212a60e5c482ef90f2d788835387070a88d52cf6241d3916733c9176d39eab"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "7d096beaef004777c8458c88ffb8ec6a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1646514,
"upload_time": "2024-12-18T21:19:12",
"upload_time_iso_8601": "2024-12-18T21:19:12.154799Z",
"url": "https://files.pythonhosted.org/packages/30/98/b123f6b15d87c54e58fd7ae3558ff594f898d7f30a90899718f3215ad328/aiohttp-3.11.11-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d738257fda3dc99d6978ab943141d5165ec74fd4b4164baa15e9c66fa21da86b",
"md5": "768ba9f034056f4ec12a53ff90a646aa",
"sha256": "d119fafe7b634dbfa25a8c597718e69a930e4847f0b88e172744be24515140da"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp312-cp312-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "768ba9f034056f4ec12a53ff90a646aa",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1702095,
"upload_time": "2024-12-18T21:19:15",
"upload_time_iso_8601": "2024-12-18T21:19:15.510879Z",
"url": "https://files.pythonhosted.org/packages/d7/38/257fda3dc99d6978ab943141d5165ec74fd4b4164baa15e9c66fa21da86b/aiohttp-3.11.11-cp312-cp312-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0cf4ddab089053f9fb96654df5505c0a69bde093214b3c3454f6bfdb1845f558",
"md5": "a1eebabf09e63ebd4d1e6362ee00e1c3",
"sha256": "6fba278063559acc730abf49845d0e9a9e1ba74f85f0ee6efd5803f08b285853"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp312-cp312-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "a1eebabf09e63ebd4d1e6362ee00e1c3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1734611,
"upload_time": "2024-12-18T21:19:18",
"upload_time_iso_8601": "2024-12-18T21:19:18.849534Z",
"url": "https://files.pythonhosted.org/packages/0c/f4/ddab089053f9fb96654df5505c0a69bde093214b3c3454f6bfdb1845f558/aiohttp-3.11.11-cp312-cp312-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c3d6f30b2bc520c38c8aa4657ed953186e535ae84abe55c08d0f70acd72ff577",
"md5": "ec4bc372767c366a282e7afa14d6b63b",
"sha256": "92fc484e34b733704ad77210c7957679c5c3877bd1e6b6d74b185e9320cc716e"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "ec4bc372767c366a282e7afa14d6b63b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1694576,
"upload_time": "2024-12-18T21:19:21",
"upload_time_iso_8601": "2024-12-18T21:19:21.257447Z",
"url": "https://files.pythonhosted.org/packages/c3/d6/f30b2bc520c38c8aa4657ed953186e535ae84abe55c08d0f70acd72ff577/aiohttp-3.11.11-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bc97b0a88c3f4c6d0020b34045ee6d954058abc870814f6e310c4c9b74254116",
"md5": "ee0060822f86ce7adf1f16304f740672",
"sha256": "9f5b3c1ed63c8fa937a920b6c1bec78b74ee09593b3f5b979ab2ae5ef60d7600"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "ee0060822f86ce7adf1f16304f740672",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 411363,
"upload_time": "2024-12-18T21:19:23",
"upload_time_iso_8601": "2024-12-18T21:19:23.122367Z",
"url": "https://files.pythonhosted.org/packages/bc/97/b0a88c3f4c6d0020b34045ee6d954058abc870814f6e310c4c9b74254116/aiohttp-3.11.11-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7f23cc36d9c398980acaeeb443100f0216f50a7cfe20c67a9fd0a2f1a5a846de",
"md5": "3925d10cd878a30d28d3251f6e80efc6",
"sha256": "1e69966ea6ef0c14ee53ef7a3d68b564cc408121ea56c0caa2dc918c1b2f553d"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "3925d10cd878a30d28d3251f6e80efc6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 437666,
"upload_time": "2024-12-18T21:19:26",
"upload_time_iso_8601": "2024-12-18T21:19:26.425540Z",
"url": "https://files.pythonhosted.org/packages/7f/23/cc36d9c398980acaeeb443100f0216f50a7cfe20c67a9fd0a2f1a5a846de/aiohttp-3.11.11-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "49d1d8af164f400bad432b63e1ac857d74a09311a8334b0481f2f64b158b50eb",
"md5": "97012c845354f90fc40a3c4e32229129",
"sha256": "541d823548ab69d13d23730a06f97460f4238ad2e5ed966aaf850d7c369782d9"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp313-cp313-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "97012c845354f90fc40a3c4e32229129",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 697982,
"upload_time": "2024-12-18T21:19:28",
"upload_time_iso_8601": "2024-12-18T21:19:28.454793Z",
"url": "https://files.pythonhosted.org/packages/49/d1/d8af164f400bad432b63e1ac857d74a09311a8334b0481f2f64b158b50eb/aiohttp-3.11.11-cp313-cp313-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "92d1faad3bf9fa4bfd26b95c69fc2e98937d52b1ff44f7e28131855a98d23a17",
"md5": "82461c277f72f530d58faf1a94b1aa05",
"sha256": "929f3ed33743a49ab127c58c3e0a827de0664bfcda566108989a14068f820194"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "82461c277f72f530d58faf1a94b1aa05",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 460662,
"upload_time": "2024-12-18T21:19:31",
"upload_time_iso_8601": "2024-12-18T21:19:31.077915Z",
"url": "https://files.pythonhosted.org/packages/92/d1/faad3bf9fa4bfd26b95c69fc2e98937d52b1ff44f7e28131855a98d23a17/aiohttp-3.11.11-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "db610d71cc66d63909dabc4590f74eba71f91873a77ea52424401c2498d47536",
"md5": "a68eefbeb2e199f2cbf68f0ffdc13ab4",
"sha256": "0882c2820fd0132240edbb4a51eb8ceb6eef8181db9ad5291ab3332e0d71df5f"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a68eefbeb2e199f2cbf68f0ffdc13ab4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 452950,
"upload_time": "2024-12-18T21:19:33",
"upload_time_iso_8601": "2024-12-18T21:19:33.108227Z",
"url": "https://files.pythonhosted.org/packages/db/61/0d71cc66d63909dabc4590f74eba71f91873a77ea52424401c2498d47536/aiohttp-3.11.11-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "07db6d04bc7fd92784900704e16b745484ef45b77bd04e25f58f6febaadf7983",
"md5": "9512b4ff8d1041d2fd2c52d945ab75a0",
"sha256": "b63de12e44935d5aca7ed7ed98a255a11e5cb47f83a9fded7a5e41c40277d104"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9512b4ff8d1041d2fd2c52d945ab75a0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1665178,
"upload_time": "2024-12-18T21:19:36",
"upload_time_iso_8601": "2024-12-18T21:19:36.556357Z",
"url": "https://files.pythonhosted.org/packages/07/db/6d04bc7fd92784900704e16b745484ef45b77bd04e25f58f6febaadf7983/aiohttp-3.11.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "545ce95ade9ae29f375411884d9fd98e50535bf9fe316c9feb0f30cd2ac8f508",
"md5": "38ca4b9285b53fe7afefae165468787c",
"sha256": "aa54f8ef31d23c506910c21163f22b124facb573bff73930735cf9fe38bf7dff"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "38ca4b9285b53fe7afefae165468787c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1717939,
"upload_time": "2024-12-18T21:19:40",
"upload_time_iso_8601": "2024-12-18T21:19:40.081011Z",
"url": "https://files.pythonhosted.org/packages/54/5c/e95ade9ae29f375411884d9fd98e50535bf9fe316c9feb0f30cd2ac8f508/aiohttp-3.11.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6f1c1e7d5c5daea9e409ed70f7986001b8c9e3a49a50b28404498d30860edab6",
"md5": "93e62c0cd86a1cac0aa6c2597fab92ff",
"sha256": "a344d5dc18074e3872777b62f5f7d584ae4344cd6006c17ba12103759d407af3"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "93e62c0cd86a1cac0aa6c2597fab92ff",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1775125,
"upload_time": "2024-12-18T21:19:43",
"upload_time_iso_8601": "2024-12-18T21:19:43.578853Z",
"url": "https://files.pythonhosted.org/packages/6f/1c/1e7d5c5daea9e409ed70f7986001b8c9e3a49a50b28404498d30860edab6/aiohttp-3.11.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5d66890987e44f7d2f33a130e37e01a164168e6aff06fce15217b6eaf14df4f6",
"md5": "b2421a8885b25ab9b63d9902857cf70e",
"sha256": "0b7fb429ab1aafa1f48578eb315ca45bd46e9c37de11fe45c7f5f4138091e2f1"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b2421a8885b25ab9b63d9902857cf70e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1677176,
"upload_time": "2024-12-18T21:19:46",
"upload_time_iso_8601": "2024-12-18T21:19:46.239252Z",
"url": "https://files.pythonhosted.org/packages/5d/66/890987e44f7d2f33a130e37e01a164168e6aff06fce15217b6eaf14df4f6/aiohttp-3.11.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8fdce2ba57d7a52df6cdf1072fd5fa9c6301a68e1cd67415f189805d3eeb031d",
"md5": "048add7cd91e8a9a4c59aac063cf0e13",
"sha256": "c341c7d868750e31961d6d8e60ff040fb9d3d3a46d77fd85e1ab8e76c3e9a5c4"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "048add7cd91e8a9a4c59aac063cf0e13",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1603192,
"upload_time": "2024-12-18T21:19:48",
"upload_time_iso_8601": "2024-12-18T21:19:48.341979Z",
"url": "https://files.pythonhosted.org/packages/8f/dc/e2ba57d7a52df6cdf1072fd5fa9c6301a68e1cd67415f189805d3eeb031d/aiohttp-3.11.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6c9e8d08a57de79ca3a358da449405555e668f2c8871a7777ecd2f0e3912c272",
"md5": "0f42307a7786c79d52daae3653be98cb",
"sha256": "ed9ee95614a71e87f1a70bc81603f6c6760128b140bc4030abe6abaa988f1c3d"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "0f42307a7786c79d52daae3653be98cb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1618296,
"upload_time": "2024-12-18T21:19:50",
"upload_time_iso_8601": "2024-12-18T21:19:50.479746Z",
"url": "https://files.pythonhosted.org/packages/6c/9e/8d08a57de79ca3a358da449405555e668f2c8871a7777ecd2f0e3912c272/aiohttp-3.11.11-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "565189822e3ec72db352c32e7fc1c690370e24e231837d9abd056490f3a49886",
"md5": "7c6c75362e1e164a200505471ffaf817",
"sha256": "de8d38f1c2810fa2a4f1d995a2e9c70bb8737b18da04ac2afbf3971f65781d87"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "7c6c75362e1e164a200505471ffaf817",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1616524,
"upload_time": "2024-12-18T21:19:52",
"upload_time_iso_8601": "2024-12-18T21:19:52.542795Z",
"url": "https://files.pythonhosted.org/packages/56/51/89822e3ec72db352c32e7fc1c690370e24e231837d9abd056490f3a49886/aiohttp-3.11.11-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2cfae2e6d9398f462ffaa095e84717c1732916a57f1814502929ed67dd7568ef",
"md5": "960627ec0d5a2fa4b83307f78e8c65e9",
"sha256": "a9b7371665d4f00deb8f32208c7c5e652059b0fda41cf6dbcac6114a041f1cc2"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp313-cp313-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "960627ec0d5a2fa4b83307f78e8c65e9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1685471,
"upload_time": "2024-12-18T21:19:54",
"upload_time_iso_8601": "2024-12-18T21:19:54.683007Z",
"url": "https://files.pythonhosted.org/packages/2c/fa/e2e6d9398f462ffaa095e84717c1732916a57f1814502929ed67dd7568ef/aiohttp-3.11.11-cp313-cp313-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ae5f6bb976e619ca28a052e2c0ca7b0251ccd893f93d7c24a96abea38e332bf6",
"md5": "266b756823aef3b7885085cc9538e02e",
"sha256": "620598717fce1b3bd14dd09947ea53e1ad510317c85dda2c9c65b622edc96b12"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp313-cp313-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "266b756823aef3b7885085cc9538e02e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1715312,
"upload_time": "2024-12-18T21:19:56",
"upload_time_iso_8601": "2024-12-18T21:19:56.824911Z",
"url": "https://files.pythonhosted.org/packages/ae/5f/6bb976e619ca28a052e2c0ca7b0251ccd893f93d7c24a96abea38e332bf6/aiohttp-3.11.11-cp313-cp313-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "79c1756a7e65aa087c7fac724d6c4c038f2faaa2a42fe56dbc1dd62a33ca7213",
"md5": "9cb8e9e938c52307c742c2b4bca3bd4a",
"sha256": "bf8d9bfee991d8acc72d060d53860f356e07a50f0e0d09a8dfedea1c554dd0d5"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "9cb8e9e938c52307c742c2b4bca3bd4a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1672783,
"upload_time": "2024-12-18T21:19:59",
"upload_time_iso_8601": "2024-12-18T21:19:59.314224Z",
"url": "https://files.pythonhosted.org/packages/79/c1/756a7e65aa087c7fac724d6c4c038f2faaa2a42fe56dbc1dd62a33ca7213/aiohttp-3.11.11-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "73baa6190ebb02176c7f75e6308da31f5d49f6477b651a3dcfaaaca865a298e2",
"md5": "a7ebbd10a56ba7c7d4e87130260dec03",
"sha256": "9d73ee3725b7a737ad86c2eac5c57a4a97793d9f442599bea5ec67ac9f4bdc3d"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "a7ebbd10a56ba7c7d4e87130260dec03",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 410229,
"upload_time": "2024-12-18T21:20:02",
"upload_time_iso_8601": "2024-12-18T21:20:02.469294Z",
"url": "https://files.pythonhosted.org/packages/73/ba/a6190ebb02176c7f75e6308da31f5d49f6477b651a3dcfaaaca865a298e2/aiohttp-3.11.11-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b862c9fa5bafe03186a0e4699150a7fed9b1e73240996d0d2f0e5f70f3fdf471",
"md5": "4bade7a1c92f47f6d9c6db4a3726bca4",
"sha256": "c7a06301c2fb096bdb0bd25fe2011531c1453b9f2c163c8031600ec73af1cc99"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "4bade7a1c92f47f6d9c6db4a3726bca4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 436081,
"upload_time": "2024-12-18T21:20:04",
"upload_time_iso_8601": "2024-12-18T21:20:04.557845Z",
"url": "https://files.pythonhosted.org/packages/b8/62/c9fa5bafe03186a0e4699150a7fed9b1e73240996d0d2f0e5f70f3fdf471/aiohttp-3.11.11-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9f37326ee86b7640be6ca4493c8121cb9a4386e07cf1e5757ce6b7fa854d0a5f",
"md5": "87923824d27821f49b0ba51de460c448",
"sha256": "3e23419d832d969f659c208557de4a123e30a10d26e1e14b73431d3c13444c2e"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "87923824d27821f49b0ba51de460c448",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 709424,
"upload_time": "2024-12-18T21:20:07",
"upload_time_iso_8601": "2024-12-18T21:20:07.104260Z",
"url": "https://files.pythonhosted.org/packages/9f/37/326ee86b7640be6ca4493c8121cb9a4386e07cf1e5757ce6b7fa854d0a5f/aiohttp-3.11.11-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9cc5a88ec2160b06c22e57e483a1f78f99f005fcd4e7d6855a2d3d6510881b65",
"md5": "6ad99dc634b67627dd91eeeb9f20bc0f",
"sha256": "21fef42317cf02e05d3b09c028712e1d73a9606f02467fd803f7c1f39cc59add"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "6ad99dc634b67627dd91eeeb9f20bc0f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 468907,
"upload_time": "2024-12-18T21:20:09",
"upload_time_iso_8601": "2024-12-18T21:20:09.749672Z",
"url": "https://files.pythonhosted.org/packages/9c/c5/a88ec2160b06c22e57e483a1f78f99f005fcd4e7d6855a2d3d6510881b65/aiohttp-3.11.11-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b2f002f03f818e91996161cce200241b631bb2b4a87e61acddb5b974e254a288",
"md5": "685893b9f229f6a1c692d91214623722",
"sha256": "1f21bb8d0235fc10c09ce1d11ffbd40fc50d3f08a89e4cf3a0c503dc2562247a"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "685893b9f229f6a1c692d91214623722",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 455981,
"upload_time": "2024-12-18T21:20:11",
"upload_time_iso_8601": "2024-12-18T21:20:11.729844Z",
"url": "https://files.pythonhosted.org/packages/b2/f0/02f03f818e91996161cce200241b631bb2b4a87e61acddb5b974e254a288/aiohttp-3.11.11-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0e17c8be12436ec19915f67b1ab8240d4105aba0f7e0894a1f0d8939c3e79c70",
"md5": "5d5cc0a664e47ec547593a90eee16652",
"sha256": "1642eceeaa5ab6c9b6dfeaaa626ae314d808188ab23ae196a34c9d97efb68350"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5d5cc0a664e47ec547593a90eee16652",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1587395,
"upload_time": "2024-12-18T21:20:14",
"upload_time_iso_8601": "2024-12-18T21:20:14.212035Z",
"url": "https://files.pythonhosted.org/packages/0e/17/c8be12436ec19915f67b1ab8240d4105aba0f7e0894a1f0d8939c3e79c70/aiohttp-3.11.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "43c0f4db1ac30ebe855b2fefd6fa98767862d88ac54ab08a6ad07d619146270c",
"md5": "c1f75ed3e91fa7eda442620df136ec9a",
"sha256": "2170816e34e10f2fd120f603e951630f8a112e1be3b60963a1f159f5699059a6"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "c1f75ed3e91fa7eda442620df136ec9a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1636243,
"upload_time": "2024-12-18T21:20:17",
"upload_time_iso_8601": "2024-12-18T21:20:17.692474Z",
"url": "https://files.pythonhosted.org/packages/43/c0/f4db1ac30ebe855b2fefd6fa98767862d88ac54ab08a6ad07d619146270c/aiohttp-3.11.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eaa79acf20e9a09b0d38b5b55691410500d051a9f4194692cac22b0d0fc92ad9",
"md5": "6f0e4eb103086f6f4e12b3f25e8e4006",
"sha256": "8be8508d110d93061197fd2d6a74f7401f73b6d12f8822bbcd6d74f2b55d71b1"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "6f0e4eb103086f6f4e12b3f25e8e4006",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1672323,
"upload_time": "2024-12-18T21:20:21",
"upload_time_iso_8601": "2024-12-18T21:20:21.365370Z",
"url": "https://files.pythonhosted.org/packages/ea/a7/9acf20e9a09b0d38b5b55691410500d051a9f4194692cac22b0d0fc92ad9/aiohttp-3.11.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f75ba27e8fe1a3b0e245ca80863eefd83fc00136752d27d2cf1afa0130a76f34",
"md5": "466cebaeb7b854b191021b54ebc13d15",
"sha256": "4eed954b161e6b9b65f6be446ed448ed3921763cc432053ceb606f89d793927e"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "466cebaeb7b854b191021b54ebc13d15",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1589521,
"upload_time": "2024-12-18T21:20:23",
"upload_time_iso_8601": "2024-12-18T21:20:23.469816Z",
"url": "https://files.pythonhosted.org/packages/f7/5b/a27e8fe1a3b0e245ca80863eefd83fc00136752d27d2cf1afa0130a76f34/aiohttp-3.11.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "25508bccd08004e15906791b46f0a908a8e7f5e0c5882b17da96d1933bd34ac0",
"md5": "ac1de09eb6e7d3175d8603f17c0b3f28",
"sha256": "d6c9af134da4bc9b3bd3e6a70072509f295d10ee60c697826225b60b9959acdd"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ac1de09eb6e7d3175d8603f17c0b3f28",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1544059,
"upload_time": "2024-12-18T21:20:27",
"upload_time_iso_8601": "2024-12-18T21:20:27.012773Z",
"url": "https://files.pythonhosted.org/packages/25/50/8bccd08004e15906791b46f0a908a8e7f5e0c5882b17da96d1933bd34ac0/aiohttp-3.11.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "845a42250b37b06ee0cb7a03dd1630243b1d739ca3edb5abd8b18f479a539900",
"md5": "fbf469a16db27f1b99ac04a0a384f3ac",
"sha256": "44167fc6a763d534a6908bdb2592269b4bf30a03239bcb1654781adf5e49caf1"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "fbf469a16db27f1b99ac04a0a384f3ac",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1530217,
"upload_time": "2024-12-18T21:20:29",
"upload_time_iso_8601": "2024-12-18T21:20:29.210454Z",
"url": "https://files.pythonhosted.org/packages/84/5a/42250b37b06ee0cb7a03dd1630243b1d739ca3edb5abd8b18f479a539900/aiohttp-3.11.11-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1808eb334da86cd2cdbd0621bb7039255b19ca74ce8b05e8fb61850e2589938c",
"md5": "88cdedd955a0d3671cd5c4cd3d1c8927",
"sha256": "479b8c6ebd12aedfe64563b85920525d05d394b85f166b7873c8bde6da612f9c"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "88cdedd955a0d3671cd5c4cd3d1c8927",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1536081,
"upload_time": "2024-12-18T21:20:31",
"upload_time_iso_8601": "2024-12-18T21:20:31.492625Z",
"url": "https://files.pythonhosted.org/packages/18/08/eb334da86cd2cdbd0621bb7039255b19ca74ce8b05e8fb61850e2589938c/aiohttp-3.11.11-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1aa99d59958084d5bad7e77a44841013bd59768cda94f9f744769461b66038fc",
"md5": "547cee2ca28b2cfa6dabe80a183cc5a5",
"sha256": "10b4ff0ad793d98605958089fabfa350e8e62bd5d40aa65cdc69d6785859f94e"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp39-cp39-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "547cee2ca28b2cfa6dabe80a183cc5a5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1606918,
"upload_time": "2024-12-18T21:20:34",
"upload_time_iso_8601": "2024-12-18T21:20:34.384482Z",
"url": "https://files.pythonhosted.org/packages/1a/a9/9d59958084d5bad7e77a44841013bd59768cda94f9f744769461b66038fc/aiohttp-3.11.11-cp39-cp39-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4fe727feb1cff17dcddb7a5b703199106196718d622a3aa70f80a386d15361d7",
"md5": "70016dc055419c8f50a10e20baace45b",
"sha256": "b540bd67cfb54e6f0865ceccd9979687210d7ed1a1cc8c01f8e67e2f1e883d28"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp39-cp39-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "70016dc055419c8f50a10e20baace45b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1629101,
"upload_time": "2024-12-18T21:20:36",
"upload_time_iso_8601": "2024-12-18T21:20:36.585817Z",
"url": "https://files.pythonhosted.org/packages/4f/e7/27feb1cff17dcddb7a5b703199106196718d622a3aa70f80a386d15361d7/aiohttp-3.11.11-cp39-cp39-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e82949debcd858b997c655fca274c5247fcfe29bf31a4ddb1ce3f088539b14e4",
"md5": "d404b412c3e5d88893b53c5c3fc3000f",
"sha256": "1dac54e8ce2ed83b1f6b1a54005c87dfed139cf3f777fdc8afc76e7841101226"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d404b412c3e5d88893b53c5c3fc3000f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1567338,
"upload_time": "2024-12-18T21:20:40",
"upload_time_iso_8601": "2024-12-18T21:20:40.009010Z",
"url": "https://files.pythonhosted.org/packages/e8/29/49debcd858b997c655fca274c5247fcfe29bf31a4ddb1ce3f088539b14e4/aiohttp-3.11.11-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3b3433af1e97aba1862e1812e2e2b96a1e050c5a6e9cecd5a5370591122fb07b",
"md5": "8cd3a5533959fca8174e8b1505c02cd1",
"sha256": "568c1236b2fde93b7720f95a890741854c1200fba4a3471ff48b2934d2d93fd3"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "8cd3a5533959fca8174e8b1505c02cd1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 416914,
"upload_time": "2024-12-18T21:20:43",
"upload_time_iso_8601": "2024-12-18T21:20:43.741118Z",
"url": "https://files.pythonhosted.org/packages/3b/34/33af1e97aba1862e1812e2e2b96a1e050c5a6e9cecd5a5370591122fb07b/aiohttp-3.11.11-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2d4728b3fbd97026963af2774423c64341e0d4ec180ea3b79a2762a3c18d5d94",
"md5": "fa47840a60996c5ace79098ef213ac1d",
"sha256": "943a8b052e54dfd6439fd7989f67fc6a7f2138d0a2cf0a7de5f18aa4fe7eb3b1"
},
"downloads": -1,
"filename": "aiohttp-3.11.11-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "fa47840a60996c5ace79098ef213ac1d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 442225,
"upload_time": "2024-12-18T21:20:46",
"upload_time_iso_8601": "2024-12-18T21:20:46.028231Z",
"url": "https://files.pythonhosted.org/packages/2d/47/28b3fbd97026963af2774423c64341e0d4ec180ea3b79a2762a3c18d5d94/aiohttp-3.11.11-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "feedf26db39d29cd3cb2f5a3374304c713fe5ab5a0e4c8ee25a0c45cc6adf844",
"md5": "17f04b60068122e998a60a3010679501",
"sha256": "bb49c7f1e6ebf3821a42d81d494f538107610c3a705987f53068546b0e90303e"
},
"downloads": -1,
"filename": "aiohttp-3.11.11.tar.gz",
"has_sig": false,
"md5_digest": "17f04b60068122e998a60a3010679501",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 7669618,
"upload_time": "2024-12-18T21:20:50",
"upload_time_iso_8601": "2024-12-18T21:20:50.191581Z",
"url": "https://files.pythonhosted.org/packages/fe/ed/f26db39d29cd3cb2f5a3374304c713fe5ab5a0e4c8ee25a0c45cc6adf844/aiohttp-3.11.11.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-18 21:20:50",
"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"
}