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

Uploaded Source

Built Distributions

aiohttp-3.11.5-cp313-cp313-win_amd64.whl (434.7 kB view details)

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13 macOS 11.0+ ARM64

aiohttp-3.11.5-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.5-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.5-cp312-cp312-win_amd64.whl (436.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

aiohttp-3.11.5-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.5-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.5-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.5-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.5-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.5-cp312-cp312-macosx_11_0_arm64.whl (454.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.11.5-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.5-cp312-cp312-macosx_10_13_universal2.whl (702.2 kB view details)

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

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

aiohttp-3.11.5-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.5-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.5-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.5-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.5-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.5-cp311-cp311-macosx_11_0_arm64.whl (454.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.11.5-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.5-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.5-cp310-cp310-win_amd64.whl (440.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

aiohttp-3.11.5-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.5-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.5-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.5-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.5-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.5-cp310-cp310-macosx_11_0_arm64.whl (453.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.11.5-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.5-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.5-cp39-cp39-win_amd64.whl (440.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.11.5-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.5-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.5-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.5-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.5-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.5-cp39-cp39-macosx_11_0_arm64.whl (454.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.11.5-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.5-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.5.tar.gz.

File metadata

  • Download URL: aiohttp-3.11.5.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.5.tar.gz
Algorithm Hash digest
SHA256 7b857fdad5f95d05bbd27c68cdd549889287dea7fe3376265a8a85d554deec1e
MD5 3c3cccabe1119678bb3fbffca8814f1d
BLAKE2b-256 c62ee520ca73603e1970076b1b66baa9c0b367999f1653a5b7ff66e76639cdcc

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 434.7 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.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8df9e2f6e31c75519afe5a75af0eab47893884bcf5d8493dfc89c4dfe2bfb695
MD5 50da3fa07e57c2a5f6f66832473cb02c
BLAKE2b-256 c82bfabc92d9e3012ba44488df4a839448fb2a21170389f32538722dd3d0e976

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.5-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.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c147edaeee6a70cfc9e3edca45f7533a85bbd169d352a1355ceff97f4b75cf57
MD5 900aab732362e77889311d99c0522468
BLAKE2b-256 5b21a73ddae37026a9b5f89d17a2f6cdd7418df5afa824b335ad264147bd4f50

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44ab58914199ba57f7b95ccb38fcf27d94334eaf0d308aaea09012b878254bc0
MD5 da2dcd3874510fbc750c64e84cb28d95
BLAKE2b-256 31152e10165b3b3033bd05ede08cbc32c429cb3c1f5e2e073a670270c7073194

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 afd046ab8ed14434c3c39300a5f3e5d2f993b9c8dfb3b21b6367e780caae208f
MD5 57bafb49efe25b63271067170c56b67c
BLAKE2b-256 4c40144b69950dcb6b1d8743bd3c3f513cd9ecf5a74ebaff084d0fea4d140070

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 31df961cf559f8cf430b70977a7c95747a0ef24d5bb8f2365751b72964a8ceab
MD5 82184860f46bb4e5e37fac12305602c6
BLAKE2b-256 bb0776dd36b9e07e9f5ed64530415b394a615529e777d93db99c01a67e981b08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 035f34af40203ae94d2700ba732706f42222b4c428aa6cea43333cc8c0f9e4c7
MD5 9897be8a6ac6d829f6e0d3bb5c4cc65c
BLAKE2b-256 7faa7d191622da1641a6abf7c00b580ca9b50b02798b597ec6c9c7efcd5d5df2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ac1cdc0b3d552cad60fca276da5713c678a155581a77dd6898ab96fed018188c
MD5 bf5bca27742dcab6777b5e9c3fe35acf
BLAKE2b-256 d01e51e616b8e4cdd293c516184e0a3a7e7edfec91e308f1b275f07d879ca261

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d15f94b5717c4b9f2e14c02a0fad97214330ca1ef9673db033166eced098b2cb
MD5 e46b4aa9472677b9c0772924eff5279d
BLAKE2b-256 6ee8bb6fee719c70997a4865ce56cb71a7c8c64d9d875b76f3e7d653db0d654f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f0a694f03167e00d685582693f93b043ed37e40feb7065cc350930d2917126e9
MD5 15d4764d8fbac7b4e2e252d9774d834c
BLAKE2b-256 a11f5d8a64bea623a137dab741687ac1d33940244adcb2125cb738b9bedf7529

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a80d9c44c3b60262c9335ba35b086f7e188fd2f6e45ff2ff0b0f6e350452f6c0
MD5 290ae218c706329c60a795b56d71261b
BLAKE2b-256 e7653ff856a8532737acc2c7a4b674871cfc25e905155cca065cf1dfaa12c90d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebceca202221bb6fa30312558a055b6aefff448667e4f48a2cd9c32139b969f8
MD5 a7eda8ad98dc14281247f22754cb28d2
BLAKE2b-256 77586ce12387a0180df3411f93f273105669a4cd59e64941c76b5791e8c8c5d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c79793f89623ea83a0de4a38facf8beef956837be32bc48c3ac76e346254e974
MD5 42cc47947164f5b4d2e14f45228751fd
BLAKE2b-256 9fea87cc517fd92186a75aca0773cc11f2049eaf1c9a0625a0567191d325bc1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77d58df6820601e45b8577fb1d14a504c6a10315ee794e03549aed00e3a1a0ae
MD5 367950f1804be50291e5638cdf633732
BLAKE2b-256 61f06a364829520c4f4d8ff993271e7337df1ff07e4de87b6b6c5d1941054e70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f26e5ea97665847a449452e73ffdb89edd373d2277ba954813776816ac1c0b8a
MD5 86dcbba30b41c054775e15ccbcffe9ce
BLAKE2b-256 61f7c867f6e6979dd343b0f0fd5906cb2b59d89af93a5035aaf41e3867252081

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e8407cc7801e2c8a0f22641f8451d05dcc41da818efa96bde2068729c3c264c5
MD5 8041e174a90d5369c9e4b2dc988d31df
BLAKE2b-256 7972639560ac3426dde30e55b561b7aa1f4c4d685fda1e878bcce4051f3bd1bb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.5-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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1fe98b92f943b00e1831aece85638af6ca6c699f82625f7a6c64a2543b7a9769
MD5 f49f760109860e9553c4bad52e9b0d12
BLAKE2b-256 27f0aa32d3213f1dbafaf979bd1c7c87baa61c1cfeea965cba50324cd767abd2

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.5-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.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3e0f4119290d432fa7babfc76cbde4f3e21b826240ba51a6d4fdb82935cf82bd
MD5 5b1b60bfb7dfa3548a56075df8c7a0af
BLAKE2b-256 d0b54340ed419d52c6b63f0a5dd34181a7108b74921f9866e3f2f896b479a9b3

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 304316862900286574e38dbd58c9c5c25dfd52bcfea16514a00dd741f992871e
MD5 6a4941eeb7705939b94aa4001a06f137
BLAKE2b-256 721fc7b8e37216150a496344353182c22af5edaed7cbf6b97bc72eba0130cd97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9a23bd19042768281c06858a55ee3d85e572111681e5f5dd68ebd27a6ae1e2af
MD5 4a1b2b58b46f536bc498bb4be7601850
BLAKE2b-256 c67b4ba07405d2f5f3d07c11ff5661eee13a9cafd64f1a61b9c1556a2635bf46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c7e0cdfdc6ea4b974c3d546e683bf5a408a8777886c7ec389a780da58a8aa284
MD5 b31aaac3c8bc4517df2c6cdd82853551
BLAKE2b-256 98b5f06b7cc90654f3c1e58ae2ff291f9369270e175bf2e663119d1e6fc1f6c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0a7a8915129e6e9b43b5e2f13e0533314462f34e8f8589fb388b8f35becb997e
MD5 7f390d304423973a5c1eddbdbadb3aed
BLAKE2b-256 c19af17c3047e1e7e5813966d51c92a4e08c2e0e2bb93191252244493fe8bab7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50d8784cdc111ed0709debe595be831ebb1f0c536b0840684d02fd12d100a092
MD5 77884a7bf328089ce740ba8574f885fe
BLAKE2b-256 a14f215a7588b42188fe51db32ae70326bdb12dc8db53b4a0aae8b910c6540de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 381c1d8334fb010968dfc8eb1140ed349c5ade9ba20feb0aee2a047d9af0b7a5
MD5 da6ceea355a455fb1f244da0a2830d96
BLAKE2b-256 363649d73798292a84bc0003221a208f0f6ac3627cf2f74fbd709243ad71513e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 68f0f8213e891b81800812ec70c58bac3899f4828e7ad14ba5997c26dd88aa6f
MD5 2c36312aeea16b5c5d4ff3483619f58a
BLAKE2b-256 d9c98ce3896a6c47844dfa48d8d7e0d26a56a85be25c69b865af4aa945dd1608

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 35c429f0f761619ea659cfe5bed5c26bc62c5e09c2da28b5ee86d006b1a1eb4d
MD5 c4e132f7f629b149215bd421792606d4
BLAKE2b-256 a8798063355fa1407f896e53c2db51793f919ed8137d3c9d924f61f4380531dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ca5c02fec19113abb7d9df9350471fa1ed25f76ad24be81690c96b3b759da795
MD5 a3754086687cc0f6d5b5e25ef059769f
BLAKE2b-256 379f5983a5609804b431432744fe7725ac2b907ffca369ff9f98a14bf01ac720

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ea7b22c2569007df2c39dbe72b7c7cf4e6f6424b505545c68fde8495a35bcc9
MD5 0e45b3313569890f6abaaa529bf9eb67
BLAKE2b-256 ab016abddc5247a4b49da5a8e8e2ece5f1ba0ffe8e987bcf60df2679a96fd707

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ad77209639aa7f8d1bd87bd0aa961cac791658c9dd1d32225cbabee95b70bd4
MD5 1eac6a6deb3132e30ad03f5e92fa4c78
BLAKE2b-256 c1e314af7d2ca2984cc48050fb10f2908df1e9f9bd8402795e7f83810837ad5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f2041691ac9a4ac5f3ccda419efdbd97f3b25bcc64c5badf57a85a69b8579268
MD5 59265d7c0145fa6c914d566d7bbfd453
BLAKE2b-256 370db7ef08e4bdacf63bc41f84028f14d1648fa1c3ed95d406f9c7cfd614800b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 3f21c6d1fae17f4466af3796975ab34010db3ac1f0d688272a6ce2f9fa2a4ea5
MD5 1e12fb6740cbd5fa8521f5bd45797ef1
BLAKE2b-256 57c26d57cb15cf476084a4f8ac0a4dcc343498f5c61e22527fc90aac308ede96

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.5-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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f9c2470432ebb7c8e094fd5c164cb355df752662c7ef59153d38651d0c540b2f
MD5 54fe95f40f70699500fe932ccc4bf218
BLAKE2b-256 0df3b053b93f783f628aaeaa03aef2e0cd5e56f83c289cf6875af5dc197023ec

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.5-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.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8c0ca3a4c2ffce0204ed2af90760dcb97d9c7334b66af2e4e11a64bbf2d2873e
MD5 36f88a5c1ccdfeec439e6e19fbcb9073
BLAKE2b-256 87d3a96de6549f808d73c0aaa3d6fa89d10d80d33e7cd2ae74f41e3e74ba2c5d

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16fb393dff37de88039152d8a45c5e4f31a6785222b606c9b0eaec73f4dac84d
MD5 bc1bf19a6200cb533c9e3fe5da5d6d55
BLAKE2b-256 30eb5cb9814ced28895c1e44af81540e870d48b62cde43e75b50d240d4a84971

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 189a1f63264c69d20f45461a8a9cd0a7fe23ec6fd8ecbe3b14cd017f651329ea
MD5 898a7c9e310195fae478d18e43ecf451
BLAKE2b-256 9535e8fb1c00d1db80664f841bf4c1b688de5f8be003b27de1cbb3c1145498ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0aa667554a0bbe9ce75f071876adcc294d5d487141b6142068c309fee4249e33
MD5 2010a5abad420ea705dd59faee935333
BLAKE2b-256 1d83910f714c352b0e22438e53737ba716dfec4938fbb9545fb2d3678de0c521

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cdddd330512e5c66006367d5d91170e4d16522277de79551c80843c22c97cd16
MD5 019a62682fe463aa4a3f102f4b72141f
BLAKE2b-256 5b5a1e99f029d2fcb548a78c70d4ed64e0a3de6d3ce63ae7b2b20b8c985e97b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d6d70ba0a3c8ecb18328c9530f360dec68ea7c1c8219b0a0b3aad4d13c190ae2
MD5 754e915cfccace59764e9b1f1d35ae17
BLAKE2b-256 c1c8d631c77c51c8d03f1df56c45670130bfcedd4cb6fdd87ece50acd723a897

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7892ec8b75a025bb0d60f49850fcf3a81888f92ffa0689c20e0625c03a7e329
MD5 c5532b1e4cf1fcb6270601608f101cd8
BLAKE2b-256 a4fe425849fc60e86263221b84fb90139f3e5f1fe277ea46a7299242b78327d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6ec3dab142a06e284b48de132e1938dddc866fae5006781985893d4cec7909a
MD5 12f538e7a2c243306ba331a55cb944c6
BLAKE2b-256 2a39cebc344410785d3a65e2b167f7cb99adcccf21166e480aa7cb72ddb3f2a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a93b33cf3445a1c28e85f1b84b948625fa667ec4a48b59b7dd8e006a6fb841ff
MD5 75f9b303619c9ec57e8b0a1749a598cb
BLAKE2b-256 1b9f29d491a8f90af0fc5f1f3610d53a2f72b4d278ec3ff1a70bc91d52f9e5ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ba5aa61e4e557d8beeb6c3937d7591a9c2cd35b26d1d523e782d8222e6bdd56
MD5 ba68a6cc9ddcd1c78dd2b448cb794356
BLAKE2b-256 45fad085db0af6030878650b2e4b9a61eea8b320040be5cba632d7029cb58f76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ebf4e11938bb0251485fde7c94d7ac2b0c39a738f4b3f3c683746b85de55768a
MD5 1df3ad4236b2c4eaa98239f8f7c51160
BLAKE2b-256 75b942c6b7cb4e65e8dc82bccfa5b2f2fb74440d6a39471c7d6354b02f7c1e56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb3731dbe8b3608b09c1e6c3948a86365d8b22e649c0e24ef9e94d23d8108241
MD5 c92cc0194040e4f8ba96692beb8be472
BLAKE2b-256 8a36d8564d97b3dfd79d54f2eb7f5c8d90109f871353e96ab5e456ed75a48b72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 afe368c244920218a9dff7ffcdad023e4959a7be2ce61a6c459812ad09daaf8b
MD5 36f709af46d21eb5b89c9327990d7cea
BLAKE2b-256 d794801737cdc73f0afcfa446031637524254333454d6fea7f5588ff15a71764

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 006546319eec664a32b8574bcf095880530fb431e58a290b0a39060def8734c4
MD5 1eabd96b9d4e4d8f23f9032f4381e0df
BLAKE2b-256 41538696373c396e12408aa15744169122ac8976fa443ee8e061154ed1157ecf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.5-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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 46bb88bcee78aedfd0b664a92f6192ed776432862f9050772f0333b556e19d7c
MD5 91807804bf40a46642c389bfc917ad7d
BLAKE2b-256 527642bd92d0bfdc10bc6a266f1388c4fdeb5cbd84aa57b2f103d5a599c569b5

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.5-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.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a57c32e01a3ef97b841012fdcffcf73c372296b4c7bda1d67fd63c128b7adb30
MD5 714ccdfa5f400e8bd27ed19f7d2fb45a
BLAKE2b-256 14c04c35d124aa461f69f6b461f0a72b9606709f0a4462773a4fabad06147093

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2766e6a246e4be9156d27f86fdf49d04a96a696a5cfcbe60aeb29bbfe91305c8
MD5 403b266ab2441cbdba142556638b3162
BLAKE2b-256 707dacc530c2b9af4a62a3966534d673f4e8234cc9ddc2e1fcd09108c75fb0a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fdaf5b03c1328ca63a2c9cb24a5479e808ddd62132ccb3187015b727313c1375
MD5 6b4097f4e46d793d834f6e4ab160ae90
BLAKE2b-256 7c6c37dadad6523af9e2163e1de52748169c3897982dcd8ca967e59710d07aac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f35f169d67b20a8104ea5c2660ae352aacdc95aa0461b227a5482e2c29638b54
MD5 23eaa2558d73d47cbb3f317324511a13
BLAKE2b-256 cf0121d798ac3f3a80b11f8239a059079cfd5a50b52c5300ace111cf537a5fc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ceaddd89dbe146f3b48181160e3267736566ee3fa933d20512d3955adc0f5fd3
MD5 8954764ecb3afc3625de8b08acfb62ad
BLAKE2b-256 f05231b84fca6dc3e13e8268be7c3857104ea8718b239409fa4e0b4a84dc7a15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 633ef6e990032341305254f826602b93c38cde5f5154470ce031ec8735fdf909
MD5 f39a2ab3cd401a2f02ffc99f08dfffd9
BLAKE2b-256 aa105ae927b27af1399fd96da641841033b4f2e781df11d8d292e848bd2a19f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9fd4e6ad1bb64f4794fbe4a082e5a4ac7680753adc9599ef2fb0bffc2a39027
MD5 4bafc9062560d17dc1c3b961404e5ff3
BLAKE2b-256 813f91402b697602577f58b0b1be933a4232f860a10596159cf1eab07b388874

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2bcd19a61db6a0b0f503f62faae0871b79a03dd2253787c60bb2436ff52619dc
MD5 1cf0745124bfa6d5322b9f413c712251
BLAKE2b-256 dc59babd94bd510a835fce16d71ceb6e0dd60947b1ff4ab5cfa706e0bc7fc023

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f01131f46ed4d5361be6b362035a73ad1cea13819705dce4a969d9ee46fdbe8f
MD5 fb159537adfd022bed830923eb1b6a8a
BLAKE2b-256 c7473be1a73fe9fcf17dc7e0ca222f35ce0015af8517c64c56194901fe0a572f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5add1f3dea8dcbaa6408de3f29f8dfaa663db703a62b1986ec65f12a54027854
MD5 0f0b049b31e4e605a84d8605f36db400
BLAKE2b-256 1fb90eaa7a8b8ed957727e33bae465b14cfb4147bc90f627c47c29bf8ed5fc91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bd49e76cbdc0f89539124fd12bf273b81eb3b5c9798e60736d6812747723311b
MD5 842cdd2ad66f9164d610b3d997c59e4a
BLAKE2b-256 5552a7d50fc1b900c3afe224de57e7f3996b7ffae0b9d4a4969799bcf13cba87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e6808209e3e2dc87980116234a59d1cb0857cd0e5273898a8fa2117fe3e3f9b
MD5 7f421e1270be96414809835dcdab2ffc
BLAKE2b-256 951751b14d2bb24eeda6ab225ccbaffabe655bdbdab3fbba174bc86feccd640e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 732ab84706bcfd2f2f16ea76c125a2025c1c747fc14db88ec1a7223ba3f2b9de
MD5 18f3bec79160e0016fae0b6076a4976c
BLAKE2b-256 de0191dc36e2a1e5c564c1be6b49be648b45f2a818e0427f55a16b434f2af788

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6f9afa6500aed9d3ea6d8bdd1dfed19252bb254dfc8503660c50bee908701c2a
MD5 5f75bb11923f58e6bc36ab18ca5aeb00
BLAKE2b-256 363e7aa4ce8c040e2b69d148e135fb513cf3b36a9f62eeb2dbd437a3af428c1c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 440.6 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.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 382a0838b433f42dca78c1375c08cb822e514dadf9c5364307fade830ff5e81e
MD5 0b2eb5babcfbfa180b63fe1d5a117c66
BLAKE2b-256 a2bb6d6a179385eab4fe5290c5ee9e41df1de5db0401e6fe7fe697a2c770e882

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.5-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.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 392836687024fd61272c4598f5b144d0581969fd6506145dec6161a5789f54da
MD5 296ba5dd54a1b9ad12de75f3c652b35e
BLAKE2b-256 74f17977f3d219e42ebaf2b28f65cb11c5f475e8b7d1c20d15d080c4826a2930

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c542c9af3e22d31cf4baebe7bb131d2ef9e35acad397800b8a6a2b09487f7d8
MD5 e0ba6cebb48770012362329c29c7df05
BLAKE2b-256 d27b3e8aeb6449b54174ca8377e9798c757f2c6ba065acf94f57f5f626089c38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e701291a1143b2eb3f4b6343482c9c94310dbe07dc7b3015b2fc84ec3116ea12
MD5 cb7021b98e26213e680ebce1d110ac07
BLAKE2b-256 dff8cbaa41b74f40574d2c1b42bfde15e78cac88009b9d5a44852d6425dcca75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 62e8b91a03d0e667f77c60672b9e10cd5f5432c1b0c2a6a32a24951e2d79a460
MD5 86be7ef8087eaf8c6d54590b983d5a6c
BLAKE2b-256 e15a4dc1c90383c9cc30e2cbdbec102c2ec3c0d59e36391613a932ba05be5452

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 04e2f8cbeefd0e06c1dcea28f9a87a2c769eab136301795b49ebf31c54282a63
MD5 47318ad83886eaaea1bbfbf15263ca73
BLAKE2b-256 d78da0c7bedeac3e354c98416396c2cecb1959740d96878fc418132089a0cbef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c89ddb0aeeae8facd72644ec6809bba2dd2936cba81d871177b7af311de661db
MD5 87b6a24c40f48f8265d2647e279d95bd
BLAKE2b-256 84e519a193dae7e8b851a3c6ed7ece2124f538826f97512a3636d02c6fcf3a15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 549236995649fbd8fb53eeafad0673f8953aeaa97ae2d010ee534a43373cc989
MD5 7da38920f8562958bb64b6effa2e5a64
BLAKE2b-256 61b8ad3f2241f5eaf9098b7847354b35ca17a551baae8575f00bd415a846bb47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ebae6dd32a35bf888abf27598f3f4f1b9a267eec384a850e25e8fc684ff558c0
MD5 35d83c28f8c238a25d3cecc42d9a2c34
BLAKE2b-256 769f9b33d6b5e707042ed160c396d008193439b343b98879a3e9c72034f0defa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 efd327e40300a507073e8bbf11897c3e294be13b0fee4f7e11812153da0515b0
MD5 1ece0d2241d7817e2f944a9ae2394ed7
BLAKE2b-256 30dccda1eb63da23f09dc9c158db21549fdc7939f4250dfa79da3aac8fbbce09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c683e440f0e1a23e0406aff6138b20de57215f9ad241391761831d12f56408ed
MD5 65528ada2cf6149a5c0d784344265be9
BLAKE2b-256 01eec554c41e5570d8d9fb102bf700250f3f725e14f0b65d1573f06f72a4f3c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1fa82b697ab1b3ba94e607aab9ef6aaf618cd47e44a24f112b633517a5a0be83
MD5 cebb5b07828a40571c0f3aa42df66507
BLAKE2b-256 cc303e2df6437b850000cdc42f7a0b8e0685c165180a90b393f0e563d8d6fed3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 385d6527b2c72dff1a3a3336cb688a493057193a1671d091189116a833c50477
MD5 37d900e5d2fd449e7d5cf8cd3ab205ff
BLAKE2b-256 987c15b4239a1a211c396c71f050c6964009d149efac812f2f6a60aa430ebf01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b48be2532572aba7f0fcc660a59a0ae31fbe1fdf58b91b3e8e6ed2c118a8f662
MD5 2d040b038f49ad02d6e65538de05bc91
BLAKE2b-256 eabdb67fde72225a4b71c5f4cc6f39abec1452686b4c577cd49ba4329ccf209f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.5-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 933242d5316337c775a4ae9ce82e75c9e53ee43f39e5f7202114747f3cd95e08
MD5 78baff600d1c26a5b140ff60d44447b1
BLAKE2b-256 ee1ccb50fcef4538b4942a3774970bad7461b99d08aa85c9fe6ec0ebce5f6fc6

See more details on using hashes here.

Provenance

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