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

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

Uploaded Source

Built Distributions

aiohttp-3.11.1-cp313-cp313-win_amd64.whl (434.1 kB view details)

Uploaded CPython 3.13 Windows x86-64

aiohttp-3.11.1-cp313-cp313-win32.whl (408.1 kB view details)

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

aiohttp-3.11.1-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.1-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.1-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.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (450.7 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

aiohttp-3.11.1-cp313-cp313-macosx_10_13_x86_64.whl (457.6 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

aiohttp-3.11.1-cp313-cp313-macosx_10_13_universal2.whl (694.5 kB view details)

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

aiohttp-3.11.1-cp312-cp312-win_amd64.whl (435.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.11.1-cp312-cp312-win32.whl (409.3 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

aiohttp-3.11.1-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.1-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.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (453.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.11.1-cp312-cp312-macosx_10_13_x86_64.whl (461.2 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

aiohttp-3.11.1-cp312-cp312-macosx_10_13_universal2.whl (701.3 kB view details)

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

aiohttp-3.11.1-cp311-cp311-win_amd64.whl (440.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.11.1-cp311-cp311-win32.whl (414.0 kB view details)

Uploaded CPython 3.11 Windows x86

aiohttp-3.11.1-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.1-cp311-cp311-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

aiohttp-3.11.1-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.1-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.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (453.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.11.1-cp311-cp311-macosx_10_9_x86_64.whl (465.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.11.1-cp311-cp311-macosx_10_9_universal2.whl (705.8 kB view details)

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

aiohttp-3.11.1-cp310-cp310-win_amd64.whl (439.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.11.1-cp310-cp310-win32.whl (414.2 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

aiohttp-3.11.1-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.1-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.1-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.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (453.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.11.1-cp310-cp310-macosx_10_9_x86_64.whl (465.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.11.1-cp310-cp310-macosx_10_9_universal2.whl (705.4 kB view details)

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

aiohttp-3.11.1-cp39-cp39-win_amd64.whl (440.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.11.1-cp39-cp39-win32.whl (414.5 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.11.1-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.1-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.1-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.1-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.1-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.1-cp39-cp39-macosx_11_0_arm64.whl (453.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.11.1-cp39-cp39-macosx_10_9_x86_64.whl (466.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.11.1-cp39-cp39-macosx_10_9_universal2.whl (706.4 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.1.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.1.tar.gz
Algorithm Hash digest
SHA256 1e59dc724138b264de2e7862b3953ab5db518df280b4fd60af6a1f54b229ebb7
MD5 4c6f0eddd0cc2f9658602f3c54fdd70c
BLAKE2b-256 ce9c5218e280e655e8a081690844a822389fe497a14bb17aa6c01254700b363a

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 434.1 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ac57dc99b8878c4aba0b1dddc87c96bfad3d7906fabf4d39016b719e09cb1b13
MD5 99848a8662c9f7a3a0ecbc589fafa880
BLAKE2b-256 a12d7c6c2d0b632b095f9933ab534a6014f61b8e35b7be49921d9257c3105fb3

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 408.1 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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 86cd61ddde48fb3b024e0b81163ea12b3af7221a91adb6a76090536e06b1f6ec
MD5 9b2c4605ac6f4c921c0d496039b3c478
BLAKE2b-256 3a1e7ff73f5ad08d11f884c10e7e1d859699933245bc4109c161e65d7f292e18

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c37d7b9407df60b39965e4baf36444e1c20e2813394d84da40da02c21026ce57
MD5 0403945dfa66d9995c50b2de283fc98c
BLAKE2b-256 2bd30dfa176c9c5796d2fc55370c4831d1d0c805d0ce530bcb4110fad768f4ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 67cfd966357c48737ada215a76a2c335d550f3c1b08cc605ce5720cb1f3474fc
MD5 26e429d8d485ef3c6ac4a835cae1800f
BLAKE2b-256 66e7c46cade7d8ea7cab764742acbd74af75c46cb74c95efe0069837dbcfc466

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6c30ecdc7518f46aa4a7787d80eec698e34db769f8667772697111a2f21f2aec
MD5 9a89de80373c3f70cd62b2f4b09d4093
BLAKE2b-256 be0b0dba4c1c36a4a861eab40bb1bda96d54ae16c5a74af1fc10e2815d1294c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4f25ff97302abf6be69c896371aef9fc3973b9fe7f3f0e0c2256484d1d9a679a
MD5 af48666d3c4196bb1267580b0b6b31cd
BLAKE2b-256 4ba533c28935c47263357e2ec9d2242e251846529d1235c77891d6a00fd9d708

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 362d6be6fbaa9991f8eca7fcbc2c6af964e041e5411ab7e683324e39f7d7036f
MD5 be50f6926346cf8cb4537ec5a282c4ff
BLAKE2b-256 438c41cb8c805377bc1332eb5247d0c91217b8a65e29f2e2e98a80979c10e160

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24594e85577ba13f642c1c8e793537ca805eea00a41fc7bb6e7ac964611378b2
MD5 26801341573a725fe9c47149726d4995
BLAKE2b-256 bf7d78a43cbeb0360074e13b1da82b4f8b29ad00e118d88169fbbfefb46210d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c1bcd87693b0bfe4e3f7643f6695d54368596480285dfc0d4a6c32b740a2d445
MD5 6824dbaad47ce61cba77363a4b949189
BLAKE2b-256 b6a62d02edd6469d0ffaeef817e6bd3676d160ff50affde3338c1ad10abb92a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f9a67b5ba15eb9cb21d9d983ec2080463f9dab2ac2cf529ea5bb139a2b06e9fe
MD5 dd0b18803989b7ec782bd0ac6bc2a142
BLAKE2b-256 d926aa45f9761a4519c3e7ca0b2f28933a9f5618149a8a5bf066de7a8c7cd139

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a902fb71f73330d7b788fec01a0deafafc5b772a8aa6f9496405db4abcc4070
MD5 c29c1bf5efef571680eff7c44a73eede
BLAKE2b-256 3bfe6ea21e67553acb6c46e5155ae77d11426119081217ea98be25002f01b46f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 af493aaa122d774c7965ce5878eb202cd8bdc986189a82026089dea3434054d5
MD5 da5d1f20e3251ca89d0e150e85e7a8a1
BLAKE2b-256 4de19fb7cd703fdca084a23fa4398cc543230af2ef6a556eb7f124e3b63b25c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b9196678d201d8d6156a26a0a5fc7e27695948681e927e581c368b42b6e9def
MD5 3d87e148a5fa2c283bbc858230cc834f
BLAKE2b-256 f08525711e9ed9e6588bfe45640da826869cf609aca9c3373f30cb9d342bf382

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ad8c2d32ada78bcfc5e0f117b771fa94da1603a86e866efa3bf81dc1fbec3136
MD5 3fd58b084e14814515f662abdaa44910
BLAKE2b-256 ff7ac1fad99956194d7235c2945a767ba6cc98745e88bcf741f8fec1f2c7dfb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 cbf1653a21d9ea235f8ab9cc310b35ee3448fb2f5acba540a4290e7856e16d5a
MD5 45b48b6a42addb5f8ddfe5ab5cf20bbe
BLAKE2b-256 bda768cc4f16c82356a9f7f5d312e17c7981e23b67f07c251069aca54e879b14

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 435.9 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f579ab1361566b17f7b47146ebadbf6441d21cc6a37e41d673aa001ca9e11fad
MD5 0d12d77aaa0447e506647c87e5bed5f6
BLAKE2b-256 7a22fd75642e49a83bd8219cd0c9d6372cfb41989dcec61931daf7565bc35b59

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 409.3 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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e1744657d31d8902f2a075697e8784c2ebc8573989a9e8f785a770efe45a717c
MD5 ae0ecf51c68d48da5a149021b80c64e6
BLAKE2b-256 3b8e6a16c0ab4e445971bd97009efb9a00722680619d1bd97b91ccfa86c86d64

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93feb8f3659c4740451b71afc41a4cf15732a9a259eb16e5eb7ba67c21b29502
MD5 0753f6022e42144fa4b56dfd5c311836
BLAKE2b-256 e485874d0ff89d112cc1197c65e7a53890537245d1634378c14008ebc439a6f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a85ee307962b082271a81dac5696900314aa8d5f1cd1a5a3baff2fa31d5ddd5d
MD5 593a85c96a6cf5c5fa40f0a2f121b95a
BLAKE2b-256 03b643863614cad019b91a702f0e74e8206b7f7c3e80a97f109fe76d2f061476

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8e86aa52ce61a72f3b186780f7104ce9643f06ecfab9f75497fcf6bef4dbe32a
MD5 032270e8deaa32a5568532b02b018d39
BLAKE2b-256 6222a22c54f126503a1c90ec44cce1450c9fcbcf49553ec34d189fd5ca8c4f16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6b56038a7313fb668ac329abce5bf5455eb980105b4a2dbafa2eca6f7a1f1005
MD5 222c0cbb3e301b202e0f92a3a382477e
BLAKE2b-256 d7ee370bd8ad84f55b02936bedee6f577b40b5ab5dac02ea74ec2e2fa257935c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10a2d4e89394d918c520aa671c3ae968c26fb172a3530025261e52081164e8cf
MD5 0c21e2c597aa21e03711bae2cc7fbc67
BLAKE2b-256 87fa72117ba4e088ebcce632c8650d3bbb27bb251b4b8a87f0b328bc2e084f20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b71dc5be18cb4e8e23ff7314dae418bcc7f52478b4d5292a8aedad8aa34c592f
MD5 b4b92e19a8f3ddfdec05b9d516e3d4a9
BLAKE2b-256 90c40495535ab60e5ce18bdf64225730487f5935a31bcb4a7043c791257cb226

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c9edd96ec695b69361f498ba170e0d7ce2ab10dee7f2d340efdf80a18017b70c
MD5 ddce29b0af6500fe25c66c7372926735
BLAKE2b-256 0d7e46226e58db5b94d4544cb952bdc2ef852d2e0e95cea00128d413c1fa50a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f0f6ef387fc6f5f85ff394a326130ef71497c8ba393a9cb58c397823eb0bf8a6
MD5 04203826dc114a93741f1b86117abe09
BLAKE2b-256 6a3982977a52b123f945186bd1552a6a459f6f6d6bcadc458eca15a84021f5a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b416f96978bfcf57e471e4a5fc211d603fda5783d83af553497ecf3aa7711a2
MD5 36d38d0fc8b5b638aff825cd19f5e599
BLAKE2b-256 4effc50b420b7da26f896960eb522d8d25f41170c756b38a22f048dbd451f21c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 515923ddd115a8b5f38fc606ebf1d72bca9c1ced8e809d79462587902178eec9
MD5 70a57842c0b7b5e1b9abef0867fa3854
BLAKE2b-256 b2c76a02e8173ed368cab7b6d7aef69463e0f6550bf55fad61ab587aeb6f4b16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3847b0fcdb6aa357d68feb40bf691f575ad657202ec21cfe49d3f4e60c5a1b07
MD5 b1f919f40bf811596daad6d5c4f20f39
BLAKE2b-256 6ce2c9b8fc53a0e26ebb7577ed77d0cbe77b32501aa991f4d9ce15d40ebe4b81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bfc0dd9a9ba6953f759c2f08ef44d34ae2165723fd7a62a49ec4ef646169f4b0
MD5 c7ddb465e4996d31683c1bf03515f6f6
BLAKE2b-256 147a8d78f7311b4deae472d1a3e32047d14aef6a26baeb30616cecaecc585716

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 31d01cb6f5fbedf827828c27d7795a61b801d65971f75e79bfde082d14873738
MD5 941a8187159fffc9869da75ec9572cdf
BLAKE2b-256 c66e05cf66eb3f7d43666947ebb4277cc3e71ed4e8c2bf863f3736cc527dd158

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 440.3 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 13e900527fcf01055ce14d1d8689fe0095c9f1d9b5ce092fd479a4440b35568e
MD5 8934da908501ab778b89f86f7648eb61
BLAKE2b-256 86a40084739422ae66a0231d94df358667602868326016d693851d10f4fbd01a

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 414.0 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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 90983ea8b129bb61a1bb2664685dcefc61506af386d037a3c273de93f4bbb193
MD5 b2844fab7997513ad903ee776ec8bc00
BLAKE2b-256 11caec8b98e16f76677831c78d4a8402665bc9e1a511dc155e3d576fb0303671

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23ce07b45c4a4c83e0c48a80c59f4a95514a34c3dfee4bf0419b789b2ffe81e0
MD5 794dfaa65f33df986a818f2957eedd96
BLAKE2b-256 12b4ba248e6e33c91f22481d845cc5adcc12d1539fb6a875ae0ea1b36a1c32f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9eb6593161ec73b62245d0e08e72f82d91cb2c0c5d7ffb51ee1641cce19de43c
MD5 74c9be09688efaddd157f7dfbf482f20
BLAKE2b-256 f5de1238219424e2ffc6bea05941aef6968dabb9b979e31ccde8d3dd87fe4e64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 eea19c1abdf539d6ea3f7c7ff8014b4fe394dbab83524d4372a1a3da59888b3a
MD5 3a23899d7b7afce157755c022482a29a
BLAKE2b-256 2e13ab136471ba5e3d2a05a8d3679036eaa3bc518b754c4c8d7469543b6a1c2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1ef684e68db1e1b6b958431f8b467a2a2a847b606d07cb7906a6348c3905d6d0
MD5 73ba155dab4c4417dd49ef984462896a
BLAKE2b-256 8a088391e1b97b4baab2433da074307308a8b1e23fc46ed184540ddb18dcd321

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b2501312e4e91a6b5f96562e63d57cf570747b331434bd9be1868338542e6fc
MD5 1cea88113bbd27587f29c3de0a76e278
BLAKE2b-256 ab538f74c108c9a36a5853b6346a85abf1a530d2ee524248418240c3012f4021

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aeeb6adcdcce933d9d0e02c76d6b669a29ea1a92258bddb0f2b8a23fcf0631da
MD5 217d6627df9ab70d4087a1d537053e83
BLAKE2b-256 3bfc09ad8bf3b8e44d07f07d058874e5a8bafff4ff1c6d5e3b4519efb9640c57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6d23f52f0f8ba59906826e0620d80a3345ceb303c71919e3148cc7b730468a17
MD5 438c8f6ceceb6ddf7e4f49266d00aa5f
BLAKE2b-256 87c9075e63e25dcd90a42c0b3a6110854936fa71e70aa22f5a7a5c083f3046f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 233a88441897820c9a63b4c5d5bb02304d7e726376efeba974d81fb97d34afbb
MD5 93d51d97dd98f3dbd6ced82e7f7dba0e
BLAKE2b-256 3844040aee481bab364cc6e757999e13d3482380f02ea93045fde89a692f7b33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90060b5eefe8fb47afb85eb0e0487152fbe9a964af4a97a9e5eb6e287a382454
MD5 3f7aeb2040f30bec591d45ab605258b3
BLAKE2b-256 d1ac92ac6eb1c49de7cc1a506b08d6b5d26274c59ed040af859791aaa4ccb8e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 20c16a3174b20e5fe11068efac3c802be7861e7a5ecaeb57e050f29644c44137
MD5 6f92f2adb69feabb611f5e5d0684093d
BLAKE2b-256 86dabfb331a6304132fb8edb15f9d0c7cea5a446d50d529c14e34591f6458f65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3de5517683146fc9671349fdd7647d75fb7f5dc5f324e2bd8bbc614feea1941
MD5 02289d939076971cc1aaf22615b39859
BLAKE2b-256 6d410f516627d27f2b6dc952227dca29268dbd8fa403486ab2e3113979d8c480

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4d40ea97ca05f00af8dc6553a6aa8e8bb6428ddf89891d91b88dd3b6632a765
MD5 fd5976192487fdc1e1b24fbc8089b13c
BLAKE2b-256 efc661a0477849ed8f7eb039c9ddd7ba12787f7130c780d4625d8532e3945f1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9a3005872f62e140395cadb07ed2f95e719ed91d8b0be0e7b413a086ca112a29
MD5 4642705cdc4bd7a68445f01316aeb90e
BLAKE2b-256 e91c840e5d6d87814c7c779a04bd16ca9f2ad6a7d81e801e89a9e49609830968

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 439.8 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b886a6d9e786c41079f66410d6f54db5bb040766392ec2a00c18237afabce536
MD5 e24bf01e945ae8c9ed4f0d79f16db176
BLAKE2b-256 19441cdcf39545e9c5e8c94e90f40b6f9d5207a014509318017d36a16642e4a5

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 414.2 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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5b09b839af1fbafc0e0838739ad78e54531fcf9f1c06664d595c510597cbb509
MD5 f1fd412a8fe9edc6c319d564e19a149e
BLAKE2b-256 c5c30b8db5e4223f90030672cd3847250faee1d875bf483cab08b0fcd74f791f

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af4ecd77e0763dfd761c9fdb5f4862b7622b19788ee821243e6275a27d4eb309
MD5 65b19ed58263056431f485d372fb62db
BLAKE2b-256 7ebe7db3d18018f4af2bfb585ebe9b08b5aa9af7b27c0b492f1c4a7ff57a0fa8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2386149cbc1b680e670d8c41f726c1bbdcf21b6b7c29e73a112296f19cff90ad
MD5 028cb88837fdcb27df99633aa4458f39
BLAKE2b-256 7d0065cfa5634deafa23272c6880911720fe21846fb8e581b148c61427120f2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4261a8d2d2a45c6965ad525e2bed9ffd0ba9414eb9ffa19d7a100a5a3b12622d
MD5 38b402b960975c468abd84f0fef293f9
BLAKE2b-256 1960f3f02303f81bffb0e954e15aba00018b672205a5e0eab205e0c1c28da427

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 827d43e5e63dac14f4c20c54b784ddd2d6586efc9f0c699a928643e2072988b5
MD5 0b247ab794b6f891a281625763d5ef47
BLAKE2b-256 ac9be50986e3ee33b98083d9c3eaa3776f5ca06758e94597e97849669bc8df3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c08e454c8be4d21bdb87a5f4fed0d325ea6c35af7442028bff8847e5f4a6004
MD5 c6be3f90b3b8f4d71de43c2ed1091798
BLAKE2b-256 dd3d8ae7e1d44ee52eed8999099ecb984da5dada80cee44b4d51332ea86ee896

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 075d4feac0d2ee631c629f01ccf393c0df4fe5be3159909a5109ad59f8b30751
MD5 6ad389b0432b1d13bdd9760a54067ec3
BLAKE2b-256 63ef5a12794053db90d968af096a9b6b1638ee08a09f20450e65ec9796f5b1cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 76a8e1b11c56cb04f479c29b17e6f6b2a1f7f8775d0c4b7c43024e4e5ccd977a
MD5 d3ac53b50e04846f6139d0f9f8140aab
BLAKE2b-256 739e941ca61e86dbc06408fc2efe3afb2d3cfd91767ba096ca3250a3d4dcb050

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 05d3db58d6cf4f594da45edde0ddbd9f1e0318fc64c98a4834c9f09df0cff4a2
MD5 57c5aca2af5ce12b97851832fd5efdda
BLAKE2b-256 cf2e45fc84c35a029366a90126d30905970f0f18f689e91f1bc2196896e4f319

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d07d6389ce98913292ed4e8b19dc71afe2f639c8afd0bb5f20093c3e5d55ffe6
MD5 25ee9e4b1aad9fe44a2f70704cd7c6bf
BLAKE2b-256 c0cdf24002ad7bc11115722cc5a7726fd708012dcd33b936fe035b139716e677

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eb4ecfce1b3392d50a39f8a6cc0d619231985e4c270b9a9d6b18fe58301e36f9
MD5 f50d514eeef348b401a11485ff0811d9
BLAKE2b-256 9309c6fa544b55efd2665d483dbe4388124f41d874867e92ae812d2ae9434341

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 778e1db655eb617b17f564dc1c1bdfe85dc1f5546b552aefca9e9b473be9f9f5
MD5 3c291cef58fcd6bedb0468b71ffece66
BLAKE2b-256 5892b43d584db8eb9c739ed48a828052956b8ed04adbd9f502b853674c5aae03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3212cb9cc88a25a72180328bfa90a44275432e2e7b4fafff3044951210131b86
MD5 25faf589e42cb9bb0634e3d90d28b0aa
BLAKE2b-256 beff8dbb1e99bc89e0307d57c17cc4fca884ef82d36f44409cbbac57040955c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 92828f0703b8db410d4e17ce8c94e40094642b1154aa2d353cc5368bba6fd979
MD5 9efba08eddddad1528196b3be71de421
BLAKE2b-256 07e561cab1b098a6435b19d1e5b242326b70eec5ae49a5084d3b0bed2e1975c5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 440.0 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c0770b83236ee986d69ccdbbda4aadae3838137443a04b35175ba5b588bf64c2
MD5 56b4b05f246044a96c39a274ffe436df
BLAKE2b-256 81d6ec459aad9b2f66c7ad70c2166b67120e3435892be1027c1679b01d8fcc68

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 414.5 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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 29876016eebede9a597c7ca4646a63adabea920d10ae1cd8d078770ac9ea4e83
MD5 e42cf1f943e62a556f4373087a6ed51c
BLAKE2b-256 e43fb4de96e7fa4dfa77dde77b74ca2999ea9f7196f34f859c80200bfcd41947

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10a7f984490e50c0871bd4590fd9525161b103d1287dca911dfc352342d27f1a
MD5 3166f6b66da851ac2a58889184b161e2
BLAKE2b-256 787ff21bf9113003c378df082054ab65bb573273d7c607021efe62054032fd7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 74b85e0d2526c5c0ab90c2d7f6d68c1dc81783dfe43eaa9bcb49b227a9bda11c
MD5 89e85623925c00df8bb0ba9e9d98c498
BLAKE2b-256 7f45252638388414289f01d736b4352709dd581a0da96e0e9bb17ff0aa67c652

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4b307e36887c9cce227f342634b399d8762f5ebdd670553aaf26bff07ec0e286
MD5 cbddf4a5456ba826946e22726a09d85e
BLAKE2b-256 4f1a67f7467a76443264e84491d43752628f9908e27e88e5cffac91a6e27c2f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d56859ede1338b3118d2352064ef4570973fdb9f2c8a28d3592e248adc3b50e4
MD5 5db90ab40e996165d6766e08e4afef1f
BLAKE2b-256 3c97c0e0a1fa6b8807034dbd7f05d1b4754723ec4632314a06315036fc0429ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87db06deba554bd9e5870831c31ef922caca74dbb4db1ab55a4e5fc04fe80bb7
MD5 adcfdf9d367927a0ad43d1e078740212
BLAKE2b-256 cfce1eca75840fb9dead0f15a9698996736541da314a437c1d02bb9dfbd27338

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed432dc08d9bfeddeda7998aab14d65f2f52766c01179c3bbac9b0742f5d0ad5
MD5 48e94fd9359faf88c977f14ad6ee36b6
BLAKE2b-256 61a9d23418ef4103f4389e0b1606f83cd9715600cd046a3266f9671ee3a55080

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 144f8a4981434edf49f2f31c8c2abf4519afbf27106372019def93b87b907088
MD5 b7f7da69044338db35bc3bfc87a488ea
BLAKE2b-256 27890d655d44829bed29d7c9f84aa3d9514539320586f83fc0318dbebfcbf2e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7180589d619cfe72fcfb5d37f69176cb8114e1f9bdb7f25f14430cd0222059d1
MD5 80545a45a4aed0812d842e6bd05fa53b
BLAKE2b-256 a64c9a22f43c50a84e50615e60c071e65da0f2440f6a6d67751a43bc893a66c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36d5606fb468dd3651080f461da4281cfb13071a4e6d47cd87c7f2d993bc7fb5
MD5 88c4f4dc0e4f2908387390178346fa8b
BLAKE2b-256 d3735b508e6bf9c7fc8260128ef2cd09053511d86ba3775a1df4caec32d4c90f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 501eb5a35c97fb95852dbf83d9bc501b1ea157dcae9ec87d3966737a2f310823
MD5 ee41ed91d2afdf5219f9b1d3e936386b
BLAKE2b-256 ad6b133fea92be461872a3512f0e19a2297609ab5189c312b1cdc4c380543bf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e4576bf6aa8db9e8663103e54a0505aca2379b1b590670c43c9564b32cae33f
MD5 8649ed2905f03688661d14c3def339f0
BLAKE2b-256 b2af99be6e14db5abbc894ab16773bc92225dfa0c900f1353145039752690cde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1ee36ee0f16d14325ef37801e2a2079f5ca451a3675f26ed545bc272ea7e5730
MD5 92668be950d738576de8d9897de698f6
BLAKE2b-256 40fa82545b66d702740f59e374f94336ee403ade44496a4276a6b3c2e8e4ff8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bd64717cd14cf57afabb171e72d2ee1b298df85b66a16c6ae7f219202e381734
MD5 70aa11f4b10e02f48a337c3953b97af9
BLAKE2b-256 c4562a74bb3de82a822a010cfb8db1f3658319b4a22d71d439c5d3a30f553bcd

See more details on using hashes here.

Provenance

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