Name | aiohttp JSON |
Version |
3.11.7
JSON |
| download |
home_page | https://github.com/aio-libs/aiohttp |
Summary | Async http client/server framework (asyncio) |
upload_time | 2024-11-21 15:45:20 |
maintainer | aiohttp team <team@aiohttp.org> |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | Apache-2.0 |
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://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/4b/cb/f9bb10e0cf6f01730b27d370b10cc15822bea4395acd687abc8cc5fed3ed/aiohttp-3.11.7.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.7",
"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": "837efb4723d280b4de2642c57593cb94f942bfdc15def510d12b5d22a1b955a6",
"md5": "001d51ad0cd2f32973a5e4c69bdca646",
"sha256": "8bedb1f6cb919af3b6353921c71281b1491f948ca64408871465d889b4ee1b66"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "001d51ad0cd2f32973a5e4c69bdca646",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 706857,
"upload_time": "2024-11-21T15:42:26",
"upload_time_iso_8601": "2024-11-21T15:42:26.275600Z",
"url": "https://files.pythonhosted.org/packages/83/7e/fb4723d280b4de2642c57593cb94f942bfdc15def510d12b5d22a1b955a6/aiohttp-3.11.7-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "57f14eb447ad029801b1007ff23025c2bcb2519af2e03085717efa333f1803a5",
"md5": "5427086247fd6caedd1b7a3d937cd181",
"sha256": "f5022504adab881e2d801a88b748ea63f2a9d130e0b2c430824682a96f6534be"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "5427086247fd6caedd1b7a3d937cd181",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 466733,
"upload_time": "2024-11-21T15:42:28",
"upload_time_iso_8601": "2024-11-21T15:42:28.853054Z",
"url": "https://files.pythonhosted.org/packages/57/f1/4eb447ad029801b1007ff23025c2bcb2519af2e03085717efa333f1803a5/aiohttp-3.11.7-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ed7ee385e54fa3d9360f9d1ea502a5627f2f4bdd141dd227a1f8785335c4fca9",
"md5": "11050332f402faf50eff85093e2a2c11",
"sha256": "e22d1721c978a6494adc824e0916f9d187fa57baeda34b55140315fa2f740184"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "11050332f402faf50eff85093e2a2c11",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 453993,
"upload_time": "2024-11-21T15:42:30",
"upload_time_iso_8601": "2024-11-21T15:42:30.858211Z",
"url": "https://files.pythonhosted.org/packages/ed/7e/e385e54fa3d9360f9d1ea502a5627f2f4bdd141dd227a1f8785335c4fca9/aiohttp-3.11.7-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ee41660cba8b4b10a9072ae77ce81558cca94d98aaec649a3085e50b8226fc17",
"md5": "a9a33d77d08d8e8615e0c849b1bf1f31",
"sha256": "e993676c71288618eb07e20622572b1250d8713e7e00ab3aabae28cb70f3640d"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a9a33d77d08d8e8615e0c849b1bf1f31",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1576329,
"upload_time": "2024-11-21T15:42:33",
"upload_time_iso_8601": "2024-11-21T15:42:33.150616Z",
"url": "https://files.pythonhosted.org/packages/ee/41/660cba8b4b10a9072ae77ce81558cca94d98aaec649a3085e50b8226fc17/aiohttp-3.11.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e1514c59724afde127001b22cf09b28171829329cf2c838cb05f6de521f125cf",
"md5": "ce1e67bcac07b68cac564b399f961206",
"sha256": "e13a05db87d3b241c186d0936808d0e4e12decc267c617d54e9c643807e968b6"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "ce1e67bcac07b68cac564b399f961206",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1630344,
"upload_time": "2024-11-21T15:42:34",
"upload_time_iso_8601": "2024-11-21T15:42:34.871812Z",
"url": "https://files.pythonhosted.org/packages/e1/51/4c59724afde127001b22cf09b28171829329cf2c838cb05f6de521f125cf/aiohttp-3.11.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c766513f15cec950410dbc4439926ea4d9361136df7a97ddffab0deea1b68131",
"md5": "fe233db031cb0ef8b8c6e601f6327fd8",
"sha256": "4ba8d043fed7ffa117024d7ba66fdea011c0e7602327c6d73cacaea38abe4491"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "fe233db031cb0ef8b8c6e601f6327fd8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1666837,
"upload_time": "2024-11-21T15:42:37",
"upload_time_iso_8601": "2024-11-21T15:42:37.433047Z",
"url": "https://files.pythonhosted.org/packages/c7/66/513f15cec950410dbc4439926ea4d9361136df7a97ddffab0deea1b68131/aiohttp-3.11.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7ac03e59d4cd8fd4c0e365d0ec962e0679dfc7629bdf0e67be398ca842ad4661",
"md5": "1d0a35c2ab3f11825a8b66a1b2417fae",
"sha256": "dda3ed0a7869d2fa16aa41f9961ade73aa2c2e3b2fcb0a352524e7b744881889"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1d0a35c2ab3f11825a8b66a1b2417fae",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1580628,
"upload_time": "2024-11-21T15:42:39",
"upload_time_iso_8601": "2024-11-21T15:42:39.258661Z",
"url": "https://files.pythonhosted.org/packages/7a/c0/3e59d4cd8fd4c0e365d0ec962e0679dfc7629bdf0e67be398ca842ad4661/aiohttp-3.11.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "22a6c4aea2cf583821e02f7a92c43f5f554d2334e22b741e21e8f31da2b2386b",
"md5": "b196c835163e854cc6fb7d4aa39a2fc6",
"sha256": "43bfd25113c1e98aec6c70e26d5f4331efbf4aa9037ba9ad88f090853bf64d7f"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "b196c835163e854cc6fb7d4aa39a2fc6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1539922,
"upload_time": "2024-11-21T15:42:41",
"upload_time_iso_8601": "2024-11-21T15:42:41.128434Z",
"url": "https://files.pythonhosted.org/packages/22/a6/c4aea2cf583821e02f7a92c43f5f554d2334e22b741e21e8f31da2b2386b/aiohttp-3.11.7-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": "7b5452f33fc9cecaf28f8400e92d9c22e37939c856c4a8af26a71023ec1de689",
"md5": "5b7bcf92215cc0651ea67af6ece9ddf6",
"sha256": "3dd3e7e7c9ef3e7214f014f1ae260892286647b3cf7c7f1b644a568fd410f8ca"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "5b7bcf92215cc0651ea67af6ece9ddf6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1527342,
"upload_time": "2024-11-21T15:42:42",
"upload_time_iso_8601": "2024-11-21T15:42:42.893152Z",
"url": "https://files.pythonhosted.org/packages/7b/54/52f33fc9cecaf28f8400e92d9c22e37939c856c4a8af26a71023ec1de689/aiohttp-3.11.7-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d4e0fc91528bfb0283691b0448e93fe64d2416254a9ca34c58c666240440db89",
"md5": "2dde9fc850c14c5955b6ebf97c14cba2",
"sha256": "78c657ece7a73b976905ab9ec8be9ef2df12ed8984c24598a1791c58ce3b4ce4"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "2dde9fc850c14c5955b6ebf97c14cba2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1534194,
"upload_time": "2024-11-21T15:42:45",
"upload_time_iso_8601": "2024-11-21T15:42:45.445202Z",
"url": "https://files.pythonhosted.org/packages/d4/e0/fc91528bfb0283691b0448e93fe64d2416254a9ca34c58c666240440db89/aiohttp-3.11.7-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "34bec6d571f46e9ef1720a850dce4c04dbfe38627a64bfdabdefb448c547e267",
"md5": "855ece8e1251dd37ad9da4302df6702b",
"sha256": "db70a47987e34494b451a334605bee57a126fe8d290511349e86810b4be53b01"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp310-cp310-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "855ece8e1251dd37ad9da4302df6702b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1609532,
"upload_time": "2024-11-21T15:42:47",
"upload_time_iso_8601": "2024-11-21T15:42:47.409523Z",
"url": "https://files.pythonhosted.org/packages/34/be/c6d571f46e9ef1720a850dce4c04dbfe38627a64bfdabdefb448c547e267/aiohttp-3.11.7-cp310-cp310-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3daf1da6918c83fb427e0f23401dca03b8d6ec776fb61ad25d2f5a8d564418e6",
"md5": "9a1cfdc6d5f64ce9bf00a7f7341af4a3",
"sha256": "9e67531370a3b07e49b280c1f8c2df67985c790ad2834d1b288a2f13cd341c5f"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp310-cp310-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "9a1cfdc6d5f64ce9bf00a7f7341af4a3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1630627,
"upload_time": "2024-11-21T15:42:49",
"upload_time_iso_8601": "2024-11-21T15:42:49.799895Z",
"url": "https://files.pythonhosted.org/packages/3d/af/1da6918c83fb427e0f23401dca03b8d6ec776fb61ad25d2f5a8d564418e6/aiohttp-3.11.7-cp310-cp310-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3220fd3f4d8bc60227f1eb2fc20e75679e270ef05f81ae618cd869a68f19a32c",
"md5": "b3648cce17c3d6d16948eb0c99beeb0a",
"sha256": "9202f184cc0582b1db15056f2225ab4c1e3dac4d9ade50dd0613ac3c46352ac2"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b3648cce17c3d6d16948eb0c99beeb0a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1565670,
"upload_time": "2024-11-21T15:42:51",
"upload_time_iso_8601": "2024-11-21T15:42:51.840833Z",
"url": "https://files.pythonhosted.org/packages/32/20/fd3f4d8bc60227f1eb2fc20e75679e270ef05f81ae618cd869a68f19a32c/aiohttp-3.11.7-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b09fdb692e10567acb0970618557be3bfe47fe92eac69fa7d3e81315d39b4a8b",
"md5": "5b8533522f6e62ddba9e15e7bd766a16",
"sha256": "2257bdd5cf54a4039a4337162cd8048f05a724380a2283df34620f55d4e29341"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "5b8533522f6e62ddba9e15e7bd766a16",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 415107,
"upload_time": "2024-11-21T15:42:53",
"upload_time_iso_8601": "2024-11-21T15:42:53.756561Z",
"url": "https://files.pythonhosted.org/packages/b0/9f/db692e10567acb0970618557be3bfe47fe92eac69fa7d3e81315d39b4a8b/aiohttp-3.11.7-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0b8c9fb539a8a773356df3dbddd77d4a3aff3eda448a602a90e5582d8b1903a4",
"md5": "55b97bb8d12cd57c931d78412a09764e",
"sha256": "b7215bf2b53bc6cb35808149980c2ae80a4ae4e273890ac85459c014d5aa60ac"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "55b97bb8d12cd57c931d78412a09764e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 440569,
"upload_time": "2024-11-21T15:42:56",
"upload_time_iso_8601": "2024-11-21T15:42:56.075965Z",
"url": "https://files.pythonhosted.org/packages/0b/8c/9fb539a8a773356df3dbddd77d4a3aff3eda448a602a90e5582d8b1903a4/aiohttp-3.11.7-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "137f272fa1adf68fe2fbebfe686a67b50cfb40d86dfe47d0441aff6f0b7c4c0e",
"md5": "f6543dcbbf60d2fef65febf77c9335e8",
"sha256": "cea52d11e02123f125f9055dfe0ccf1c3857225fb879e4a944fae12989e2aef2"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "f6543dcbbf60d2fef65febf77c9335e8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 706820,
"upload_time": "2024-11-21T15:42:57",
"upload_time_iso_8601": "2024-11-21T15:42:57.810768Z",
"url": "https://files.pythonhosted.org/packages/13/7f/272fa1adf68fe2fbebfe686a67b50cfb40d86dfe47d0441aff6f0b7c4c0e/aiohttp-3.11.7-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "793c6d612ef77cdba75364393f04c5c577481e3b5123a774eea447ada1ddd14f",
"md5": "890a76962c603c13e09927c04331b40e",
"sha256": "3ce18f703b7298e7f7633efd6a90138d99a3f9a656cb52c1201e76cb5d79cf08"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "890a76962c603c13e09927c04331b40e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 466654,
"upload_time": "2024-11-21T15:42:59",
"upload_time_iso_8601": "2024-11-21T15:42:59.663884Z",
"url": "https://files.pythonhosted.org/packages/79/3c/6d612ef77cdba75364393f04c5c577481e3b5123a774eea447ada1ddd14f/aiohttp-3.11.7-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4fb81052667d4800cd49bb4f869f1ed42f5e9d5acd4676275e64ccc244c9c040",
"md5": "691d0a0b367145478f8f64f9466c24ea",
"sha256": "670847ee6aeb3a569cd7cdfbe0c3bec1d44828bbfbe78c5d305f7f804870ef9e"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "691d0a0b367145478f8f64f9466c24ea",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 454041,
"upload_time": "2024-11-21T15:43:01",
"upload_time_iso_8601": "2024-11-21T15:43:01.636610Z",
"url": "https://files.pythonhosted.org/packages/4f/b8/1052667d4800cd49bb4f869f1ed42f5e9d5acd4676275e64ccc244c9c040/aiohttp-3.11.7-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9f0780fa7302314a6ee1c9278550e9d95b77a4c895999bfbc5364ed0ee28dc7c",
"md5": "f9bb15f1f3874f075f9b85b902935ee0",
"sha256": "4dda726f89bfa5c465ba45b76515135a3ece0088dfa2da49b8bb278f3bdeea12"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f9bb15f1f3874f075f9b85b902935ee0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1684778,
"upload_time": "2024-11-21T15:43:03",
"upload_time_iso_8601": "2024-11-21T15:43:03.426145Z",
"url": "https://files.pythonhosted.org/packages/9f/07/80fa7302314a6ee1c9278550e9d95b77a4c895999bfbc5364ed0ee28dc7c/aiohttp-3.11.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2e30a71eb45197ad6bb6af87dfb39be8b56417d24d916047d35ef3f164af87f4",
"md5": "64ee85be365a86e340f6fbb3b570ceb3",
"sha256": "c25b74a811dba37c7ea6a14d99eb9402d89c8d739d50748a75f3cf994cf19c43"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "64ee85be365a86e340f6fbb3b570ceb3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1740992,
"upload_time": "2024-11-21T15:43:05",
"upload_time_iso_8601": "2024-11-21T15:43:05.839818Z",
"url": "https://files.pythonhosted.org/packages/2e/30/a71eb45197ad6bb6af87dfb39be8b56417d24d916047d35ef3f164af87f4/aiohttp-3.11.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "22740f9394429f3c4197129333a150a85cb2a642df30097a39dd41257f0b3bdc",
"md5": "73d94e1696fff7b5fd1b9ce676a82593",
"sha256": "e5522ee72f95661e79db691310290c4618b86dff2d9b90baedf343fd7a08bf79"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "73d94e1696fff7b5fd1b9ce676a82593",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1781816,
"upload_time": "2024-11-21T15:43:07",
"upload_time_iso_8601": "2024-11-21T15:43:07.651268Z",
"url": "https://files.pythonhosted.org/packages/22/74/0f9394429f3c4197129333a150a85cb2a642df30097a39dd41257f0b3bdc/aiohttp-3.11.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7f1a1e256b39179c98d16d53ac62f64bfcfe7c5b2c1e68b83cddd4165854524f",
"md5": "8c61ef4f22bf64e037345c5dbc68d4dd",
"sha256": "1fbf41a6bbc319a7816ae0f0177c265b62f2a59ad301a0e49b395746eb2a9884"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8c61ef4f22bf64e037345c5dbc68d4dd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1676692,
"upload_time": "2024-11-21T15:43:10",
"upload_time_iso_8601": "2024-11-21T15:43:10.338673Z",
"url": "https://files.pythonhosted.org/packages/7f/1a/1e256b39179c98d16d53ac62f64bfcfe7c5b2c1e68b83cddd4165854524f/aiohttp-3.11.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9b37f19d2e00efcabb9183b16bd91244de1d9c4ff7bf0fb5b8302e29a78f3286",
"md5": "b860b2ec45c008abc9c1db0d8f569810",
"sha256": "59ee1925b5a5efdf6c4e7be51deee93984d0ac14a6897bd521b498b9916f1544"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "b860b2ec45c008abc9c1db0d8f569810",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1619523,
"upload_time": "2024-11-21T15:43:12",
"upload_time_iso_8601": "2024-11-21T15:43:12.856223Z",
"url": "https://files.pythonhosted.org/packages/9b/37/f19d2e00efcabb9183b16bd91244de1d9c4ff7bf0fb5b8302e29a78f3286/aiohttp-3.11.7-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": "ae3caf50cf5e06b98783fd776f17077f7b7e755d461114af5d6744dc037fc3b0",
"md5": "f49a149e9e1e10ca9949eeff2442f615",
"sha256": "24054fce8c6d6f33a3e35d1c603ef1b91bbcba73e3f04a22b4f2f27dac59b347"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "f49a149e9e1e10ca9949eeff2442f615",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1644084,
"upload_time": "2024-11-21T15:43:14",
"upload_time_iso_8601": "2024-11-21T15:43:14.982670Z",
"url": "https://files.pythonhosted.org/packages/ae/3c/af50cf5e06b98783fd776f17077f7b7e755d461114af5d6744dc037fc3b0/aiohttp-3.11.7-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c0a64e0233b085cbf2b6de573515c1eddde82f1c1f17e69347e32a5a5f2617ff",
"md5": "2072f608873a50610128707e2d93224a",
"sha256": "351849aca2c6f814575c1a485c01c17a4240413f960df1bf9f5deb0003c61a53"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "2072f608873a50610128707e2d93224a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1648332,
"upload_time": "2024-11-21T15:43:16",
"upload_time_iso_8601": "2024-11-21T15:43:16.910280Z",
"url": "https://files.pythonhosted.org/packages/c0/a6/4e0233b085cbf2b6de573515c1eddde82f1c1f17e69347e32a5a5f2617ff/aiohttp-3.11.7-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "06207062e76e7817318c421c0f9d7b650fb81aaecf6d2f3a9833805b45ec2ea8",
"md5": "5a7c5e17e0b1ffeda7ede34e61600a0e",
"sha256": "12724f3a211fa243570e601f65a8831372caf1a149d2f1859f68479f07efec3d"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp311-cp311-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "5a7c5e17e0b1ffeda7ede34e61600a0e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1730912,
"upload_time": "2024-11-21T15:43:18",
"upload_time_iso_8601": "2024-11-21T15:43:18.822437Z",
"url": "https://files.pythonhosted.org/packages/06/20/7062e76e7817318c421c0f9d7b650fb81aaecf6d2f3a9833805b45ec2ea8/aiohttp-3.11.7-cp311-cp311-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6c1cff6ae4b1789894e6faf8a4e260cd3861cad618dc80ad15326789a7765750",
"md5": "ce277a1a0c4df9297b11a2f212ae4b88",
"sha256": "7ea4490360b605804bea8173d2d086b6c379d6bb22ac434de605a9cbce006e7d"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp311-cp311-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "ce277a1a0c4df9297b11a2f212ae4b88",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1752619,
"upload_time": "2024-11-21T15:43:20",
"upload_time_iso_8601": "2024-11-21T15:43:20.671075Z",
"url": "https://files.pythonhosted.org/packages/6c/1c/ff6ae4b1789894e6faf8a4e260cd3861cad618dc80ad15326789a7765750/aiohttp-3.11.7-cp311-cp311-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3358ddd5cba5ca245c00b04e9d28a7988b0f0eda02de494f8e62ecd2780655c2",
"md5": "542c6c6be3f1a87466aafb354538c804",
"sha256": "e0bf378db07df0a713a1e32381a1b277e62ad106d0dbe17b5479e76ec706d720"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "542c6c6be3f1a87466aafb354538c804",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1692801,
"upload_time": "2024-11-21T15:43:22",
"upload_time_iso_8601": "2024-11-21T15:43:22.959271Z",
"url": "https://files.pythonhosted.org/packages/33/58/ddd5cba5ca245c00b04e9d28a7988b0f0eda02de494f8e62ecd2780655c2/aiohttp-3.11.7-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b2fc32d5e2070b43d3722b7ea65ddc6b03ffa39bcc4b5ab6395a825cde0872ad",
"md5": "62b04526c38825018fb5f9753360fb09",
"sha256": "cd8d62cab363dfe713067027a5adb4907515861f1e4ce63e7be810b83668b847"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "62b04526c38825018fb5f9753360fb09",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 414899,
"upload_time": "2024-11-21T15:43:25",
"upload_time_iso_8601": "2024-11-21T15:43:25.009508Z",
"url": "https://files.pythonhosted.org/packages/b2/fc/32d5e2070b43d3722b7ea65ddc6b03ffa39bcc4b5ab6395a825cde0872ad/aiohttp-3.11.7-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ec7e50324c6d3df4540f5963def810b9927f220c99864065849a1dfcae77a6ce",
"md5": "d92d38d7df7958dc490b8588ae8dbc6d",
"sha256": "bf0e6cce113596377cadda4e3ac5fb89f095bd492226e46d91b4baef1dd16f60"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "d92d38d7df7958dc490b8588ae8dbc6d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 440938,
"upload_time": "2024-11-21T15:43:27",
"upload_time_iso_8601": "2024-11-21T15:43:27.496467Z",
"url": "https://files.pythonhosted.org/packages/ec/7e/50324c6d3df4540f5963def810b9927f220c99864065849a1dfcae77a6ce/aiohttp-3.11.7-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bf1e2e96b2526c590dcb99db0b94ac4f9b927ecc07f94735a8a941dee143d48b",
"md5": "0576caf6d4c78d44b5c144466bbbce38",
"sha256": "4bb7493c3e3a36d3012b8564bd0e2783259ddd7ef3a81a74f0dbfa000fce48b7"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp312-cp312-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "0576caf6d4c78d44b5c144466bbbce38",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 702326,
"upload_time": "2024-11-21T15:43:30",
"upload_time_iso_8601": "2024-11-21T15:43:30.490470Z",
"url": "https://files.pythonhosted.org/packages/bf/1e/2e96b2526c590dcb99db0b94ac4f9b927ecc07f94735a8a941dee143d48b/aiohttp-3.11.7-cp312-cp312-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b5ceb5d7f3e68849f1f5e0b85af4ac9080b9d3c0a600857140024603653c2209",
"md5": "d1ac33c27a329438c8a96bf619340c99",
"sha256": "e143b0ef9cb1a2b4f74f56d4fbe50caa7c2bb93390aff52f9398d21d89bc73ea"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "d1ac33c27a329438c8a96bf619340c99",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 461944,
"upload_time": "2024-11-21T15:43:32",
"upload_time_iso_8601": "2024-11-21T15:43:32.582923Z",
"url": "https://files.pythonhosted.org/packages/b5/ce/b5d7f3e68849f1f5e0b85af4ac9080b9d3c0a600857140024603653c2209/aiohttp-3.11.7-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "28faf4d98db1b7f8f0c3f74bdbd6d0d98cfc89984205cd33f1b8ee3f588ee5ad",
"md5": "32e053d8df08110a1d7752061d6cadf5",
"sha256": "f7c58a240260822dc07f6ae32a0293dd5bccd618bb2d0f36d51c5dbd526f89c0"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "32e053d8df08110a1d7752061d6cadf5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 454348,
"upload_time": "2024-11-21T15:43:34",
"upload_time_iso_8601": "2024-11-21T15:43:34.397763Z",
"url": "https://files.pythonhosted.org/packages/28/fa/f4d98db1b7f8f0c3f74bdbd6d0d98cfc89984205cd33f1b8ee3f588ee5ad/aiohttp-3.11.7-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "04f0c238dda5dc9a3d12b76636e2cf0ea475890ac3a1c7e4ff0fd6c3cea2fc2d",
"md5": "f57087cbb3e133f98e7eb108992ab487",
"sha256": "8d20cfe63a1c135d26bde8c1d0ea46fd1200884afbc523466d2f1cf517d1fe33"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f57087cbb3e133f98e7eb108992ab487",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1678795,
"upload_time": "2024-11-21T15:43:36",
"upload_time_iso_8601": "2024-11-21T15:43:36.722160Z",
"url": "https://files.pythonhosted.org/packages/04/f0/c238dda5dc9a3d12b76636e2cf0ea475890ac3a1c7e4ff0fd6c3cea2fc2d/aiohttp-3.11.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "79ee3a18f792247e6d95dba13aaedc9dc317c3c6e75f4b88c2dd4b960d20ad2f",
"md5": "583739ec3cde404bae812835a69c1d17",
"sha256": "12e4d45847a174f77b2b9919719203769f220058f642b08504cf8b1cf185dacf"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "583739ec3cde404bae812835a69c1d17",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1734411,
"upload_time": "2024-11-21T15:43:38",
"upload_time_iso_8601": "2024-11-21T15:43:38.702599Z",
"url": "https://files.pythonhosted.org/packages/79/ee/3a18f792247e6d95dba13aaedc9dc317c3c6e75f4b88c2dd4b960d20ad2f/aiohttp-3.11.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f5793eb84243087a9a32cae821622c935107b4b55a5b21b76772e8e6c41092e9",
"md5": "8407e9ae73c9e89f3725910907812105",
"sha256": "cf4efa2d01f697a7dbd0509891a286a4af0d86902fc594e20e3b1712c28c0106"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "8407e9ae73c9e89f3725910907812105",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1788959,
"upload_time": "2024-11-21T15:43:41",
"upload_time_iso_8601": "2024-11-21T15:43:41.298668Z",
"url": "https://files.pythonhosted.org/packages/f5/79/3eb84243087a9a32cae821622c935107b4b55a5b21b76772e8e6c41092e9/aiohttp-3.11.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9193ad77782c5edfa17aafc070bef978fbfb8459b2f150595ffb01b559c136f9",
"md5": "b8aa3f9ac5602ae9aeb585dbf8dcafe5",
"sha256": "9ee6a4cdcbf54b8083dc9723cdf5f41f722c00db40ccf9ec2616e27869151129"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b8aa3f9ac5602ae9aeb585dbf8dcafe5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1687463,
"upload_time": "2024-11-21T15:43:44",
"upload_time_iso_8601": "2024-11-21T15:43:44.280246Z",
"url": "https://files.pythonhosted.org/packages/91/93/ad77782c5edfa17aafc070bef978fbfb8459b2f150595ffb01b559c136f9/aiohttp-3.11.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ba48db35bd21b7877efa0be5f28385d8978c55323c5ce7685712e53f3f6c0bd9",
"md5": "36a17376d1a4ed7d493be82552957eec",
"sha256": "c6095aaf852c34f42e1bd0cf0dc32d1e4b48a90bfb5054abdbb9d64b36acadcb"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "36a17376d1a4ed7d493be82552957eec",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1618374,
"upload_time": "2024-11-21T15:43:47",
"upload_time_iso_8601": "2024-11-21T15:43:47.125046Z",
"url": "https://files.pythonhosted.org/packages/ba/48/db35bd21b7877efa0be5f28385d8978c55323c5ce7685712e53f3f6c0bd9/aiohttp-3.11.7-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": "ba7730f87db55c79fd145ed5fd15b92f2e820ce81065d41ae437797aaa550e3b",
"md5": "1d1c20d7ff1d1cd3c24ee054a1e03139",
"sha256": "1cf03d27885f8c5ebf3993a220cc84fc66375e1e6e812731f51aab2b2748f4a6"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "1d1c20d7ff1d1cd3c24ee054a1e03139",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1637021,
"upload_time": "2024-11-21T15:43:50",
"upload_time_iso_8601": "2024-11-21T15:43:50.019692Z",
"url": "https://files.pythonhosted.org/packages/ba/77/30f87db55c79fd145ed5fd15b92f2e820ce81065d41ae437797aaa550e3b/aiohttp-3.11.7-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af7610b188b78ee18d0595af156d6a238bc60f9d8571f0f546027eb7eaf65b25",
"md5": "4ac9a7894b08345f0b1bd241e9c6b591",
"sha256": "1a17f6a230f81eb53282503823f59d61dff14fb2a93847bf0399dc8e87817307"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "4ac9a7894b08345f0b1bd241e9c6b591",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1650792,
"upload_time": "2024-11-21T15:43:52",
"upload_time_iso_8601": "2024-11-21T15:43:52.304799Z",
"url": "https://files.pythonhosted.org/packages/af/76/10b188b78ee18d0595af156d6a238bc60f9d8571f0f546027eb7eaf65b25/aiohttp-3.11.7-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fa334411bbb8ad04c47d0f4c7bd53332aaf350e49469cf6b65b132d4becafe27",
"md5": "0e05eca05113945867913dde47e53d42",
"sha256": "481f10a1a45c5f4c4a578bbd74cff22eb64460a6549819242a87a80788461fba"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp312-cp312-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "0e05eca05113945867913dde47e53d42",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1696248,
"upload_time": "2024-11-21T15:43:54",
"upload_time_iso_8601": "2024-11-21T15:43:54.315645Z",
"url": "https://files.pythonhosted.org/packages/fa/33/4411bbb8ad04c47d0f4c7bd53332aaf350e49469cf6b65b132d4becafe27/aiohttp-3.11.7-cp312-cp312-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fe2d6135d0dc1851a33d3faa937b20fef81340bc95e8310536d4c7f1f8ecc026",
"md5": "bc7cd9c294a0bc64055a9f486868d4c2",
"sha256": "db37248535d1ae40735d15bdf26ad43be19e3d93ab3f3dad8507eb0f85bb8124"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp312-cp312-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "bc7cd9c294a0bc64055a9f486868d4c2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1729188,
"upload_time": "2024-11-21T15:43:56",
"upload_time_iso_8601": "2024-11-21T15:43:56.383587Z",
"url": "https://files.pythonhosted.org/packages/fe/2d/6135d0dc1851a33d3faa937b20fef81340bc95e8310536d4c7f1f8ecc026/aiohttp-3.11.7-cp312-cp312-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f576a57ceff577ae26fe9a6f31ac799bc638ecf26e4acdf04295290b9929b349",
"md5": "6f31be0bf5f9f5df36fb17f3f4195d3f",
"sha256": "9d18a8b44ec8502a7fde91446cd9c9b95ce7c49f1eacc1fb2358b8907d4369fd"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "6f31be0bf5f9f5df36fb17f3f4195d3f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1690038,
"upload_time": "2024-11-21T15:43:58",
"upload_time_iso_8601": "2024-11-21T15:43:58.455407Z",
"url": "https://files.pythonhosted.org/packages/f5/76/a57ceff577ae26fe9a6f31ac799bc638ecf26e4acdf04295290b9929b349/aiohttp-3.11.7-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4b81b20e09003b6989a7f23a721692137a6143420a151063c750ab2a04878e3c",
"md5": "0e028c6c6a369218d4dee96b9a3623c0",
"sha256": "3d1c9c15d3999107cbb9b2d76ca6172e6710a12fda22434ee8bd3f432b7b17e8"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "0e028c6c6a369218d4dee96b9a3623c0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 409887,
"upload_time": "2024-11-21T15:44:00",
"upload_time_iso_8601": "2024-11-21T15:44:00.495617Z",
"url": "https://files.pythonhosted.org/packages/4b/81/b20e09003b6989a7f23a721692137a6143420a151063c750ab2a04878e3c/aiohttp-3.11.7-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b70b607c98bff1d07bb21e0c39e7711108ef9ff4f2a361a3ec1ce8dce93623a5",
"md5": "1f352edafc92360cfec3241ff7821f58",
"sha256": "018f1b04883a12e77e7fc161934c0f298865d3a484aea536a6a2ca8d909f0ba0"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "1f352edafc92360cfec3241ff7821f58",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 436462,
"upload_time": "2024-11-21T15:44:02",
"upload_time_iso_8601": "2024-11-21T15:44:02.663943Z",
"url": "https://files.pythonhosted.org/packages/b7/0b/607c98bff1d07bb21e0c39e7711108ef9ff4f2a361a3ec1ce8dce93623a5/aiohttp-3.11.7-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7a538d77186c6a33bd087714df18274cdcf6e36fd69a9e841c85b7e81a20b18e",
"md5": "6020bb28b5203934214242d927602306",
"sha256": "241a6ca732d2766836d62c58c49ca7a93d08251daef0c1e3c850df1d1ca0cbc4"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp313-cp313-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "6020bb28b5203934214242d927602306",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 695811,
"upload_time": "2024-11-21T15:44:04",
"upload_time_iso_8601": "2024-11-21T15:44:04.548009Z",
"url": "https://files.pythonhosted.org/packages/7a/53/8d77186c6a33bd087714df18274cdcf6e36fd69a9e841c85b7e81a20b18e/aiohttp-3.11.7-cp313-cp313-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "62b64c3d107a5406aa6f99f618afea82783f54ce2d9644020f50b9c88f6e823d",
"md5": "2d5bb1413a70c420d1027314bf876c78",
"sha256": "aa3705a8d14de39898da0fbad920b2a37b7547c3afd2a18b9b81f0223b7d0f68"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "2d5bb1413a70c420d1027314bf876c78",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 458530,
"upload_time": "2024-11-21T15:44:07",
"upload_time_iso_8601": "2024-11-21T15:44:07.184771Z",
"url": "https://files.pythonhosted.org/packages/62/b6/4c3d107a5406aa6f99f618afea82783f54ce2d9644020f50b9c88f6e823d/aiohttp-3.11.7-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d905dbf0bd3966be8ebed3beb4007a2d1356d79af4fe7c93e54f984df6385193",
"md5": "4a7506c14a92940ba898099d6466ad50",
"sha256": "9acfc7f652b31853eed3b92095b0acf06fd5597eeea42e939bd23a17137679d5"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "4a7506c14a92940ba898099d6466ad50",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 451371,
"upload_time": "2024-11-21T15:44:09",
"upload_time_iso_8601": "2024-11-21T15:44:09.116637Z",
"url": "https://files.pythonhosted.org/packages/d9/05/dbf0bd3966be8ebed3beb4007a2d1356d79af4fe7c93e54f984df6385193/aiohttp-3.11.7-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "196a2198580314617b6cf9c4b813b84df5832b5f8efedcb8a7e8b321a187233c",
"md5": "ceba6c310d7c33d02a971c276f80ce6c",
"sha256": "dcefcf2915a2dbdbce37e2fc1622129a1918abfe3d06721ce9f6cdac9b6d2eaa"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ceba6c310d7c33d02a971c276f80ce6c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1662905,
"upload_time": "2024-11-21T15:44:11",
"upload_time_iso_8601": "2024-11-21T15:44:11.396817Z",
"url": "https://files.pythonhosted.org/packages/19/6a/2198580314617b6cf9c4b813b84df5832b5f8efedcb8a7e8b321a187233c/aiohttp-3.11.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2b6508696fd7503f6a6f9f782bd012bf47f36d4ed179a7d8c95dba4726d5cc67",
"md5": "2009aea5518c1c6a735af11053460d5e",
"sha256": "c1f6490dd1862af5aae6cfcf2a274bffa9a5b32a8f5acb519a7ecf5a99a88866"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "2009aea5518c1c6a735af11053460d5e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1713794,
"upload_time": "2024-11-21T15:44:14",
"upload_time_iso_8601": "2024-11-21T15:44:14.376601Z",
"url": "https://files.pythonhosted.org/packages/2b/65/08696fd7503f6a6f9f782bd012bf47f36d4ed179a7d8c95dba4726d5cc67/aiohttp-3.11.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c8a3b9a72dce6f15e2efbc09fa67c1067c4f3a3bb05661c0ae7b40799cde02b7",
"md5": "2f3d2223429fbedbe5eaae9ee88a9405",
"sha256": "f1ac5462582d6561c1c1708853a9faf612ff4e5ea5e679e99be36143d6eabd8e"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "2f3d2223429fbedbe5eaae9ee88a9405",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1770757,
"upload_time": "2024-11-21T15:44:16",
"upload_time_iso_8601": "2024-11-21T15:44:16.434372Z",
"url": "https://files.pythonhosted.org/packages/c8/a3/b9a72dce6f15e2efbc09fa67c1067c4f3a3bb05661c0ae7b40799cde02b7/aiohttp-3.11.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "787e8fb371b5f8c4c1eaa0d0a50750c0dd68059f86794aeb36919644815486f5",
"md5": "0fafe07ea15960c60dcb58624a95c1c0",
"sha256": "4c1a6309005acc4b2bcc577ba3b9169fea52638709ffacbd071f3503264620da"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0fafe07ea15960c60dcb58624a95c1c0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1673136,
"upload_time": "2024-11-21T15:44:18",
"upload_time_iso_8601": "2024-11-21T15:44:18.919138Z",
"url": "https://files.pythonhosted.org/packages/78/7e/8fb371b5f8c4c1eaa0d0a50750c0dd68059f86794aeb36919644815486f5/aiohttp-3.11.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2f0f09685d13d2c7634cb808868ea29c170d4dcde4215a4a90fb86491cd3ae25",
"md5": "89b0adcca4792493e1641bc61f441484",
"sha256": "f5b973cce96793725ef63eb449adfb74f99c043c718acb76e0d2a447ae369962"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "89b0adcca4792493e1641bc61f441484",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1600370,
"upload_time": "2024-11-21T15:44:21",
"upload_time_iso_8601": "2024-11-21T15:44:21.007016Z",
"url": "https://files.pythonhosted.org/packages/2f/0f/09685d13d2c7634cb808868ea29c170d4dcde4215a4a90fb86491cd3ae25/aiohttp-3.11.7-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": "002e18fd38b117f9b3a375166ccb70ed43cf7e3dfe2cc947139acc15feefc5a2",
"md5": "da5b5ff06016ef759adf0f73b88e6ad4",
"sha256": "ce91a24aac80de6be8512fb1c4838a9881aa713f44f4e91dd7bb3b34061b497d"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "da5b5ff06016ef759adf0f73b88e6ad4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1613459,
"upload_time": "2024-11-21T15:44:24",
"upload_time_iso_8601": "2024-11-21T15:44:24.489602Z",
"url": "https://files.pythonhosted.org/packages/00/2e/18fd38b117f9b3a375166ccb70ed43cf7e3dfe2cc947139acc15feefc5a2/aiohttp-3.11.7-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2c9410a82abc680d753be33506be699aaa330152ecc4f316eaf081f996ee56c2",
"md5": "0393b6e0f88a40d43a51636e1571a640",
"sha256": "875f7100ce0e74af51d4139495eec4025affa1a605280f23990b6434b81df1bd"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "0393b6e0f88a40d43a51636e1571a640",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1613924,
"upload_time": "2024-11-21T15:44:27",
"upload_time_iso_8601": "2024-11-21T15:44:27.313908Z",
"url": "https://files.pythonhosted.org/packages/2c/94/10a82abc680d753be33506be699aaa330152ecc4f316eaf081f996ee56c2/aiohttp-3.11.7-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e958897c0561f5c522dda6e173192f1e4f10144e1a7126096f17a3f12b7aa168",
"md5": "a3ee493294604fd0f7581b1a25465701",
"sha256": "c171fc35d3174bbf4787381716564042a4cbc008824d8195eede3d9b938e29a8"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp313-cp313-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "a3ee493294604fd0f7581b1a25465701",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1681164,
"upload_time": "2024-11-21T15:44:29",
"upload_time_iso_8601": "2024-11-21T15:44:29.489854Z",
"url": "https://files.pythonhosted.org/packages/e9/58/897c0561f5c522dda6e173192f1e4f10144e1a7126096f17a3f12b7aa168/aiohttp-3.11.7-cp313-cp313-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8b8b3a48b1cdafa612679d976274355f6a822de90b85d7dba55654ecfb01c979",
"md5": "32cd26fe70881dd7f0f3ad8c3069ac76",
"sha256": "ee9afa1b0d2293c46954f47f33e150798ad68b78925e3710044e0d67a9487791"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp313-cp313-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "32cd26fe70881dd7f0f3ad8c3069ac76",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1712139,
"upload_time": "2024-11-21T15:44:31",
"upload_time_iso_8601": "2024-11-21T15:44:31.967956Z",
"url": "https://files.pythonhosted.org/packages/8b/8b/3a48b1cdafa612679d976274355f6a822de90b85d7dba55654ecfb01c979/aiohttp-3.11.7-cp313-cp313-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aa9d70ab5b4dd7900db04af72840e033aee06e472b1343e372ea256ed675511c",
"md5": "dbb6d35ace40f9b1f1a2a5f4f1e1de2b",
"sha256": "8360c7cc620abb320e1b8d603c39095101391a82b1d0be05fb2225471c9c5c52"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "dbb6d35ace40f9b1f1a2a5f4f1e1de2b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1667446,
"upload_time": "2024-11-21T15:44:35",
"upload_time_iso_8601": "2024-11-21T15:44:35.648314Z",
"url": "https://files.pythonhosted.org/packages/aa/9d/70ab5b4dd7900db04af72840e033aee06e472b1343e372ea256ed675511c/aiohttp-3.11.7-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cb98b5fbcc8f6056f0c56001c75227e6b7ca9ee4f2e5572feca82ff3d65d485d",
"md5": "969e4682f2024f0cbfa2e2ba3be326e5",
"sha256": "7a9318da4b4ada9a67c1dd84d1c0834123081e746bee311a16bb449f363d965e"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "969e4682f2024f0cbfa2e2ba3be326e5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 408689,
"upload_time": "2024-11-21T15:44:37",
"upload_time_iso_8601": "2024-11-21T15:44:37.741470Z",
"url": "https://files.pythonhosted.org/packages/cb/98/b5fbcc8f6056f0c56001c75227e6b7ca9ee4f2e5572feca82ff3d65d485d/aiohttp-3.11.7-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ef074d1504577fa6349dd2e3839e89fb56e5dee38d64efe3d4366e9fcfda0cdb",
"md5": "74372ca2a3d1e5a15caa1d295cfb3480",
"sha256": "fc6da202068e0a268e298d7cd09b6e9f3997736cd9b060e2750963754552a0a9"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "74372ca2a3d1e5a15caa1d295cfb3480",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 434809,
"upload_time": "2024-11-21T15:44:39",
"upload_time_iso_8601": "2024-11-21T15:44:39.867634Z",
"url": "https://files.pythonhosted.org/packages/ef/07/4d1504577fa6349dd2e3839e89fb56e5dee38d64efe3d4366e9fcfda0cdb/aiohttp-3.11.7-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a1515ad023409da8ca9f3edaa459bae95a65b9515a2eca8ea6510d2a87be1d53",
"md5": "c78d986fdc99a882ff95fca240493b9b",
"sha256": "17829f37c0d31d89aa6b8b010475a10233774771f9b6dc2cc352ea4f8ce95d9a"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "c78d986fdc99a882ff95fca240493b9b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 707780,
"upload_time": "2024-11-21T15:44:42",
"upload_time_iso_8601": "2024-11-21T15:44:42.835948Z",
"url": "https://files.pythonhosted.org/packages/a1/51/5ad023409da8ca9f3edaa459bae95a65b9515a2eca8ea6510d2a87be1d53/aiohttp-3.11.7-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2f7494101af13b20325b60054a7dcc85f0eb50ea7750365ce0e5365494a6d4d7",
"md5": "72dcc205bcc5b55a460cbe15afafd816",
"sha256": "d6177077a31b1aecfc3c9070bd2f11419dbb4a70f30f4c65b124714f525c2e48"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "72dcc205bcc5b55a460cbe15afafd816",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 467204,
"upload_time": "2024-11-21T15:44:44",
"upload_time_iso_8601": "2024-11-21T15:44:44.915625Z",
"url": "https://files.pythonhosted.org/packages/2f/74/94101af13b20325b60054a7dcc85f0eb50ea7750365ce0e5365494a6d4d7/aiohttp-3.11.7-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2544748d16ff174afad29452543d9c62101d8852a81e278d89a0fe73d81c99c1",
"md5": "43359472b59d5b96e204f87f20981c44",
"sha256": "badda65ac99555791eed75e234afb94686ed2317670c68bff8a4498acdaee935"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "43359472b59d5b96e204f87f20981c44",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 454491,
"upload_time": "2024-11-21T15:44:47",
"upload_time_iso_8601": "2024-11-21T15:44:47.212814Z",
"url": "https://files.pythonhosted.org/packages/25/44/748d16ff174afad29452543d9c62101d8852a81e278d89a0fe73d81c99c1/aiohttp-3.11.7-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c9ccf05d3d3f2bb68c0c41d31cabbd47fd019edf20c04a16de434a621ce17883",
"md5": "0e6665b7f11d279c4312a6b18582004a",
"sha256": "0de6466b9d742b4ee56fe1b2440706e225eb48c77c63152b1584864a236e7a50"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0e6665b7f11d279c4312a6b18582004a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1578119,
"upload_time": "2024-11-21T15:44:49",
"upload_time_iso_8601": "2024-11-21T15:44:49.279606Z",
"url": "https://files.pythonhosted.org/packages/c9/cc/f05d3d3f2bb68c0c41d31cabbd47fd019edf20c04a16de434a621ce17883/aiohttp-3.11.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "81f532ba5be33696d0a8f5cbf213d158a90d99b9b7d7b3d344c8400bb87364a6",
"md5": "439ec8767a72a535090f4dba07d6fb10",
"sha256": "04b0cc74d5a882c9dacaeeccc1444f0233212b6f5be8bc90833feef1e1ce14b9"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "439ec8767a72a535090f4dba07d6fb10",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1632860,
"upload_time": "2024-11-21T15:44:51",
"upload_time_iso_8601": "2024-11-21T15:44:51.847379Z",
"url": "https://files.pythonhosted.org/packages/81/f5/32ba5be33696d0a8f5cbf213d158a90d99b9b7d7b3d344c8400bb87364a6/aiohttp-3.11.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ebe723cc29b24d53c6d2ade7092f7d3cdc985c0414f00dfc81699bfa512c7968",
"md5": "f83a0386d8f811512b09c5693beebd1b",
"sha256": "28c7af3e50e5903d21d7b935aceed901cc2475463bc16ddd5587653548661fdb"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "f83a0386d8f811512b09c5693beebd1b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1670227,
"upload_time": "2024-11-21T15:44:54",
"upload_time_iso_8601": "2024-11-21T15:44:54.052207Z",
"url": "https://files.pythonhosted.org/packages/eb/e7/23cc29b24d53c6d2ade7092f7d3cdc985c0414f00dfc81699bfa512c7968/aiohttp-3.11.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1a4851d3af146bb35988072d0456faadec603ac40e1d4974de07d1bf11065f2b",
"md5": "ca43a3b445af0ccced04425c5e27871f",
"sha256": "c63f898f683d1379b9be5afc3dd139e20b30b0b1e0bf69a3fc3681f364cf1629"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ca43a3b445af0ccced04425c5e27871f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1583960,
"upload_time": "2024-11-21T15:44:56",
"upload_time_iso_8601": "2024-11-21T15:44:56.306017Z",
"url": "https://files.pythonhosted.org/packages/1a/48/51d3af146bb35988072d0456faadec603ac40e1d4974de07d1bf11065f2b/aiohttp-3.11.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "66fe574c2cf9fa7e396c089fb34aaa121b91883a7c2b382043f471f13ca3fdd3",
"md5": "e0b7e751c1476a521ebbb10efbc236c2",
"sha256": "fdadc3f6a32d6eca45f9a900a254757fd7855dfb2d8f8dcf0e88f0fae3ff8eb1"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e0b7e751c1476a521ebbb10efbc236c2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1539300,
"upload_time": "2024-11-21T15:44:58",
"upload_time_iso_8601": "2024-11-21T15:44:58.630507Z",
"url": "https://files.pythonhosted.org/packages/66/fe/574c2cf9fa7e396c089fb34aaa121b91883a7c2b382043f471f13ca3fdd3/aiohttp-3.11.7-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": "1233a7e88497a6775aa25baca2ec37f861ad1417e6113e685f89952986c232d7",
"md5": "6e8a4fca5c0a154a12a864a293d9839f",
"sha256": "d329300fb23e14ed1f8c6d688dfd867d1dcc3b1d7cd49b7f8c5b44e797ce0932"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "6e8a4fca5c0a154a12a864a293d9839f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1524716,
"upload_time": "2024-11-21T15:45:01",
"upload_time_iso_8601": "2024-11-21T15:45:01.561722Z",
"url": "https://files.pythonhosted.org/packages/12/33/a7e88497a6775aa25baca2ec37f861ad1417e6113e685f89952986c232d7/aiohttp-3.11.7-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fd3addcdd768c8302cdecf411fde591c2b93ab180d7cc3a61fbed86f025075ee",
"md5": "a6486b67037d8eeaad14f4431b3943ac",
"sha256": "5578cf40440eafcb054cf859964bc120ab52ebe0e0562d2b898126d868749629"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "a6486b67037d8eeaad14f4431b3943ac",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1534492,
"upload_time": "2024-11-21T15:45:03",
"upload_time_iso_8601": "2024-11-21T15:45:03.743958Z",
"url": "https://files.pythonhosted.org/packages/fd/3a/ddcdd768c8302cdecf411fde591c2b93ab180d7cc3a61fbed86f025075ee/aiohttp-3.11.7-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "85f8dd77ad1e4da943d633bc950fed565d14e82bbe5b7ffc4832f106c69396af",
"md5": "b3859a01df7ce17349ab3e259e573c0e",
"sha256": "7b2f8107a3c329789f3c00b2daad0e35f548d0a55cda6291579136622099a46e"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp39-cp39-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "b3859a01df7ce17349ab3e259e573c0e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1608164,
"upload_time": "2024-11-21T15:45:06",
"upload_time_iso_8601": "2024-11-21T15:45:06.422301Z",
"url": "https://files.pythonhosted.org/packages/85/f8/dd77ad1e4da943d633bc950fed565d14e82bbe5b7ffc4832f106c69396af/aiohttp-3.11.7-cp39-cp39-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5c34e3e41dafe6e4c9032f1b1d8130aa0f023275b3398d6887e94fbd68731ba7",
"md5": "bfaa2fd4a7666c1adcba341ce46eac40",
"sha256": "43dd89a6194f6ab02a3fe36b09e42e2df19c211fc2050ce37374d96f39604997"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp39-cp39-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "bfaa2fd4a7666c1adcba341ce46eac40",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1627119,
"upload_time": "2024-11-21T15:45:08",
"upload_time_iso_8601": "2024-11-21T15:45:08.745328Z",
"url": "https://files.pythonhosted.org/packages/5c/34/e3e41dafe6e4c9032f1b1d8130aa0f023275b3398d6887e94fbd68731ba7/aiohttp-3.11.7-cp39-cp39-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f6995746e91be936a78c73b52549eefb462ae521c0053f19de08335f52896d75",
"md5": "d8a65cb8b88d276f2ec8286dc64e995e",
"sha256": "d2fa6fc7cc865d26ff42480ac9b52b8c9b7da30a10a6442a9cdf429de840e949"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d8a65cb8b88d276f2ec8286dc64e995e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1564248,
"upload_time": "2024-11-21T15:45:11",
"upload_time_iso_8601": "2024-11-21T15:45:11.375846Z",
"url": "https://files.pythonhosted.org/packages/f6/99/5746e91be936a78c73b52549eefb462ae521c0053f19de08335f52896d75/aiohttp-3.11.7-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dcdf5b2c8e243acaa2433baaf8431dd23d90840ccecd0755c2bccde4e8da85d9",
"md5": "444c6f9b40f1cf5cce39f2cc4d3bf452",
"sha256": "a7d9a606355655617fee25dd7e54d3af50804d002f1fd3118dd6312d26692d70"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "444c6f9b40f1cf5cce39f2cc4d3bf452",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 415407,
"upload_time": "2024-11-21T15:45:14",
"upload_time_iso_8601": "2024-11-21T15:45:14.796881Z",
"url": "https://files.pythonhosted.org/packages/dc/df/5b2c8e243acaa2433baaf8431dd23d90840ccecd0755c2bccde4e8da85d9/aiohttp-3.11.7-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f8231f34e9cee17ebb0202cf9bec9e2eaf8e7e4f4ac36d12c9ab3786b19679f8",
"md5": "87ea5dc3ca6613c9907ba17d0c09999e",
"sha256": "53c921b58fdc6485d6b2603e0132bb01cd59b8f0620ffc0907f525e0ba071687"
},
"downloads": -1,
"filename": "aiohttp-3.11.7-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "87ea5dc3ca6613c9907ba17d0c09999e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 440807,
"upload_time": "2024-11-21T15:45:17",
"upload_time_iso_8601": "2024-11-21T15:45:17.837470Z",
"url": "https://files.pythonhosted.org/packages/f8/23/1f34e9cee17ebb0202cf9bec9e2eaf8e7e4f4ac36d12c9ab3786b19679f8/aiohttp-3.11.7-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4bcbf9bb10e0cf6f01730b27d370b10cc15822bea4395acd687abc8cc5fed3ed",
"md5": "5d3301ea131fe9a37b957ba511dcf375",
"sha256": "01a8aca4af3da85cea5c90141d23f4b0eee3cbecfd33b029a45a80f28c66c668"
},
"downloads": -1,
"filename": "aiohttp-3.11.7.tar.gz",
"has_sig": false,
"md5_digest": "5d3301ea131fe9a37b957ba511dcf375",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 7666482,
"upload_time": "2024-11-21T15:45:20",
"upload_time_iso_8601": "2024-11-21T15:45:20.272237Z",
"url": "https://files.pythonhosted.org/packages/4b/cb/f9bb10e0cf6f01730b27d370b10cc15822bea4395acd687abc8cc5fed3ed/aiohttp-3.11.7.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-21 15:45:20",
"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"
}