Skip to main content

Async http client/server framework (asyncio)

Project description

aiohttp logo

GitHub Actions status for master branch codecov.io status for master branch Latest PyPI package version Latest Read The Docs Matrix Room — #aio-libs:matrix.org 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:

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:

Status: 200
Content-type: text/html; charset=utf-8
Body: <!doctype html> ...

Coming from requests ? Read why we need so many lines.

Server

An example using a simple server:

# 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

Communication channels

aio-libs Discussions: https://github.com/aio-libs/aiohttp/discussions

Matrix: #aio-libs:matrix.org

We support Stack Overflow. Please add aiohttp tag to your question there.

Requirements

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

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

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aiohttp-3.10.3.tar.gz (7.5 MB view details)

Uploaded Source

Built Distributions

aiohttp-3.10.3-cp312-cp312-win_amd64.whl (377.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.10.3-cp312-cp312-win32.whl (356.4 kB view details)

Uploaded CPython 3.12 Windows x86

aiohttp-3.10.3-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

aiohttp-3.10.3-cp312-cp312-musllinux_1_2_s390x.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

aiohttp-3.10.3-cp312-cp312-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

aiohttp-3.10.3-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

aiohttp-3.10.3-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

aiohttp-3.10.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

aiohttp-3.10.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

aiohttp-3.10.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

aiohttp-3.10.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

aiohttp-3.10.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.10.3-cp312-cp312-macosx_11_0_arm64.whl (388.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.10.3-cp312-cp312-macosx_10_9_x86_64.whl (393.5 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

aiohttp-3.10.3-cp312-cp312-macosx_10_9_universal2.whl (582.9 kB view details)

Uploaded CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64)

aiohttp-3.10.3-cp311-cp311-win_amd64.whl (378.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.10.3-cp311-cp311-win32.whl (358.7 kB view details)

Uploaded CPython 3.11 Windows x86

aiohttp-3.10.3-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

aiohttp-3.10.3-cp311-cp311-musllinux_1_2_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

aiohttp-3.10.3-cp311-cp311-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

aiohttp-3.10.3-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

aiohttp-3.10.3-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

aiohttp-3.10.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

aiohttp-3.10.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

aiohttp-3.10.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

aiohttp-3.10.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

aiohttp-3.10.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.10.3-cp311-cp311-macosx_11_0_arm64.whl (388.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.10.3-cp311-cp311-macosx_10_9_x86_64.whl (396.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.10.3-cp311-cp311-macosx_10_9_universal2.whl (585.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

aiohttp-3.10.3-cp310-cp310-win_amd64.whl (378.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.10.3-cp310-cp310-win32.whl (359.6 kB view details)

Uploaded CPython 3.10 Windows x86

aiohttp-3.10.3-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

aiohttp-3.10.3-cp310-cp310-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

aiohttp-3.10.3-cp310-cp310-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

aiohttp-3.10.3-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

aiohttp-3.10.3-cp310-cp310-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

aiohttp-3.10.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

aiohttp-3.10.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

aiohttp-3.10.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

aiohttp-3.10.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

aiohttp-3.10.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.10.3-cp310-cp310-macosx_11_0_arm64.whl (388.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.10.3-cp310-cp310-macosx_10_9_x86_64.whl (397.1 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.10.3-cp310-cp310-macosx_10_9_universal2.whl (586.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

aiohttp-3.10.3-cp39-cp39-win_amd64.whl (379.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.10.3-cp39-cp39-win32.whl (360.2 kB view details)

Uploaded CPython 3.9 Windows x86

aiohttp-3.10.3-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

aiohttp-3.10.3-cp39-cp39-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

aiohttp-3.10.3-cp39-cp39-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

aiohttp-3.10.3-cp39-cp39-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

aiohttp-3.10.3-cp39-cp39-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.10.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

aiohttp-3.10.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

aiohttp-3.10.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

aiohttp-3.10.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

aiohttp-3.10.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.10.3-cp39-cp39-macosx_11_0_arm64.whl (389.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.10.3-cp39-cp39-macosx_10_9_x86_64.whl (398.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.10.3-cp39-cp39-macosx_10_9_universal2.whl (588.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

aiohttp-3.10.3-cp38-cp38-win_amd64.whl (380.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

aiohttp-3.10.3-cp38-cp38-win32.whl (361.1 kB view details)

Uploaded CPython 3.8 Windows x86

aiohttp-3.10.3-cp38-cp38-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

aiohttp-3.10.3-cp38-cp38-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

aiohttp-3.10.3-cp38-cp38-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

aiohttp-3.10.3-cp38-cp38-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

aiohttp-3.10.3-cp38-cp38-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

aiohttp-3.10.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

aiohttp-3.10.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

aiohttp-3.10.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

aiohttp-3.10.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

aiohttp-3.10.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.10.3-cp38-cp38-macosx_11_0_arm64.whl (390.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

aiohttp-3.10.3-cp38-cp38-macosx_10_9_x86_64.whl (399.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

aiohttp-3.10.3-cp38-cp38-macosx_10_9_universal2.whl (590.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file aiohttp-3.10.3.tar.gz.

File metadata

  • Download URL: aiohttp-3.10.3.tar.gz
  • Upload date:
  • Size: 7.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for aiohttp-3.10.3.tar.gz
Algorithm Hash digest
SHA256 21650e7032cc2d31fc23d353d7123e771354f2a3d5b05a5647fc30fea214e696
MD5 c79524e7d06e86c6ac80dd51eafb5125
BLAKE2b-256 159ced427fcc46423c965a8e33673d7111b6e3b3aa7d61ca52163a720ff200cb

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.10.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 377.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for aiohttp-3.10.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e1128c5d3a466279cb23c4aa32a0f6cb0e7d2961e74e9e421f90e74f75ec1edf
MD5 47258346f3867c61bd89fb308f647446
BLAKE2b-256 fa37df0bffb89398d7788fac30af3578e80d42bd40918d7d9ba897f9577b6b73

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: aiohttp-3.10.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 356.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for aiohttp-3.10.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7f9159ae530297f61a00116771e57516f89a3de6ba33f314402e41560872b50a
MD5 dd657e3bb470e2eff664b0a7f017784a
BLAKE2b-256 32b3acb4b9d6b8291d897727a21a78c8d2ac9cf66710a401533ea18e22e0578d

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08bd0754d257b2db27d6bab208c74601df6f21bfe4cb2ec7b258ba691aac64b3
MD5 ea1ff54128803b9bd3fdadb674da6a25
BLAKE2b-256 55a60b7e8fcaea09b9a7ed20393117385e9943452d47387ab41c0f855bc90a2d

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3461d9294941937f07bbbaa6227ba799bc71cc3b22c40222568dc1cca5118f68
MD5 266b1d181ea52bd4a895e6bb51a0ab90
BLAKE2b-256 4d70620a2f1af15b4772221b53b4b264dd58ea6b254babe1f8cbe4b33b18d82b

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c124b9206b1befe0491f48185fd30a0dd51b0f4e0e7e43ac1236066215aff272
MD5 9dc736e3d9a58655ff7cdca04999e1a0
BLAKE2b-256 a8d653dde1dd45b5018b4e5fa863475ba5c1ad4775f1380db09057ea2aab84b6

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b84857b66fa6510a163bb083c1199d1ee091a40163cfcbbd0642495fed096204
MD5 fbe7f15c4d07c649a237c1a81de3f79d
BLAKE2b-256 a25f9f38854806854bdc59f96b94084054e7195aa14d54e8542bff2eeab8b07c

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c51ed03e19c885c8e91f574e4bbe7381793f56f93229731597e4a499ffef2a5
MD5 7031fc41d0ce8bf49679dfaf3ddfe11e
BLAKE2b-256 113c174127b1f1ca0d22984f4c2f5701839aa6a722d1b6437a28d6e63d0f0241

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56fb94bae2be58f68d000d046172d8b8e6b1b571eb02ceee5535e9633dcd559c
MD5 2b1f08d7c1730e33d941f2c4d5e3b6c9
BLAKE2b-256 0b1d8b50ff7908e7f4ea98bb961e584e53599b268a2898740880d6c43a958db9

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3a9dcdccf50284b1b0dc72bc57e5bbd3cc9bf019060dfa0668f63241ccc16aa7
MD5 fb3e41880fd23d6b4bfd2e797787db0c
BLAKE2b-256 2aca1d1432dd48d587b8d92585677687f0a0ade2397ca4890a713ff8ed0af2ca

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8da6b48c20ce78f5721068f383e0e113dde034e868f1b2f5ee7cb1e95f91db57
MD5 93186bbef0f90ea575d333c719b2ab6e
BLAKE2b-256 909de38ecbdd41cb62cd3ea2c7e1a5ba2912dc9bf5a446db89474178a5848cd5

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d73b073a25a0bb8bf014345374fe2d0f63681ab5da4c22f9d2025ca3e3ea54fc
MD5 c044e73121d4408c981243866d355197
BLAKE2b-256 47bc0b3862e2a13ba44fe29cbf11766c61fe72b738c843401470b9e4c42fa7b2

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bf75716377aad2c718cdf66451c5cf02042085d84522aec1f9246d3e4b8641a6
MD5 cf00370eb95b8c1df97582086175e491
BLAKE2b-256 c61062419a47cf394e9f95d5a80245f8e32d6cbcad62e5d3f9660be372827f85

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d98c604c93403288591d7d6d7d6cc8a63459168f8846aeffd5b3a7f3b3e5e09
MD5 1c63b477f4d2c008f2a84570cf78f4cb
BLAKE2b-256 61a90e03cc539186eb65d6ed74cac4b1f79be22810ee1a4235746143d4889c97

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7084876352ba3833d5d214e02b32d794e3fd9cf21fdba99cff5acabeb90d9806
MD5 098b91647cb26ace0271b8666911dcd2
BLAKE2b-256 957305647e72370a9b2526c9994ef8a2f2bd6293d397d550c715f8b9fc4dd649

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 166de65e2e4e63357cfa8417cf952a519ac42f1654cb2d43ed76899e2319b1ee
MD5 290e7aa36d7d4da68d870013673486dd
BLAKE2b-256 201fb893d3fa8249b8a904cf8f6ae202479fd4baa5260379f6463e28796863c1

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.10.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 378.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for aiohttp-3.10.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 70b4a4984a70a2322b70e088d654528129783ac1ebbf7dd76627b3bd22db2f17
MD5 6cf31a42dad063f1b866fd195c7a979c
BLAKE2b-256 7dc2598addd5ec6f3edcc25c846d0ea22c54f2460e550ea15e470d1b60c2e8d6

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: aiohttp-3.10.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 358.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for aiohttp-3.10.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 05d66203a530209cbe40f102ebaac0b2214aba2a33c075d0bf825987c36f1f0b
MD5 00d52219b9c2517086539b0ec8de0476
BLAKE2b-256 02fce8ad1937309c9315f8c427bfd0931cee2d87c9fa7dc76ed4ee06165081c4

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab3361159fd3dcd0e48bbe804006d5cfb074b382666e6c064112056eb234f1a9
MD5 06530ce964bd4d036154520baf6ef052
BLAKE2b-256 c57b89714591adf08b5ed30a8f1f587994ee3302c8e696101fe68497bf6e59a2

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5337cc742a03f9e3213b097abff8781f79de7190bbfaa987bd2b7ceb5bb0bdec
MD5 bba8148f020e24fc5200058b9c42a55b
BLAKE2b-256 f595f47d9b8d58efe08eb19cab01b51cd016c5c3b94b06b28fabeecdf1a7cee0

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b031ce229114825f49cec4434fa844ccb5225e266c3e146cb4bdd025a6da52f1
MD5 2e22ad4a3302eccb6b3ec1eadbc97539
BLAKE2b-256 d5d486f36f6297c445121c5df2f4dea6dff00b9df6164ad20073cdb2c1b24e30

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d881353264e6156f215b3cb778c9ac3184f5465c2ece5e6fce82e68946868ef
MD5 682eaaf7a879468b27c298adab340018
BLAKE2b-256 de9db7e2ed758c77cecc0cdc0a59c01d4f5dd4b2354e120bca66537b14a9b67c

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61ccb867b2f2f53df6598eb2a93329b5eee0b00646ee79ea67d68844747a418e
MD5 6c730253542c0edde088fbee06d5a52a
BLAKE2b-256 4f5aa0ed4b884ad4c5cf4160f32a3a0c0de72b462360c25d1b6107aac1f40a1a

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3e66d5b506832e56add66af88c288c1d5ba0c38b535a1a59e436b300b57b23e
MD5 218f0c3cdb1cf1ce469b966aa89cad62
BLAKE2b-256 2a359b740478c4d6ddb4756e2a9bf0c4b7936483a9ff92d2e0cad125a261c650

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c9ed607dbbdd0d4d39b597e5bf6b0d40d844dfb0ac6a123ed79042ef08c1f87e
MD5 1440c4eb81f2b3ec88cc17fd6b30a75c
BLAKE2b-256 178d5419529821ca2d82153787f6638b885d55c79da940a19c0eb1dc14aba566

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a5d0ea8a6467b15d53b00c4e8ea8811e47c3cc1bdbc62b1aceb3076403d551f
MD5 7aefdb6bdb89ea321840337c05e6c293
BLAKE2b-256 f1b132680f32c30c28c9929e9438451d0c8b310261927a66483141cb3c8c52d7

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5a9ec959b5381271c8ec9310aae1713b2aec29efa32e232e5ef7dcca0df0279
MD5 8abfc6c46d1a1ef2a07cc81d6c7dba4d
BLAKE2b-256 62739448de67dd32197ad2be12e2d79e1558cd9a7fb8caa037da1599ff9625f9

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fda91ad797e4914cca0afa8b6cccd5d2b3569ccc88731be202f6adce39503189
MD5 ad1a1df20e010a1e34e9c799759a69e2
BLAKE2b-256 3a6c868f6c08cfac8374ea11c00199d556d8a65d9dd9ea59bd1c8c519a0b6943

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc8e9f15939dacb0e1f2d15f9c41b786051c10472c7a926f5771e99b49a5957f
MD5 7ff7011f41a239e55560439cd739dcf0
BLAKE2b-256 8ccb16b5dce7f304d5f099537e681c484f06c904658c344363d2d6278e496717

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 24fade6dae446b183e2410a8628b80df9b7a42205c6bfc2eff783cbeedc224a2
MD5 591d468bb2e6af66435d9fead0e86f3c
BLAKE2b-256 0ad2a2ad7940fac1245a1e7fb7c76db298c88b44890991972bf1c1c502c5398c

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e021c4c778644e8cdc09487d65564265e6b149896a17d7c0f52e9a088cc44e1b
MD5 dfbebd3698a463774c8fe8731b7ebb79
BLAKE2b-256 8ce42dec0e2eca35a23aeba5861f27c013988354d58ea5eb445b94e07d08113f

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.10.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 378.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for aiohttp-3.10.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b51aef59370baf7444de1572f7830f59ddbabd04e5292fa4218d02f085f8d299
MD5 58441e96f90134e4ac9ec048ad3f7313
BLAKE2b-256 1d9016b13272247f87f53f450167e764bcce3a41cbcaeb504e28bd5a19971c08

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: aiohttp-3.10.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 359.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for aiohttp-3.10.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 aed12a54d4e1ee647376fa541e1b7621505001f9f939debf51397b9329fd88b9
MD5 b3a466cf3901fd43779c754537eaac31
BLAKE2b-256 14aabc1585b7ecfdcce796073b13a4e6b9ea6aec53e46018800909ba19fabc87

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ae9ae382d1c9617a91647575255ad55a48bfdde34cc2185dd558ce476bf16e9
MD5 a5e09f1ea1b3bd10c0ad523c80d404e0
BLAKE2b-256 f32cfb6bc1ce8edacab691c59393e76e48b4a0082c576a469aa2e95ac57361aa

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 44bb159b55926b57812dca1b21c34528e800963ffe130d08b049b2d6b994ada7
MD5 302ef4c2d1022c12913dc154f66ebe34
BLAKE2b-256 633cc0ff5614435e8a439eba8ac22c3265d4dbb2fc8a0d6518c24c83d6ccd77c

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0974f3b5b0132edcec92c3306f858ad4356a63d26b18021d859c9927616ebf27
MD5 ac35442bd056992403b07dce6a26409f
BLAKE2b-256 c99df2b167c84c4f50e4e4b652423dc9f5d69b2de78db90750f293ff3e6de8d7

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 671efce3a4a0281060edf9a07a2f7e6230dca3a1cbc61d110eee7753d28405f7
MD5 65a4ddc5b90f0471e31961d8ac4649f1
BLAKE2b-256 858aa3a89ca61dab13dfe158dd9241350e43a854918f5581f914481bdddcf35f

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8542c9e5bcb2bd3115acdf5adc41cda394e7360916197805e7e32b93d821ef93
MD5 6fd6314bd55c098ec39393bbdc9e11a8
BLAKE2b-256 b11372576f761120ed772ea3e6a0f48bbb3ca349721b0782f97c802e51023860

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8cc0564b286b625e673a2615ede60a1704d0cbbf1b24604e28c31ed37dc62aa
MD5 a08cab15a88ec4150ad0547514387c92
BLAKE2b-256 ba3708e8a15c85bbbfcbda5fb3b6a0aaca07e689844c681ff65e9bf78eb753c5

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2bbc55a964b8eecb341e492ae91c3bd0848324d313e1e71a27e3d96e6ee7e8e8
MD5 3bdc900ea2eb86aa6fcae0616ddfba08
BLAKE2b-256 adca632dc973a1134d856730c16bc584b6c48a4ae7114f71cc91fc42c0dc7c68

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 13031e7ec1188274bad243255c328cc3019e36a5a907978501256000d57a7201
MD5 cfc09dcb993a8992cb43dc0b722b6cba
BLAKE2b-256 1c73e56d8de38f8e2d1a831caa9c0da7535b850315415d2c4524ff0ce136478a

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 baec1eb274f78b2de54471fc4c69ecbea4275965eab4b556ef7a7698dee18bf2
MD5 7c13a23f2afab4d53e3b51d3b99f70ec
BLAKE2b-256 f907f8440e28dab2bc654639ad4b7e9fe8ff773302e6ee4fca8064bace0abb8d

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f817a54059a4cfbc385a7f51696359c642088710e731e8df80d0607193ed2b73
MD5 7ac28a0dd894aa3c7b653bd90a89a5d8
BLAKE2b-256 41400eacfbf87352d3f3ef91d9923e336c2b0a353dc606a0456f9c77891f45ac

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71bb1d97bfe7e6726267cea169fdf5df7658831bb68ec02c9c6b9f3511e108bb
MD5 102d1f088b70f6af605266f822319d6c
BLAKE2b-256 86ef03cb37ececc2434f94481a12fa8b0adaf2c6a98bad2b92882b9f157cf1b3

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 85466b5a695c2a7db13eb2c200af552d13e6a9313d7fa92e4ffe04a2c0ea74c1
MD5 e7589c464fc527e1842a1772b495d669
BLAKE2b-256 ac0b893e777abae5e5b2ea87614a22112f435d79d0b7646d5f4507ea2caff4d0

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cc36cbdedf6f259371dbbbcaae5bb0e95b879bc501668ab6306af867577eb5db
MD5 a544e39bc8c86c8a127254c3e611e9e1
BLAKE2b-256 7a44242ec761838af121f798ab701b071f4b3ec7cde800c239e0c7f8e6925595

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.10.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 379.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for aiohttp-3.10.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 673bb6e3249dc8825df1105f6ef74e2eab779b7ff78e96c15cadb78b04a83752
MD5 384447aef35f166ef34a9a206e27298e
BLAKE2b-256 44b50b4bab8cc3e25cfe9d59a20a01b522d358e14949921da2093b14584f9516

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: aiohttp-3.10.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 360.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for aiohttp-3.10.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b69d832e5f5fa15b1b6b2c8eb6a9fd2c0ec1fd7729cb4322ed27771afc9fc2ac
MD5 de3f3f6f41617270886243b2b3a85523
BLAKE2b-256 c1aa6adb626570892e8e442445c780d3a750968127754df822188ab38879d6a7

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f25d6c4e82d7489be84f2b1c8212fafc021b3731abdb61a563c90e37cced3a21
MD5 678b16d040be3088f40a068f7fcf800c
BLAKE2b-256 700b3be367da965f24d378d3dc6b6240f359b9d068f655b418bf226136beabe3

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ba562736d3fbfe9241dad46c1a8994478d4a0e50796d80e29d50cabe8fbfcc3f
MD5 e4d6025fd22c39a56fc72e74b74a3a45
BLAKE2b-256 7a9e9bc06d3bb1e172775d078d23a18c488bd73d880321220b0ecb6b5f251310

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b22cae3c9dd55a6b4c48c63081d31c00fc11fa9db1a20c8a50ee38c1a29539d2
MD5 30529e380d23855d12d8731381961fb3
BLAKE2b-256 f6c2917f32153b6892f73f2bef7508b4300329f37097c83ae56f1037f5b19082

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 af4dbec58e37f5afff4f91cdf235e8e4b0bd0127a2a4fd1040e2cad3369d2f06
MD5 251f3fb7bf3ccb2bac997dc6a6ad95cf
BLAKE2b-256 79a2fc80cccd803c68f058c3ab0ad7be0aca14c580996fb2d111ad233c31353d

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 09bc79275737d4dc066e0ae2951866bb36d9c6b460cb7564f111cc0427f14844
MD5 315d3b1425d944fc586fc8d9c33885b3
BLAKE2b-256 de789edd76e0cd964cdb6b10c8e3fbfffbd5ace6d05947ed5d98aa5400a34433

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59c489661edbd863edb30a8bd69ecb044bd381d1818022bc698ba1b6f80e5dd1
MD5 8519de6e503f44fa8c80b31da5f4ea3d
BLAKE2b-256 8ff0a53eacb7cead892a1b4d98287b9d0d3ae52a75dfa70d1b25f0c1bf4d42ac

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d35235a44ec38109b811c3600d15d8383297a8fab8e3dec6147477ec8636712a
MD5 a5e6503173115034c32332e582bed6cc
BLAKE2b-256 5edafa242ba6f81f8f7ca9505db8b87d84a7328f1447764e5b3a085c20bbce62

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 434b3ab75833accd0b931d11874e206e816f6e6626fd69f643d6a8269cd9166a
MD5 62ee82dc6806bed4882d0032fe54d862
BLAKE2b-256 98c82fd802001ab5b639e9190598ff528c067a28a2bf55dbc2585f0867f4ae78

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 926e68438f05703e500b06fe7148ef3013dd6f276de65c68558fa9974eeb59ad
MD5 f1c5379fe7a6e7697810243d3ea51493
BLAKE2b-256 c388674951f448b0f33b3c9cf9dd0ce484c6ddf9227d22851c0bf5c1bc9dacde

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 50544fe498c81cb98912afabfc4e4d9d85e89f86238348e3712f7ca6a2f01dab
MD5 d9f209644d86549b337c8ae9bddf5b39
BLAKE2b-256 6ce5ed41ec93fded455060b790661559a19dceabbebaffeb85fbc85b3951d085

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c126f532caf238031c19d169cfae3c6a59129452c990a6e84d6e7b198a001dc
MD5 87ca870e74ec147c939ddc1539d3ab0e
BLAKE2b-256 755aa17bee7fdde01414a59e13874f5ab3b97118e3fd61450ee5abf29deffe6d

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9743fa34a10a36ddd448bba8a3adc2a66a1c575c3c2940301bacd6cc896c6bf1
MD5 550c35d720e29b764f77907458e488fc
BLAKE2b-256 f74434b8498ab254fead19ff5384ba071bc1b2e84969fd3b9b8b02b600740181

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 38d91b98b4320ffe66efa56cb0f614a05af53b675ce1b8607cdb2ac826a8d58e
MD5 d0ced02b5f57f936769863cb79d7c457
BLAKE2b-256 6a848fe0ac83613094ca65dfbce259598ec096a40d8be350098a88653d041d8a

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.10.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 380.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for aiohttp-3.10.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3731a73ddc26969d65f90471c635abd4e1546a25299b687e654ea6d2fc052394
MD5 083aaee209dd6a66484098fa1a046018
BLAKE2b-256 5c6252eea2ed50130d00c628bf1ad202ac629d7879cea10b434ba64bb2dcff44

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp38-cp38-win32.whl.

File metadata

  • Download URL: aiohttp-3.10.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 361.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for aiohttp-3.10.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b97dc9a17a59f350c0caa453a3cb35671a2ffa3a29a6ef3568b523b9113d84e5
MD5 70a47946a3b45484f6160f67aaafde98
BLAKE2b-256 bbddf58ede6eabf47c01f015eb98e7654adb14d394e25fe73b83f2c5199bf57f

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 812121a201f0c02491a5db335a737b4113151926a79ae9ed1a9f41ea225c0e3f
MD5 8f203f37ea197090032382db19e4a8a5
BLAKE2b-256 ad34aa1a024906329e62fac2e0a22187a7d6bef0234e20545ce803c88ac74b2a

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 123e5819bfe1b87204575515cf448ab3bf1489cdeb3b61012bde716cda5853e7
MD5 13180fd6638dd15e544f9951d92d710c
BLAKE2b-256 e91115ade3bf19d819f254c53cbb2c3a21f6574e33a2ca9aaf3d52b8cf724425

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 32007fdcaab789689c2ecaaf4b71f8e37bf012a15cd02c0a9db8c4d0e7989fa8
MD5 5cd4616558367d2dc21269fc237e09af
BLAKE2b-256 40bfe811f1be360610c03e2e39f4c6381edecf420638651b623642f56bb4f212

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 214277dcb07ab3875f17ee1c777d446dcce75bea85846849cc9d139ab8f5081f
MD5 8bc7802334e18b717578b32737f1949d
BLAKE2b-256 3ef4f2712a9afe76eb4f8e7864312002f5cd2edc0c9fda9eb852a2943e0f31d7

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd788602e239ace64f257d1c9d39898ca65525583f0fbf0988bcba19418fe93f
MD5 282a6da94481a20bc0ce6e13441ffb32
BLAKE2b-256 bb079a5ab6f06695b7218fd547195e4bbb9e5618fc926d834efcd92badccaa61

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b0f670502100cdc567188c49415bebba947eb3edaa2028e1a50dd81bd13363f
MD5 51aac69357eb7de07f3dd2a1b2d2254e
BLAKE2b-256 9347cd7442ee275b9b169aec321799fb2a8cf675598f9c90f244e79282928ce1

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bac352fceed158620ce2d701ad39d4c1c76d114255a7c530e057e2b9f55bdf9f
MD5 2cbdcb394529d259d21bcd95e8840d6a
BLAKE2b-256 73cecf15b96a03dabcb73e61ddc9ec21184c8ee1e1f334e008494d51ae257d3f

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 48665433bb59144aaf502c324694bec25867eb6630fcd831f7a893ca473fcde4
MD5 98052c0508bebca18e80e679be9416b2
BLAKE2b-256 46d0e35accf66e168a04266f71d41c5699b725843475a79b2d06954a3abda057

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ba2e838b5e6a8755ac8297275c9460e729dc1522b6454aee1766c6de6d56e5e
MD5 083998bd226eaeaa51c1a17233f78ebb
BLAKE2b-256 2b5a1bea615bbba9cdcec053f606f4962ff5269a7bdcc832dd579edf1dabca6e

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 43b09f38a67679e32d380fe512189ccb0b25e15afc79b23fbd5b5e48e4fc8fd9
MD5 81a3d737b6443f458b161a0dfd09a58d
BLAKE2b-256 5030e7d19abc481bb105206df030beee896fea6dc00f97a9b1a477594857e528

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5548444ef60bf4c7b19ace21f032fa42d822e516a6940d36579f7bfa8513f9c
MD5 6cde670b98c1294550c86ff6eb8e626b
BLAKE2b-256 1f1c7bd6a2b54d64a71f032efe145ae7c2afaf8bdff6f2a3a9508eacd87a283c

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a541414578ff47c0a9b0b8b77381ea86b0c8531ab37fc587572cb662ccd80b88
MD5 7155e3f22916f7f36472a8dcd42d78b5
BLAKE2b-256 1b6845be674acb4b2118fecf53f783f1750308ef8e65f1e4882bcf26270030a4

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.3-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.3-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d1100e68e70eb72eadba2b932b185ebf0f28fd2f0dbfe576cfa9d9894ef49752
MD5 9994fa62c00320438ddace500daa3eaa
BLAKE2b-256 da2acfdb062f98fba0f668038d89c5772a8f3cf0e6c00c716500fc0a69373757

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page