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 Codspeed.io status for aiohttp Latest PyPI package version Latest Read The Docs Matrix Room — #aio-libs:matrix.org Matrix Space — #aio-libs-space:matrix.org

Key Features

  • Supports both client and server side of HTTP protocol.

  • Supports both client and server Web-Sockets out-of-the-box and avoids Callback Hell.

  • Provides Web-server with middleware and pluggable routing.

Getting started

Client

To get something from the web:

import aiohttp
import asyncio

async def main():

    async with aiohttp.ClientSession() as session:
        async with session.get('http://python.org') as response:

            print("Status:", response.status)
            print("Content-type:", response.headers['content-type'])

            html = await response.text()
            print("Body:", html[:15], "...")

asyncio.run(main())

This prints:

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

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

Server

An example using a simple server:

# examples/server_simple.py
from aiohttp import web

async def handle(request):
    name = request.match_info.get('name', "Anonymous")
    text = "Hello, " + name
    return web.Response(text=text)

async def wshandle(request):
    ws = web.WebSocketResponse()
    await ws.prepare(request)

    async for msg in ws:
        if msg.type == web.WSMsgType.text:
            await ws.send_str("Hello, {}".format(msg.data))
        elif msg.type == web.WSMsgType.binary:
            await ws.send_bytes(msg.data)
        elif msg.type == web.WSMsgType.close:
            break

    return ws


app = web.Application()
app.add_routes([web.get('/', handle),
                web.get('/echo', wshandle),
                web.get('/{name}', handle)])

if __name__ == '__main__':
    web.run_app(app)

Documentation

https://aiohttp.readthedocs.io/

Demos

https://github.com/aio-libs/aiohttp-demos

Communication channels

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

Matrix: #aio-libs:matrix.org

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

Requirements

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

License

aiohttp is offered under the Apache 2 license.

Keepsafe

