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

Uploaded Source

Built Distributions

aiohttp-3.10.6-cp313-cp313-win_amd64.whl (376.4 kB view details)

Uploaded CPython 3.13 Windows x86-64

aiohttp-3.10.6-cp313-cp313-win32.whl (357.1 kB view details)

Uploaded CPython 3.13 Windows x86

aiohttp-3.10.6-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

aiohttp-3.10.6-cp313-cp313-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

aiohttp-3.10.6-cp313-cp313-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

aiohttp-3.10.6-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

aiohttp-3.10.6-cp313-cp313-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

aiohttp-3.10.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

aiohttp-3.10.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

aiohttp-3.10.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

aiohttp-3.10.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

aiohttp-3.10.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

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

aiohttp-3.10.6-cp313-cp313-macosx_11_0_arm64.whl (387.0 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

aiohttp-3.10.6-cp313-cp313-macosx_10_13_x86_64.whl (391.5 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

aiohttp-3.10.6-cp313-cp313-macosx_10_13_universal2.whl (575.7 kB view details)

Uploaded CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)

aiohttp-3.10.6-cp312-cp312-win_amd64.whl (378.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.10.6-cp312-cp312-win32.whl (358.9 kB view details)

Uploaded CPython 3.12 Windows x86

aiohttp-3.10.6-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.6-cp312-cp312-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

aiohttp-3.10.6-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.6-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.6-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.6-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.6-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.6-cp312-cp312-macosx_11_0_arm64.whl (390.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.10.6-cp312-cp312-macosx_10_9_x86_64.whl (395.3 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

aiohttp-3.10.6-cp312-cp312-macosx_10_9_universal2.whl (583.2 kB view details)

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

aiohttp-3.10.6-cp311-cp311-win_amd64.whl (381.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.10.6-cp311-cp311-win32.whl (361.9 kB view details)

Uploaded CPython 3.11 Windows x86

aiohttp-3.10.6-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.6-cp311-cp311-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

aiohttp-3.10.6-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.6-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.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

aiohttp-3.10.6-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.6-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.6-cp311-cp311-macosx_11_0_arm64.whl (390.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.10.6-cp311-cp311-macosx_10_9_x86_64.whl (398.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.10.6-cp311-cp311-macosx_10_9_universal2.whl (586.1 kB view details)

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

aiohttp-3.10.6-cp310-cp310-win_amd64.whl (380.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.10.6-cp310-cp310-win32.whl (362.3 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

aiohttp-3.10.6-cp310-cp310-musllinux_1_2_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

aiohttp-3.10.6-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.6-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.6-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.6-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.6-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.6-cp310-cp310-macosx_11_0_arm64.whl (390.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.10.6-cp310-cp310-macosx_10_9_x86_64.whl (399.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.10.6-cp310-cp310-macosx_10_9_universal2.whl (586.6 kB view details)

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

aiohttp-3.10.6-cp39-cp39-win_amd64.whl (381.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.10.6-cp39-cp39-win32.whl (362.9 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.10.6-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.6-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.6-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.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

aiohttp-3.10.6-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.6-cp39-cp39-macosx_11_0_arm64.whl (391.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.10.6-cp39-cp39-macosx_10_9_x86_64.whl (399.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.10.6-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.6-cp38-cp38-win_amd64.whl (383.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

aiohttp-3.10.6-cp38-cp38-win32.whl (363.8 kB view details)

Uploaded CPython 3.8 Windows x86

aiohttp-3.10.6-cp38-cp38-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

aiohttp-3.10.6-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.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

aiohttp-3.10.6-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.6-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.6-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.6-cp38-cp38-macosx_11_0_arm64.whl (392.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

aiohttp-3.10.6-cp38-cp38-macosx_10_9_x86_64.whl (401.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

aiohttp-3.10.6-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.6.tar.gz.

File metadata

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

File hashes

Hashes for aiohttp-3.10.6.tar.gz
Algorithm Hash digest
SHA256 d2578ef941be0c2ba58f6f421a703527d08427237ed45ecb091fed6f83305336
MD5 6a5b9b8da3ac1f64871e43fe4a0d0358
BLAKE2b-256 2b9715c51bbfcc184bcb4d473b7b02e7b54b6978e0083556a9cd491875cf11f7

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.6-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.10.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 376.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for aiohttp-3.10.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c91781d969fbced1993537f45efe1213bd6fccb4b37bfae2a026e20d6fbed206
MD5 fe5d9042e21b2ec3771ce38131d1d9ca
BLAKE2b-256 57ccba781a170fd4405819cc988026cfa16a9397ffebf5639dc84ad65d518448

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.6-cp313-cp313-win32.whl.

File metadata

  • Download URL: aiohttp-3.10.6-cp313-cp313-win32.whl
  • Upload date:
  • Size: 357.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for aiohttp-3.10.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2dd56e3c43660ed3bea67fd4c5025f1ac1f9ecf6f0b991a6e5efe2e678c490c5
MD5 3d389ac6b723dd55d6832c0e2aff8d94
BLAKE2b-256 9dd9e5866f341cfad4de82caf570218a424f96914192a9230dd6f6dfe4653a93

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.6-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 844d48ff9173d0b941abed8b2ea6a412f82b56d9ab1edb918c74000c15839362
MD5 88980e856379a0e80986fffa04b6bf86
BLAKE2b-256 0a6fa757fdf01ce4d20fcfee35af3b63a2393dbd3478873c4ea9aaad24b093f1

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.6-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9d26da22a793dfd424be1050712a70c0afd96345245c29aced1e35dbace03413
MD5 5ccc449fbb6e891fe7c89b5b9dc79854
BLAKE2b-256 e5a81ddd2af786c3b4f30187bc98464b8e3c54c6bbf18062a20291c6b5b03f27

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.6-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3468b39f977a11271517c6925b226720e148311039a380cc9117b1e2258a721f
MD5 4d253bcc75fdebddd5111fb84e4ca3a2
BLAKE2b-256 8581520348e8ec472679e65deb87c2a2bb2ad2c40e328746245bd35251b7ee4f

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.6-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 27cf19a38506e2e9f12fc17e55f118f04897b0a78537055d93a9de4bf3022e3d
MD5 fa5c71b0bd67b9ad54d37104281291aa
BLAKE2b-256 44b5e099ad2bf7ad6ab5bb685f66a7599dc7f9fb4879eb987a4bf02ca2886974

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.6-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66bc81361131763660b969132a22edce2c4d184978ba39614e8f8f95db5c95f8
MD5 767d4a62c496e18d5661ae894caaddb8
BLAKE2b-256 613543eee26590f369906151cea78297554304ed2ceda5a5ed69cc2e907e9903

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b50b367308ca8c12e0b50cba5773bc9abe64c428d3fd2bbf5cd25aab37c77bf
MD5 7b24d59554a3ad4b6f32204af23eb306
BLAKE2b-256 0dd5e939fcf26bd5c7760a1b71eff7396f6ca0e3c807088086551db28af0c090

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 671745ea7db19693ce867359d503772177f0b20fa8f6ee1e74e00449f4c4151d
MD5 2a697c25db468527a9de22911bf8ab4e
BLAKE2b-256 35374cf6d2a8dce91ea7ff8b8ed8e1ef5c6a5934e07b4da5993ae95660b7cfbc

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4bef1480ee50f75abcfcb4b11c12de1005968ca9d0172aec4a5057ba9f2b644f
MD5 a2aa2b4404bd4003a70607ca8b7736e9
BLAKE2b-256 cd8aa17ec94a7b6394efeeaca16df8d1e9359f0aa83548e40bf16b5853ed7684

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2b3935a22c9e41a8000d90588bed96cf395ef572dbb409be44c6219c61d900d
MD5 9edebb4295c554bc262b50b981b28891
BLAKE2b-256 2db06136aefae0f0d2abe4a435af71a944781e37bbe6fd836a23ff41bbba0682

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6a504d7cdb431a777d05a124fd0b21efb94498efa743103ea01b1e3136d2e4fb
MD5 9fae7d5168993837ebdd99ff07e2e44a
BLAKE2b-256 464485d5d61b3ac50f30766cd2c1d22e6f937f027922621fc91581ead05749f6

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e52e59ed5f4cc3a3acfe2a610f8891f216f486de54d95d6600a2c9ba1581f4d
MD5 d7b31093bf7a009c911595798eba40c8
BLAKE2b-256 784a98c9d9cee601477eda8f851376eff88e864e9f3147cbc3a428da47d90ed0

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.6-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 03fa40d1450ee5196e843315ddf74a51afc7e83d489dbfc380eecefea74158b1
MD5 b30b6cc6e9d06b5ad035cd294d33c042
BLAKE2b-256 846deb3965c55748f960751b752969983982a995d2aa21f023ed30fe5a471629

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.10.6-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 482f74057ea13d387a7549d7a7ecb60e45146d15f3e58a2d93a0ad2d5a8457cd
MD5 53f817ec265d6333291088b64a222aad
BLAKE2b-256 127f89eb922fda25d5b9c7c08d14d50c788d998f148210478059b7549040424a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 378.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for aiohttp-3.10.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fe517113fe4d35d9072b826c3e147d63c5f808ca8167d450b4f96c520c8a1d8d
MD5 c829c55cfaa8aad9ba1c1b6a9473182d
BLAKE2b-256 929f7281a6dae91c9cc3f23dfb865f074151810216f31bdb46843bfde8e39f17

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 358.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for aiohttp-3.10.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3e15e33bfc73fa97c228f72e05e8795e163a693fd5323549f49367c76a6e5883
MD5 84f94485c4045ef716de913285fe6624
BLAKE2b-256 7648fe117dffa13c69d9670e107cbf3dea20be9f7fc5d30d2fd3fd6252f28c58

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92351aa5363fc3c1f872ca763f86730ced32b01607f0c9662b1fa711087968d0
MD5 87f0c5ab4cd7f96a47e8a4a742df0a1b
BLAKE2b-256 143e3679c1438fcb0aadddff32e97b3b88b1c8aea80276d374ec543a5ed70d0d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c82a94ddec996413a905f622f3da02c4359952aab8d817c01cf9915419525e95
MD5 1d0d025c454ac51872389d050f1ed40a
BLAKE2b-256 ce00488d68568f60aa5dbf9d41ef60d276ffbafeab553bf79b00225de7133e0b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ba18573bb1de1063d222f41de64a0d3741223982dcea863b3f74646faf618ec7
MD5 f188c81fb25c06206e36ba13320944b8
BLAKE2b-256 2ee4ffed46ce0b45564cbf715b0b97725840468c7c5a9d6e8d560082c29ad4bf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 438c5863feb761f7ca3270d48c292c334814459f61cc12bab5ba5b702d7c9e56
MD5 46ecd3581f5148111148999ff6f87236
BLAKE2b-256 333433e07d1bc34406bfc0877f22eed071060796431488c8eb6d456c583a74a9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 164ecd32e65467d86843dbb121a6666c3deb23b460e3f8aefdcaacae79eb718a
MD5 a5d88b9d2cd9e0b8e01eb652c2dfc3ec
BLAKE2b-256 e175effbadbf5c9a536f90769544467da311efd6e8c43671bc0729055c59d363

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81b292f37969f9cc54f4643f0be7dacabf3612b3b4a65413661cf6c350226787
MD5 5792a025b8b88d32ce261bc44469846a
BLAKE2b-256 a5f8a8722a471cbf19e56763545fd5bc0fdf7b61324535f0b35bd6f0548d4016

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dc1a16f3fc1944c61290d33c88dc3f09ba62d159b284c38c5331868425aca426
MD5 f34394863afdd1c595a493684d4bd644
BLAKE2b-256 312bf78ff8d84e700a279434dd371ae6e87e12a13f9ed2a5efe9cd6aacd749d4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a637d387db6fdad95e293fab5433b775fd104ae6348d2388beaaa60d08b38c4
MD5 4a7412aa721814b648777ce438f1ff9c
BLAKE2b-256 bd02d0f12cfc7ade482d81c6d2c4c5f2f98964d6305560b7df0b7712212241ca

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 029a019627b37fa9eac5c75cc54a6bb722c4ebbf5a54d8c8c0fb4dd8facf2702
MD5 ee0771c415a4cce5b44efc64b77a63fe
BLAKE2b-256 5c508c3eba14ce77fd78f1def3788cbc75b54291dd4d8f5647d721316437f5da

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0754690a3a26e819173a34093798c155bafb21c3c640bff13be1afa1e9d421f9
MD5 02829af1af49011b156db2d4994f1c8f
BLAKE2b-256 38a5897caff83bfe41fd749056b11282504772b34c2dfe730aaf8e84bbd3a660

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02108326574ff60267b7b35b17ac5c0bbd0008ccb942ce4c48b657bb90f0b8aa
MD5 69efd6ee20a39101a7d15e4080b47455
BLAKE2b-256 250ec0dfb1604645ab64e2b1210e624f951a024a2e9683feb563bbf979874220

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7475da7a5e2ccf1a1c86c8fee241e277f4874c96564d06f726d8df8e77683ef7
MD5 b92b58513d9b2df8a9295f4d5d32427a
BLAKE2b-256 d09ec44dddee462c38853a0c32b50c4deed09790d27496ab9eb3b481614344a5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2708baccdc62f4b1251e59c2aac725936a900081f079b88843dabcab0feeeb27
MD5 dae213a065f3c4584f0b844a3b7da841
BLAKE2b-256 416b0db03d1105e5e8564fd39a87729fd910300a8021b2c59f6f57ed963fe896

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 381.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for aiohttp-3.10.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bf861da9a43d282d6dd9dcd64c23a0fccf2c5aa5cd7c32024513c8c79fb69de3
MD5 8eb8bab3617c910c72fbb8e543f9c19c
BLAKE2b-256 9f2a60284a07a0353250cf64db9728980a3bb9a55eeea334d79c48e65801460a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 361.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for aiohttp-3.10.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bd294dcdc1afdc510bb51d35444003f14e327572877d016d576ac3b9a5888a27
MD5 132b06b79a562077dedca4df896c2c21
BLAKE2b-256 f7c7cc2dc01f89d8a0ee2d84d8d0c85b48ec62a427bcd865736f9ceb340c0117

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6419728b08fb6380c66a470d2319cafcec554c81780e2114b7e150329b9a9a7f
MD5 f12187a77318b2973eefa5a982a25eac
BLAKE2b-256 7ee6bb013958e9fcfb982d8dba12b0c72621427619cd0a11bb3023601c205988

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e1f80cd17d81a404b6e70ef22bfe1870bafc511728397634ad5f5efc8698df56
MD5 28dd0d0e5ba44a615d56470052c09197
BLAKE2b-256 57625b92e910aa95c2558b418eb68f0d117aab968cdd15019c06ea1c66d0baf2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0be3115753baf8b4153e64f9aa7bf6c0c64af57979aa900c31f496301b374570
MD5 d9afabb1b7c36d6de6e4cc5980084b9c
BLAKE2b-256 4f449862295fabcadcf7d79e9a92eb8528866d602042571c43c333d94c7f3025

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b169f8e755e541b72e714b89a831b315bbe70db44e33fead28516c9e13d5f931
MD5 ef6bdf2f8277b43bb9e496a41990bfd9
BLAKE2b-256 f837c80d05752ecbe7419ec61d39facff8d77914e295c8d45eb250d1fa03ae78

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b82c8ebed66ce182893e7c0b6b60ba2ace45b1df104feb52380edae266a4850
MD5 892481861e60adc19d8ab4ae158c239f
BLAKE2b-256 b0dd8b718a8ecb271d484c6d43f4ae3d63e684c259367c8c2cda861f1bf12cfd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 669c0efe7e99f6d94d63274c06344bd0e9c8daf184ce5602a29bc39e00a18720
MD5 6f0fc9cb66526443fc616584f6e0a8c0
BLAKE2b-256 fd804f1c4b5459a27437a8f18f91d6000fdc45b677aee879129deaadc94c1a23

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 47647c8af04a70e07a2462931b0eba63146a13affa697afb4ecbab9d03a480ce
MD5 d6e1f0fab6e38e0cc6a6525a527eb24f
BLAKE2b-256 f87a5f1397305aa5885a35dce0b10681aa547537348a18d107d96a07e99bebb8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a9f196c970db2dcde4f24317e06615363349dc357cf4d7a3b0716c20ac6d7bcd
MD5 304af1c12804f2fded4940ebdb296c38
BLAKE2b-256 51fda923745abb24657264b2122c24a296468cf8c16ba68b7b569060d6c32620

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e05b39158f2af0e2438cc2075cfc271f4ace0c3cc4a81ec95b27a0432e161951
MD5 1a46f124c1dc2df56fefededb379b8ec
BLAKE2b-256 71506db8a9ba23ee4d5621ec2a59427c271cc1ddaf4fc1a9c02c9dcba1ebe671

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c9721cdd83a994225352ca84cd537760d41a9da3c0eacb3ff534747ab8fba6d0
MD5 cb6a87a6ea438f2a69fe91a10d82cece
BLAKE2b-256 e157cef69e70f18271f86080a3d28571598baf0dccb2fc726fbd74b91a56d51a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0749c4d5a08a802dd66ecdf59b2df4d76b900004017468a7bb736c3b5a3dd902
MD5 b6db0a5d6faff886821b6360b087ff64
BLAKE2b-256 492c066640d3c3dd52d4c11dfcff64c6eebe4a7607571bc9cb8ae2c2b4013367

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 995ab1a238fd0d19dc65f2d222e5eb064e409665c6426a3e51d5101c1979ee84
MD5 e0fe31263673d5d2cf8b4cd948b511b8
BLAKE2b-256 df1412804459bd128ff3c7d60dadaf49be9e7027df5c8800290518113c411d00

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f52e54fd776ad0da1006708762213b079b154644db54bcfc62f06eaa5b896402
MD5 9ff7168ad9973ce0d73e897568463b7a
BLAKE2b-256 d5f06c921693dd264db370916dab69cc3267ca4bb14296b4ca88b3855f6152cd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 380.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for aiohttp-3.10.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f8b8e49fe02f744d38352daca1dbef462c3874900bd8166516f6ea8e82b5aacf
MD5 d8ba760368eadd3065070008ae8c2186
BLAKE2b-256 492ed06c4bf365685ba0ea501e5bb5b4a4b0c3f90236f8a38ee0083c56624847

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 362.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for aiohttp-3.10.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9843d683b8756971797be171ead21511d2215a2d6e3c899c6e3107fbbe826791
MD5 c1b12dec800630665d37b72151c30f0a
BLAKE2b-256 822da5afdfb5c37a7dbb4468ff39a4581a6290b2ced18fb5513981a9154c91c1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb138fbf9f53928e779650f5ed26d0ea1ed8b2cab67f0ea5d63afa09fdc07593
MD5 515109719c4f6676e4222606ee74c758
BLAKE2b-256 3c99d5ada3481146b42312a83b16304b001125df8e8e7751c71a0f26cf4fb38f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 14477c4e52e2f17437b99893fd220ffe7d7ee41df5ebf931a92b8ca82e6fd094
MD5 34bb456a9a56e1a78d80cb273ac76eb0
BLAKE2b-256 e2e48534f620113c9922d911271678f6f053192627035bfa7b0b62c9baa48908

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 cf8b8560aa965f87bf9c13bf9fed7025993a155ca0ce8422da74bf46d18c2f5f
MD5 b8c0c83e4322a6a3dbddcf7a72101abc
BLAKE2b-256 b21fc203e3ff4636885f8d47228a717f248b7acd5761a9fb57650f8ad393cb1a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d7f408c43f5e75ea1edc152fb375e8f46ef916f545fb66d4aebcbcfad05e2796
MD5 2b5bd7cc46e8b4c501b18881081e5236
BLAKE2b-256 59d358cf6e9c81064d07173ee0e31743fa18212e3c76d1041a30164e91e91e7d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9bd6b2033993d5ae80883bb29b83fb2b432270bbe067c2f53cc73bb57c46065f
MD5 ad908369d229b112c1aa4c3438383b86
BLAKE2b-256 4fadcb020bdb02e41ed4cf0f9a1031c67424d9dd1b1dd3e5fd98053ed3b4f72f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d2665c5df629eb2f981dab244c01bfa6cdc185f4ffa026639286c4d56fafb54
MD5 4df6595390242d348b80e93ec2620d52
BLAKE2b-256 253496445dc2db0ff0e7ffe71abb73e298a62c2724b774470d5b232ed8ee89ad

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 473961b3252f3b949bb84873d6e268fb6d8aa0ccc6eb7404fa58c76a326bb8e1
MD5 98b41bbd32f2adffbfae94823bc3d922
BLAKE2b-256 bdff984219306cbc1fedd689e9cfe7894d0cb2ae0038f2d7079e2788a79383ee

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ea35d849cdd4a9268f910bff4497baebbc1aa3f2f625fd8ccd9ac99c860c621
MD5 ea3394604ebcc50ec748461b70baedb6
BLAKE2b-256 d577801a07f67a6ccfc2d6e8c372e196b6019f33d637e6a3abf84f876983dbfd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bdbeff1b062751c2a2a55b171f7050fb7073633c699299d042e962aacdbe1a07
MD5 c27066006a16f172ac6ec09a8da76e66
BLAKE2b-256 412b18f60f36d3b0d6b4f9680b00e129058086984af33ab01743d8f8d662ae43

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 25d92f794f1332f656e3765841fc2b7ad5c26c3f3d01e8949eeb3495691cf9f4
MD5 e075a76658ccae41e729988e65d5e36e
BLAKE2b-256 6d5952170050e3e83e476321cce2232c456d55ecf0b67faf9a31b73328d7b65f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8617c96a20dd57e7e9d398ff9d04f3d11c4d28b1767273a5b1a018ada5a654d3
MD5 23bf77b1f753127fa6fad534e4c72e45
BLAKE2b-256 19b1874ca8a6fd581303f1f99efc71aff034e1b955702d54b96a61d97f18387f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 289fa8a20018d0d5aa9e4b35d899bd51bcb80f0d5f365d9a23e30dac3b79159b
MD5 d49903f079dd69f99bc920a710a7383b
BLAKE2b-256 d677bcb8f5e382d800673c6457cab3cb24143ae30578682687d334a556fe4021

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 682836fc672972cc3101cc9e30d49c5f7e8f1d010478d46119fe725a4545acfd
MD5 305678f664b1d631efd190d8f884169e
BLAKE2b-256 00a520d5b4cc1dbf5292434ad968af698c3e25b149394060578c4e83edfe5c56

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 381.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for aiohttp-3.10.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b504c08c45623bf5c7ca41be380156d925f00199b3970efd758aef4a77645feb
MD5 43ee4e802e67954842a90617d28b583f
BLAKE2b-256 dcb9f952f6b156d01a04b6b110ba01f5fed975afdcfaca72ed4d07db964930ce

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 362.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for aiohttp-3.10.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e2e7d5591ea868d5ec82b90bbeb366a198715672841d46281b623e23079593db
MD5 3e5802d829792fb0c880e1bf7c1854f2
BLAKE2b-256 833ec9ad8da2750ad9014a3d00be4809d8b96991ebdc4903ab78c2793362e192

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7641920bdcc7cd2d3ddfb8bb9133a6c9536b09dbd49490b79e125180b2d25b93
MD5 d556ef75a705bdd468b85081564bec4c
BLAKE2b-256 1c0db9c0d5ad9dc99cdfba665ba9ac6bd7aa9b97c866aef180477fabc54eaa56

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ff99ae06eef85c7a565854826114ced72765832ee16c7e3e766c5e4c5b98d20e
MD5 960400afb69e708331430bab799d2825
BLAKE2b-256 fd51e4fde27da37a28c5bdef08d9393115f062c2e198f720172b12bb53b6c4d4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4611db8c907f90fe86be112efdc2398cd7b4c8eeded5a4f0314b70fdea8feab0
MD5 fea1f658e5e42be7348db7963f6af35b
BLAKE2b-256 7c3c51f9dbdabcdacf54b9e9ec1af210509e1a7e262647a106f720ed683b35ee

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8198b7c002aae2b40b2d16bfe724b9a90bcbc9b78b2566fc96131ef4e382574d
MD5 0be1ce6b85e16530a1cbef8c1517d73d
BLAKE2b-256 9b8a3731748b1080b2195268c85010727406ac3cee2fa878318d46de5614372f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a75d5c9fb4f06c41d029ae70ad943c3a844c40c0a769d12be4b99b04f473d3d
MD5 994dc052e910cff1189a79b79e33fca2
BLAKE2b-256 3b50bab30b4bbe1ef7d66d97358129c34379039c69b2b528ff02804a42b0b4da

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4dfa5ad4bce9ca30a76117fbaa1c1decf41ebb6c18a4e098df44298941566f9
MD5 054479030176ea8f8f2071ea7f98423a
BLAKE2b-256 d0d3553e55b6adc881e44e9024d92f9dd70c538d59a19d6a58cb715f0838ce24

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ba3662d41abe2eab0eeec7ee56f33ef4e0b34858f38abf24377687f9e1fb00a5
MD5 b298ab707beac3be425c1d7fb8f9afe3
BLAKE2b-256 5767e6dc17dbdefb459ec3e5b6e8b3332f0e11683fac6fa7ac4b74335a9edc7a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 217791c6a399cc4f2e6577bb44344cba1f5714a2aebf6a0bea04cfa956658284
MD5 1c0d125431f0d6254f4bdad18dd005ae
BLAKE2b-256 72cd62c6c417bc5e49087ae7ae9f66f64c10df6601ead4d2646f5a4a7630ac30

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a86610174de8a85a920e956e2d4f9945e7da89f29a00e95ac62a4a414c4ef4e
MD5 9c813df8ced65e8c146edce831d6e5bb
BLAKE2b-256 00b8a3559410e6fa6e96eec4623a517c84e6774576a276dad5380e1720871760

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e0009258e97502936d3bd5bf2ced15769629097d0abb81e6495fba1047824fe0
MD5 f4fa40b1ae796d759df6373e9e4b677b
BLAKE2b-256 29a1f444b1c39039b9f020d02e871c5afd6e0eaeecf34bfcd47ef8f82408c1bf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a976ef488f26e224079deb3d424f29144c6d5ba4ded313198169a8af8f47fb82
MD5 ec6806b890bb2ce39fb0c72a41c0fb22
BLAKE2b-256 d3deb60c688d89c357b23084facc1602a23dcfac812d50175bdd6b0d941e8e08

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3fb4216e3ec0dbc01db5ba802f02ed78ad8f07121be54eb9e918448cc3f61b7c
MD5 9278c212e116b88cf3828b6bada91f49
BLAKE2b-256 2c902e5f130dbac00f615c99a041fbd0734f40d68f94f32e7e5bc74ac148e228

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5db26bbca8e7968c4c977a0c640e0b9ce7224e1f4dcafa57870dc6ee28e27de6
MD5 b4fc5c5c29a27bdfde5f2daa566ed06f
BLAKE2b-256 e38c09c36451df52c753e46be8a1d9533d61d19acdced8424e06575d41285e24

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 383.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for aiohttp-3.10.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 58c5d7318a136a3874c78717dd6de57519bc64f6363c5827c2b1cb775bea71dd
MD5 ed951950c91eb4b5f6b5d4b028383c7e
BLAKE2b-256 a3f5761294d41143220477f0011319a12feb4eda5349a78bd26e586efa67f2d9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 363.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for aiohttp-3.10.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 614fc21e86adc28e4165a6391f851a6da6e9cbd7bb232d0df7718b453a89ee98
MD5 771842ba7957db87247d9165fb1f4e3d
BLAKE2b-256 1a7b32aca4bc14030d0bb10abe3142d77563e323c73f0fedf1d5123ceebe7e46

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3427031064b0d5c95647e6369c4aa3c556402f324a3e18107cb09517abe5f962
MD5 c28042d4de37273ffd4620b91fd30678
BLAKE2b-256 76e5d0dde2fd818adada4977392e7a9edf30942f1a769b6cd8a8aabbeb083588

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2cd5290ab66cfca2f90045db2cc6434c1f4f9fbf97c9f1c316e785033782e7d2
MD5 57e9138671bbd8a1d33e27e24de4e04a
BLAKE2b-256 0d0875bb3bf2207515576e819db779a03a84c1ef277420989f4ebd9fcc2a6d7d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4752df44df48fd42b80f51d6a97553b482cda1274d9dc5df214a3a1aa5d8f018
MD5 87f7769512819e788c1b4fa8825b4db9
BLAKE2b-256 2b2705fc10a2375dd7c00229a91f7d96a3115a2914eb70504c77a905e850b1db

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f3af26f86863fad12e25395805bb0babbd49d512806af91ec9708a272b696248
MD5 bb9d1e0b7b81adf254e44852b38e27ee
BLAKE2b-256 d1e89e74fb40ab93255c48ef9a8aae5f2fe16a0b9d5ab97434321ccd8936ec6a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40271a2a375812967401c9ca8077de9368e09a43a964f4dce0ff603301ec9358
MD5 d486fd919e988b9d08540432fe5812ac
BLAKE2b-256 856a72b17d29fa82558546b031a54e8a42c8a534104de0dff2a8b078de4328cc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 370e2d47575c53c817ee42a18acc34aad8da4dbdaac0a6c836d58878955f1477
MD5 cd020d9af08b0f4c72adba4a4dcca68f
BLAKE2b-256 2075221349d01b6ecb053e2edcf2b27d27b5c9756b65c03eac7d65b33923ce00

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5582de171f0898139cf51dd9fcdc79b848e28d9abd68e837f0803fc9f30807b1
MD5 d01032f63a4ef9b63598ae683dc1178e
BLAKE2b-256 247c4261759c9a3a63a66328fa4afa24a67b1cf549755cdcc82e9d4f52050507

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cca776a440795db437d82c07455761c85bbcf3956221c3c23b8c93176c278ce7
MD5 710900f0478053d0df0e8713936f7e07
BLAKE2b-256 cfbf4921f165eb8af85b63ebbc5e186c10850598e07798a667d95160aa046d31

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79a9f42efcc2681790595ab3d03c0e52d01edc23a0973ea09f0dc8d295e12b8e
MD5 4bbd7eae6e76eeb64a711da2dd53ca76
BLAKE2b-256 eae213a0e5699002c64ed2fdd08afe2c701675639eac62cbcddae08cd470fb32

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 444d1704e2af6b30766debed9be8a795958029e552fe77551355badb1944012c
MD5 b61e3acdbecca86b4aebbf763bb3bb9e
BLAKE2b-256 a2e3d5ba8d21b4191514e36f6ef441892356a15ada9af15649df9087ca6875cf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fabdcdc781a36b8fd7b2ca9dea8172f29a99e11d00ca0f83ffeb50958da84a1
MD5 f74d11ea9788d4ac6586c84191d2fd0e
BLAKE2b-256 a5907f2211cc0b864831542b2cb24316d1798eeee9aa64485c159b61ec3cc23a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1cb045ec5961f51af3e2c08cd6fe523f07cc6e345033adee711c49b7b91bb954
MD5 a6a67c448b74b44d0d46ae9caf25f233
BLAKE2b-256 d3b72e359b29cd581f467d2b1d84db0c838d0b77e8dd9512e769d0a45e022fec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.6-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4407a80bca3e694f2d2a523058e20e1f9f98a416619e04f6dc09dc910352ac8b
MD5 2922a2a54e1c408146ed96230027432f
BLAKE2b-256 920e2c140dd9d4f7ed5070d4000b38d3d870dfdb20616b1126a60eddf9e6d780

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