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

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.4.tar.gz (7.5 MB view details)

Uploaded Source

Built Distributions

aiohttp-3.10.4-cp312-cp312-win_amd64.whl (377.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.10.4-cp312-cp312-win32.whl (356.9 kB view details)

Uploaded CPython 3.12 Windows x86

aiohttp-3.10.4-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.4-cp312-cp312-musllinux_1_2_s390x.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

aiohttp-3.10.4-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.4-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.4-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.4-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.4-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.4-cp312-cp312-macosx_11_0_arm64.whl (389.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.10.4-cp312-cp312-macosx_10_9_x86_64.whl (394.0 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

aiohttp-3.10.4-cp312-cp312-macosx_10_9_universal2.whl (583.4 kB view details)

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

aiohttp-3.10.4-cp311-cp311-win_amd64.whl (379.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.10.4-cp311-cp311-win32.whl (359.2 kB view details)

Uploaded CPython 3.11 Windows x86

aiohttp-3.10.4-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.4-cp311-cp311-musllinux_1_2_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

aiohttp-3.10.4-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.4-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.4-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.4-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.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (388.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.10.4-cp311-cp311-macosx_10_9_x86_64.whl (397.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.10.4-cp311-cp311-macosx_10_9_universal2.whl (586.4 kB view details)

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

aiohttp-3.10.4-cp310-cp310-win_amd64.whl (379.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.10.4-cp310-cp310-win32.whl (360.1 kB view details)

Uploaded CPython 3.10 Windows x86

aiohttp-3.10.4-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.4-cp310-cp310-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

aiohttp-3.10.4-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.4-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.4-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.4-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.4-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.4-cp310-cp310-macosx_11_0_arm64.whl (389.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.10.4-cp310-cp310-macosx_10_9_x86_64.whl (397.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.10.4-cp310-cp310-macosx_10_9_universal2.whl (587.0 kB view details)

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

aiohttp-3.10.4-cp39-cp39-win_amd64.whl (379.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.10.4-cp39-cp39-win32.whl (360.7 kB view details)

Uploaded CPython 3.9 Windows x86

aiohttp-3.10.4-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.4-cp39-cp39-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.10.4-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.4-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.4-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.4-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.4-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.4-cp39-cp39-macosx_11_0_arm64.whl (389.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.10.4-cp39-cp39-macosx_10_9_x86_64.whl (398.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.10.4-cp39-cp39-macosx_10_9_universal2.whl (588.7 kB view details)

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

aiohttp-3.10.4-cp38-cp38-win_amd64.whl (381.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

aiohttp-3.10.4-cp38-cp38-win32.whl (361.6 kB view details)

Uploaded CPython 3.8 Windows x86

aiohttp-3.10.4-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.4-cp38-cp38-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

aiohttp-3.10.4-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.4-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.4-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.4-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.4-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.4-cp38-cp38-macosx_11_0_arm64.whl (390.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

aiohttp-3.10.4-cp38-cp38-macosx_10_9_x86_64.whl (399.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

aiohttp-3.10.4-cp38-cp38-macosx_10_9_universal2.whl (590.9 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.10.4.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.4.tar.gz
Algorithm Hash digest
SHA256 23a5f97e7dd22e181967fb6cb6c3b11653b0fdbbc4bb7739d9b6052890ccab96
MD5 b60b913cb9c2ffdb48d66fa31b45ef10
BLAKE2b-256 805e42678cd8af232a01441b375b963a6c79943718a0cb9da90ab7e5ff14f1d3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 377.6 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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 347bbdc48411badc24fe3a13565820bc742db3aa2f9127cd5f48c256caf87e29
MD5 9e843eea5322a338cca5fdfdbb62a4cc
BLAKE2b-256 4a8abeffc9e73bbe9ff5d601abfe5fd247942db11d69024bfc1f291e68f95b8f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 356.9 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.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 45bb655cb8b3a61e19977183a4e0962051ae90f6d46588ed4addb8232128141c
MD5 1b36b5685eb9e588441fb583a10fd94c
BLAKE2b-256 c13e89e1e02e987c03e341c3dc60174dd261f351f0721858c651b9520a5ad94a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9dc26781fb95225c6170619dece8b5c6ca7cfb1b0be97b7ee719915773d0c2a9
MD5 f78e98282ce5b889733b2af7c8e0da69
BLAKE2b-256 c306ae52f3f5aa0fbefacfb03dbd8004f86646075fa678edf29913ed900f62ef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e99bf118afb2584848dba169a685fe092b338a4fe52ae08c7243d7bc4cc204fe
MD5 8138164c3f180a1969585d5ebc17ec81
BLAKE2b-256 dae47a48aa94f82dca076b33665f50203ec70363e559f38e4d1a7afecc96e18d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 438c6e1492d060b21285f4b6675b941cf96dd9ef3dfdd59940561029b82e3e1f
MD5 cd0f2e9205fcfa811250afcaf471c6ec
BLAKE2b-256 5d1d56df7b7a26822f67879da14bc542186f90c0d456d8f2b3e1cbb4dce66d26

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2d64a5a7539320c3cecb4bca093ea825fcc906f8461cf8b42a7bf3c706ce1932
MD5 4af839b66e244814b59493cd4d501fc3
BLAKE2b-256 86e3c8e2b00567a66b26b88902ded8137376d0a60060ca88d9b3d3b60448444c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb898c9ad5a1228a669ebe2e2ba3d76aebe1f7c10b78f09a36000254f049fc2b
MD5 7d1afccf95cc4ee8110b7d8dad36683d
BLAKE2b-256 bb147edd83bc46d663fec1d4576a9634681395fc309273dd02f0e4902d838f22

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2015e4b40bd5dedc8155c2b2d24a2b07963ae02b5772373d0b599a68e38a316b
MD5 aa90cf24443b30b8b88bba7c2d7e4371
BLAKE2b-256 2ed534627ab260d89d09d4e70f6aa747cfc523b0581f8213c9a3da452bd9275d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf61884a604c399458c4a42c8caea000fbcc44255ed89577ff50cb688a0fe8e2
MD5 63b6a1aefafe81c66be8ed5a798b6124
BLAKE2b-256 64562e65f7564d43355fbce6fc9eeaa6f92dd1e33391059528aafe2a6c09f15e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5c4a71d4a5e0cbfd4bfadd13cb84fe2bc76c64d550dc4f22c22008c9354cffb3
MD5 a7d3a9e231070ea094f0d7d6dfd72b43
BLAKE2b-256 7db26b90ab4d41e1641a5ac30d551f0353d4b4b719c323e806b911fdb356783a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9eb3df1aa83602be9a5e572c834d74c3c8e382208b59a873aabfe4c493c45ed0
MD5 eacf934d455ef6ecaea36576c6853ebb
BLAKE2b-256 271e80053ef461269e7eb73d4c37ebef299e44feda8beba72cf37ca328502382

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b06e1a66bf0a1a2d0f12aef25843dfd2093df080d6c1acbc43914bb9c8f36ed3
MD5 bdadc08e871524f458ada3a9f1d42e00
BLAKE2b-256 99a0bb92d94248ea2d595cee867fdc8c2310980e772affb17670c6d32155aa11

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fff8606149098935188fe1e135f7e7991e6a36d6fe394fd15939fc57d0aff889
MD5 c2b257baef15d62b2a16068d729d4f5b
BLAKE2b-256 3e04c38966106bc98b40498bf17866acdfda3eaffe2786b80e135d8addb3124c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fef7b7bd3a6911b4d148332136d34d3c2aee3d54d354373b1da6d96bc08089a5
MD5 8d1a8631d414141b939470194c71848f
BLAKE2b-256 a508f46eb5cf4c96ca77d6e3a181a9e9f27439a48b9ac4dff180ce75ad79ddf3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fe4d63f42d9c604521b208b754abfafe01218af4a8f6332b43196ee8fe88bbd5
MD5 ab84ebbdb4ae8643e551e0f774a32b41
BLAKE2b-256 5ac58ed69d3f7231da5dc68fd07da9022de12954c01001eb870717b681930f5c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 379.1 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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ebddbfea8a8d6b97f717658fa85a96681a28990072710d3de3a4eba5d6804a37
MD5 62489379e7ef2e19983f6cc2ef29ff7f
BLAKE2b-256 81070c07923781bc6df979ad911eef6eda64ce2e028e2f4678024a37540030e7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 359.2 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.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 705c311ecf2d30fbcf3570d1a037c657be99095694223488140c47dee4ef2460
MD5 36355d4567a6d762d76ce9370042f407
BLAKE2b-256 35070a77e3a004b54a5d5d5db433b6abfe75401b62497d67062e2beb566ac76d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ce101c447cf7ba4b6e5ab07bfa2c0da21cbab66922f78a601f0b84fd7710d72
MD5 d932c86e52254c613729c0fbcf6b604b
BLAKE2b-256 01f2bcdc382a6f03c1791e8755ee10bcaac0564920485b56fbc3a96daf7658ee

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c253e81f12da97f85d45441e8c6da0d9c12e07db4a7136b0a955df6fc5e4bf51
MD5 a0bcf52006790b7e60645f3bf94ad52e
BLAKE2b-256 ebbba98116cacd4c046b4668719c4d6a93862be6691598194fe6f65c40b0cbbf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ff371ae72a1816c3eeba5c9cff42cb739aaa293fec7d78f180d1c7ee342285b6
MD5 acbbb86566d191628ae7d62f19f6c0dd
BLAKE2b-256 3ac3a9434fbc1da00b9f751b8fb9278c0c139aa200fe92eac3b361a586b4535f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 77071795efd6ba87f409001141fb05c94ee962b9fca6c8fa1f735c2718512de4
MD5 e631373aabdfffce38846e21e6c3d5e3
BLAKE2b-256 4d97820e0dc5f756bb3e28fd8a133882f66abdd76d5f51d3412469a896adf9c1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93ee83008d3e505db9846a5a1f48a002676d8dcc90ee431a9462541c9b81393c
MD5 12deb2bff3dd73cf25992a2b61375911
BLAKE2b-256 d71094f59aee44d7fd42c4beb69fecf813c34b1caaa58a249af7e42f05420232

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a24ac7164a824ef2e8e4e9a9f6debb1f43c44ad7ad04efc6018a6610555666d
MD5 a0180e970ff7d5d2c3059dd69796959c
BLAKE2b-256 ef9c97f471a31bd723feca5abed6e65975851aadea9de593d394d30460649416

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9d7958ba22854b3f00a7bbb66cde1dc759760ce8a3e6dfe9ea53f06bccaa9aa2
MD5 d6d9ffc18553ec0cd633063b8e521de5
BLAKE2b-256 457e54dc016e730c7861cb224b1b6f1e07b135278b35e3c5d35da9102ef31cdf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8616dd5ed8b3b4029021b560305041c62e080bb28f238c27c2e150abe3539587
MD5 7d26cb3978c548e3a459615adb8966eb
BLAKE2b-256 758ade91bd24b7cd2b7fb00c30c279b6c962ccfad8c1d9a744fa2c57f1de4952

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dca39391f45fbb28daa6412f98c625265bf6b512cc41382df61672d1b242f8f4
MD5 89c10470583de7af3892b70926896958
BLAKE2b-256 f3e257407e14fb0b135eaee23caeee343f43c20086bcd16c35fcfea7bf99833f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 660ad010b8fd0b26e8edb8ae5c036db5b16baac4278198ad238b11956d920b3d
MD5 7220cc52cfcf0e48d47f517b27fc8c61
BLAKE2b-256 47b9a4e1c4486600492d92d75a3710a01185616e23a5c0ca216efecf38206530

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cc75ff5efbd92301e63a157fddb18a6964a3f40e31c77d57e97dbb9bb3373b4
MD5 656daf5d028ec1cf70721eaaba1535ba
BLAKE2b-256 6b1c382794f92bf1643bfef97e2574e7678767ab944fc513fcfd97837c2ea7de

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f6fe78b51852e25d4e20be51ef88c2a0bf31432b9f2223bdbd61c01a0f9253a7
MD5 8f364127043bf673f9fb7e8730e3e801
BLAKE2b-256 621d8b77f34608dac487c52f83b151a09d8c4862ffe43097a2416c159a31e77b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 dfe48f477e02ef5ab247c6ac431a6109c69b5c24cb3ccbcd3e27c4fb39691fe4
MD5 8d0f5d3d3826d55bd213b2e310ea3295
BLAKE2b-256 014df161a307765cf459db05dd277039df090aac8f7b9289811fe0313b1be52b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 379.1 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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 326fb5228aadfc395981d9b336d56a698da335897c4143105c73b583d7500839
MD5 d96dd808605ab7220ab393964c023f72
BLAKE2b-256 fff06cfe6ee0aa4a9d3175482b0d09966002ddae17de5811a4f83880c26a8177

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 360.1 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.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8593040bcc8075fc0e817a602bc5d3d74c7bd717619ffc175a8ba0188edebadf
MD5 d0ebe3b2ae0b3ddee370f0e808a95ebb
BLAKE2b-256 6bee3deb5efb04898f37f21afe145f8d9820945e182d2d365fb284d5870a4986

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93a19cd1e9dc703257fda78b8e889c3a08eabaa09f6ff0d867850b03964f80d1
MD5 2ea8fc99f66f2df3165c09cb0a48d4f2
BLAKE2b-256 b79a7b2da5946ff679654e091a9ac2f3c15e87c4217744b9f281956efd63d78a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 46cc9069da466652bb7b8b3fac1f8ce2e12a9dc0fb11551faa420c4cdbc60abf
MD5 e7fc06f62c25c0ed112d11859edca958
BLAKE2b-256 d61f5a4c839fbacdb8f458c444c2e2016ffea8e52ad9b4b92498e1b640a179a8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8ba0fbc56c44883bd757ece433f9caadbca67f565934afe9bc53ba3bd99cc368
MD5 deae344d3fd2ce5efafcf3d4a1647cd3
BLAKE2b-256 ef3e661155d9daf1dd4ecb27a2e23499de92f3b421581d54ec4384da77e156dd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 96b2e7c110a941c8c1a692703b8ac1013e47f17ee03356c71d55c0a54de2ce38
MD5 da92821b809534dde92f02f0e95d587c
BLAKE2b-256 7ea0c18984bd4fcdfd2ee0a79264a8744f024c90b971a5e4a47b31eb261ef03b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d202ec55e61f06b1a1eaf317fba7546855cbf803c13ce7625d462fb8c88e238
MD5 55ec8ba288b9149e785a75d501426052
BLAKE2b-256 5f249ebc7a8ee376c0f1f4e5092021939a8ed12baa8a98ecb0ef7cebdb0b5fe7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc98d93d11d860ac823beb6131f292d82efb76f226b5e28a3eab1ec578dfd041
MD5 0d69f7d93c2db9662f66c8f29bb70c1f
BLAKE2b-256 e26da1b8fc040503a1b7d2d21f4dfd19c16182d57a75fda5a9fbdd5dfccad1f1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6075e27e7e54fbcd1c129c5699b2d251c885c9892e26d59a0fb7705141c2d14b
MD5 aca03ee9da9461bfde7554efbe2bec10
BLAKE2b-256 616710362abc2445ca8e5141c23e26dbd2e6be5e991c8b36cf60673269e93491

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f6acd1a908740f708358d240f9a3243cec31a456e3ded65c2cb46f6043bc6735
MD5 3a1c5da17ce5cfe2df1104c2e4363314
BLAKE2b-256 4584656eb7938a6ea1625c9d79e9ece2055720190f8bf3de11ec743232c35bd2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc990e73613c78ab2930b60266135066f37fdfce6b32dd604f42c5c377ee880a
MD5 4142170bc07558398f29718cc026a011
BLAKE2b-256 ee53de5a272e7796f442bde1ce75eb017942f862ed835f7dfec01cfa36ef6fca

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 201ddf1471567568be381b6d4701e266a768f7eaa2f99ef753f2c9c5e1e3fb5c
MD5 366549ccc8046726e00e6ac3c2600892
BLAKE2b-256 814519f3239e8356ba86f3f10a91fbe945a3b4f7e320228b6c7dbf5dcafd2747

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c774f08afecc0a617966f45a9c378456e713a999ee60654d9727617def3e4ee4
MD5 75287a69bd9bc0d4705238dcf335cc78
BLAKE2b-256 e82e45cfb64ca08db2ba09e7a1f95230d7c82d270f9ca714891d3e4397d461b0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 71944d4f4090afc07ce96b7029d5a574240e2f39570450df4af0d5b93a5ee64a
MD5 15b580a6f0c14fbcb3cef9891d9fb708
BLAKE2b-256 ba8d37f904539e514898ba715e4539e2adcc24c70e580cbd89014bd573f44e1f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 81037ddda8cc0a95c6d8c1b9029d0b19a62db8770c0e239e3bea0109d294ab66
MD5 9508bc0d8b4ec8cba4dfe5d37f4e826b
BLAKE2b-256 92edf088df16685b097d0c1c0d04d827be6160f2032b176c13d71ddb8d1558ce

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 379.7 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.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9b58b2ef7f28a2462ba86acbf3b20371bd80a1faa1cfd82f31968af4ac81ef25
MD5 5d3780119aa3b9c301b7e396b3728c26
BLAKE2b-256 34c0928569adb9e47570b892499e94be2656d06cd05e978cd6c4bdd2c18b75a4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 360.7 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.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5115490112f39f16ae87c1b34dff3e2c95306cf456b1d2af5974c4ac7d2d1ec7
MD5 db49e3f2d1252174ac70c87dfeb5741c
BLAKE2b-256 4a6c1982a9ecf41cbfc61168631ca89cdd64d7b887d25d308ae1b33fe33b12d3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 625a4a9d4b9f80e7bbaaf2ace06341cf701b2fee54232843addf0bb7304597fb
MD5 8a4a506c05fe968136dfd3477182ecdd
BLAKE2b-256 94ced924f3045e69c7a1cc18a5cb35954724b8cc4c2d92fc19ce9eae989c711c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d0665e2a346b6b66959f831ffffd8aa71dd07dd2300017d478f5b47573e66cfe
MD5 64dbc975f639a6d23ea4fad1a6c62d83
BLAKE2b-256 d531efb5100fcbbb1fcd35769d30d26cbf275f8eb5f37533b1cf24559f618eeb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 122c26f0976225aba46f381e3cabb5ef89a08af6503fc30493fb732e578cfa55
MD5 cd2302478d1d92b2d3c1fea55f10ebe5
BLAKE2b-256 c08c5121d1170e5cf0ad1d70d81848c176864df4986e7f907860d454336cecdf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9bcdd19398212785a9cb82a63a4b75a299998343f3f5732dfd37c1a4275463f9
MD5 2df1aa9d8592bdb6d0e3f8922f95c3a0
BLAKE2b-256 7517be248d303aaf3f6d1564bcc73f85fd57b26bd2f9e22f2ff42cc61dd22171

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50ac670f3fc13ce95e4d6d5a299db9288cc84c663aa630142444ef504756fcf7
MD5 552e3d947a62eac29037516c3797d032
BLAKE2b-256 b9dd57c0c9e5c434ecc62e8f200f2784f0e1f43d7fb0d8069cf1554a00f1bc46

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d697023b16c62f9aeb3ffdfb8ec4ac3afd477388993b9164b47dadbd60e7062
MD5 ed1fdc07376023cb805f0a63dc30bcd1
BLAKE2b-256 dc55f92f00aa467b6bbb01ab023f1bfdf2b3f6c3d0c8e1dc97107258eec3d80f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 938e37fd337343c67471098736deb33066d72cec7d8927b9c1b6b4ea807ade9e
MD5 53c8b6170b325034832426bf1a30b4fd
BLAKE2b-256 2d899029f3f1f6d76a989546b57ae5e3b0f6672f84b3b3990b9e87708f95a715

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92021bf0a4b9ad16851a6c1ca3c86e5b09aecca4f7a2576430c6bbf3114922b1
MD5 4c5cc561aa99b487b2ab14bb6bf17170
BLAKE2b-256 522056b334b122299f365b5ae7e88496bfd8f069e2dd0c1bb9bc95c683040fc1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5991b80886655e6c785aadf3114d4f86e6bec2da436e2bb62892b9f048450a4
MD5 b6564e26810fdd8d836d3d77dd8ef53b
BLAKE2b-256 f44461bc60fd154799f0c14d52860d02c7bdc85d8e1dbcd293493531cc755c0c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c2f9f07fe6d0d51bd2a788cbb339f1570fd691449c53b5dec83ff838f117703e
MD5 2c76fc1c68465e7f1a72cb3672ba5a4c
BLAKE2b-256 4602c0b345d1ae8fe681fcf707cf2abcbad868dba0d4938f04837548d693447d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd33f4d571b4143fc9318c3d9256423579c7d183635acc458a6db81919ae5204
MD5 891b47cb40a1f1be1e683fb2b0e02aff
BLAKE2b-256 5c1bc5964edd98cf9e2ca81a502a0fe25e40803027862c5281fcd2b0477ab0dd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 394ddf9d216cf0bd429b223239a0ab628f01a7a1799c93ce4685eedcdd51b9bc
MD5 10dffa22f3ab39c4cdcb3cb0294e80ac
BLAKE2b-256 acee7f34f01c352d8d6a99611912678d6db7a6c3757f016dc32953ee71049179

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 15b36a644d1f44ea3d94a0bbb71e75d5f394a3135dc388a209466e22b711ce64
MD5 f0bdcaab4797671853cd3ebb67c6db14
BLAKE2b-256 3e09404bfcdd8d6f1d5f39462f633aa99b5242e1bb3eda4e1fcdf8ba981f6ff6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 381.3 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.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0fd1f57aac7d01c9c768675d531976d20d5b79d9da67fac87e55d41b4ade05f9
MD5 98a4ba74278d83707701bc035a4d2ac7
BLAKE2b-256 c2426cde64fc05ccd60bf9f1de782db45d7d63e3989be5aa7fbf0ac23717c608

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 361.6 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.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b71722b527445e02168e2d1cf435772731874671a647fa159ad000feea7933b6
MD5 21d27be43a24ba2ea191b2170325fccc
BLAKE2b-256 f42bf97b5cf6853e53cc75ca74ab8313cd7ad0641788d7d7a52a16b25a2a8267

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03c5a3143d4a82c43a3d82ac77d9cdef527a72f1c04dcca7b14770879f33d196
MD5 525473bbbd49a35dca43a4ac540a3578
BLAKE2b-256 9845f356cc9add32ce7a04d442f4fa1c382ff85098083c2500760bfaf07d29be

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c031de4dfabe7bb6565743745ab43d20588944ddfc7233360169cab4008eee2f
MD5 b13acf50910aa1635a3c7afced668452
BLAKE2b-256 8455652843f190b2b683be03823454ef79bcba089387f1ec7ab08bf6a469ef48

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b95e1694d234f27b4bbf5bdef56bb751974ac5dbe045b1e462bde1fe39421cbe
MD5 c5c67d2dbafb8a4833189d46765e7195
BLAKE2b-256 09e350517d479a555151f60a049ff3e3bc229728d336729cd00aa57688f6783a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c3fd3b8f0164fb2866400cd6eb9e884ab0dc95f882cf8b25e560ace7350c552d
MD5 16125636368f9fd2e58ce3f6528e2138
BLAKE2b-256 8f9a01ab24d39d780d7521cdd1ce2b74924a70f27f8894021716244724512acb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b34e5086e1ead3baa740e32adf35cc5e42338e44c4b07f7b62b41ca6d6a5bfd
MD5 a4b02619b6cfdb6d7899a0fb4ce875b3
BLAKE2b-256 c9819023cf923bb3805ba93cef8db8367bfebb465c2c90a4fbb586eea706c467

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e685afb0e3b7b861d89cb3690d89eeda221b43095352efddaaa735c6baf87f3
MD5 9827d11dd9e728749b2b6c25d3db7a25
BLAKE2b-256 32208fa98ab755ed7c8836a5babe414391c7efb96ba626528edcaa7a89655660

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 38bb515f1affc36d3d97b02bf82099925a5785c4a96066ff4400a83ad09d3d5d
MD5 9cb5a7cc18af623f1f1436f52f63e91c
BLAKE2b-256 1ca85a09a5c03124e3b24dc2d75e4a719822897fe36295a89475bde65c8b7198

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c9e9e9a51dd12f2f71fdbd7f7230dcb75ed8f77d8ac8e07c73b599b6d7027e5c
MD5 48cdd32d9a5bd6e4c9d6f55f3359423b
BLAKE2b-256 5a41aca7b906fa95e429a4cedf1e63a413db30c62e579e6ac0ee2b44120a9833

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93f1a0e12c321d923c024b56d7dcd8012e60bf30a4b3fb69a88be15dcb9ab80b
MD5 b0c82b450e2ae077246901c5a2f083f3
BLAKE2b-256 7c117f1bd4982ba75c3ddb0a06411825bb4212018378e229f0c202205f4c45c6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 abd5673e3391564871ba6753cf674dcf2051ef19dc508998fe0758a6c7b429a0
MD5 0ae78cba16e8ab0e76b9e0aff621f6ce
BLAKE2b-256 5bdfa05b130a073fa2250ef2a4f0493cb66e3dd622093ad0aac6724754be81e1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f52225af7f91f27b633f73473e9ef0aa8e2112d57b69eaf3aa4479e3ea3bc0e
MD5 e9bcf3eea6e5203a26c886c014c271b1
BLAKE2b-256 c233a309012add0e899b52e1051da72ed5d3ab3a6901a6f184fc51a2aad1736f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 58df59234be7d7e80548b9482ebfeafdda21948c25cb2873c7f23870c8053dfe
MD5 886e5abaac081949012b306fcb7b4db1
BLAKE2b-256 2d5354277080435d4aa3416eab7639a0b1c8ab2df54f3ebffc6805fdc40739e7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.4-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4ad284cee0fdcdc0216346b849fd53d201b510aff3c48aa3622daec9ada4bf80
MD5 4051b83d92e016d7d715189b94a9102a
BLAKE2b-256 98cb68e0663d2726f18386d2ea8c29444a5f8d319a0ee745a83eeb556b8a10d7

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