The aiohttp community would like to thank Keepsafe (https://www.getkeepsafe.com) for its support in the early days of the project.

Source code

The latest developer version is available in a GitHub repository: https://github.com/aio-libs/aiohttp

Benchmarks

If you are interested in efficiency, the AsyncIO community maintains a list of benchmarks on the official wiki: https://github.com/python/asyncio/wiki/Benchmarks

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

aiohttp-3.11.3.tar.gz (7.7 MB view details)

Uploaded Source

Built Distributions

aiohttp-3.11.3-cp313-cp313-win_amd64.whl (434.8 kB view details)

Uploaded CPython 3.13 Windows x86-64

aiohttp-3.11.3-cp313-cp313-win32.whl (408.7 kB view details)

Uploaded CPython 3.13 Windows x86

aiohttp-3.11.3-cp313-cp313-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

aiohttp-3.11.3-cp313-cp313-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

aiohttp-3.11.3-cp313-cp313-musllinux_1_2_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.3-cp313-cp313-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

aiohttp-3.11.3-cp313-cp313-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

aiohttp-3.11.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

aiohttp-3.11.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

aiohttp-3.11.3-cp313-cp313-macosx_11_0_arm64.whl (451.4 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

aiohttp-3.11.3-cp313-cp313-macosx_10_13_x86_64.whl (458.5 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

aiohttp-3.11.3-cp313-cp313-macosx_10_13_universal2.whl (695.7 kB view details)

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

aiohttp-3.11.3-cp312-cp312-win_amd64.whl (436.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.11.3-cp312-cp312-win32.whl (409.9 kB view details)

Uploaded CPython 3.12 Windows x86

aiohttp-3.11.3-cp312-cp312-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

aiohttp-3.11.3-cp312-cp312-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

aiohttp-3.11.3-cp312-cp312-musllinux_1_2_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.3-cp312-cp312-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

aiohttp-3.11.3-cp312-cp312-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

aiohttp-3.11.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

aiohttp-3.11.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

aiohttp-3.11.3-cp312-cp312-macosx_11_0_arm64.whl (454.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.11.3-cp312-cp312-macosx_10_13_x86_64.whl (461.9 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

aiohttp-3.11.3-cp312-cp312-macosx_10_13_universal2.whl (702.3 kB view details)

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

aiohttp-3.11.3-cp311-cp311-win_amd64.whl (440.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.11.3-cp311-cp311-win32.whl (414.8 kB view details)

Uploaded CPython 3.11 Windows x86

aiohttp-3.11.3-cp311-cp311-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

aiohttp-3.11.3-cp311-cp311-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

aiohttp-3.11.3-cp311-cp311-musllinux_1_2_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.3-cp311-cp311-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

aiohttp-3.11.3-cp311-cp311-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

aiohttp-3.11.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

aiohttp-3.11.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

aiohttp-3.11.3-cp311-cp311-macosx_11_0_arm64.whl (454.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.11.3-cp311-cp311-macosx_10_9_x86_64.whl (466.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.11.3-cp311-cp311-macosx_10_9_universal2.whl (706.7 kB view details)

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

aiohttp-3.11.3-cp310-cp310-win_amd64.whl (440.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.11.3-cp310-cp310-win32.whl (414.9 kB view details)

Uploaded CPython 3.10 Windows x86

aiohttp-3.11.3-cp310-cp310-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

aiohttp-3.11.3-cp310-cp310-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

aiohttp-3.11.3-cp310-cp310-musllinux_1_2_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.3-cp310-cp310-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

aiohttp-3.11.3-cp310-cp310-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

aiohttp-3.11.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

aiohttp-3.11.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

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

aiohttp-3.11.3-cp310-cp310-macosx_11_0_arm64.whl (453.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.11.3-cp310-cp310-macosx_10_9_x86_64.whl (466.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.11.3-cp310-cp310-macosx_10_9_universal2.whl (706.7 kB view details)

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

aiohttp-3.11.3-cp39-cp39-win_amd64.whl (440.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.11.3-cp39-cp39-win32.whl (415.2 kB view details)

Uploaded CPython 3.9 Windows x86

aiohttp-3.11.3-cp39-cp39-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

aiohttp-3.11.3-cp39-cp39-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

aiohttp-3.11.3-cp39-cp39-musllinux_1_2_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.3-cp39-cp39-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

aiohttp-3.11.3-cp39-cp39-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.11.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

aiohttp-3.11.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

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

aiohttp-3.11.3-cp39-cp39-macosx_11_0_arm64.whl (454.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.11.3-cp39-cp39-macosx_10_9_x86_64.whl (467.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.11.3-cp39-cp39-macosx_10_9_universal2.whl (707.6 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.3.tar.gz
Algorithm Hash digest
SHA256 0fbd111a0f1c254dd2cc54bdf6307e5b04fc3d20f3d36fd53c9bcb25bcebb96e
MD5 0ffef48b11a7e75865a8cbdee3fc737b
BLAKE2b-256 fc6ef25d711302ba94a862b5f28c8f62931bccd6f24df73dfbab441b8aec429e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3.tar.gz:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 66ec2a0c2e6c6fc5f50c1309e3f06280008ba6b13473f465a279e37934c7e9b1
MD5 6ae1a2ba25964d9a45ee657cc9d8ca49
BLAKE2b-256 3664be52124d001fd3f8095dcb7636f03a91c0bec68625c669263167efd2a9cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp313-cp313-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 cac27ab70c62e043208231ef4cd2f241ee7001355e968f7e474c9007c0e92400
MD5 c213ac76eecf68e988cdfbc358fb760a
BLAKE2b-256 7d48b783f9cab7f83bd729aaee06956ee7c963677ad3bc6ee196235b56743773

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp313-cp313-win32.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4187859ad7be3de2b319eb84d8865623e2dd907eb0cb825f8c9709afb36947b8
MD5 5a32f7e4e83dcdc04d34a6a5af42d557
BLAKE2b-256 172b9008adb6c18fba86ffd02c3418d5c8265bf68b98fa11aa3f2c785a6957a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6a312f5a7fe17a133e605c2db93bd928aad5d1988a7fba5d16f634ac7f5443a0
MD5 50bda8c5dbaf9b3ff58280005a4a4a20
BLAKE2b-256 c1dab5efc5e73782e6d178817708cab469435fede34eb3d8baacd8ef3ed50b08

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp313-cp313-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ec2082ffa6e75b41c760b37901bd84711bcee306a5f2fc9fff9d4d290e9a6047
MD5 e7ecde0acf0c4708686f38977bf92f04
BLAKE2b-256 3626431be7519ba0d5dec2105d31306dda7ec5aa1873f360c5033073eb73c25c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7ee89599796e220fd8e391d8688b22b63452b772b5b2baffda0f24e2ab258444
MD5 482c94a7283a63cefa325b18e9f89d12
BLAKE2b-256 5b04b118d2682ea1f00694137fc5bb968665c9a07d72853360ec2fa4069842ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 634b474fdcb889a42751cb1095686a3c43d4fca34c560aa5d167353adda7288a
MD5 1ff860e46256d406e71f2cfdd643e9c5
BLAKE2b-256 99e205bb0530a0e42a29fa1686dab8e16a31e6da455f04e3aed306565662db81

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1255eb1438cb35a65af81762964808c8a513a4e686f93319c97d5f351b4f8dad
MD5 5762fc55bb33f2e3b1410bad361c0ac8
BLAKE2b-256 9523828ca317a0d69fdcce262eb178b5bb758b1aece1ad36b75e8e4a2fe38aa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4265069ae8d55bf978001402824c18297d1b01aabf4b34931299442249d98113
MD5 a723c599e49af8d003bb240eddb74099
BLAKE2b-256 07e24972f9ae296e6b78ba8861eb446d4ed418539b4bc2b5162324c9c2eee0f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 26155e39749dd26cf8795dab6c93ccbe4e58d654a670c520d26bb45786325359
MD5 1b8c35fa886224b3d31f53a7b7fe630a
BLAKE2b-256 512579802958761672652540deaa96e342148dca6d8a5c56301de8f4584e0058

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a003c5ac1e11674bfd7b057afb4c04465d601ea99a927c5eeedcb824b6fb95f1
MD5 722f9bfa6b56cb1805d87d44282cc3c7
BLAKE2b-256 f288e182ab2e9abc9160b908e5e72294321dc1cc40ee76525aaa8cf98fe5d4ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1468ff557bb154bd500648042e860cd1cc05192e037dd661fff2ce81aeea3bdc
MD5 b5d741cea03e900cd3521170c491278d
BLAKE2b-256 af347e2cfb5a5ef3cb0e803de164dcf051ebcf2374918a09f3d968b1e502f263

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd0a1856b23b7598e9cd6ff46a08251165f1253b2c922cf3ce07634a1250afb8
MD5 9b40a94e6234334d268f90c120769315
BLAKE2b-256 41c00f54707b938ff7e2abc4d00e014c54b08a422a0c1ea41ebd2d998761f443

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 231c4f1d5f79482e5641febdcb946742c66398deb63dce384da870e59cc884ba
MD5 89acb39c960bfb79f42ae9af8a9d832c
BLAKE2b-256 634c016595a273502a9774fbe14359cad24258393e3b5bfcf51d24dc0d0ad355

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 610b39400c761767d5da3d9960811f616f623bba34a9f491dc89029d2a49cc82
MD5 5808f92c46a779ed0938ab1b23acd6ae
BLAKE2b-256 cdb5af80f4635bb607c6773dd9f99024ffd87ba9a41e7c617c081762b0c294a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c1fce3416981cd97a17b0bccebb225c31f82f1e3bbabf04a78547f26c332d619
MD5 d03b14028a56a52350f1f4a88a7642ae
BLAKE2b-256 a1cd8ab82ad46e108376c8fef329fb23225172444efc57332c08592e59286353

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp312-cp312-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 29828b71745c5562ab73f1513d558e5afca980d83fab42cf87015a50e6076967
MD5 fc2c3bbbd346792badec0d675bf74430
BLAKE2b-256 4e2e035c366192a6a9e5ea18fad76717bdd6c99596ed6cab07804d468ba2739c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp312-cp312-win32.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf1f571854b65229b7497de399762a4560894e3f077dd645ab5fdc001eb527ac
MD5 c10ecbff0ea4e55c3851cf166f53d194
BLAKE2b-256 359be04d726cdff84ac0eca7f35a9a132c99d31bf5f9fcb5cd04522368121077

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 10d7b73c974460d198df5cab9f5ebfd40d4b425a52affe05deb9c3ae78664cf5
MD5 fadb64c915d8d10dcb319d020691e7e5
BLAKE2b-256 6a877480deb3def0aebd8f2f86209d81047c0ae75860b12ea58dcee057d9ee23

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp312-cp312-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 728bb2b31652c718b03bf9936b4008af0d26a31b8cc632c57450298dcfb82e08
MD5 7d9c5c809512d8353d5a027072e88b7e
BLAKE2b-256 ec482fecc7f64b787763f01f78278af08f909503b416aafdbcdbdf1ff6df8de8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8eb02a8a783cc56aa1445df1ccffbf187b66fda103ece7a13e19b3ae33e093f7
MD5 944ba91718328a5c6dd540c43ca81244
BLAKE2b-256 2410f55bc6f93821f8c5d616a90670a6db9334d6a3d552efe27b134821f2883e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 791d4e2328f06a0373db3ed2b4d353c8f2f3ef7521cacf6e66278033ed2fd192
MD5 47b0e35e394c1e48145fdee6f5ef7314
BLAKE2b-256 3819370d701f9a062f78065dd87727a320b4897746633dbf4f56d91336cc1b56

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 969ee33c80399ab6e2627b576073456825234e1384d672dcced9f52e918091b1
MD5 0e9c6de5deda5823d45db5317553d066
BLAKE2b-256 af340e47843be47005ead217bf80caeaba003c28e123db2df052cd8bbeb68e31

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ce5dd859f71f95235d473bf948a416a981cb37c3247f10a6ca7e630e7ea28e37
MD5 33dd26b9be928810fed9efe6e8eafe21
BLAKE2b-256 8ad5074aa6c86d8b3046c2ddd4156c996abab44e26c09e1d37b3c47a4959ca49

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6c28332611f7aebd69f0fc183b41b21af2422846ac3dbfa7888ec40962cb8b09
MD5 7deb00223b110acb6bcccf1b3964ab9a
BLAKE2b-256 534d76121a27289a63bc5b3ec39aceb1999219febcee0baa263cbebcd9ea185f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e7bd606a02bcdb8764a3a6d1493131515a146e44f6e8788f1472445b7ff5280
MD5 656aae698e6b010c9a60da5b10dbbfbc
BLAKE2b-256 b84a4193cd9c5ea4e4bb4540122e61d9e56ef385581e488a9d1cae9eebe24594

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 270fbf3a5df1ae5fa1f18d26111c0b4cd8c04d84c79b1fe513139a635b5c5285
MD5 e3f60cf095d4f5058076c331ec2b5a3c
BLAKE2b-256 54e835623d4ce49064454a4b9863144eb46bb7dcc84b9c0aa0222ec0c4ff4308

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c06fed93bb81f0fe5c2b1a6a131310449e0dfdd0c89ede4b9400e0b5270680e3
MD5 6e492c60d9f9e9a25e72fb303f6b18c6
BLAKE2b-256 e848fd3322ecd47fa7873d2510b6ba199cf018982e285a649bded90f87d83d35

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

Details for the file aiohttp-3.11.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8e9735209839fbcf81b0b1bfe16d5bd0d5497a5077c2c601f3a347ad34a1436e
MD5 751ae1ea00581a2b13207b45ed4af79c
BLAKE2b-256 7da8664c6fb7942e43ff854464d3e7d42b81695ff3d2c8c47dc3567756ccd3cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

Details for the file aiohttp-3.11.3-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 0665d51a9580a7df74a281cb3730526865db299742fce115a2ce3033817f7fca
MD5 e853b99afc68e04b6e8ed07d2e7a0d72
BLAKE2b-256 285c297f8e5b0aa5c0581744b8178ab25fa64f933ccd3e33b60d655cf3af7899

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 16225e7bb046880631e58d3e2ecba19c020be8e873d517ee42a1be8a126b70f0
MD5 dd7f342ea08b344c0c6fce1f792f3a5a
BLAKE2b-256 e56c0952034347b6fc930cec0782baaadb90d600d29a57f7db6ab2104cc32275

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp311-cp311-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 39554727dc67c170ed84ca4d85937c4955a08dba65d887e48f075b0e3fb746f2
MD5 a0263dbd7b84a3ac86f2ce87166f20ae
BLAKE2b-256 6c358bd4a2914c795a46fe0a873dc15086dbdb2a801a7d894da7f8d0be1481a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp311-cp311-win32.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a79e638ff960068b5a891fe67672d94c9a906fa01043db88789349090333983
MD5 a0b443f070b4bc3867f35195a1097202
BLAKE2b-256 116c93c1e38e0ca2eaaca3a64a71c9d11f75519a3dc11896d9ae10c883fa002d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 95635838422669e3a0220c74fe9678c838e2cb0dae91bcabfdd3557f11dfe16a
MD5 d339c9a205e099adcf14c04340224340
BLAKE2b-256 9d3916dee15ccb5d69d1245c48a5e066ea2fe70897a024bda1cf957cf68a0eb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c3d721538094108db57dde5c3b3af0e157c0a1db6c9f3f55c84f2736f697481c
MD5 d12da6aef47f2492371166703e519891
BLAKE2b-256 807a4b0fd36c52179a5418d8c7d955b8e717a3214d8360b67f68db5f15e9b46e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8998fd80aa1e10b0da45c1edacdb7e7433d4fe9b28fc0d28d69370d733d13bc5
MD5 d39477e849b02f513fb7c58ae0e94574
BLAKE2b-256 e0e4d7f2e544b4155bf084858891db404d1627be3f01f74ac59c68f5496afd2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e15fd83a3d252039d35849ccb8f9ee6a774124a0ae49934c8deb472a7b95e5a8
MD5 804aa14e92749e578c294193624148fa
BLAKE2b-256 9df7587e5931b96890f5fbcaf6ba48e415efac67794c895c3a718e750fdc5617

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0dcb32dc5d83372e1407675879121e2aabeaa6c633283a8837fcdb363bc5d49
MD5 3108e9714cf442af1741fb2772afe3a9
BLAKE2b-256 0c1420792181f401ddcffe8d17f07272ae18d4979de5b76d76167f211e4c10fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9ee52b10fa0ee52ad9741406e18d2d1fce9bc4622566066239d35aaa68323427
MD5 d240c86f8ae25be4ebd7e95c1dd6d1d1
BLAKE2b-256 5ccae6071240209ca19c1e70fe5061265190239e624c99bfc852041c2bacdcf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b10b85ae6e6d7d4e57ef1fd1a3fbfa92bc14854f172957ecf12688f965c7efce
MD5 7c9f22e11bfd64d5426382ebc52051d3
BLAKE2b-256 96fb8be739c47953eb46ce4031a9c5a87da7349b9ec2107611803faa9b14ff77

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62aaf76d9077397e34a7c25028ad570d05d11c2f5ec9e42262326d22395cda7d
MD5 d9d6fd6ef368c3953cc3c6ef5a340133
BLAKE2b-256 f6e80d1851839010799c55c2a3ac25191706a5223598a2ddaabdd20307086111

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 86b3ece9d0c1a2d881b61fa6f4c2b72c5af7e74dbffb73a61fd604be5f51c2e2
MD5 f53deef5b3819d9849d404365823ad5f
BLAKE2b-256 783769b5eab7d0a80c1705c71bc986aec23080d1dc85409ba6719915054f27a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59912e8f1dc74ffe7cdbf84199131cf60b940ecbd1cd672e88090321875b2ea2
MD5 b9bc8f0a871e919f163c42df89938748
BLAKE2b-256 01fae7954e43ebe93b40addace76b9dc16dd9055399376833cbe94989d30dd70

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cc53bddadf5fd0a03c6520855cc4e4050ae737f7697d799bac81a0ef8a85f865
MD5 653271091288ec6a5c34851098e4a8cb
BLAKE2b-256 63ffbf894f2e7fdb908e2b04c880e8611a905705bd8a0cc402f25210b895f8dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a5b836e843e702db8ebeacc6dd8a5137a578dc23b4367e63dc11231fcefe7088
MD5 eed84a458321bea65f1b641c58fa9889
BLAKE2b-256 51d6b1ef992aa441d79f6f08bd826d62ba55330e723c41bf9d311ccec08b2c42

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 158e47fb9bd16c964762c1661be934d5781423ac7b92d57ccba3cdaef9aa7c16
MD5 4162be97d377d6a1e8e34f828aaae381
BLAKE2b-256 928512fbc996a44ad82246e0cf9243e5058f14b2f0f3d74fa2e9e8c2a758b2b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp310-cp310-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fe842fe3504b3d76be4af8ae5865389eae5cd4d0a7afd631e8d73971628ab525
MD5 198143d8d1f4ec0a28adb78856422487
BLAKE2b-256 3db510358fd29e4584f75f6938460c88b40b14b61c2069ee3d9b198942316d2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp310-cp310-win32.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44d15ef64678e9318969a707a6d444621988980a60e917cc8a7dab1dd763bd7c
MD5 ec1dee48ce4c2136df7c90872ce7d1d5
BLAKE2b-256 fbc728b96fae2fb70449d45e56317b83dd918f0d75afd552ff365a8ca1704a6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7b6d71c6eed09fb6c893ca40c49487f46fe440f8a5697e9942715d1a28433b19
MD5 fdbb3eea182730224ee0fc78fccadfef
BLAKE2b-256 1547ad7636a49a7d2232cf6c065c4a49822d7e33f20ca714e32526da4f4c9f6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7d16a132673163bec662f77e056e2d7f5c9472560e4346f6847860eabc2e75b3
MD5 ac6da939a5726b6b8972ae2406e4bbc4
BLAKE2b-256 725483e6f48db80a995eb81fa05fe10ef22e0bc09322ae555c32882a68a13826

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba8bd24b1a08e22baf35e7f1deadee409118cdf086ade14d3a7c0c7cfebc828d
MD5 01105a037c426c92920aad70eba5091b
BLAKE2b-256 70831535df4e494a47f355a469313c612dc99258532208ff4fcab54f29226e51

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22678102ad8e27536bb5338daa6a8fef268a27498d45793f66c5a90836278376
MD5 b9e68282f1e01d65fa7935ac784eed10
BLAKE2b-256 8d6148e50ef7348c574c9602a58efe6b6958d1ef47f6503af2f3f61e4e6a15a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb3753b764b6122491db64f5c99c0acf481f6ac54a3062f9041e6e9099337fe3
MD5 9ff11d25e41601a55997e30a2be5cde5
BLAKE2b-256 aaf46c175959032481bdc197fabfeaedd24f20b71602b79fdba10934e05f60e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18e391196b233b1e9daef38d14dccbfc3a62934fc1a5cbc711fbf0aaaf12afb2
MD5 1472b306b8ad3a03eebfa972b229284e
BLAKE2b-256 1519b06cbc32881e69692ad8e3b1d71ba7be4157e828999b671a8f33d7ba7ea9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc0f81fcd9690371d9c89b6675cd12da6abf8bb841cda5b78379fc72ba95cf55
MD5 e900b01e797673cdaa06097f6bf39fab
BLAKE2b-256 eefdcb442340c84ade5d151afa5db2c9e2c7717d73b2f0206fa21318aa4ab18d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ad9cdb478e835d1809d7a86b16c88fb430d6e8f06940e0616586258ec1c4eed
MD5 19958c9982e5b0a9cbbfed4aceb7f66e
BLAKE2b-256 0bb3fdca170b285a7a01c3aba47140ffb4efc897c504df4dec541710613bf7d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2a2fed9db26ff62d0926169c2d9dba5f1029f75559728dd0ae80e7085e16e056
MD5 fdd74ffdcfd2525bca6ffce627ea1f81
BLAKE2b-256 2a720bbefda77b5f9388f4d7ae2df5fd02d552b3335fe8f9855a46ad7ee902a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63df79e626ad76d3170f2cc87727ebe360c4c56c3dd01d80e1c22fbea18b3368
MD5 abf083d8e57df5cc07b50d388110a0dc
BLAKE2b-256 760cb54cdb8c331bfdab17a4878f7fe7dab6b6e273ea7c38053cce10d337572d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3cd3d29e2e0b9726629031d73b08027048deaa856cefda343f3db34da9d6fb04
MD5 015777a09d0465bd198a70f5bc5f1b50
BLAKE2b-256 415e029797bb0462f86e51a655f1040ed5bb37ea45dd836ab52a6b4e211d7f5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 acb0eb91b7a9ce435728d009388dcbf82d3e394b00596c3eda2402644ce42c33
MD5 35060f07aaa720e6c54d7f35283eff11
BLAKE2b-256 b6efb6b3910c89c7c7a6a4e6f4487bc79c5b445e79d4c14a82dc2b357e82728e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b7816289d4d01b5c6ddccb70d85c3c35cad4d26ae4eeadeee72919da6c7bad99
MD5 88eeaf349ca2ea785f21a592383c63f7
BLAKE2b-256 9ab20f7587750d5b40e02a94e1c2d920cbbbba30fd5f9cdcebc9228f26b49f26

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp39-cp39-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3d1b50a83d4f054d4eb7a76f82ecfae3305c6339420cdd2958d9f2cb94581c4d
MD5 b7667fe03f08a5da5f66f5b99ff0237b
BLAKE2b-256 52c7b87652917767f9daa519b9227f426836fdec331335e130c27484cbd325b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp39-cp39-win32.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91a7dad146005a849a56f4c4448c7ad988b51d08d699ec1605a116cd87073a06
MD5 2639759b84656218791546fa9284a8d1
BLAKE2b-256 dd8de4091052ae3a3823b5247b9fb69dd8c512a25511932d39f8f02cbb0a99dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0c400c7e60f08aa541be32cb1aec82f9c130e326c9fe5a98dda246f67ea64ff5
MD5 b93fdb558469ab5e0da6466e8bfa09b3
BLAKE2b-256 b5ef6d18cdf2f2cd7fc1bfcd4b7e181282a56e772698c09bd8beff2973a330f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 38aaa713e303b0852e110694d7ef0c6162ffa0c4fe1d70729f3c35f9bda8f752
MD5 c8c26f7fca7c33694e3d947d643afd33
BLAKE2b-256 fb20b07e6227979f3a0e605ddc490e8f15e8223ab1651da21d62302c7861f725

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 30abc2f6c004a07b9ffa8086c3b739eddc41c54e5b3825ad18bf6d38e01a1fe2
MD5 86099ceebbf1b98ce782d000b6a26934
BLAKE2b-256 eeb5c6c4bf08bb7722049d2db69facf6b8c783245b70803f834506c9c08da9c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 faae49269ecaf640b1cbc22d896b2540d487564c1b62538a72c54a96573ffb34
MD5 2d55766726524dbe48e437dbd9782305
BLAKE2b-256 0740448daf404428f0987c7273cea99a28dcddda3e25f59e7420842b4d58dc81

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c33562307c6e5dfdea5f380c90ba46c555536edc153b99e0fcce6478f51e386c
MD5 91325837e4f954c9007a50a0e17b6744
BLAKE2b-256 13d38520394cc96dafb4141c3e02cc3e8d0418e681072b9e12e93465741bf6b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f15f42bfcbbfa4b8a0c0685161e4b1f91c7b24ee47f6d2076e0824bcfafa481
MD5 284d344635f84c0e49244d4320ed9e39
BLAKE2b-256 a1b47cd98bdd6493aa3832cb342d921673ddcc82c22ba425e8047f49e0cd6a9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2ba1ae2c0aa10b8eb946e343d56e58e021550c4fe093cfee4a4aa1eb1bad6cbb
MD5 832f5b7d27d14536e3cdc6ec54ff7cae
BLAKE2b-256 f16045782c05ebe508b53d1cdcee372e0b2207fc4f970413db4665afc584f800

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 117796a65d59c159642924bf989da00d6c4dc3faf323d86003546f157f14d6e4
MD5 c481eaf1d3ba2bc07d96d5ab9dd8d7ca
BLAKE2b-256 80db1e9d4926c57282471b5aea1171c452367c64af3564d377e9b666b9204eff

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed4bbe2f39bc65bd80dc063833877bde77e7032896fd648b799c4dc8489bb3ba
MD5 372473828ccd8928561b44550e97dad4
BLAKE2b-256 e4383bd17dfd8fadb366f5f91f38c7f27d7b836239d2d3f60ff1a979562cf2cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e22331096df5fa2ce2a6f6bc063c82c867fbe00f465311f7355212e89032145a
MD5 35aa4858ea4ef7ee8d70608c548be3e8
BLAKE2b-256 5383aac30498fd2e57b58f1de3ee1aa5e95a5aba9a1c87be4b70dc38db7a2e6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aba99bb1f22470e07e2dd29bac108aee1f7278cbcb38f2e67970171feda5c0d2
MD5 863ac6c69d2c5c3447979f9c4a1d17bb
BLAKE2b-256 650bd0894390e0ee53c316b94750edf30cb1fb44346ea7d576568669cd0206b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3971b5af634c00c6e1387ac0ed30f713a4abd78aa1b008d0986071011377e042
MD5 99381ce3e1e52f9856056d67f49d4572
BLAKE2b-256 e6632076acc34cb7551d79eceba3a3387aae2138a1a0fc3d76af6016c0a2648b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.3-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations:

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