Skip to main content

Async http client/server framework (asyncio)

Project description

aiohttp logo

GitHub Actions status for master branch codecov.io status for master branch Codspeed.io status for aiohttp Latest PyPI package version Latest Read The Docs Matrix Room — #aio-libs:matrix.org Matrix Space — #aio-libs-space:matrix.org

Key Features

  • Supports both client and server side of HTTP protocol.

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

  • Provides Web-server with middleware and pluggable routing.

Getting started

Client

To get something from the web:

import aiohttp
import asyncio

async def main():

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

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

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

asyncio.run(main())

This prints:

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

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

Server

An example using a simple server:

# examples/server_simple.py
from aiohttp import web

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

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

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

    return ws


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

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

Documentation

https://aiohttp.readthedocs.io/

Demos

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

Communication channels

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

Matrix: #aio-libs:matrix.org

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

Requirements

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

License

aiohttp is offered under the Apache 2 license.

Keepsafe

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

Source code

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

Benchmarks

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

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13 macOS 11.0+ ARM64

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

Uploaded CPython 3.13 macOS 10.13+ x86-64

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

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

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.13+ x86-64

aiohttp-3.11.6-cp312-cp312-macosx_10_13_universal2.whl (702.2 kB view details)

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

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.6.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.6.tar.gz
Algorithm Hash digest
SHA256 fd9f55c1b51ae1c20a1afe7216a64a88d38afee063baa23c7fce03757023c999
MD5 6119ab8dd904321b58b7b4402a04c535
BLAKE2b-256 d566a967a2e9ceab12b6970ca5be3bccc9cf13fed4acfabe2c66de3d75599185

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f77bc29a465c0f9f6573d1abe656d385fa673e34efe615bd4acc50899280ee47
MD5 184a06a6c09ee47e19b4dff00d401951
BLAKE2b-256 30420567f9707e6016040567a715c20dae743b70b413889f4d3ae18a4b45e4bb

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2fbea25f2d44df809a46414a8baafa5f179d9dda7e60717f07bded56300589b3
MD5 34248d15722804337ad7a475d0acbecf
BLAKE2b-256 dda0418c1474806c051ee95e1f600302f72f7a5d1f7705b694ac2f5a03937b31

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aff2ed18274c0bfe0c1d772781c87d5ca97ae50f439729007cec9644ee9b15fe
MD5 14e9da9270a52191eace509d746e6fba
BLAKE2b-256 d7c1dbb98a399c776a0b5bd3f825b26abb1ff9648b2437e44cda5d04517a8ea9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 69051c1e45fb18c0ae4d39a075532ff0b015982e7997f19eb5932eb4a3e05c17
MD5 9371390de5ec2eea7a2ab8ef08b4391d
BLAKE2b-256 855ee27cbafe135840a9855ef2a60a413f652e44fa707ea3b272eb7870b853cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a76b4d4ca34254dca066acff2120811e2a8183997c135fcafa558280f2cc53f3
MD5 b146792a18fe833140402c37563e2e4a
BLAKE2b-256 a08980a6f8661627ad6eba5d03a351a6af56ee7236bddf27b4a6ebae79b24e4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7e0cb6a1b1f499cb2aa0bab1c9f2169ad6913c735b7447e058e0c29c9e51c0b5
MD5 01fe5a4a126f26862f6471bfcf30a607
BLAKE2b-256 359143278170a636a53bb6b40a862ca60b65bb1007664b9a7f2a01fadea70e8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e44d1bc6c88f5234115011842219ba27698a5f2deee245c963b180080572aaa2
MD5 1f46a9c7e8922660e235ac607386996e
BLAKE2b-256 ab84a0a5fd9e51f79bdbda8ed25a7ff864bd4edc7afda5bc07bfa8cdb5ebc92f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2607ebb783e3aeefa017ec8f34b506a727e6b6ab2c4b037d65f0bc7151f4430a
MD5 e6cc3b5a27852e6eaf508093af7b6c99
BLAKE2b-256 b276fc2d851cdd737fdb0bb207c82b7ecf3ddadbb9dbeadf9eff19fcb8205884

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 00c22fe2486308770d22ef86242101d7b0f1e1093ce178f2358f860e5149a551
MD5 c4ce66e429614c5aa64c73c3c6c8cae9
BLAKE2b-256 dfc0aa0b58ef44b12ba5fd8cf61d38e4b69e083ef6ad5cc2dec51c201a594151

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6be90a6beced41653bda34afc891617c6d9e8276eef9c183f029f851f0a3c3d
MD5 32e8de7a5172c9ba0001470af34d3659
BLAKE2b-256 f4052102ae02f9310cc2c777f4355f12a2139be9fcb0469c60f52d87b04c98ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f69cc1b45115ac44795b63529aa5caa9674be057f11271f65474127b24fc1ce6
MD5 ef398a038a3d4c73cea8bdad7a6b03ec
BLAKE2b-256 8db3982bf01e6d9e1874ec34f9871650037f409711a319e8374a206ab850629f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f761d6819870c2a8537f75f3e2fc610b163150cefa01f9f623945840f601b2c
MD5 2f757754f5eae0c406dba06394589fff
BLAKE2b-256 84768afa5d952d2b7f1e899849b36145e710d443edecf70b4be4c5ade686c3bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 518160ecf4e6ffd61715bc9173da0925fcce44ae6c7ca3d3f098fe42585370fb
MD5 2353192fe97f2f87631d2f987eb12ba8
BLAKE2b-256 1eacad5b5d5a871290382660d0a8dc0bd0285fc98da169f5ed4d1a7cf735ff82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9072669b0bffb40f1f6977d0b5e8a296edc964f9cefca3a18e68649c214d0ce3
MD5 87f9bdad4c14413ca85bdd07b336c149
BLAKE2b-256 37dc099c4f3dc41be7f24de60af2b6795bf2a821533666dca6ff47dae14627b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 40f502350496ba4c6820816d3164f8a0297b9aa4e95d910da31beb189866a9df
MD5 21da50b8f6366711b885289ca65fbc57
BLAKE2b-256 4b755a0946eb3d0b006399f5244e0ffef9da1a0b05a1d8800373696d132dc87a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5d7f481f82c18ac1f7986e31ba6eea9be8b2e2c86f1ef035b6866179b6c5dd68
MD5 416c1539b09f014ada0656eb1e6f959c
BLAKE2b-256 9b93e170e36c43990e07340f24477daa3674720b802d85a0d21f0040721f8116

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4863c59f748dbe147da82b389931f2a676aebc9d3419813ed5ca32d057c9cb32
MD5 0ac338a50ed0ed2a675f07ca4b2da52a
BLAKE2b-256 50714f17ceeb100611590a1d36129ee7a792744b30825e1e22cc6161b8a32977

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 532b8f038a4e001137d3600cea5d3439d1881df41bdf44d0f9651264d562fdf0
MD5 bc5262b2be6eda4eb55be4a6049e9e84
BLAKE2b-256 1b2650ec0670fe6a87311678c7e40839868c49b3500f74c05abe658ddaf241ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 973d26a5537ce5d050302eb3cd876457451745b1da0624cbb483217970e12567
MD5 7467370e8d5375c0f096387ed33817bf
BLAKE2b-256 c556c063555109a33465c488320b16433d355d9afaa2cfaa9d2b54cc86c5e2ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 86fce9127bc317119b34786d9e9ae8af4508a103158828a535f56d201da6ab19
MD5 04232f84934989af6ee144b766bbf7ed
BLAKE2b-256 b1206f72d893d9df912cad2caf0506b36b08e4525c59e0c95b0a5a361cac0d5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 442ee82eda47dd59798d6866ce020fb8d02ea31ac9ac82b3d719ed349e6a9d52
MD5 a54f9ddb52e4bec6d59864fe96b48bc4
BLAKE2b-256 320be84648caec84302defc6b9eba212b0a80a8bd13a38036182067339ba1a59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10499079b063576fad1597898de3f9c0a2ce617c19cc7cd6b62fdcff6b408bf7
MD5 1a77f09fa5e91500ad7309a9147c12b5
BLAKE2b-256 8635a161883bb7cab653f0ed5839a65729f9310bd576ff053de05bc1baf3d782

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5bf546ba0c029dfffc718c4b67748687fd4f341b07b7c8f1719d6a3a46164798
MD5 b6f88e70b0aa56ab5aa6198dfdf2fbf2
BLAKE2b-256 95fa64f226ad78bd64f28ad4076a000b1b07eb4c00ce8e5c6d969fd062716943

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4dc5933f6c9b26404444d36babb650664f984b8e5fa0694540e7b7315d11a4ff
MD5 a22ea60d1cbc4d97a91af022464f57ca
BLAKE2b-256 a163b8edb2603f190804f3ab2d047dc2b2f459d406a31b79c283471a645fe8d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f65f43ff01b238aa0b5c47962c83830a49577efe31bd37c1400c3d11d8a32835
MD5 6a68b88bf9e505450b8d906f5cd1b74f
BLAKE2b-256 f4485def805c865153b99f924058f8f62257046834d643c7c389ca63431c7edf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4252d30da0ada6e6841b325869c7ef5104b488e8dd57ec439892abbb8d7b3615
MD5 1b8ccf1c31b71d460d406848685293d3
BLAKE2b-256 9feae5e4cbceab6048328ee0d92df068e30b063160b44126d100e3a616546610

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c351d05bbeae30c088009c0bb3b17dda04fd854f91cc6196c448349cc98f71c3
MD5 5525ab9e40975dbfb0358db2bf3ee0ab
BLAKE2b-256 5c09146c939383178f6f1b98b5f7237440f2ec11a389f9af6f5138417dd2d782

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6720e809a660fdb9bec7c168c582e11cfedce339af0a5ca847a5d5b588dce826
MD5 d3a2c17c0e803626f8fe93deb4716f44
BLAKE2b-256 ec1e5cb24d35a6e8e5701c892c5688e8d3f8604e8e9ffa4b8e960c96a4b61aff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d24ec28b7658970a1f1d98608d67f88376c7e503d9d45ff2ba1949c09f2b358c
MD5 26c8a9f2184f9fae2f7cc7a57c8189cc
BLAKE2b-256 f5505793686d24901d07f4e66557487aff24d319afc2b02476cdcdf3a670d371

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 943a952df105a5305257984e7a1f5c2d0fd8564ff33647693c4d07eb2315446d
MD5 0e7cddf38db9c19f57ffb58231012b75
BLAKE2b-256 6e0ae0afd75b198c870b913c085534f66bd1681e8f0a41f69d05a55f372c0096

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d778ddda09622e7d83095cc8051698a0084c155a1474bfee9bac27d8613dbc31
MD5 5f50d03bce0ccd09e8e14d28fc021ba4
BLAKE2b-256 111fd65326babeaa161a58b92a472af2c9098f54a5bff0b6a22711468d5ffce1

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1da63633ba921669eec3d7e080459d4ceb663752b3dafb2f31f18edd248d2170
MD5 61affd43bedd8b850af916cbde7ed837
BLAKE2b-256 bc4097ef6c13269a220aa2ffb1df5c5d5a5602830fc6a6c68ec127f4214a960e

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 589884cfbc09813afb1454816b45677e983442e146183143f988f7f5a040791a
MD5 9862ea42eb6de4305662b370664f6ee9
BLAKE2b-256 e63411c242462feab715323100fecb93ca54dbcc56c6b5250b590999e294e0b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 533ed46cf772f28f3bffae81c0573d916a64dee590b5dfaa3f3d11491da05b95
MD5 05e84fa3e0b6a9d90234f5acdc5bafc6
BLAKE2b-256 ede39014a5d2186b11e3c1a5a17db90026791ccb43fe587e66b4ef13679d657d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 614c87be9d0d64477d1e4b663bdc5d1534fc0a7ebd23fb08347ab9fd5fe20fd7
MD5 ce6352f83f527c5d08e5de3c06c940bd
BLAKE2b-256 96b6bef4929fd4890a80606b03a83c1df4564a2d4a700c01ea6940ac1af4ab99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 00d894ebd609d5a423acef885bd61e7f6a972153f99c5b3ea45fc01fe909196c
MD5 b58dea10a8a8d490e655545df3363f2f
BLAKE2b-256 0ff8007e9e84fc455b08123e91826385e0d002da6a48a697b407a37f5fa2fbd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 867affc7612a314b95f74d93aac550ce0909bc6f0b6c658cc856890f4d326542
MD5 da7f2b006e07be87473d15e42d90f2e4
BLAKE2b-256 a16d37076f6413bb1a0f2a78075556207a3f1a86934850e34200aa6def13aa4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6681c9e046d99646e8059266688374a063da85b2e4c0ebfa078cda414905d080
MD5 8e4f00146ab6edc70a21806e3e180902
BLAKE2b-256 b008342b8e456179d74948fb9389c9339bc146ad03ca85a48acd193c28b4a52d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 72ab89510511c3bb703d0bb5504787b11e0ed8be928ed2a7cf1cda9280628430
MD5 65b23be5f2bd4c911a122cbc3a30318f
BLAKE2b-256 c829a67701b6e13695085ec58e6fa77afad9a69e6303d72a711cb4044ef6f7a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f51e1a90412d387e62aa2d243998c5eddb71373b199d811e6ed862a9f34f9758
MD5 3ebf4f02ab15944f0d398953479f4cd1
BLAKE2b-256 40798bcb755f6f18d25cb6d6acbb4fbf42364cc7d3e7108b200b377a1dfd5695

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74491fdb3d140ff561ea2128cb7af9ba0a360067ee91074af899c9614f88a18f
MD5 6aacc53ed12bfd36ec0f7f57adfa01e6
BLAKE2b-256 c3548c078304a44bcd456c54b9a207a1d9f2d1ede71190da05289c5e6fbe879f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a17f8a6d3ab72cbbd137e494d1a23fbd3ea973db39587941f32901bb3c5c350
MD5 fd80d2dce01d7f8ea8b60e2b40ed9eff
BLAKE2b-256 41445051b093c50b0cfc0ca7490057a431e43ec7758b09b87bcb23b97899ae9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4679f1a47516189fab1774f7e45a6c7cac916224c91f5f94676f18d0b64ab134
MD5 75ac1a268adace4b7bc8276ff8a33b0b
BLAKE2b-256 60db420563f259d98056a2968fbe54ed9e8fd5b8593dc57fa141a9fe79480a49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8b1f13ebc99fb98c7c13057b748f05224ccc36d17dee18136c695ef23faaf4ff
MD5 f8b92928eaef490ee2c047eee21f9825
BLAKE2b-256 bf5d5d7ce161704f49cbc71d6131a49df436652bbe487bc5c161e00d9c29dd2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 26ac4c960ea8debf557357a172b3ef201f2236a462aefa1bc17683a75483e518
MD5 25247386370c4abdcbefbdaf75ab5e0a
BLAKE2b-256 70fe32fc7c6e0a0f2f5b319b144aa7b83e631f9dd7c4b2378ccd4a4f89e273a8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4ac26d482c2000c3a59bf757a77adc972828c9d4177b4bd432a46ba682ca7271
MD5 acef2d2be42d79d66d91dbc169f418d0
BLAKE2b-256 bec70f5d1d04a2307ca8f36fa512c1c66e732351058c761e72e366c1bc24d0cb

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 913dd9e9378f3c38aeb5c4fb2b8383d6490bc43f3b427ae79f2870651ae08f22
MD5 0336219035554fadeb8f7c71af5a9d39
BLAKE2b-256 af1d605cd586f84fd736dc0a74f3677a13304ce1780492b7b6b40aafe5810273

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b5c3e7928a0ad80887a5eba1c1da1830512ddfe7394d805badda45c03db3109
MD5 76427dfd7188dcb0cc58cc1e996bd220
BLAKE2b-256 8f8c2620ab260214bfb2b866ee13b3967fd71af038862d51bb97b4b16dbc10bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d9abdfd35ecff1c95f270b7606819a0e2de9e06fa86b15d9080de26594cf4c23
MD5 02b68d172479f3578d5b7320966d26e4
BLAKE2b-256 4aea154be174020f5713901be31430d31ad6707842af8a04331040c9c813c461

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a4b24e03d04893b5c8ec9cd5f2f11dc9c8695c4e2416d2ac2ce6c782e4e5ffa5
MD5 986d971cbab558280a2301906f6f5c85
BLAKE2b-256 73c2a5075fc0f1fdfbe3d52493241b75de568854ae2f2e868cfe9e954c013fc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3679d5fcbc7f1ab518ab4993f12f80afb63933f6afb21b9b272793d398303b98
MD5 9cd91965b654c48cdca3171e91efcd09
BLAKE2b-256 ea1b4a2d964d9ea2679804961f3d7eaeb57449e0fc193b244e0d25d6a172e848

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04d1a02a669d26e833c8099992c17f557e3b2fdb7960a0c455d7b1cbcb05121d
MD5 e22796263f371971aaee2dc4e02d392d
BLAKE2b-256 0fc2bd9d23fbee7986602b09c406b9eed7b76e42cce0bd12168205252bb3d9ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 978ec3fb0a42efcd98aae608f58c6cfcececaf0a50b4e86ee3ea0d0a574ab73b
MD5 0c41638a08b08c9b68d10fd1b288a7b6
BLAKE2b-256 5620ba0f2e86b99e162854dcb15a9f8e4d144e0b7c6289cfdd525b875f01d110

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8a2e1eae2d2f62f3660a1591e16e543b2498358593a73b193006fb89ee37abc6
MD5 9927afa355be44ff814875fb73b41ab4
BLAKE2b-256 8bb8ec503ad22eb6e6a0bfbb65d52968c641a9fe40369d5cd0d8a39a98da2122

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2274a7876e03429e3218589a6d3611a194bdce08c3f1e19962e23370b47c0313
MD5 64a8459b0b5a20b1ecfca13d974da926
BLAKE2b-256 957fa66914077d08906aa556ea04458ba49da66bb04b33df1d76ea2005483a46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92daedf7221392e7a7984915ca1b0481a94c71457c2f82548414a41d65555e70
MD5 dc88017340a78c484c65f24ffd0aa1c6
BLAKE2b-256 69bfd7ac318920dc11fce36b45075d3fab0050985f53ac45a026f199fdc1425b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a51f87b27d9219ed4e202ed8d6f1bb96f829e5eeff18db0d52f592af6de6bdbf
MD5 e11af5af0105fda8cc11544c0e63d2cb
BLAKE2b-256 4c5d2c2a862b5678ee2e9262ab1f3cf1f6f6ca7dc9a9850d087852cc2bf60e97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf02dba0f342f3a8228f43fae256aafc21c4bc85bffcf537ce4582e2b1565188
MD5 ff91e98f63ffd224374d442b97c21163
BLAKE2b-256 73dceb23c79a43f5f9344774afaf57858927d0f062febb6c09b2f01ce55d6029

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bfab0d2c3380c588fc925168533edb21d3448ad76c3eadc360ff963019161724
MD5 c9afe7ea29e4842df7ebc8ee6c3e702d
BLAKE2b-256 30cafe72bfd003c3201b6a5535ee4bee9c6f6afcf311c8700cdad5d939dc9dd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7510b3ca2275691875ddf072a5b6cd129278d11fe09301add7d292fc8d3432de
MD5 9b9b58876e621974025c0df434273200
BLAKE2b-256 671e3930ea923182595473c4d6838241b5772884d95258b510cc18fcb55ddc72

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8908c235421972a2e02abcef87d16084aabfe825d14cc9a1debd609b3cfffbea
MD5 194e94600248b3b6bac2d2fc76762a6c
BLAKE2b-256 eb783e5c65c991aba782588aacf042bfbd246ab429dbd333679d10776e51c973

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4d2b75333deb5c5f61bac5a48bba3dbc142eebbd3947d98788b6ef9cc48628ae
MD5 01b333a3e02a39fc43dad4890be3d794
BLAKE2b-256 201fc5e3e0a75ca4b67d84384169d85591d49cf035cd1dde9dfc356be6f44e7a

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 60f2f631b9fe7aa321fa0f0ff3f5d8b9f7f9b72afd4eecef61c33cf1cfea5d58
MD5 e3cc858e5903245c0b452c42aa6b9c39
BLAKE2b-256 83c039589e12981d47e50b824bf62956e44214135136ae1465833fbe7b8efc6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0d10967600ce5bb69ddcb3e18d84b278efb5199d8b24c3c71a4959c2f08acfd0
MD5 743e37c8c13840e00244818d24914202
BLAKE2b-256 20489c31d02cb3b65f656c7fb833edd0c9c0d67fdd7a1e83fe730cf7ca1ec54b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c3f7afeea03a9bc49be6053dfd30809cd442cc12627d6ca08babd1c1f9e04ccf
MD5 ebdf0abdf0cddb99cb9a26946c900120
BLAKE2b-256 7c82a9ab0fa363927a95e300a99ad37ec542cd6450831852661d26ffa604814c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a97f6b2afbe1d27220c0c14ea978e09fb4868f462ef3d56d810d206bd2e057a2
MD5 9b77bf6eeb639083d60da2925fbbc6e7
BLAKE2b-256 6a2225ea16621f8fa9d4ed3298c0e810a039d26fe640c4bd4dadc7f75ca35867

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19e4fb9ac727834b003338dcdd27dcfe0de4fb44082b01b34ed0ab67c3469fc9
MD5 0fe3a2355759b8f2b48c521b19f4ef22
BLAKE2b-256 f80ced272915b0f3a908750fa016e8e16d6927b875413f60cbbc80ccd69fa058

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84a79c366375c2250934d1238abe5d5ea7754c823a1c7df0c52bf0a2bfded6a9
MD5 2fc03b627287d3d973764f129f023d6c
BLAKE2b-256 8c69b9393c41ff979d9c252808c4722301c029659371155a00af209629a6bc88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 04fe2d99acbc5cf606f75d7347bf3a027c24c27bc052d470fb156f4cfcea5739
MD5 8822d25e62c3f78f5335649985b9f8d6
BLAKE2b-256 2ac68b31cfa5359c148502f18e4f491ddb3dbde7a831e7a0ce361cb0e19d1e09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b032bd6cf7422583bf44f233f4a1489fee53c6d35920123a208adc54e2aba41e
MD5 99f8dfebd6b345e89c3e6dc3c10fdfbb
BLAKE2b-256 0d21f2242fce0da1d061ec6e307300b1368be457b20dcd70b8751dbf1cc0845e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e5c2a55583cd91936baf73d223807bb93ace6eb1fe54424782690f2707162ab
MD5 c6e6a07c6902d628e985d68810c13c27
BLAKE2b-256 b328aef297b609bdc47b4e66be2c01ecc8d328e09d36ada79469a0feeb98a495

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c33cbbe97dc94a34d1295a7bb68f82727bcbff2b284f73ae7e58ecc05903da97
MD5 7a40abded04435642b5bee1914000d35
BLAKE2b-256 49c4963bdf051cf4bc7058212de9f8ea32184f656e40b30b7e51032e050b17d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7776ef6901b54dd557128d96c71e412eec0c39ebc07567e405ac98737995aad
MD5 7025e24022f7f969108cd76bace4862f
BLAKE2b-256 ccda1b47bb849643c028ee5a1a1fa618e6c9fa96ce5a92e1e12f1e9fb1c51ec9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a10200f705f4fff00e148b7f41e5d1d929c7cd4ac523c659171a0ea8284cd6fb
MD5 e9ed9ce2928a178533d6be91fcfdb036
BLAKE2b-256 d7624b40db802c60d4400d2ea2665b7389a61e0c303ee3d024f37bd957b2c407

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.6-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 de6123b298d17bca9e53581f50a275b36e10d98e8137eb743ce69ee766dbdfe9
MD5 29bf9c51d45365360f6aa294e7cc6c14
BLAKE2b-256 19f54ff6c65f6829dcf82355473b099747a8ac52b7733dd5cb2d81b9ffc15a7a

See more details on using hashes here.

Provenance

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