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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

aiohttp-3.11.7-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.7-cp313-cp313-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

aiohttp-3.11.7-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.7-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.7-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.7-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.7-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.7-cp313-cp313-macosx_11_0_arm64.whl (451.4 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

aiohttp-3.11.7-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.7-cp313-cp313-macosx_10_13_universal2.whl (695.8 kB view details)

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

aiohttp-3.11.7-cp312-cp312-win_amd64.whl (436.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

aiohttp-3.11.7-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.7-cp312-cp312-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.7-cp312-cp312-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

aiohttp-3.11.7-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.7-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.7-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.7-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.7-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.7-cp312-cp312-macosx_11_0_arm64.whl (454.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.11.7-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.7-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.7-cp311-cp311-win_amd64.whl (440.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.11.7-cp311-cp311-win32.whl (414.9 kB view details)

Uploaded CPython 3.11 Windows x86

aiohttp-3.11.7-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.7-cp311-cp311-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

aiohttp-3.11.7-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.7-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.7-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.7-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.7-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.7-cp311-cp311-macosx_11_0_arm64.whl (454.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.11.7-cp311-cp311-macosx_10_9_x86_64.whl (466.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.11.7-cp311-cp311-macosx_10_9_universal2.whl (706.8 kB view details)

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

aiohttp-3.11.7-cp310-cp310-win_amd64.whl (440.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.11.7-cp310-cp310-win32.whl (415.1 kB view details)

Uploaded CPython 3.10 Windows x86

aiohttp-3.11.7-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.7-cp310-cp310-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

aiohttp-3.11.7-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.7-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.7-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.7-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.7-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.7-cp310-cp310-macosx_11_0_arm64.whl (454.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.11.7-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.7-cp310-cp310-macosx_10_9_universal2.whl (706.9 kB view details)

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

aiohttp-3.11.7-cp39-cp39-win_amd64.whl (440.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.11.7-cp39-cp39-win32.whl (415.4 kB view details)

Uploaded CPython 3.9 Windows x86

aiohttp-3.11.7-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.7-cp39-cp39-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.11.7-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.7-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.7-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.7-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.7-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.7-cp39-cp39-macosx_11_0_arm64.whl (454.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.11.7-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.7-cp39-cp39-macosx_10_9_universal2.whl (707.8 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.7.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.7.tar.gz
Algorithm Hash digest
SHA256 01a8aca4af3da85cea5c90141d23f4b0eee3cbecfd33b029a45a80f28c66c668
MD5 5d3301ea131fe9a37b957ba511dcf375
BLAKE2b-256 4bcbf9bb10e0cf6f01730b27d370b10cc15822bea4395acd687abc8cc5fed3ed

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.7-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.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fc6da202068e0a268e298d7cd09b6e9f3997736cd9b060e2750963754552a0a9
MD5 74372ca2a3d1e5a15caa1d295cfb3480
BLAKE2b-256 ef074d1504577fa6349dd2e3839e89fb56e5dee38d64efe3d4366e9fcfda0cdb

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.7-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.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7a9318da4b4ada9a67c1dd84d1c0834123081e746bee311a16bb449f363d965e
MD5 969e4682f2024f0cbfa2e2ba3be326e5
BLAKE2b-256 cb98b5fbcc8f6056f0c56001c75227e6b7ca9ee4f2e5572feca82ff3d65d485d

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8360c7cc620abb320e1b8d603c39095101391a82b1d0be05fb2225471c9c5c52
MD5 dbb6d35ace40f9b1f1a2a5f4f1e1de2b
BLAKE2b-256 aa9d70ab5b4dd7900db04af72840e033aee06e472b1343e372ea256ed675511c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ee9afa1b0d2293c46954f47f33e150798ad68b78925e3710044e0d67a9487791
MD5 32cd26fe70881dd7f0f3ad8c3069ac76
BLAKE2b-256 8b8b3a48b1cdafa612679d976274355f6a822de90b85d7dba55654ecfb01c979

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c171fc35d3174bbf4787381716564042a4cbc008824d8195eede3d9b938e29a8
MD5 a3ee493294604fd0f7581b1a25465701
BLAKE2b-256 e958897c0561f5c522dda6e173192f1e4f10144e1a7126096f17a3f12b7aa168

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 875f7100ce0e74af51d4139495eec4025affa1a605280f23990b6434b81df1bd
MD5 0393b6e0f88a40d43a51636e1571a640
BLAKE2b-256 2c9410a82abc680d753be33506be699aaa330152ecc4f316eaf081f996ee56c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce91a24aac80de6be8512fb1c4838a9881aa713f44f4e91dd7bb3b34061b497d
MD5 da5b5ff06016ef759adf0f73b88e6ad4
BLAKE2b-256 002e18fd38b117f9b3a375166ccb70ed43cf7e3dfe2cc947139acc15feefc5a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c1a6309005acc4b2bcc577ba3b9169fea52638709ffacbd071f3503264620da
MD5 0fafe07ea15960c60dcb58624a95c1c0
BLAKE2b-256 787e8fb371b5f8c4c1eaa0d0a50750c0dd68059f86794aeb36919644815486f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f1ac5462582d6561c1c1708853a9faf612ff4e5ea5e679e99be36143d6eabd8e
MD5 2f3d2223429fbedbe5eaae9ee88a9405
BLAKE2b-256 c8a3b9a72dce6f15e2efbc09fa67c1067c4f3a3bb05661c0ae7b40799cde02b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c1f6490dd1862af5aae6cfcf2a274bffa9a5b32a8f5acb519a7ecf5a99a88866
MD5 2009aea5518c1c6a735af11053460d5e
BLAKE2b-256 2b6508696fd7503f6a6f9f782bd012bf47f36d4ed179a7d8c95dba4726d5cc67

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dcefcf2915a2dbdbce37e2fc1622129a1918abfe3d06721ce9f6cdac9b6d2eaa
MD5 ceba6c310d7c33d02a971c276f80ce6c
BLAKE2b-256 196a2198580314617b6cf9c4b813b84df5832b5f8efedcb8a7e8b321a187233c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f5b973cce96793725ef63eb449adfb74f99c043c718acb76e0d2a447ae369962
MD5 89b0adcca4792493e1641bc61f441484
BLAKE2b-256 2f0f09685d13d2c7634cb808868ea29c170d4dcde4215a4a90fb86491cd3ae25

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9acfc7f652b31853eed3b92095b0acf06fd5597eeea42e939bd23a17137679d5
MD5 4a7506c14a92940ba898099d6466ad50
BLAKE2b-256 d905dbf0bd3966be8ebed3beb4007a2d1356d79af4fe7c93e54f984df6385193

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 aa3705a8d14de39898da0fbad920b2a37b7547c3afd2a18b9b81f0223b7d0f68
MD5 2d5bb1413a70c420d1027314bf876c78
BLAKE2b-256 62b64c3d107a5406aa6f99f618afea82783f54ce2d9644020f50b9c88f6e823d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 241a6ca732d2766836d62c58c49ca7a93d08251daef0c1e3c850df1d1ca0cbc4
MD5 6020bb28b5203934214242d927602306
BLAKE2b-256 7a538d77186c6a33bd087714df18274cdcf6e36fd69a9e841c85b7e81a20b18e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.11.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 436.5 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.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 018f1b04883a12e77e7fc161934c0f298865d3a484aea536a6a2ca8d909f0ba0
MD5 1f352edafc92360cfec3241ff7821f58
BLAKE2b-256 b70b607c98bff1d07bb21e0c39e7711108ef9ff4f2a361a3ec1ce8dce93623a5

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.7-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.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3d1c9c15d3999107cbb9b2d76ca6172e6710a12fda22434ee8bd3f432b7b17e8
MD5 0e028c6c6a369218d4dee96b9a3623c0
BLAKE2b-256 4b81b20e09003b6989a7f23a721692137a6143420a151063c750ab2a04878e3c

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d18a8b44ec8502a7fde91446cd9c9b95ce7c49f1eacc1fb2358b8907d4369fd
MD5 6f31be0bf5f9f5df36fb17f3f4195d3f
BLAKE2b-256 f576a57ceff577ae26fe9a6f31ac799bc638ecf26e4acdf04295290b9929b349

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 db37248535d1ae40735d15bdf26ad43be19e3d93ab3f3dad8507eb0f85bb8124
MD5 bc7cd9c294a0bc64055a9f486868d4c2
BLAKE2b-256 fe2d6135d0dc1851a33d3faa937b20fef81340bc95e8310536d4c7f1f8ecc026

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 481f10a1a45c5f4c4a578bbd74cff22eb64460a6549819242a87a80788461fba
MD5 0e05eca05113945867913dde47e53d42
BLAKE2b-256 fa334411bbb8ad04c47d0f4c7bd53332aaf350e49469cf6b65b132d4becafe27

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a17f6a230f81eb53282503823f59d61dff14fb2a93847bf0399dc8e87817307
MD5 4ac9a7894b08345f0b1bd241e9c6b591
BLAKE2b-256 af7610b188b78ee18d0595af156d6a238bc60f9d8571f0f546027eb7eaf65b25

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1cf03d27885f8c5ebf3993a220cc84fc66375e1e6e812731f51aab2b2748f4a6
MD5 1d1c20d7ff1d1cd3c24ee054a1e03139
BLAKE2b-256 ba7730f87db55c79fd145ed5fd15b92f2e820ce81065d41ae437797aaa550e3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ee6a4cdcbf54b8083dc9723cdf5f41f722c00db40ccf9ec2616e27869151129
MD5 b8aa3f9ac5602ae9aeb585dbf8dcafe5
BLAKE2b-256 9193ad77782c5edfa17aafc070bef978fbfb8459b2f150595ffb01b559c136f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf4efa2d01f697a7dbd0509891a286a4af0d86902fc594e20e3b1712c28c0106
MD5 8407e9ae73c9e89f3725910907812105
BLAKE2b-256 f5793eb84243087a9a32cae821622c935107b4b55a5b21b76772e8e6c41092e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 12e4d45847a174f77b2b9919719203769f220058f642b08504cf8b1cf185dacf
MD5 583739ec3cde404bae812835a69c1d17
BLAKE2b-256 79ee3a18f792247e6d95dba13aaedc9dc317c3c6e75f4b88c2dd4b960d20ad2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d20cfe63a1c135d26bde8c1d0ea46fd1200884afbc523466d2f1cf517d1fe33
MD5 f57087cbb3e133f98e7eb108992ab487
BLAKE2b-256 04f0c238dda5dc9a3d12b76636e2cf0ea475890ac3a1c7e4ff0fd6c3cea2fc2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c6095aaf852c34f42e1bd0cf0dc32d1e4b48a90bfb5054abdbb9d64b36acadcb
MD5 36a17376d1a4ed7d493be82552957eec
BLAKE2b-256 ba48db35bd21b7877efa0be5f28385d8978c55323c5ce7685712e53f3f6c0bd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7c58a240260822dc07f6ae32a0293dd5bccd618bb2d0f36d51c5dbd526f89c0
MD5 32e053d8df08110a1d7752061d6cadf5
BLAKE2b-256 28faf4d98db1b7f8f0c3f74bdbd6d0d98cfc89984205cd33f1b8ee3f588ee5ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e143b0ef9cb1a2b4f74f56d4fbe50caa7c2bb93390aff52f9398d21d89bc73ea
MD5 d1ac33c27a329438c8a96bf619340c99
BLAKE2b-256 b5ceb5d7f3e68849f1f5e0b85af4ac9080b9d3c0a600857140024603653c2209

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 4bb7493c3e3a36d3012b8564bd0e2783259ddd7ef3a81a74f0dbfa000fce48b7
MD5 0576caf6d4c78d44b5c144466bbbce38
BLAKE2b-256 bf1e2e96b2526c590dcb99db0b94ac4f9b927ecc07f94735a8a941dee143d48b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.11.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 440.9 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.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bf0e6cce113596377cadda4e3ac5fb89f095bd492226e46d91b4baef1dd16f60
MD5 d92d38d7df7958dc490b8588ae8dbc6d
BLAKE2b-256 ec7e50324c6d3df4540f5963def810b9927f220c99864065849a1dfcae77a6ce

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.7-cp311-cp311-win32.whl
  • Upload date:
  • Size: 414.9 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.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cd8d62cab363dfe713067027a5adb4907515861f1e4ce63e7be810b83668b847
MD5 62b04526c38825018fb5f9753360fb09
BLAKE2b-256 b2fc32d5e2070b43d3722b7ea65ddc6b03ffa39bcc4b5ab6395a825cde0872ad

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0bf378db07df0a713a1e32381a1b277e62ad106d0dbe17b5479e76ec706d720
MD5 542c6c6be3f1a87466aafb354538c804
BLAKE2b-256 3358ddd5cba5ca245c00b04e9d28a7988b0f0eda02de494f8e62ecd2780655c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7ea4490360b605804bea8173d2d086b6c379d6bb22ac434de605a9cbce006e7d
MD5 ce277a1a0c4df9297b11a2f212ae4b88
BLAKE2b-256 6c1cff6ae4b1789894e6faf8a4e260cd3861cad618dc80ad15326789a7765750

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 12724f3a211fa243570e601f65a8831372caf1a149d2f1859f68479f07efec3d
MD5 5a7c5e17e0b1ffeda7ede34e61600a0e
BLAKE2b-256 06207062e76e7817318c421c0f9d7b650fb81aaecf6d2f3a9833805b45ec2ea8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 351849aca2c6f814575c1a485c01c17a4240413f960df1bf9f5deb0003c61a53
MD5 2072f608873a50610128707e2d93224a
BLAKE2b-256 c0a64e0233b085cbf2b6de573515c1eddde82f1c1f17e69347e32a5a5f2617ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24054fce8c6d6f33a3e35d1c603ef1b91bbcba73e3f04a22b4f2f27dac59b347
MD5 f49a149e9e1e10ca9949eeff2442f615
BLAKE2b-256 ae3caf50cf5e06b98783fd776f17077f7b7e755d461114af5d6744dc037fc3b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1fbf41a6bbc319a7816ae0f0177c265b62f2a59ad301a0e49b395746eb2a9884
MD5 8c61ef4f22bf64e037345c5dbc68d4dd
BLAKE2b-256 7f1a1e256b39179c98d16d53ac62f64bfcfe7c5b2c1e68b83cddd4165854524f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e5522ee72f95661e79db691310290c4618b86dff2d9b90baedf343fd7a08bf79
MD5 73d94e1696fff7b5fd1b9ce676a82593
BLAKE2b-256 22740f9394429f3c4197129333a150a85cb2a642df30097a39dd41257f0b3bdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c25b74a811dba37c7ea6a14d99eb9402d89c8d739d50748a75f3cf994cf19c43
MD5 64ee85be365a86e340f6fbb3b570ceb3
BLAKE2b-256 2e30a71eb45197ad6bb6af87dfb39be8b56417d24d916047d35ef3f164af87f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4dda726f89bfa5c465ba45b76515135a3ece0088dfa2da49b8bb278f3bdeea12
MD5 f9bb15f1f3874f075f9b85b902935ee0
BLAKE2b-256 9f0780fa7302314a6ee1c9278550e9d95b77a4c895999bfbc5364ed0ee28dc7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 59ee1925b5a5efdf6c4e7be51deee93984d0ac14a6897bd521b498b9916f1544
MD5 b860b2ec45c008abc9c1db0d8f569810
BLAKE2b-256 9b37f19d2e00efcabb9183b16bd91244de1d9c4ff7bf0fb5b8302e29a78f3286

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 670847ee6aeb3a569cd7cdfbe0c3bec1d44828bbfbe78c5d305f7f804870ef9e
MD5 691d0a0b367145478f8f64f9466c24ea
BLAKE2b-256 4fb81052667d4800cd49bb4f869f1ed42f5e9d5acd4676275e64ccc244c9c040

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3ce18f703b7298e7f7633efd6a90138d99a3f9a656cb52c1201e76cb5d79cf08
MD5 890a76962c603c13e09927c04331b40e
BLAKE2b-256 793c6d612ef77cdba75364393f04c5c577481e3b5123a774eea447ada1ddd14f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cea52d11e02123f125f9055dfe0ccf1c3857225fb879e4a944fae12989e2aef2
MD5 f6543dcbbf60d2fef65febf77c9335e8
BLAKE2b-256 137f272fa1adf68fe2fbebfe686a67b50cfb40d86dfe47d0441aff6f0b7c4c0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.11.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 440.6 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.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b7215bf2b53bc6cb35808149980c2ae80a4ae4e273890ac85459c014d5aa60ac
MD5 55b97bb8d12cd57c931d78412a09764e
BLAKE2b-256 0b8c9fb539a8a773356df3dbddd77d4a3aff3eda448a602a90e5582d8b1903a4

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.7-cp310-cp310-win32.whl
  • Upload date:
  • Size: 415.1 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.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2257bdd5cf54a4039a4337162cd8048f05a724380a2283df34620f55d4e29341
MD5 5b8533522f6e62ddba9e15e7bd766a16
BLAKE2b-256 b09fdb692e10567acb0970618557be3bfe47fe92eac69fa7d3e81315d39b4a8b

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9202f184cc0582b1db15056f2225ab4c1e3dac4d9ade50dd0613ac3c46352ac2
MD5 b3648cce17c3d6d16948eb0c99beeb0a
BLAKE2b-256 3220fd3f4d8bc60227f1eb2fc20e75679e270ef05f81ae618cd869a68f19a32c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9e67531370a3b07e49b280c1f8c2df67985c790ad2834d1b288a2f13cd341c5f
MD5 9a1cfdc6d5f64ce9bf00a7f7341af4a3
BLAKE2b-256 3daf1da6918c83fb427e0f23401dca03b8d6ec776fb61ad25d2f5a8d564418e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 db70a47987e34494b451a334605bee57a126fe8d290511349e86810b4be53b01
MD5 855ece8e1251dd37ad9da4302df6702b
BLAKE2b-256 34bec6d571f46e9ef1720a850dce4c04dbfe38627a64bfdabdefb448c547e267

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 78c657ece7a73b976905ab9ec8be9ef2df12ed8984c24598a1791c58ce3b4ce4
MD5 2dde9fc850c14c5955b6ebf97c14cba2
BLAKE2b-256 d4e0fc91528bfb0283691b0448e93fe64d2416254a9ca34c58c666240440db89

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3dd3e7e7c9ef3e7214f014f1ae260892286647b3cf7c7f1b644a568fd410f8ca
MD5 5b7bcf92215cc0651ea67af6ece9ddf6
BLAKE2b-256 7b5452f33fc9cecaf28f8400e92d9c22e37939c856c4a8af26a71023ec1de689

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dda3ed0a7869d2fa16aa41f9961ade73aa2c2e3b2fcb0a352524e7b744881889
MD5 1d0a35c2ab3f11825a8b66a1b2417fae
BLAKE2b-256 7ac03e59d4cd8fd4c0e365d0ec962e0679dfc7629bdf0e67be398ca842ad4661

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4ba8d043fed7ffa117024d7ba66fdea011c0e7602327c6d73cacaea38abe4491
MD5 fe233db031cb0ef8b8c6e601f6327fd8
BLAKE2b-256 c766513f15cec950410dbc4439926ea4d9361136df7a97ddffab0deea1b68131

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e13a05db87d3b241c186d0936808d0e4e12decc267c617d54e9c643807e968b6
MD5 ce1e67bcac07b68cac564b399f961206
BLAKE2b-256 e1514c59724afde127001b22cf09b28171829329cf2c838cb05f6de521f125cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e993676c71288618eb07e20622572b1250d8713e7e00ab3aabae28cb70f3640d
MD5 a9a33d77d08d8e8615e0c849b1bf1f31
BLAKE2b-256 ee41660cba8b4b10a9072ae77ce81558cca94d98aaec649a3085e50b8226fc17

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 43bfd25113c1e98aec6c70e26d5f4331efbf4aa9037ba9ad88f090853bf64d7f
MD5 b196c835163e854cc6fb7d4aa39a2fc6
BLAKE2b-256 22a6c4aea2cf583821e02f7a92c43f5f554d2334e22b741e21e8f31da2b2386b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e22d1721c978a6494adc824e0916f9d187fa57baeda34b55140315fa2f740184
MD5 11050332f402faf50eff85093e2a2c11
BLAKE2b-256 ed7ee385e54fa3d9360f9d1ea502a5627f2f4bdd141dd227a1f8785335c4fca9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f5022504adab881e2d801a88b748ea63f2a9d130e0b2c430824682a96f6534be
MD5 5427086247fd6caedd1b7a3d937cd181
BLAKE2b-256 57f14eb447ad029801b1007ff23025c2bcb2519af2e03085717efa333f1803a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8bedb1f6cb919af3b6353921c71281b1491f948ca64408871465d889b4ee1b66
MD5 001d51ad0cd2f32973a5e4c69bdca646
BLAKE2b-256 837efb4723d280b4de2642c57593cb94f942bfdc15def510d12b5d22a1b955a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.11.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 440.8 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.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 53c921b58fdc6485d6b2603e0132bb01cd59b8f0620ffc0907f525e0ba071687
MD5 87ea5dc3ca6613c9907ba17d0c09999e
BLAKE2b-256 f8231f34e9cee17ebb0202cf9bec9e2eaf8e7e4f4ac36d12c9ab3786b19679f8

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.7-cp39-cp39-win32.whl
  • Upload date:
  • Size: 415.4 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.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a7d9a606355655617fee25dd7e54d3af50804d002f1fd3118dd6312d26692d70
MD5 444c6f9b40f1cf5cce39f2cc4d3bf452
BLAKE2b-256 dcdf5b2c8e243acaa2433baaf8431dd23d90840ccecd0755c2bccde4e8da85d9

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d2fa6fc7cc865d26ff42480ac9b52b8c9b7da30a10a6442a9cdf429de840e949
MD5 d8a65cb8b88d276f2ec8286dc64e995e
BLAKE2b-256 f6995746e91be936a78c73b52549eefb462ae521c0053f19de08335f52896d75

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 43dd89a6194f6ab02a3fe36b09e42e2df19c211fc2050ce37374d96f39604997
MD5 bfaa2fd4a7666c1adcba341ce46eac40
BLAKE2b-256 5c34e3e41dafe6e4c9032f1b1d8130aa0f023275b3398d6887e94fbd68731ba7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7b2f8107a3c329789f3c00b2daad0e35f548d0a55cda6291579136622099a46e
MD5 b3859a01df7ce17349ab3e259e573c0e
BLAKE2b-256 85f8dd77ad1e4da943d633bc950fed565d14e82bbe5b7ffc4832f106c69396af

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5578cf40440eafcb054cf859964bc120ab52ebe0e0562d2b898126d868749629
MD5 a6486b67037d8eeaad14f4431b3943ac
BLAKE2b-256 fd3addcdd768c8302cdecf411fde591c2b93ab180d7cc3a61fbed86f025075ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d329300fb23e14ed1f8c6d688dfd867d1dcc3b1d7cd49b7f8c5b44e797ce0932
MD5 6e8a4fca5c0a154a12a864a293d9839f
BLAKE2b-256 1233a7e88497a6775aa25baca2ec37f861ad1417e6113e685f89952986c232d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c63f898f683d1379b9be5afc3dd139e20b30b0b1e0bf69a3fc3681f364cf1629
MD5 ca43a3b445af0ccced04425c5e27871f
BLAKE2b-256 1a4851d3af146bb35988072d0456faadec603ac40e1d4974de07d1bf11065f2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 28c7af3e50e5903d21d7b935aceed901cc2475463bc16ddd5587653548661fdb
MD5 f83a0386d8f811512b09c5693beebd1b
BLAKE2b-256 ebe723cc29b24d53c6d2ade7092f7d3cdc985c0414f00dfc81699bfa512c7968

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 04b0cc74d5a882c9dacaeeccc1444f0233212b6f5be8bc90833feef1e1ce14b9
MD5 439ec8767a72a535090f4dba07d6fb10
BLAKE2b-256 81f532ba5be33696d0a8f5cbf213d158a90d99b9b7d7b3d344c8400bb87364a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0de6466b9d742b4ee56fe1b2440706e225eb48c77c63152b1584864a236e7a50
MD5 0e6665b7f11d279c4312a6b18582004a
BLAKE2b-256 c9ccf05d3d3f2bb68c0c41d31cabbd47fd019edf20c04a16de434a621ce17883

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fdadc3f6a32d6eca45f9a900a254757fd7855dfb2d8f8dcf0e88f0fae3ff8eb1
MD5 e0b7e751c1476a521ebbb10efbc236c2
BLAKE2b-256 66fe574c2cf9fa7e396c089fb34aaa121b91883a7c2b382043f471f13ca3fdd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 badda65ac99555791eed75e234afb94686ed2317670c68bff8a4498acdaee935
MD5 43359472b59d5b96e204f87f20981c44
BLAKE2b-256 2544748d16ff174afad29452543d9c62101d8852a81e278d89a0fe73d81c99c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d6177077a31b1aecfc3c9070bd2f11419dbb4a70f30f4c65b124714f525c2e48
MD5 72dcc205bcc5b55a460cbe15afafd816
BLAKE2b-256 2f7494101af13b20325b60054a7dcc85f0eb50ea7750365ce0e5365494a6d4d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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.7-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.7-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 17829f37c0d31d89aa6b8b010475a10233774771f9b6dc2cc352ea4f8ce95d9a
MD5 c78d986fdc99a882ff95fca240493b9b
BLAKE2b-256 a1515ad023409da8ca9f3edaa459bae95a65b9515a2eca8ea6510d2a87be1d53

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.7-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