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

Uploaded Source

Built Distributions

aiohttp-3.11.2-cp313-cp313-win_amd64.whl (434.6 kB view details)

Uploaded CPython 3.13 Windows x86-64

aiohttp-3.11.2-cp313-cp313-win32.whl (408.5 kB view details)

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

aiohttp-3.11.2-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.2-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.2-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.2-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.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (451.2 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

aiohttp-3.11.2-cp313-cp313-macosx_10_13_x86_64.whl (458.3 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

aiohttp-3.11.2-cp313-cp313-macosx_10_13_universal2.whl (695.5 kB view details)

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

aiohttp-3.11.2-cp312-cp312-win_amd64.whl (436.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.11.2-cp312-cp312-win32.whl (409.8 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

aiohttp-3.11.2-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.2-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.2-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.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (454.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.11.2-cp312-cp312-macosx_10_13_x86_64.whl (461.7 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

aiohttp-3.11.2-cp312-cp312-macosx_10_13_universal2.whl (702.0 kB view details)

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

aiohttp-3.11.2-cp311-cp311-win_amd64.whl (440.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.11.2-cp311-cp311-win32.whl (414.7 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

aiohttp-3.11.2-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.2-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.2-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.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (453.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.11.2-cp311-cp311-macosx_10_9_x86_64.whl (466.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.11.2-cp311-cp311-macosx_10_9_universal2.whl (706.5 kB view details)

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

aiohttp-3.11.2-cp310-cp310-win_amd64.whl (440.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.11.2-cp310-cp310-win32.whl (414.8 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

aiohttp-3.11.2-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.2-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.2-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.2-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.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (453.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.11.2-cp310-cp310-macosx_10_9_x86_64.whl (466.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.11.2-cp310-cp310-macosx_10_9_universal2.whl (706.4 kB view details)

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

aiohttp-3.11.2-cp39-cp39-win_amd64.whl (440.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.11.2-cp39-cp39-win32.whl (415.1 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.11.2-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.2-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.2-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.2-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.2-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.2-cp39-cp39-macosx_11_0_arm64.whl (454.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.11.2-cp39-cp39-macosx_10_9_x86_64.whl (467.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.11.2-cp39-cp39-macosx_10_9_universal2.whl (707.3 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.2.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.2.tar.gz
Algorithm Hash digest
SHA256 68d1f46f9387db3785508f5225d3acbc5825ca13d9c29f2b5cce203d5863eb79
MD5 6b7e7fb6644787889c082438a90ab58e
BLAKE2b-256 556897e4fab2add44bbd4b0107379d6900e80556c9a5d8ff548385690807b3f6

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 434.6 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cccb2937bece1310c5c0163d0406aba170a2e5fb1f0444d7b0e7fdc9bd6bb713
MD5 f54e27f777daa83a19e7ee5eeb844f49
BLAKE2b-256 dbaaed3747ecd096c3cd85d8aca0c419079494b344f827349998570233428813

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 408.5 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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1c2496182e577042e0e07a328d91c949da9e77a2047c7291071e734cd7a6e780
MD5 eb2f6de378596a668cb7b160d7a393ea
BLAKE2b-256 db6b7a99a3d14df8a383f842ee96f17ee9a53b6ebba0d9ed82adbd40e5c70a0e

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2914061f5ca573f990ec14191e6998752fa8fe50d518e3405410353c3f44aa5d
MD5 b551c657671b38e3d49e30263077ad13
BLAKE2b-256 227775b3a9cfe9c9ec901787f094379f4763c277aac8260f102e6056265dc0de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9b6d15adc9768ff167614ca853f7eeb6ee5f1d55d5660e3af85ce6744fed2b82
MD5 c798ac8b60d05a2ae52208c0ad1d5e05
BLAKE2b-256 4e0a3b6aa94de5e88a2a0d629740fa725101228ad005ee244259e4cc8a837def

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 66e58a2e8c7609a3545c4b38fb8b01a6b8346c4862e529534f7674c5265a97b8
MD5 8d3c4da421d23c87938119da68f4cf2a
BLAKE2b-256 0253aa9491b43f7f2a0b0ea43b6b269074a795b2964e7562389010dab1503531

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e57a10aacedcf24666f4c90d03e599f71d172d1c5e00dcf48205c445806745b0
MD5 ce83a3a6a27adca90a872482bd4ed84a
BLAKE2b-256 c378598d8a49d7aea14fa8a274d115ab09d2f6c0b35de0db26cc68dc6d6dda6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14eb6c628432720e41b4fab1ada879d56cfe7034159849e083eb536b4c2afa99
MD5 6e8dda2b84645a6f29fc6c973b00cab9
BLAKE2b-256 8bf32e8e9cb2b6e623d17c685b5112d76adba0a305905b1fcc4f1dc5d2ce6aab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64e8f5178958a9954043bc8cd10a5ae97352c3f2fc99aa01f2aebb0026010910
MD5 cda649a3a3fbe3783fec41e860d43522
BLAKE2b-256 9ca62eabd3a480d7a8ef0800d9e9ad40f7411c868256343ccd655ba809ed1856

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b339d91ac9060bd6ecdc595a82dc151045e5d74f566e0864ef3f2ba0887fec42
MD5 f566f71ee5887b5dbadd147be7883708
BLAKE2b-256 f50dce17f71443d4c0ab1c097be0bab32c82e95e41e2c7e12dd8445a8f000e35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 44b69c69c194ffacbc50165911cf023a4b1b06422d1e1199d3aea82eac17004e
MD5 783261d0b30c84e7c79cb52150f68467
BLAKE2b-256 33b0689ebc9582c3db2aa7f8c2752179264087f11b25d3dbb9f9a3f53257c829

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9075313f8e41b481e4cb10af405054564b0247dc335db5398ed05f8ec38787e2
MD5 0ad4c4e2a16d35956e4105b04fd4b676
BLAKE2b-256 b2bff87345e82156dcdc5d5b547f57074a5144d8036db2e9a7ea3f2047ae04b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3129151378f858cdc4a0a4df355c9a0d060ab49e2eea7e62e9f085bac100551b
MD5 6e5f6d2d1a36bf16a1516a242aa54c30
BLAKE2b-256 f94efb1184d90a4a1db78d57193434d0a63f78ff4985852b66ed0b1fc91969d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 486273d3b5af75a80c31c311988931bdd2a4b96a74d5c7f422bad948f99988ef
MD5 cdee6ef5c23da5208758b7afa363e7ff
BLAKE2b-256 4b6fcd7477819050ff819b5affd724a13d52832771d3b3da310f3abedafcaf1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d23854e5867650d40cba54d49956aad8081452aa80b2cf0d8c310633f4f48510
MD5 37760697361be88ea88ff82f42ee3a2f
BLAKE2b-256 198d7f66861a7239f895b271fdffc3a4308c6e619a5020014437b995c5b71c9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 5d90b5a3b0f32a5fecf5dd83d828713986c019585f5cddf40d288ff77f366615
MD5 d0a8cabd6470881b8633cd7f7adec9c8
BLAKE2b-256 2d54d1f8f63bccc5329580cb473dedc2f0d9e8682491163d98e182f9b3eb53db

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 436.2 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3f617a48b70f4843d54f52440ea1e58da6bdab07b391a3a6aed8d3b311a4cc04
MD5 bc20a182ebe4d6d6abe007877a13d81c
BLAKE2b-256 6d2c5f45a92c3858e0c1b9072f5429cf68e4918ec5c7c32ebe38305faa7761fe

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 409.8 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b470de64d17156c37e91effc109d3b032b39867000e2c126732fe01d034441f9
MD5 8f53174cab6ba378991f8b84b5d505fd
BLAKE2b-256 2b6eb1e643188e4f26bae8d3c9aed7a40fee21ec71fb36ca1868fb6ad83c1a44

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85de9904bc360fd29a98885d2bfcbd4e02ab33c53353cb70607f2bea2cb92468
MD5 c8a5472e4a99eba51987b7f1e2197200
BLAKE2b-256 e3152da3f1300eb993f8a011545ad4b82d56ed6e684fc38a043fa79b629eec35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5587da333b7d280a312715b843d43e734652aa382cba824a84a67c81f75b338b
MD5 d5de1c00d840e7ad1327c1cd132d3e91
BLAKE2b-256 bbb02a357d4bbb4fb11284827e9db2ad6d16119779affc1271ae791ee3242ceb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 122768e3ae9ce74f981b46edefea9c6e5a40aea38aba3ac50168e6370459bf20
MD5 9901d72ff4c794d7d00d8c11d6adf861
BLAKE2b-256 7dbe18699f1767cfb4b236c9334e6829ebf94c5dbc36d72502fd4df82fc20eb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ebdf5087e2ce903d8220cc45dcece90c2199ae4395fd83ca616fcc81010db2c
MD5 3b00cd048c67ed7d3f4fbce62fd37d0f
BLAKE2b-256 5652c96ba7e70cc9b12e16c28239d740a2625d2d8abb57827648da06f173a18b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97fba98fc5d9ccd3d33909e898d00f2494d6a9eec7cbda3d030632e2c8bb4d00
MD5 fce27ec6af6a294c3d526614f97ec747
BLAKE2b-256 1d7b0bb81a27a9f48599ff6662c7a79a4a6aa5c3ee4fe03c91d1fea060259c75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0cba0b8d25aa2d450762f3dd6df85498f5e7c3ad0ddeb516ef2b03510f0eea32
MD5 4289febe7d6784f99ae2abb4bf2bf932
BLAKE2b-256 26e45deb69474fbadcbbe272f61fc31a75ad5e8b831a619fcb80c8d9c5be2ab6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32334f35824811dd20a12cc90825d000e6b50faaeaa71408d42269151a66140d
MD5 2d6d50cd88f7a38e9bf24fec21360095
BLAKE2b-256 1a9dea38bfedcb327d16ce8123ab70d924e3d8c935e166d3de42537024da239f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a90a0dc4b054b5af299a900bf950fe8f9e3e54322bc405005f30aa5cacc5c98
MD5 4c4042b34befd7f0032f8d0875068684
BLAKE2b-256 ccae849abce780c9f4d765c8b18f9be77a6dae3165452cfe99aed346b016fa30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de3b4d5fb5d69749104b880a157f38baeea7765c93d9cd3837cedd5b84729e10
MD5 c1d5b71d29b3df7c1ead7a60056447d3
BLAKE2b-256 ead4259a3883bafe107ab43aff367afb59b8a92a89269130340422176e01ef98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9bbb2dbc2701ab7e9307ca3a8fa4999c5b28246968e0a0202a5afabf48a42e22
MD5 d9e4dc09a3baf0edf8ce8738b97e9e6e
BLAKE2b-256 e22ddeb6af863dc31af4f443e951ec8afefac44caf2b1603a34b8fcf372d58e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3a2bcf6c81639a165da93469e1e0aff67c956721f3fa9c0560f07dd1e505116
MD5 4f5d7a87431fd18eaf9a406af6f91901
BLAKE2b-256 4cc62ea8c333f6c26cc48eb35e7bc369124ece9591bb8ef236cf72cb568da4f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 382f853516664d2ebfc75dc01da4a10fdef5edcb335fe7b45cf471ce758ecb18
MD5 58618d3680498ad446285fd679f933a3
BLAKE2b-256 de8ce15aec18009ef73f6f1b1e4c077ce27d0c7045643106eda058f329eac364

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f833a80d9de9307d736b6af58c235b17ef7f90ebea7b9c49cd274dec7a66a2f1
MD5 f7484e48c5746e5066f924e9db368de1
BLAKE2b-256 0ef8e342cfe27681b1f846f05e7374800deec8162067094ae28e7ab4d7c3bfdf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 440.7 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2adb967454e10e69478ba4a8d8afbba48a7c7a8619216b7c807f8481cc66ddfb
MD5 af0b5c11fd2b7c75bc06340550c48cc2
BLAKE2b-256 7b9274c4c5736e82de1d2575f3347d4fde42dad31979d7238706f118854c402c

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 414.7 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9c8d1db4f65bbc9d75b7b271d68fb996f1c8c81a525263862477d93611856c2d
MD5 052ca28d9f52518eacdb8928124c72bd
BLAKE2b-256 ef4b7ed90469a6f471d032d6cdee08c5a1efa48fd45b467e90f98ef497ee388a

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e8e19a80ba194db5c06915a9df23c0c06e0e9ca9a4db9386a6056cca555a027
MD5 993e40ecdad450527eae4dde47cb59b8
BLAKE2b-256 7547d4318c6dc66b91236e65c46b76813d9a63db8b546c6cb6ccd49b1fad5f53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 10a5f91c319d9d4afba812f72984816b5fcd20742232ff7ecc1610ffbf3fc64d
MD5 7af7e69f0114ce222a5db8ba1e10cfde
BLAKE2b-256 64887ee1985eead8949508c4cd74465a43ac51fd46fd3bb6b1a1bd61dead4dbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 afa55e863224e664a782effa62245df73fdfc55aee539bed6efacf35f6d4e4b7
MD5 1cb7d68ffb48b63060c1eabe992b19d8
BLAKE2b-256 cfb3cbf424e5bd888adf7d28dcd905454d6a03ebca9aa3904ed1d9b4c960cae8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8d954ba0eae7f33884d27dc00629ca4389d249eb8d26ca07c30911257cae8c96
MD5 57beaf68f8dd8ff55c6316f19cc97f5b
BLAKE2b-256 f081cc0c32f49879e96d11a363be4cdd396944d8725d366352bd8dbc7e6f112e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4d7fad8c456d180a6d2f44c41cfab4b80e2e81451815825097db48b8293f59d5
MD5 b9f5f42bd067d7279ce562d93562377b
BLAKE2b-256 162379966a67a7301f15cabe0d350e703f6d55fc111268912fe9ad9425af4dfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d878a0186023ac391861958035174d0486f3259cabf8fd94e591985468da3ea
MD5 7b69e9791c6dd7ef8812611b2461bd0d
BLAKE2b-256 428be379af81ff3ca28ed3b0ba050cd67365c2b33a575e8cdcd932baa51adf39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a7b0a1618060e3f5aa73d3526ca2108a16a1b6bf86612cd0bb2ddcbef9879d06
MD5 88dda56eaf073a9272e011f7066d7de1
BLAKE2b-256 1d6a7f2bb6b527462b61cfb95d305f918d8090fb5408b330e3fdb949f2d44c2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fb0544a0e8294a5a5e20d3cacdaaa9a911d7c0a9150f5264aef36e7d8fdfa07e
MD5 1d9a13a353b3f40dddd17ed9a0260305
BLAKE2b-256 b6fff9f701e1edc002dd19b1de1a75aeeee2a912988dca368b24d01cd7e57a9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4ec8afd362356b8798c8caa806e91deb3f0602d8ffae8e91d2d3ced2a90c35e
MD5 6ce3f0c80db62c46224a6a1bc55034bd
BLAKE2b-256 d8f40b47884b3e8ef8916207abea6bcfe43b31380cc06dea23ad3a4335d1c61f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1e33a7eddcd07545ccf5c3ab230f60314a17dc33e285475e8405e26e21f02660
MD5 342280263c8de01e1c2b2b28a2bc7c95
BLAKE2b-256 50a82be8e7042edae7767cef5461ab383a73e13b45bcd07d74a3a0ccc97c6d1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d84930b4145991214602372edd7305fc76b700220db79ac0dd57d3afd0f0a1ca
MD5 fbce9dad909083d7aa567711cc9f6e55
BLAKE2b-256 8c199303464572565e3c3791ba8bfe07ab6cc071b36513b69e5a37ea2656b7a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9aa4e68f1e4f303971ec42976fb170204fb5092de199034b57199a1747e78a2d
MD5 eed6d8799c05f30b41d806c89c3a1613
BLAKE2b-256 5982be16718d07bb9bbdf12b06c248019e254bdf5f55d8565f0e015754cb924c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 50e0aee4adc9abcd2109c618a8d1b2c93b85ac277b24a003ab147d91e068b06d
MD5 d6a2f73c587001e41848c06b5f7390d6
BLAKE2b-256 5c0b19fd7fca18e288edf050c39504504dd58f836e43df70a05322276fe65d46

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 440.3 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ff5d22eece44528023254b595c670dfcf9733ac6af74c4b6cb4f6a784dc3870c
MD5 a6107e476ea7c731070918273cd925f6
BLAKE2b-256 eeb871cbdc6cf6ed425f20f04c3a663f1f5015497ac33cccb120b3f654a49412

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 414.8 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 177b000efaf8d2f7012c649e8aee5b0bf488677b1162be5e7511aa4f9d567607
MD5 7f61a3c96c431a693a2fd78237fa9995
BLAKE2b-256 a0a0d3736538f08e5338215d005bd568321c77c6c4aa928bfb87e952e005a9b2

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 57993f406ce3f114b2a6756d7809be3ffd0cc40f33e8f8b9a4aa1b027fd4e3eb
MD5 27be70183664638269ebd35dfc1300a6
BLAKE2b-256 6bbda01e19e11c3907fda539dc219335a27683f3a617b463d08b3749b6b24a6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 556564d89e2f4a6e8fe000894c03e4e84cf0b6cfa5674e425db122633ee244d1
MD5 bd068889143ff281f13e65d69adb57e3
BLAKE2b-256 bbfae5c1f4c7c63cad98db3a9f0c25678266ff7c8c3a680726c954f67e7d3578

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4a23475d8d5c56e447b7752a1e2ac267c1f723f765e406c81feddcd16cdc97bc
MD5 2385fe1ba5c2a7e68baf69cda0f03deb
BLAKE2b-256 8b045d93306f4cfe91c7fc14c08a26ac5f3b01eb7a996e604a56f109b0afd690

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2793d3297f3e49015140e6d3ea26142c967e07998e2fb00b6ee8d041138fbc4e
MD5 84c1ca4191cb84f1150cb6c16b535354
BLAKE2b-256 6b9b3dbeeda9445d18446dc61a0716d5eeb0a8790baf7361e7367b2f580670ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08ebe7a1d6c1e5ca766d68407280d69658f5f98821c2ba6c41c63cabfed159af
MD5 ccceaee06d2d1bc4b11b73774e3f659a
BLAKE2b-256 bb11443e25bbd28df162569a7e873dbe08555fafb647a8a1ab0c29fe068a7a84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdc6f8dce09281ae534eaf08a54f0d38612398375f28dad733a8885f3bf9b978
MD5 e6d0d3709e01dd58f80bbdbfb02494ca
BLAKE2b-256 c088aef5bc859bf250bfbdf66466ec4951ae827ce247063cae3d9195b3cae9cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b1f4844909321ef2c1cee50ddeccbd6018cd8c8d1ddddda3f553e94a5859497
MD5 665e93476695048c0ea25df7e8a52164
BLAKE2b-256 b62cfad1496bdc7e4edebe691aea3e75b3e4e65aea78bd18e1371bb9d063a40e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f1d06c8fd8b453c3e553c956bd3b8395100401060430572174bb7876dd95ad49
MD5 e7df7e1a44d7f8065ab06d571c1b4c54
BLAKE2b-256 a5089cde3cfbee35e926506190f533712d2430f4eeadf74ce168c152dca78aab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73a664478ae1ea011b5a710fb100b115ca8b2146864fa0ce4143ff944df714b8
MD5 fb751ff7cebb1d367fccd23849bc4c6d
BLAKE2b-256 9c80a85eb123fdde62aaf88a7d538f68282bd1c8c62253dcc5769151b528406a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d2d942421cf3a1d1eceae8fa192f1fbfb74eb9d3e207d35ad2696bd2ce2c987c
MD5 52209be5b947c5b2ded54b2a04ea5ee1
BLAKE2b-256 e16f318c9d9e792d6887936a1900e267ebbc5869eea358956a98c233c1685b68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c681f34e2814bc6e1eef49752b338061b94a42c92734d0be9513447d3f83718c
MD5 edd6650e3421c3b5961b6d83fea258c0
BLAKE2b-256 9e7a33b7840056fb22aa94545d5c5df49385fe77833d961d53e1fc5d66beb6fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 435f7a08d8aa42371a94e7c141205a9cb092ba551084b5e0c57492e6673601a3
MD5 ca2651b46fd32c758d0d5033e5287ecf
BLAKE2b-256 b0959436e7329f9e8ef5606386902e3eb8eb837ae03567192c52c473354807fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 783741f534c14957fbe657d62a34b947ec06db23d45a2fd4a8aeb73d9c84d7e6
MD5 f3e12edf997f5150c5a85b64235d2b08
BLAKE2b-256 c08818f54bbafffca69d25ef97ff54545b30b5e8b3f9e6cfd1c4dbe1881a22e6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 440.5 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c28c1677ea33ccb8b14330560094cc44d3ff4fad617a544fd18beb90403fe0f1
MD5 ee39bf3527de80381a0b92cef94f07e1
BLAKE2b-256 20c8126fee13bbd1e75fbf2666aa6c796c4d2d24509a03ae9feaba54b6527ae9

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 415.1 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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 83a70e22e0f6222effe7f29fdeba6c6023f9595e59a0479edacfbd7de4b77bb7
MD5 7d15ad49cd36ef3861acff3dd12e745c
BLAKE2b-256 5920bf700b8b2ae9501781aef1d3e33d955d08c656441bed1746a380c31018d3

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33af11eca7bb0f5c6ffaf5e7d9d2336c2448f9c6279b93abdd6f3c35f9ee321f
MD5 7bd8bc9a7cdbfc5bfad069df10c3d2dd
BLAKE2b-256 99d8f07fb43fdfa6d2a764f8ead99917391e9b20cc98c2e6d8ba174f5f2932a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 34f37c59b12bc3afc52bab6fcd9cd3be82ff01c4598a84cbea934ccb3a9c54a0
MD5 f3f8c753c641121ab23c7ee90ccd4455
BLAKE2b-256 dda4a487e1f35cf09258481c2012347ff41c4d87defcd1fd46fc46b5e2ed3056

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d2f991c18132f3e505c108147925372ffe4549173b7c258cf227df1c5977a635
MD5 21b62866c904b36b061c290e235a4dfa
BLAKE2b-256 4da2b3cc73eb815285e9a2980f2463ce7545cf9cf870f4a9688d6cdfff09c5de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 374baefcb1b6275f350da605951f5f02487a9bc84a574a7d5b696439fabd49a3
MD5 91461822feb6181111aeb1990516b36d
BLAKE2b-256 3341108b813ab7064aa8293c9bfd8cd4042f4f00544ec880e37f7aea7d419dc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b02a68b9445c70d7f5c8b578c5f5e5866b1d67ca23eb9e8bc8658ae9e3e2c74
MD5 99c13ab4dd05faad3e724d17983a80b1
BLAKE2b-256 e488b9fb4bb433712c3e41d8817cf819ce4baf1cf5e4fef6404c073ed761f0f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d6e069b882c1fdcbe5577dc4be372eda705180197140577a4cddb648c29d22e
MD5 fc84c710898a424fe50822996925fd2d
BLAKE2b-256 d761a0515f4b71f91c0a3c54815d0e29f67932c1bc43ce75e703570eab21e011

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 79efd1ee3827b2f16797e14b1e45021206c3271249b4d0025014466d416d7413
MD5 231085d384a341a4a2b8661736e7ab77
BLAKE2b-256 c793b7cfb33ea811975bb4e260b277ac9805db4d4a4cae79709a5fda52bd45ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 766d0ebf8703d28f854f945982aa09224d5a27a29594c70d921c43c3930fe7ac
MD5 21a4099be7b069f9b48969e4c994ec45
BLAKE2b-256 4215060c851247f3f0481a8a508e95eaa6bcd25dddfaccd4ae6b38fc799ba2c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c979fc92aba66730b66099cd5becb42d869a26c0011119bc1c2478408a8bf7a
MD5 b262120fafc974328b06ee8a1a2eace4
BLAKE2b-256 f5d1b5edd90a006af2e72b91a735989089065a53920904fa53d2d0c0af68f4a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5e9a766c346b2ed7e88937919d84ed64b4ef489dad1d8939f806ee52901dc142
MD5 c00f211557467b74fff01f6cd1342c7d
BLAKE2b-256 eb01a4977b40c13f11bd74424406f074d60c963248edfeac1273ac4791a50d9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ad9a7d2a3a0f235184426425f80bd3b26c66b24fd5fddecde66be30c01ebe6e
MD5 fc1c9d3d3bbfa5eae681ceb3748f7fff
BLAKE2b-256 9bc7122c4fbacd3d3587551f24f39ba2d7c68a0be9c558dd908dd9a048792ecc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3666c750b73ce463a413692e3a57c60f7089e2d9116a2aa5a0f0eaf2ae325148
MD5 39e19670d64c8ddc707254e3a0079d4c
BLAKE2b-256 5a00620cd36796db1192f5b8305e8b4303e023c392dd07caf0d3ed97b343ecda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 994cb893936dd2e1803655ae8667a45066bfd53360b148e22b4e3325cc5ea7a3
MD5 f698586070683a237aeb30c05364cce1
BLAKE2b-256 b90e42c9ccfa8e586c63c02e71e01ccdf12be8b41b978bded975583d7145b6b7

See more details on using hashes here.

Provenance

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