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

Uploaded Source

Built Distributions

aiohttp-3.10.8-cp313-cp313-win_amd64.whl (376.6 kB view details)

Uploaded CPython 3.13 Windows x86-64

aiohttp-3.10.8-cp313-cp313-win32.whl (357.4 kB view details)

Uploaded CPython 3.13 Windows x86

aiohttp-3.10.8-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.8-cp313-cp313-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

aiohttp-3.10.8-cp313-cp313-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

aiohttp-3.10.8-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.8-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.8-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.8-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.8-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.8-cp313-cp313-macosx_11_0_arm64.whl (387.2 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

aiohttp-3.10.8-cp313-cp313-macosx_10_13_x86_64.whl (391.7 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

aiohttp-3.10.8-cp313-cp313-macosx_10_13_universal2.whl (575.9 kB view details)

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

aiohttp-3.10.8-cp312-cp312-win_amd64.whl (379.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.10.8-cp312-cp312-win32.whl (359.1 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

aiohttp-3.10.8-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.8-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.8-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.8-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.8-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.8-cp312-cp312-macosx_11_0_arm64.whl (390.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.10.8-cp312-cp312-macosx_10_9_x86_64.whl (395.5 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

aiohttp-3.10.8-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.8-cp311-cp311-win_amd64.whl (381.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.10.8-cp311-cp311-win32.whl (362.1 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

aiohttp-3.10.8-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.8-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.8-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.8-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.8-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.8-cp311-cp311-macosx_11_0_arm64.whl (390.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.10.8-cp311-cp311-macosx_10_9_x86_64.whl (398.8 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.10.8-cp311-cp311-macosx_10_9_universal2.whl (586.3 kB view details)

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

aiohttp-3.10.8-cp310-cp310-win_amd64.whl (380.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.10.8-cp310-cp310-win32.whl (362.5 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

aiohttp-3.10.8-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.8-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.8-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.8-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.8-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.8-cp310-cp310-macosx_11_0_arm64.whl (390.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.10.8-cp310-cp310-macosx_10_9_x86_64.whl (399.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.10.8-cp310-cp310-macosx_10_9_universal2.whl (586.8 kB view details)

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

aiohttp-3.10.8-cp39-cp39-win_amd64.whl (381.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.10.8-cp39-cp39-win32.whl (363.1 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.10.8-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.8-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.8-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.8-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.8-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.8-cp39-cp39-macosx_11_0_arm64.whl (391.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.10.8-cp39-cp39-macosx_10_9_x86_64.whl (400.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.10.8-cp39-cp39-macosx_10_9_universal2.whl (588.4 kB view details)

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

aiohttp-3.10.8-cp38-cp38-win_amd64.whl (383.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

aiohttp-3.10.8-cp38-cp38-win32.whl (364.0 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

aiohttp-3.10.8-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.8-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.8-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.8-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.8-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.8-cp38-cp38-macosx_11_0_arm64.whl (392.4 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

aiohttp-3.10.8-cp38-cp38-macosx_10_9_x86_64.whl (401.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

aiohttp-3.10.8-cp38-cp38-macosx_10_9_universal2.whl (590.6 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.10.8.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.8.tar.gz
Algorithm Hash digest
SHA256 21f8225f7dc187018e8433c9326be01477fb2810721e048b33ac49091b19fb4a
MD5 7a761add2234e037c8387de6ab21a769
BLAKE2b-256 4e05da5ff89c85444a6ade9079e73580fb3f78c6ba0e170a2472f15400d03e02

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.8-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 376.6 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.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 98a4eb60e27033dee9593814ca320ee8c199489fbc6b2699d0f710584db7feb7
MD5 a28d4be785926b8994d2e1f8c93d7495
BLAKE2b-256 cb8ab4f3a8d0fb7f4fdb3869db6c3334e23e11878123605579e067be85f7e01f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.8-cp313-cp313-win32.whl
  • Upload date:
  • Size: 357.4 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.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 177126e971782769b34933e94fddd1089cef0fe6b82fee8a885e539f5b0f0c6a
MD5 7e9e348a36f56aea4e159f97984164a4
BLAKE2b-256 c3310b84027487fa58a124251b47f9dca781e4777a50d1c4eea4d3fc8950bd10

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71462f8eeca477cbc0c9700a9464e3f75f59068aed5e9d4a521a103692da72dc
MD5 3838ad82620efdbd85b0940b7eabacc8
BLAKE2b-256 df55d6e3a13c3f37ad7a3e60a377c96541261c1943837d240f1ab2151a96da6b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e860985f30f3a015979e63e7ba1a391526cdac1b22b7b332579df7867848e255
MD5 e8b5b986ec2767d1a9e949500cbf4b1f
BLAKE2b-256 aeecc38c8690e804cb9bf3e8c473a4a7bb339ed549cd63c469f19995269ca9ec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 badb51d851358cd7535b647bb67af4854b64f3c85f0d089c737f75504d5910ec
MD5 a8d48f525c4fdc1e0a6234ab8f8b96b9
BLAKE2b-256 6fd25080c27b656e6d478e820752d633d7a4dab4a2c4fd23a6f645b553fb9da5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fecd55e7418fabd297fd836e65cbd6371aa4035a264998a091bbf13f94d9c44d
MD5 b04e1523038a6fe8d82cd12c15414e7a
BLAKE2b-256 3b18027a8497caf3a9c247477831d67ede58e1e42a92fd635ecdb74cf5d45c8b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f21e8f2abed9a44afc3d15bba22e0dfc71e5fa859bea916e42354c16102b036f
MD5 306dd21d45cc074e20aef45cda2664bd
BLAKE2b-256 a4bcad73aced93836b8749c70e617c5d389d17a36da9ee220cdb0804f803bd9b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 270e653b5a4b557476a1ed40e6b6ce82f331aab669620d7c95c658ef976c9c5e
MD5 64f384faa72e5e0e707db0cbf3885c25
BLAKE2b-256 4722f184c27d03d34ce71e6d4b9976a4ff845d091b725f174b09f641e4a28f63

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 365783e1b7c40b59ed4ce2b5a7491bae48f41cd2c30d52647a5b1ee8604c68ad
MD5 97c15924eae64e29b91325b733bf82c0
BLAKE2b-256 23095ebe3a2dbdd008711b659dc2f2a6135bbc055b6c8869688083f4bec6b50a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b2036479b6b94afaaca7d07b8a68dc0e67b0caf5f6293bb6a5a1825f5923000
MD5 15bc93f67cf9308ce07c5ed7c1ee79af
BLAKE2b-256 ab1c8ae6b12be2ae88e94be34d96765d6cc820d61d320f33c0423de8af0cfa47

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4dbf252ac19860e0ab56cd480d2805498f47c5a2d04f5995d8d8a6effd04b48c
MD5 4efbdae90f2b2a13ae834957c3c4a35f
BLAKE2b-256 aefd235401bd4a98ea31cdda7b3822921e2a9cbc3ca0af1958a12a2709261735

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8960fabc20bfe4fafb941067cda8e23c8c17c98c121aa31c7bf0cdab11b07842
MD5 47def5e99305c5dcc82f6f5b9ba1adc4
BLAKE2b-256 82f6bae1703bfacb19bb35e3522632fc5279793070625a0b5e567b109c0f0e8d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8885ca09d3a9317219c0831276bfe26984b17b2c37b7bf70dd478d17092a4772
MD5 25c35f6ff95969dcfc57bb69187744cf
BLAKE2b-256 0e1b27cc6efa6ca3e563973c7e03e8b7e26b75b4046aefea991bad42c028a906

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2df786c96c57cd6b87156ba4c5f166af7b88f3fc05f9d592252fdc83d8615a3c
MD5 14e75590e7ecd58ce256fa5694eac2a3
BLAKE2b-256 2abfa6a1d14b0e5f90d53b1f0850204f9fafdfec7c1d99dda8aaea1dd93ba181

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 b1a012677b8e0a39e181e218de47d6741c5922202e3b0b65e412e2ce47c39337
MD5 f5abe966259afcbc6a6dc881cadc9fd4
BLAKE2b-256 9fdd3d944769ed65d3d245f8f976040654b3eae2e21d05c81f91fb450365bddf

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 379.1 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.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ab1546fc8e00676febc81c548a876c7bde32f881b8334b77f84719ab2c7d28dc
MD5 59a8f263c7b3cfb6cd4b5b8670c8cd4c
BLAKE2b-256 d20f1ecbc18eed29952393d5a9c4636bfe789dde3c98fe0a0a4759d323478e72

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.8-cp312-cp312-win32.whl
  • Upload date:
  • Size: 359.1 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.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a3081246bab4d419697ee45e555cef5cd1def7ac193dff6f50be761d2e44f194
MD5 3f252fa0d9c6615152cf5d9930d9f778
BLAKE2b-256 1ec0a4cb21ad677757368743d73aff27047dfc0d7248cb39dec06c059b773c24

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6769d71bfb1ed60321363a9bc05e94dcf05e38295ef41d46ac08919e5b00d19
MD5 c9139df77cce62b179dd6c534240dba6
BLAKE2b-256 cfb750cc827dd54df087d7c30293b29fbc13a7ea45a3ac54a4a12127b271265c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9a281cba03bdaa341c70b7551b2256a88d45eead149f48b75a96d41128c240b3
MD5 e12e16d7a46ceae0bbaa9c71e95f7016
BLAKE2b-256 6dc384492f103c724d3149bba413e1dc081e573c44013bd2cc8f4addd51cf365

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 fe3d79d6af839ffa46fdc5d2cf34295390894471e9875050eafa584cb781508d
MD5 97335f9923fd1ac31884030ebd4814b8
BLAKE2b-256 22e14be1b057044c3d874e795744446c682715b232281adbe94612ddc9877ee4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a961ee6f2cdd1a2be4735333ab284691180d40bad48f97bb598841bfcbfb94ec
MD5 0e28dc0818d03f456005bcedf7727a6e
BLAKE2b-256 401d2513347c445d1aaa694e79f4d45f80d777ea3e4d772d9480577834dc2c1c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57359785f27394a8bcab0da6dcd46706d087dfebf59a8d0ad2e64a4bc2f6f94f
MD5 c8bd7a081e314f51c98a51679246c186
BLAKE2b-256 9ecfbc024d8a848ee4feaae6a037034cf8b173a14ea9cb5c2988b6e5018abf33

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c887019dbcb4af58a091a45ccf376fffe800b5531b45c1efccda4bedf87747ea
MD5 6cc1f7f313b1820d3a43cff2c1335e88
BLAKE2b-256 9f95b940d71b1f61cf2ed48f2918c292609d251dba012a8e033afc0c778ed6a7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 497a7d20caea8855c5429db3cdb829385467217d7feb86952a6107e033e031b9
MD5 478d5b8f1f6dbd9d742bd1480a9d9960
BLAKE2b-256 0c3f1d74a1311b14a1d69aad06775ffc1c09c195db67d951c8319220b9c64fdc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 21c1925541ca84f7b5e0df361c0a813a7d6a56d3b0030ebd4b220b8d232015f9
MD5 f0e8aa0ebcd7dcc93f1b4cb6a4caaf7f
BLAKE2b-256 8b7eed2eb276fdf946a9303f3f80033555d3eaa0eadbcdd0c31b153e33b495fc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4618f0d2bf523043866a9ff8458900d8eb0a6d4018f251dae98e5f1fb699f3a8
MD5 c758897a3bb57e1d8fa1f0be84918499
BLAKE2b-256 1beec1663449864ec9dd3d2a61dde09112bea5e1d881496c36146a96fe85da62

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 40d2d719c3c36a7a65ed26400e2b45b2d9ed7edf498f4df38b2ae130f25a0d01
MD5 560ace59a3d00aa92686e08f3c9824f2
BLAKE2b-256 9b25b096aebc2f9b3ed738a4a667b841780b1dcd23ce5dff7dfabab4d09de4c8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de23085cf90911600ace512e909114385026b16324fa203cc74c81f21fd3276a
MD5 25c281627c6606536c67f984db4a4fae
BLAKE2b-256 a85aaca17d71eb7e0f4611b2f28cb04e05aaebe6c7c2a7d1364e494da9722714

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f5d5d5401744dda50b943d8764508d0e60cc2d3305ac1e6420935861a9d544bc
MD5 bb6d122c868a35b4520d66cbd2d8a904
BLAKE2b-256 915c75287ab8a6ae9cbe02d45ebb36b1e899c11da5eb47060e0dcb98ee30a951

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ab2d6523575fc98896c80f49ac99e849c0b0e69cc80bf864eed6af2ae728a52b
MD5 5d8566d0e80372417f69f32e2096b38e
BLAKE2b-256 bbcea8ff9f5bd2b36e3049cfe8d53656fed03075221ff42f946c581325bdc8fc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 381.4 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.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ef9b484604af05ca745b6108ca1aaa22ae1919037ae4f93aaf9a37ba42e0b835
MD5 e75cb84ea58cc762ef3957909cf2ba8c
BLAKE2b-256 bc4a8881d4d7259427897e1a314c2724e65fd0d20084c72cac8360665f96c347

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.8-cp311-cp311-win32.whl
  • Upload date:
  • Size: 362.1 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.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f8179855a4e4f3b931cb1764ec87673d3fbdcca2af496c8d30567d7b034a13db
MD5 412d8c8ab2c85c5325d3204730dfb405
BLAKE2b-256 38137294cb679ab7a80e5b0d0aa97c527690cffed2f34cb8892d73ebdb4204e8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f78e2a78432c537ae876a93013b7bc0027ba5b93ad7b3463624c4b6906489332
MD5 4bee153840f0e670de47ea2cae8d54d6
BLAKE2b-256 bc671a76a69adfe3013863df4142d37059fb357146815b29596945d61fb940cb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e45fdfcb2d5bcad83373e4808825b7512953146d147488114575780640665027
MD5 57c1f5093a74726976a68260081134f0
BLAKE2b-256 1a22d8439a280161b542a28f88794ab55917cdc672544b87db52d3c41ce8d9a1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d3a79200a9d5e621c4623081ddb25380b713c8cf5233cd11c1aabad990bb9381
MD5 479aca58840dbf46565b3fe09cee7d42
BLAKE2b-256 126358ebde5ea32cf5f19c83d6dc2c582ca5f0c42ce4cf084216a3cda4b2e34a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5aa1a073514cf59c81ad49a4ed9b5d72b2433638cd53160fd2f3a9cfa94718db
MD5 31bcc3c97795e3e37f6aec5b42d48d79
BLAKE2b-256 6d7719a032cfb9fdfd69591cf173c23c62992774b2ff978e4dab3038a1955e14

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e32148b4a745e70a255a1d44b5664de1f2e24fcefb98a75b60c83b9e260ddb5b
MD5 6d3cec341ac1d906aa12c90a4e86d47d
BLAKE2b-256 9e05f9624dc401f72a3ee4cddea1a555b430e9a7be9d0cd2ab53dbec2fc78279

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a72f89aea712c619b2ca32c6f4335c77125ede27530ad9705f4f349357833695
MD5 ddda818565a679a4188eba2f0fa10c87
BLAKE2b-256 5476b106eb516d327527a6b1e0409a3553745ad34480eddfd0d7cad48ddc9848

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f6d47e392c27206701565c8df4cac6ebed28fdf6dcaea5b1eea7a4631d8e6db
MD5 7d4662e8914ca2d7af86c1b11f28394a
BLAKE2b-256 ae9ff27ba4cd2bffb4885aa35827a21878dbd3f50d6e5b205ce1107ce79edc40

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6984dda9d79064361ab58d03f6c1e793ea845c6cfa89ffe1a7b9bb400dfd56bd
MD5 a9804e11c3f63aa9341238210a97a8c6
BLAKE2b-256 33e73b6b5ad02e367f30927bb93263127c23290f5b11900d036429f4787e1948

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c7f270f4ca92760f98a42c45a58674fff488e23b144ec80b1cc6fa2effed377
MD5 7cd6492212e2018aea675eaa74a36922
BLAKE2b-256 17f5206e6a58a3a5be39662a07f531a6033384e361e272735437c5c15176c601

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c36074b26f3263879ba8e4dbd33db2b79874a3392f403a70b772701363148b9f
MD5 31482d762e027c21973727ce93f3c03c
BLAKE2b-256 7d0cc116a27253c0bc76959ab8df5a109d482c0977d4028e1b3ec7fac038bb1a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddb9b9764cfb4459acf01c02d2a59d3e5066b06a846a364fd1749aa168efa2be
MD5 2c09d842a3a8efae8156e8870209ed2f
BLAKE2b-256 c4e477b029c12d025d1e448662977f1e7c6fb33a19c42181c8d20c2791b5c5d9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c7efa6616a95e3bd73b8a69691012d2ef1f95f9ea0189e42f338fae080c2fc6
MD5 52fe26313d30f26d211fd9b17584e017
BLAKE2b-256 4a077215d085dc10dd2e10f36832b2ca278f30970b4db98d5ebfed9e228d5c0c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 33a68011a38020ed4ff41ae0dbf4a96a202562ecf2024bdd8f65385f1d07f6ef
MD5 ad67a077ef6bc3c00cad2d3148d222b7
BLAKE2b-256 07ca2fc934c4c86865d0eb9c46f8f57443f0655f2a4a5c1dde60ec1d6d0f0881

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 380.9 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.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 680dbcff5adc7f696ccf8bf671d38366a1f620b5616a1d333d0cb33956065395
MD5 d9d476bc06e6ca34cea51317c3da52c5
BLAKE2b-256 ed2ae0b2544192abd09de44b3abb03d2ae6476bf2f35d3a911f2111c579e466d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.8-cp310-cp310-win32.whl
  • Upload date:
  • Size: 362.5 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.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4e10b04542d27e21538e670156e88766543692a0a883f243ba8fad9ddea82e53
MD5 0d25bd38a2b9b1474114a89c8300739d
BLAKE2b-256 e599a71685093ba39102590b7110a8b57d00261a35f8fb1ac865a35498d67262

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d82404a0e7b10e0d7f022cf44031b78af8a4f99bd01561ac68f7c24772fed021
MD5 44dd07bccefc46d349c91115af555fc7
BLAKE2b-256 e34a1615e27e67e51c0f808bb4302a9d0e90e1522b179a26a4fb8bee88619f65

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3a95d2686bc4794d66bd8de654e41b5339fab542b2bca9238aa63ed5f4f2ce82
MD5 bf7c68015b0206d5fa128352223663e7
BLAKE2b-256 2ed5a03f5360bd1db3f465643f4a5e7e5ea98d8c3859ec29da43aad9fafcbad0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e56bb7e31c4bc79956b866163170bc89fd619e0581ce813330d4ea46921a4881
MD5 ffddce3ae9f3389d7ff1791b5b9ccab1
BLAKE2b-256 33645524f2e70aedb9233e955b442243e5d2607c2a4875fcf1fb5c90ff2beff8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 22cdeb684d8552490dd2697a5138c4ecb46f844892df437aaf94f7eea99af879
MD5 00a961327b040bde71c559d72cfa0515
BLAKE2b-256 ab9f46b12a637962e6795731ae8e43c43689e1261cbae98cdb9100a6b3458414

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9721554bfa9e15f6e462da304374c2f1baede3cb06008c36c47fa37ea32f1dc4
MD5 c9ab39d76396632fea950c2ad6a09043
BLAKE2b-256 56f86d21d76264743821a077e50e04a275c08e9dac181b1e840d795ce00ef24e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd9716ef0224fe0d0336997eb242f40619f9f8c5c57e66b525a1ebf9f1d8cebe
MD5 b7b4f27e6045e730ed537f0f7293d072
BLAKE2b-256 1e995a99a25b101d3aacafd139a5477b23ab258ea3e8603dda253fdad1291e81

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 10c7932337285a6bfa3a5fe1fd4da90b66ebfd9d0cbd1544402e1202eb9a8c3e
MD5 59287681960c18e1aafc5be561485ce4
BLAKE2b-256 d665adf0db007864d6b26c8cb8d29b41bb79d2596640779fc3310a6e3b756715

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fe285a697c851734285369614443451462ce78aac2b77db23567507484b1dc6f
MD5 d23023198f2beb82d8aa150e42ce224c
BLAKE2b-256 cfa989315ad2dade031c7e0eb2446475471c65267f841228b35d3f2b6aa5873f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee3587506898d4a404b33bd19689286ccf226c3d44d7a73670c8498cd688e42c
MD5 0daec71db9ee69e1b774a8c902179f80
BLAKE2b-256 e2a00abb1c58ee9f5f418100fbdeb26bf7b030b33dc9dfc29f5acfb2d6896cc5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ceacea31f8a55cdba02bc72c93eb2e1b77160e91f8abd605969c168502fd71eb
MD5 722b2b7614e14d6dddf727ea25920462
BLAKE2b-256 25f770542eb6dce26c8ebdf7b3df7be0d88f338e3b26868d21b62e6f17f0469c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69de056022e7abf69cb9fec795515973cc3eeaff51e3ea8d72a77aa933a91c52
MD5 677976c678fcb77efc8c0ced2799f1fc
BLAKE2b-256 c13b23baa9c6cb19ae3b70cbe0f00881b33fc0994d3366808ad2621c3ed8f8d1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 85e4d7bd05d18e4b348441e7584c681eff646e3bf38f68b2626807f3add21aa2
MD5 b8e1eea9f2eb31398d30a7499fe6dac0
BLAKE2b-256 b328a1ae71c7395c1d39972bf5b3fcb0a1056ddd51faf7ab29f38267ad0e9eb3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a1ba7bc139592339ddeb62c06486d0fa0f4ca61216e14137a40d626c81faf10c
MD5 4e2711744ef0da646e035c7090cdc2a1
BLAKE2b-256 802f602f6e79ab70fbd881ba599f66e29254efab7e63ac463f513d25d8878ce5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.8-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 381.6 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.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d95ae4420669c871667aad92ba8cce6251d61d79c1a38504621094143f94a8b4
MD5 9b8972b78f86d3f30d5f68c007575717
BLAKE2b-256 039b63c4207aa34e281b3b79d3b8adf8c69595b8e0924bdba6015d0855dfd5e1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.8-cp39-cp39-win32.whl
  • Upload date:
  • Size: 363.1 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.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ee97c4e54f457c366e1f76fbbf3e8effee9de57dae671084a161c00f481106ce
MD5 b79557b40118db8b2345a0fd078d780b
BLAKE2b-256 0005185e3d052cc560b2b349375c1b65d5f8224fa0d120694c95b689fa2bd207

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d088ca05381fd409793571d8e34eca06daf41c8c50a05aeed358d2d340c7af81
MD5 0c3e32b2354496cda3f18db101a6947d
BLAKE2b-256 f93fc988abd19f47308ba5916925eae9e12c1d1e119831985d3704717a2c9ce0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 aff048793d05e1ce05b62e49dccf81fe52719a13f4861530706619506224992b
MD5 e77362caf7ef9b3a4e5da9527b043ae8
BLAKE2b-256 7482cb7a4423412a57fde2ef3da09f81f6a44712b1112c9eb9f3447c321ae263

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a78ba86d5a08207d1d1ad10b97aed6ea48b374b3f6831d02d0b06545ac0f181e
MD5 7a1c264eb1ac9e51239b9a6e0015312b
BLAKE2b-256 4889effdde85e6a92b755fa070abdb8dead3aab3559fac622672cc382eee116e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d1ad868624f6cea77341ef2877ad4e71f7116834a6cd7ec36ec5c32f94ee6ae
MD5 90cca191050c00bf46150b6e37a8a09a
BLAKE2b-256 7c6635f89c01e509dbb137a54bd8eadda2c03b055007ba3662b9fbef32db2fcb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 21a72f4a9c69a8567a0aca12042f12bba25d3139fd5dd8eeb9931f4d9e8599cd
MD5 d8c5572a9fd3e116645ce4e8a76e72d3
BLAKE2b-256 e26824941e3dcf5ce86c946e644036f4fff429d050db4e38d5a3485449680f0a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c38cfd355fd86c39b2d54651bd6ed7d63d4fe3b5553f364bae3306e2445f847
MD5 88e8526fcc45b87117cc188fbac43657
BLAKE2b-256 25b38b20a25c896c6286e411be8fc6f3280bb9d7e9e4c9c90d0618a6c004ab2c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1ce46dfb49cfbf9e92818be4b761d4042230b1f0e05ffec0aad15b3eb162b905
MD5 32abfb26838f9865a10dc9ca09f17d01
BLAKE2b-256 2567838d3480274b2c1c293085c6dcc02fa3df3330d01f8120d1b0d23ab856f0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8296edd99d0dd9d0eb8b9e25b3b3506eef55c1854e9cc230f0b3f885f680410b
MD5 ac9e236c6d6aeaabd706581c3eef316c
BLAKE2b-256 15c0cd22a0e81ce71d2daf6d3eab1f6ed3c5e51bfd940e1a610bb5217a7d521f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98fae99d5c2146f254b7806001498e6f9ffb0e330de55a35e72feb7cb2fa399b
MD5 62ca2878566e2f8b5980bd979c391d76
BLAKE2b-256 9e7997dae3796e12de60cd53c3622d9cb77d71215dbb576117219d018a643850

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 713dff3f87ceec3bde4f3f484861464e722cf7533f9fa6b824ec82bb5a9010a7
MD5 52c80647278b0b252e50cd40dadebf39
BLAKE2b-256 e36e73a6d31ee68962dd5deb29f6cde60c4b8f15d8e06bb43f1b8d1270854bf7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b667e2a03407d79a76c618dc30cedebd48f082d85880d0c9c4ec2faa3e10f43e
MD5 9ed1c1f85bdc3381542ef1183dc2fa48
BLAKE2b-256 24a60ba62cc72f372d90ea6769c0e671b5bfdc727260dee9d80fc691d8d1b3d4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9443d9ebc5167ce1fbb552faf2d666fb22ef5716a8750be67efd140a7733738c
MD5 89eefe7cf6e006c05dfcb6bc9a7d3a78
BLAKE2b-256 403733a03c8788e7189cacf6de312dcaa00b204c4b955da0cfe788b3fc60d9d2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5284997e3d88d0dfb874c43e51ae8f4a6f4ca5b90dcf22995035187253d430db
MD5 24959f3b773862fd24f9fd17b1747552
BLAKE2b-256 fd6a2584a63cccff456ddadce3e561009b3a655d3b0030ab170704aeb97fc892

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.8-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 383.3 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.8-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c4916070e12ae140110aa598031876c1bf8676a36a750716ea0aa5bd694aa2e7
MD5 e0ca321f08c501b0c2c0839b78f47dcf
BLAKE2b-256 d3f83a2b62a20dfec5baf01b9534716aa041c9c7d97d25bbdc42b4b36bca0d06

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.8-cp38-cp38-win32.whl
  • Upload date:
  • Size: 364.0 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.8-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e1f0f7b27171b2956a27bd8f899751d0866ddabdd05cbddf3520f945130a908c
MD5 c5c7977620d93c4009efb143dd8b9498
BLAKE2b-256 6bf1b88bd8236ddb3753f0fb5affdf14ed8f4533e277c75fb8551d987eddf50b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a087c84b4992160ffef7afd98ef24177c8bd4ad61c53607145a8377457385100
MD5 e7cf72671c3dfa7354fe38a183139cb6
BLAKE2b-256 30d642230bedf7880b0fddbdd31d09bb1ae7c7ec8b8123b0ee0f96eaf0243f36

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4954e6b06dd0be97e1a5751fc606be1f9edbdc553c5d9b57d72406a8fbd17f9d
MD5 788b08bc6fc6237fa27a2b07c6b64342
BLAKE2b-256 c1fd2ddf2ee6ae99d54a3a0e606454c2277cad4af1bde6440117889564c62cb2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b91557ee0893da52794b25660d4f57bb519bcad8b7df301acd3898f7197c5d81
MD5 8e7f071079fcb11c8aac6fc1271e5ecf
BLAKE2b-256 733ee34206cf0b15888b2697075a2ef2132d6416aa036c89d704d0efb1e2270a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 85431c9131a9a0f65260dc7a65c800ca5eae78c4c9931618f18c8e0933a0e0c1
MD5 386ef719aee4bfe152d8192a42ca14eb
BLAKE2b-256 950358130bdea81870732bab913783e909a22a87eccad1a35511e31d6cdd6305

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc0e7f91705445d79beafba9bb3057dd50830e40fe5417017a76a214af54e122
MD5 70e27f8b79f506b6666e257d9026f7a0
BLAKE2b-256 83fd2ae6346cb70307590cfe28fe264d9a18f4a1fbe4cc55281a068fc574e9bd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b91f4f62ad39a8a42d511d66269b46cb2fb7dea9564c21ab6c56a642d28bff5
MD5 70794ad8f7949cf64db103d7655ef21a
BLAKE2b-256 1bc2148678d5bc6269f4b8fc6f6bafff23013941903e71cbff8e99b45d9fa3c1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32710d6b3b6c09c60c794d84ca887a3a2890131c0b02b3cefdcc6709a2260a7c
MD5 2e95084921356c317690e594a69b9729
BLAKE2b-256 b7aef8d1c9a068ed09dabd776cede27438a144c33933dbff5b97e39b47d40fe6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1e7a6af57091056a79a35104d6ec29d98ec7f1fb7270ad9c6fff871b678d1ff8
MD5 35ec5f9732ea1570c08b8106b0d5f471
BLAKE2b-256 325ac9d296e4599beaa056ffdbdf219f5da576a6f25ba8a1102f9ca4ecee12b5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da57af0c54a302b7c655fa1ccd5b1817a53739afa39924ef1816e7b7c8a07ccb
MD5 779803140ebad173ff005722261fb723
BLAKE2b-256 9c123c80abe645a3f9e52d20a9fb7cc8d518dec126222bfe0901cb1f10632b0b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 471a8c47344b9cc309558b3fcc469bd2c12b49322b4b31eb386c4a2b2d44e44a
MD5 1959498284b7f61ae0313aee61f64cdf
BLAKE2b-256 84143a1ff86902989971ab91963c07f7cd77675f17f1f3744fb31c9fb6746e01

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f23a6c1d09de5de89a33c9e9b229106cb70dcfdd55e81a3a3580eaadaa32bc92
MD5 a64ecd1cea66ffb2583be96e257b51b4
BLAKE2b-256 275a62e1d5a00b312470977282abc7018f6bdad8c3f9a7757be36f8ae1ca5281

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 597128cb7bc5f068181b49a732961f46cb89f85686206289d6ccb5e27cb5fbe2
MD5 746e812507c3ae2dec5aad5bc79fcf3d
BLAKE2b-256 255b43dd13072e52d5358d180cff1b73ccfadd8f85a37353134d1db81b1a30da

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.8-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ffef3d763e4c8fc97e740da5b4d0f080b78630a3914f4e772a122bbfa608c1db
MD5 bf5d055318a9e51898b0609ca768b215
BLAKE2b-256 ae99ec0b16f290c4b2b67bd7cc88ab9b94f133190665999086898b14e7ef4200

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