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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.13 Windows x86-64

aiohttp-3.11.4-cp313-cp313-win32.whl (408.8 kB view details)

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.11.4-cp312-cp312-win32.whl (410.0 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.11.4-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.4-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.4-cp310-cp310-win_amd64.whl (440.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.11.4-cp310-cp310-win32.whl (415.0 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.11.4-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.4-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.4-cp39-cp39-win_amd64.whl (440.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.11.4-cp39-cp39-win32.whl (415.3 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.11.4-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.4-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.4.tar.gz.

File metadata

  • Download URL: aiohttp-3.11.4.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.4.tar.gz
Algorithm Hash digest
SHA256 9d95cce8bb010597b3f2217155befe4708e0538d3548aa08d640ebf54e3f57cb
MD5 383ef08416618d3378c4f4363e015f9f
BLAKE2b-256 1dcdaf0e573bdb77ae7df1148fe8e4ea854215a37db0b116aac6b5496335095e

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.4-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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 474f7266a61d1c3218ef4ec0325747884b2d5a13fab5bff5dd3b55d9c849406a
MD5 87eedc561753078eea191b65fb965e66
BLAKE2b-256 77587850d36a277568a0f5bb8ea5429c57e45c02db2b666458772393280e280c

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 408.8 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.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d0fd6510c6d67d08ec80d9ba10cd340a8cfb0dd33436c858ed38d4564abb27c7
MD5 fa6f92f761b61b0cddb98e2bde84f2fd
BLAKE2b-256 c3f622131805b47b29e052baecfa44c1aad5eac72a198ee160b08c7a92fe9aa2

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94acecf2eee13a45f627ed25a28f5a7f2db66b90ff94cd7a1e9cc1ad32cddd43
MD5 768959a6feeefc72a10d23ab0402739b
BLAKE2b-256 96d67f61ba8ee09e54c4bfbd51b867cf9c7b0288dcd3d6c66140ef323c069497

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9788781f57fb732426ae74b9955b899e677ce42b848e60a11be29358fb20c976
MD5 7a54e3ac68a5d8c1e22939874905cb94
BLAKE2b-256 3cb9a589afeec0bffc64f93f9a8dac54d02744e1fe11e3ab519be881fa9b6757

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d60255f3ed71aa14a2e75383543ca31bd362fdc7f0d2eafc060d85a9051598df
MD5 ed0a28388abfffaedb1de8d317e4fc13
BLAKE2b-256 9c187ae98ff5d9c75eb356e3273e6cef4e874f01d82bc8daa1dc8015079a7dfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 821c9c640d3dc456c6a7b005e38bc5af05326b6a08ce91a068719934d108a1bb
MD5 0946653276fb6f520cba1432c9559f94
BLAKE2b-256 a851cc377a0ff72aabffab9dbe5297c2fb5058626a16812a5210a1b352059017

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b71aab89800fa2eaeb28923ee05e7e56c28dab4ebdba524db06e963431bf6192
MD5 701c6c7f9a862a26fc5fdb694592ff57
BLAKE2b-256 8874d5afe1c744c395c569b6a758a8e44ba7fe6f7842e4fe7ecdda74f5057f6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1e09bc44a1abbd96f55d15330d6cab80459cb8b06a0b656efd712ce47a3710d
MD5 710e7febdb23eb3e18d977bba8150617
BLAKE2b-256 a12ce39970310ca430abb38bfd88b72de0e1e66056eb3b4f76f2f0ed0aafe955

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 518578d6821c942362daa14a56f26b739abeede6e408b0b83e27dfcde17730f7
MD5 c7d08258af574a938f7ad3e86f51c512
BLAKE2b-256 b3395a04f4000b82d15a9edee2385cd64eb48954dd38008a54388440261f9545

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 beaed1b2d03033dd301a7b67430f03c8255d6856a269c20995a0292de596519e
MD5 7871fb9b9e332256d3bffedc0859ed2e
BLAKE2b-256 f4d80765555b6111564a53137f3bc19b55b6ba54ca3a85d2b30d456f24c27046

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b10b316413c80a4dcc5228c092a8d019e4b75d4efbca8988cb5b67ae9fa56881
MD5 fe75469794ff4816e76f2342b65b9813
BLAKE2b-256 128429659e29868599f9a8d55e0ef93fd395c51fd0abdd98e9a5a31a10319dbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8ae8480148d696dae49126e97568333fc01493069ad46a94b82f69c7a33197ea
MD5 10af568cc726938d8dfa9ffac99d2554
BLAKE2b-256 769351ee9d503936dc66871947aea40e28d65342e143d7a8d57f36ed2987de0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f37ece590451ecffc815f2eb41f07191d1a31a0404361d1ae2ed532e05c86da4
MD5 ad5c423e1d086a7be3591f47b35acaad
BLAKE2b-256 754bb8c0992ef16262c101693d8581ddc7e149701335bfa5bced0dca811ac45e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cc2d64b1747efa183ced57b6bce53c9ea8e16e53419e389051b2a214ad0ed051
MD5 4529e773a19209947e2db91d538021a6
BLAKE2b-256 eb2831776b2f29505a46a0dc5c5ad32c0079b5eb9b8f6fdfa1fc1787f7155eab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f307632f3eaa676f8c2f5df11e4c00ad47dfa79b06cb2fa39156a4e9c6821bdb
MD5 ed7efb2c28615665170fa67be156be24
BLAKE2b-256 904a7fd1ede2dd996089df2b1f84738ee466fe7f9d317720458e904dedad24aa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.4-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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 365df6cf2ad144479ba0e0b58abdc5276923676d34da4c1c45613a80d2aac130
MD5 0cad63673595849e47caa25c3e87a6b6
BLAKE2b-256 dd204a9a107c2eb356c5160ed7d54cba3426e2c4957f4a0cbe4452322bda8290

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 410.0 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.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d40d9a740053cb7fef72442fa7bd699060ff4c710971ebdb8dd7c8b36417570f
MD5 62e7074b97e4a57b7464f327d6434894
BLAKE2b-256 3f3d447fb2ec1dbc786341709c1445dd8b86fe2c2a991cd6bcaf58ba82e05e00

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb4c676ab99ca2dd231928d481e19cd540155dff36e70e613179c4927bd520b8
MD5 f492edc64f9b006027439d22e0ae3666
BLAKE2b-256 841392b34946221bf003951072fdefdbbe67751770f0478f868dd913d69595eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a34c30e1461da3a69c5bdcfce44418b6f969e1e68ebf367edfa5eaab380abf7a
MD5 3527f225441f1e37528d99e7e11f29c1
BLAKE2b-256 c362e525c29aaeb04130ff326ceabe87bd675ac41e2fda6e7befbf59d1298d4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a7986fb988314fd2225c1ecab45fd457e1f2c097dcc3c0aacd2a7aec7486beb6
MD5 8780aaaa79d8e6e9719cf4fb8cadae55
BLAKE2b-256 b3a4c559798ad5e50b9a0eddab371ae3cd9a99776c75beaf24d73c168e9498e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66e83a9a1131f0060aaedcc57f1a7e489898b6c3607eededccc7a9f80b95bdb4
MD5 4eae74008688388964fb6fa1fc8ba066
BLAKE2b-256 698efbeb5473546d6663f56cfefd7ba7392e95bd2487e05d2fffb20878fa7b1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7be4efe60e9bddf78ee165a296e80170147282081e1366f0580cf4cc0fb1182f
MD5 a98898c00462e635fe2d1f07e93d2ae4
BLAKE2b-256 d9c36d81ff7c0e12ad3bc6fb8ca1e98469501ed8049657490f40d1bed60ed5e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aef239c307f3a3f830933d612c0aef4ad4b3aa9ce5233a0954262a00f5c379f1
MD5 c0d03178cb28c22cac78ffb43fad2d7e
BLAKE2b-256 799e1f252a6df819ba44be45edf223f4d48216622e36260ec305a98400ece2be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 822dedad93947fcb1096cc41ee8fd32e9f652777561a37c740e5335699f01cea
MD5 1861515ea4c0e987aa3d51e2456d4d84
BLAKE2b-256 ab3642ab341aa88963cf1d89d9069e638504888f85f38c7d5d806c65a661a2c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 03d53b0888f984f4f0c216a37577ee7e7b1ed1dac89cdd2fde61bf2ccb32009b
MD5 2ef3aae6302d07ee96d519b31b011d3d
BLAKE2b-256 86afa8185c88e16ce3511561d8fd4b769316c3a1603fd54fd4bbeabb2971197a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ec84106c8b7ff347be06bf579c298a23b6d1d2225c57273a8cd502f257125d4
MD5 f7e87dcea79c41f5f7d799f169e1c213
BLAKE2b-256 00e98d830d61552d7d76699e5605424787e977f71d3aed572880ee7ae262949a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 49eb5a0338f141ef32299d48f1415486f47953d37b0c7fa6d778b73b66f3a7e2
MD5 71da9715a9f1e8f3795a1567113f8b9a
BLAKE2b-256 18b4fc553fb353f1c531d8b6806e83f3c89c4451d7de75ae4fdd1c26e7092720

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b169507c98b924fd68b82ae366c285daf6d22456835294c329c3226d61e1f69d
MD5 76d64b9bcf775fa2615612f75c186186
BLAKE2b-256 81eaf66751edf785d25fdbcf3cda33dabaebf3fb9952422ac9ba93cab4431c08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4ff6105856ae688b29d5daaede1256f5e02e9d5cb3059f8f5ef55d975c2e6992
MD5 ef05c715e3e16240a78e76d60034946c
BLAKE2b-256 02c85c16e5d2a69013a1116ec1fada09b182c262235f85b80aebbe372962a96f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 5cd60673be31449c63f59886f3581478bbdfaddd87e7394a4d73ad134d9be9b9
MD5 9b0d62b63d19c7047afc5699c2a42d5f
BLAKE2b-256 be72212b627bd6951c71cf548914fd58d16e050d9ca39fa3df416e6938c59c38

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ee081375d10fa2f3f7b0d050c8b9c1ae23190e1d9be256035bf8a41059c4df3a
MD5 98452b6e5fee5830e32c20c2eca0cb3c
BLAKE2b-256 786b80a48ba3380b6754801e5b239a5b1e7b2c8a48490d51de0ae0c327a1765f

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cb2d5a24586b508f658ddd710f7d4b7e4f5656cb5d569aeb1f432c1c3704347a
MD5 c1ef0568e2a69c7a6eec37eb74186dd3
BLAKE2b-256 57185237a412a82a10e2f5205b0a1086e1f0e3765e8c67f6646c291acc00f340

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 635397b5b4de2397f8136f8fd15c8ebee560e36473195c7aa992ffb8e46acdd3
MD5 11b432cc1a04ff3c15bcf365512893c1
BLAKE2b-256 64b98b336d1611ae3dd75a8d68134c0105e924f6f528d96f199e993e386913aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0d2cea21ec05b832e9f6a2390b23d32ce5575f6cf4812bd171d4493f59c101fe
MD5 f626882ade357688c4487bdbc4c93e4e
BLAKE2b-256 9bdadf5cf47791dde11c3a1601143046f4e319b8ad207acd2271cea8b81aa876

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 88e681c0d17bb285d2ccbb73ae77ef86339b632ee7967044c2284411120b9730
MD5 fe07709410e5b0dfc453b85e00a87405
BLAKE2b-256 ce631939bdb921fd8825e091c9cbbbcf5bf8f4413ebaa9919834f53957715710

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e7d182164aebad4e2faf2742ee7486d4af73d933461adbd8f183ac9b1837323c
MD5 b4903047937dd775df0a62c91b0052e9
BLAKE2b-256 6e6f417502c4605044806483462e4d7468415a3b3ed26ff5a81f5c8aba1e60c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 010bc9606f798eda8ef071759c7b163893071502bcaedc7d5dc49f9d8f12e553
MD5 2ad923b0239980db6125a435ba45ce1b
BLAKE2b-256 5e351c6d27c5c80c6de5e9d076dd77b1e8035e4afd506e84aa91cff30845a41d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1dd5b7947e23a08c70d4c1924809b91211f14136ffd13d303dc487913cfebfeb
MD5 256e6bfe7c5b3c679114a0797be0bbf8
BLAKE2b-256 e21b6f6a9c7e0d4ff8e2c3a0f8ed9c892838d6e3fff03538edad579842823973

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8feffa8396724116be5bc05bf4fcba0c738cbe908c82a95f71371e32b28cd2ca
MD5 079c0a72eeada6c6a281fcb2cd33ff63
BLAKE2b-256 08804dd43eae57cf0c65c070f284be9dfabef47993eca8d86b11be65f335c4cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9b41e0fb3b415beccd6d0c6e5f3ee34b7952cd76120a1db3e45507b83dc5ef81
MD5 e4dbf86c6976040c365f6b8fc78749af
BLAKE2b-256 2a6c46b68a8b1b622ad294306ac60e34f2dd408fffe2f59b5b5a7bceca438b7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a550b4ff70d06c15057d75ddad89a3e7c496e0609d28c567c20b61cd1265c0a6
MD5 ff906f68d0ab19916f30eeb113d640df
BLAKE2b-256 9a49610bcb75a2a3caada2bcac995fd6c5e50244a49d68d20bad5e06beec9133

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ab5c6a521b156edef13a57a6d524903c547573ff8101e3d1bbe9ee1b97267973
MD5 690a15ec2caa01fe00b8e320b56d204d
BLAKE2b-256 93fa30a164353692c874fc762cc4fe0803276039740f10d09aa690891163e68b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d68bb99bc6a4b0a3eceb95a246f5a0262e600e094b5178c2b1ab0f4bcbae6729
MD5 bfd30c02e37ad1ebf7599b89b50c2bef
BLAKE2b-256 b7d756f11579e6521f058b011ad22d8a8818eb68c22e7e6237de0277f0963973

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ef6eb1367046fb22085f10c5c84ea2efd0d836ad8088306d652ab1d743faf9e
MD5 530878a9b1704ca285f1af7b06f7b0be
BLAKE2b-256 ea280a0f4f01e87db771159dbd1edcb90b3003dfa6954a7c7642dbd69702e975

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 89261fee04715083ef3b5a0d222b094021793c1728b8ff21da361c79f6384095
MD5 c4a0a0c854e7fe498b008262540535cb
BLAKE2b-256 d5863c497a1db2574c8adbed9995391235b21c49849a7cb674626a026b1cd194

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 440.5 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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a51f983d91edae7777b5a2af8e5d83224ba01284502c6874a17647ad6cbf0211
MD5 026147f8d8058987fa01683c7e25675f
BLAKE2b-256 42ce7c3f297b18ff2c7955326f00cf7ed3cecfedd8cad086e2977bbb7aef8879

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 415.0 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.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a54424050d1eb36edfef913b1bc8552d52a37864c0ea7df3e1e764663e11053a
MD5 fdfa47e5495e53450762bdb28d500069
BLAKE2b-256 1449cd0210f9a3ddbc940ca2bae32f2f8208978fe98ad68f201c1a12cfdf1bd5

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cbe3e356523d0b336543996f92a0e65f760be82447db21c95c60392c8075ff5c
MD5 f9db135abb1d2cecd95aeb064f8b7bfb
BLAKE2b-256 519f29a198df367903bc46244a93d43090a23a2f3d2dbd5ad9eaf9aa9d9ffcfa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9a8b6b3c788a8a6f88f5ce23d729cfde7a2ccebbeb09db0822ef266de0445a27
MD5 92b75e70852a104b1f92021436094ed0
BLAKE2b-256 9d346e53238428808511b78fb6d7bd10bf0c3478bced8a62007d4b03dbae119f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0ccbe8ece8a7796ef41b86a3240034c5918d9b324c2ae48fa0be33565e297c64
MD5 e6719db5ac80ec7d5f62286350b1a114
BLAKE2b-256 57e1eea9e58856dced975c1887f03eb6ad299d4e65251d3a05f5353f2d5eeb31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3e9fd9c11299d6d230eb2669fd1ed0238d33970e36b495b0432ace7f157fc931
MD5 b862d62ba0545d7a442a195c042ef0a7
BLAKE2b-256 74386ad47e364420eb29a7497263d5efe8319a0e80b497035fbbd9134ebfc7c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a360c18b2cb391fec9585ba1efc55150e2fbc6100308113117dfea521e810d8
MD5 17aa5d30cce51b117484bd7ed9a80102
BLAKE2b-256 1058a60333472dade28843acda913c6c58e13679556af68f099fcf4a9a50833c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4bc936d10b8fa3f2aa66e59e034085208b588442263400ddb042703d0db99421
MD5 3b2792691a9baa0cc91ab070b30d01a8
BLAKE2b-256 1639cc667c75f6555d992a603a3da0f8983be7194032a617eed0f0503089336b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 06defa9017ab50d215446ebbee294e07eb2fcee72d9a909a08192cfacbd43a08
MD5 41536bd46ecbcc45f91c09ca9d64861c
BLAKE2b-256 84de390fcdd65a32e1d07727b18a55e85f005359e3d262c1ff3701cd7d743ca2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6dd1411ecfc070af4df129e81fe42c799d95d81c29c22d2c3e4341d974c38f1a
MD5 3a92d1464f9c52f00caa306ec9c8ed30
BLAKE2b-256 ea7d01c79ed5c8252e3b08957df2736422d374e9e445f5720cb77a94a4a8d67b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 696adff3594bd449e0fe287441062bdc6f5300928426275b39ed27884ba083a7
MD5 48c98b53057061dd7b7910bb5c896ad0
BLAKE2b-256 8722c089a40161685d5c419488eddfa2f1254f6d55b82b47a3a22779a7e14fcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 769457243dc4bc902d376cd14c5c7ec234a4faadb4f283dc2738f004cce9a9e1
MD5 8a4451673bc7f6df2b2326069fb65ff5
BLAKE2b-256 7253f6d3567ca3cada6ba5bf1ba9d3f962567954c168a8d7291026cbf33ed486

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 262e45dbd7f1829bcb024259f65b2cf69d1ef5b37626af6955a1c487613aeb3a
MD5 c18b677fc52b5af5d39377a60554fbd8
BLAKE2b-256 ded6f3ad6ed1d6a3f872dce226b8074a468e6f3fcfd37562ea1d226c9503bb84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e5786e5926f888ce3a996d38d9c9b8f9306f399edb1f1ca3ce7760dab9b1043c
MD5 2ae7804e1b845899569254ae4c61e67d
BLAKE2b-256 f742c93b58aca4f8839947d2d812306bd31c32d160e2e1b063927a8ad13306af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a60f8206818e3582c999c999c799ab068e14f1870ade47d1fe8536dbfd88010b
MD5 9b5f7e87686cd7512425eb8e05090a70
BLAKE2b-256 17624c618c48d6967555b2884a0d285dde9acb0ccbd1a168f516e1e3bc7b2f46

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.4-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.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a468b1b9d5499cbfd0411f5d28adbe651c90508540fdaefb4b7a2171a837a88d
MD5 08c13625f6f4dc93e72b308ab264d793
BLAKE2b-256 6248b1bb3836b75d5477295463920017d0cee014f008ed7f1a1d0d9fa35aaa74

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 415.3 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.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 542a4610571b0affc6e13dda9357235f5f1f2ad9859acc69b188eb53901292d6
MD5 15b602650ba8fae7d3c6869d23bd8432
BLAKE2b-256 6e13476806e3b9a0d62d9dc4a618f148afead22fb86b1b19c12d1b3fff1df1d2

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83bd5aa621b732a0ca1aa3490abd2b010247c4677371a804431935aeedf26e74
MD5 9cb438595b4381190d9df2c2224d8ff1
BLAKE2b-256 19dc0aaa99597951980039f2cccc9edbbee2bb3702567be60f20b686d670409d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1ff7afc3c461bd9217e2b8a90ddbe5edd94687d5a331c4ae6166dca5876d1a4b
MD5 ed02f96136b1f4ad872b3a3350768d16
BLAKE2b-256 ab3f2b81d94907fff14f3c1c9838573d65f65a0a4cd76dc2345cde92a84b0a5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4275160583df18158e0d6789797ad314a14ae611b98933fbe7d7a1c3dcc6bad4
MD5 ce31a7c77ee07d60be1c821da4f16676
BLAKE2b-256 af6d1056f4c81142b1baad68f66a2caff0f5494124a440a466e47236724bfefc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1e32517c01905e0f4e665c3f3a495868ad996a32c243fcd917587d740253d589
MD5 671d8e3ad6f9ac52c128346ae7b928f8
BLAKE2b-256 f9d66879b4fe4bc25db5e84bac79541e0c68193163c44ee2dc24a26bfdf32ade

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d978a95e4b58ef1fd937fbe347ab397c79ba24e17912595b54faafb88b9b937
MD5 40efdd6c020adf1c0f9bff87c106aff8
BLAKE2b-256 29f08596952554e92e0f5704c0b3e1107940ad22f2b90bbe639fd9cb786c3b2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ecdf43ddde709c336a655c8b3858c56af8f7402de2572001a5a99f7bebf2f78
MD5 1f08a083323600b08692f38ffb6bfa1a
BLAKE2b-256 6cbca671701f00700f7a6d33e5217378ee345a599bdebddeb4c15ba03ec22428

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e0898a77298dc24eef368511d98e551e0b2db293fa9b40c982f4d5ab4d8d2a3a
MD5 b1a27537033fd86b3446fa634c41bf2a
BLAKE2b-256 9fa2576407f9191fb91647294223f170de5eb412e9a409326b512eb98835208c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c0b3378dc294ad6ec6c038ed57164165e0b83ef5f61eee72f6eefccd7df34b8
MD5 dae44a92171704ee4d0c6e6bd9018bef
BLAKE2b-256 fdeea7fb664115c2d2bdbbdca58a36ebf195ff114d4f30d1d5485cf4b59acf63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d97668595bf03299148ea968fed2195cc76ad063aeec8161731aa6a5dbc2f675
MD5 7d19d34f67078a42955f4f4e98d66afd
BLAKE2b-256 da61edf9c7b8757a0ca1acab6e3fdac7a037ed0add8b23f753e5503c31cd54f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 12bf9c139dfa004b65d2d71906abc593dcafe78a508f33d56c1ca9d87b18337f
MD5 fb3443710e8ae1892fd0d7d4b9f8fdc6
BLAKE2b-256 51b74c5e040e6ab73116310917096e9a3503dbabf201e25c4b379943770c0678

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb4f1fe110332651c00d2df160978cf1be70896ed9e612ff7c7e67955091b2c4
MD5 0ff0558bea7a74af400a5135396711dd
BLAKE2b-256 d5dd509e31812431db20ba6e4e90a695f847d2ba808cce4011e8302231474f65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e69d9869df50dd591228c62fbb3923d6124517d6bfc47a804492813888b497be
MD5 d9b028042f9054a0ae80c5805cda3eab
BLAKE2b-256 267080705b9f3e285dfe3b736a537290da4227b02797337f20e64a59a8b52a87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.4-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cfe8646a24856624c1eb7649da99333f0d7e75d9cf7c155ea870957d24b7c63c
MD5 4198d75e1dddf997d6ea8404f792db87
BLAKE2b-256 c841360d2e8aefdc92e764dec95af7e560652ecf21905fdf178c31434a4d9807

See more details on using hashes here.

Provenance

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