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

Uploaded Source

Built Distributions

aiohttp-3.11.11-cp313-cp313-win_amd64.whl (436.1 kB view details)

Uploaded CPython 3.13 Windows x86-64

aiohttp-3.11.11-cp313-cp313-win32.whl (410.2 kB view details)

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

aiohttp-3.11.11-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.11-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.11-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.11-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.11-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.11-cp313-cp313-macosx_11_0_arm64.whl (452.9 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

aiohttp-3.11.11-cp313-cp313-macosx_10_13_x86_64.whl (460.7 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

aiohttp-3.11.11-cp313-cp313-macosx_10_13_universal2.whl (698.0 kB view details)

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

aiohttp-3.11.11-cp312-cp312-win_amd64.whl (437.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.11.11-cp312-cp312-win32.whl (411.4 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

aiohttp-3.11.11-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.11-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.11-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.11-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.11-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.11-cp312-cp312-macosx_11_0_arm64.whl (456.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.11.11-cp312-cp312-macosx_10_13_x86_64.whl (464.1 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

aiohttp-3.11.11-cp312-cp312-macosx_10_13_universal2.whl (704.7 kB view details)

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

aiohttp-3.11.11-cp311-cp311-win_amd64.whl (442.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.11.11-cp311-cp311-win32.whl (416.4 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.11-cp311-cp311-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

aiohttp-3.11.11-cp311-cp311-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

aiohttp-3.11.11-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.11-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.11-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.11-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.11-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.11-cp311-cp311-macosx_11_0_arm64.whl (455.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.11.11-cp311-cp311-macosx_10_9_x86_64.whl (468.5 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.11.11-cp311-cp311-macosx_10_9_universal2.whl (708.6 kB view details)

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

aiohttp-3.11.11-cp310-cp310-win_amd64.whl (442.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.11.11-cp310-cp310-win32.whl (416.6 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

aiohttp-3.11.11-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.11-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.11-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.11-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.11-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.11-cp310-cp310-macosx_11_0_arm64.whl (455.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.11.11-cp310-cp310-macosx_10_9_x86_64.whl (468.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.11.11-cp310-cp310-macosx_10_9_universal2.whl (708.5 kB view details)

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

aiohttp-3.11.11-cp39-cp39-win_amd64.whl (442.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.11.11-cp39-cp39-win32.whl (416.9 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.11.11-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.11-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.11-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.11-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.11-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.11-cp39-cp39-macosx_11_0_arm64.whl (456.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.11.11-cp39-cp39-macosx_10_9_x86_64.whl (468.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.11.11-cp39-cp39-macosx_10_9_universal2.whl (709.4 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.11.tar.gz
  • Upload date:
  • Size: 7.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for aiohttp-3.11.11.tar.gz
Algorithm Hash digest
SHA256 bb49c7f1e6ebf3821a42d81d494f538107610c3a705987f53068546b0e90303e
MD5 17f04b60068122e998a60a3010679501
BLAKE2b-256 feedf26db39d29cd3cb2f5a3374304c713fe5ab5a0e4c8ee25a0c45cc6adf844

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c7a06301c2fb096bdb0bd25fe2011531c1453b9f2c163c8031600ec73af1cc99
MD5 4bade7a1c92f47f6d9c6db4a3726bca4
BLAKE2b-256 b862c9fa5bafe03186a0e4699150a7fed9b1e73240996d0d2f0e5f70f3fdf471

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: aiohttp-3.11.11-cp313-cp313-win32.whl
  • Upload date:
  • Size: 410.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for aiohttp-3.11.11-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9d73ee3725b7a737ad86c2eac5c57a4a97793d9f442599bea5ec67ac9f4bdc3d
MD5 a7ebbd10a56ba7c7d4e87130260dec03
BLAKE2b-256 73baa6190ebb02176c7f75e6308da31f5d49f6477b651a3dcfaaaca865a298e2

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf8d9bfee991d8acc72d060d53860f356e07a50f0e0d09a8dfedea1c554dd0d5
MD5 9cb8e9e938c52307c742c2b4bca3bd4a
BLAKE2b-256 79c1756a7e65aa087c7fac724d6c4c038f2faaa2a42fe56dbc1dd62a33ca7213

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp313-cp313-musllinux_1_2_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 620598717fce1b3bd14dd09947ea53e1ad510317c85dda2c9c65b622edc96b12
MD5 266b756823aef3b7885085cc9538e02e
BLAKE2b-256 ae5f6bb976e619ca28a052e2c0ca7b0251ccd893f93d7c24a96abea38e332bf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp313-cp313-musllinux_1_2_s390x.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a9b7371665d4f00deb8f32208c7c5e652059b0fda41cf6dbcac6114a041f1cc2
MD5 960627ec0d5a2fa4b83307f78e8c65e9
BLAKE2b-256 2cfae2e6d9398f462ffaa095e84717c1732916a57f1814502929ed67dd7568ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp313-cp313-musllinux_1_2_ppc64le.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 de8d38f1c2810fa2a4f1d995a2e9c70bb8737b18da04ac2afbf3971f65781d87
MD5 7c6c75362e1e164a200505471ffaf817
BLAKE2b-256 565189822e3ec72db352c32e7fc1c690370e24e231837d9abd056490f3a49886

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp313-cp313-musllinux_1_2_i686.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed9ee95614a71e87f1a70bc81603f6c6760128b140bc4030abe6abaa988f1c3d
MD5 0f42307a7786c79d52daae3653be98cb
BLAKE2b-256 6c9e8d08a57de79ca3a358da449405555e668f2c8871a7777ecd2f0e3912c272

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp313-cp313-musllinux_1_2_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b7fb429ab1aafa1f48578eb315ca45bd46e9c37de11fe45c7f5f4138091e2f1
MD5 b2421a8885b25ab9b63d9902857cf70e
BLAKE2b-256 5d66890987e44f7d2f33a130e37e01a164168e6aff06fce15217b6eaf14df4f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a344d5dc18074e3872777b62f5f7d584ae4344cd6006c17ba12103759d407af3
MD5 93e62c0cd86a1cac0aa6c2597fab92ff
BLAKE2b-256 6f1c1e7d5c5daea9e409ed70f7986001b8c9e3a49a50b28404498d30860edab6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aa54f8ef31d23c506910c21163f22b124facb573bff73930735cf9fe38bf7dff
MD5 38ca4b9285b53fe7afefae165468787c
BLAKE2b-256 545ce95ade9ae29f375411884d9fd98e50535bf9fe316c9feb0f30cd2ac8f508

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b63de12e44935d5aca7ed7ed98a255a11e5cb47f83a9fded7a5e41c40277d104
MD5 9512b4ff8d1041d2fd2c52d945ab75a0
BLAKE2b-256 07db6d04bc7fd92784900704e16b745484ef45b77bd04e25f58f6febaadf7983

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c341c7d868750e31961d6d8e60ff040fb9d3d3a46d77fd85e1ab8e76c3e9a5c4
MD5 048add7cd91e8a9a4c59aac063cf0e13
BLAKE2b-256 8fdce2ba57d7a52df6cdf1072fd5fa9c6301a68e1cd67415f189805d3eeb031d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0882c2820fd0132240edbb4a51eb8ceb6eef8181db9ad5291ab3332e0d71df5f
MD5 a68eefbeb2e199f2cbf68f0ffdc13ab4
BLAKE2b-256 db610d71cc66d63909dabc4590f74eba71f91873a77ea52424401c2498d47536

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp313-cp313-macosx_11_0_arm64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 929f3ed33743a49ab127c58c3e0a827de0664bfcda566108989a14068f820194
MD5 82461c277f72f530d58faf1a94b1aa05
BLAKE2b-256 92d1faad3bf9fa4bfd26b95c69fc2e98937d52b1ff44f7e28131855a98d23a17

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp313-cp313-macosx_10_13_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 541d823548ab69d13d23730a06f97460f4238ad2e5ed966aaf850d7c369782d9
MD5 97012c845354f90fc40a3c4e32229129
BLAKE2b-256 49d1d8af164f400bad432b63e1ac857d74a09311a8334b0481f2f64b158b50eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp313-cp313-macosx_10_13_universal2.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1e69966ea6ef0c14ee53ef7a3d68b564cc408121ea56c0caa2dc918c1b2f553d
MD5 3925d10cd878a30d28d3251f6e80efc6
BLAKE2b-256 7f23cc36d9c398980acaeeb443100f0216f50a7cfe20c67a9fd0a2f1a5a846de

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: aiohttp-3.11.11-cp312-cp312-win32.whl
  • Upload date:
  • Size: 411.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for aiohttp-3.11.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9f5b3c1ed63c8fa937a920b6c1bec78b74ee09593b3f5b979ab2ae5ef60d7600
MD5 ee0060822f86ce7adf1f16304f740672
BLAKE2b-256 bc97b0a88c3f4c6d0020b34045ee6d954058abc870814f6e310c4c9b74254116

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92fc484e34b733704ad77210c7957679c5c3877bd1e6b6d74b185e9320cc716e
MD5 ec4bc372767c366a282e7afa14d6b63b
BLAKE2b-256 c3d6f30b2bc520c38c8aa4657ed953186e535ae84abe55c08d0f70acd72ff577

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp312-cp312-musllinux_1_2_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6fba278063559acc730abf49845d0e9a9e1ba74f85f0ee6efd5803f08b285853
MD5 a1eebabf09e63ebd4d1e6362ee00e1c3
BLAKE2b-256 0cf4ddab089053f9fb96654df5505c0a69bde093214b3c3454f6bfdb1845f558

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp312-cp312-musllinux_1_2_s390x.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d119fafe7b634dbfa25a8c597718e69a930e4847f0b88e172744be24515140da
MD5 768ba9f034056f4ec12a53ff90a646aa
BLAKE2b-256 d738257fda3dc99d6978ab943141d5165ec74fd4b4164baa15e9c66fa21da86b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp312-cp312-musllinux_1_2_ppc64le.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6212a60e5c482ef90f2d788835387070a88d52cf6241d3916733c9176d39eab
MD5 7d096beaef004777c8458c88ffb8ec6a
BLAKE2b-256 3098b123f6b15d87c54e58fd7ae3558ff594f898d7f30a90899718f3215ad328

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp312-cp312-musllinux_1_2_i686.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e2bf8029dbf0810c7bfbc3e594b51c4cc9101fbffb583a3923aea184724203c
MD5 ba45425518eb5024fb42ddbf9f41abd9
BLAKE2b-256 9674879b23cdd816db4133325a201287c95bef4ce669acde37f8f1b8669e1755

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp312-cp312-musllinux_1_2_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8f5f7515f3552d899c61202d99dcb17d6e3b0de777900405611cd747cecd1b8
MD5 68cb9e2e7d9093d27ef5bab666c85068
BLAKE2b-256 407f6de218084f9b653026bd7063cd8045123a7ba90c25176465f266976d8c82

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ffb3dc385f6bb1568aa974fe65da84723210e5d9707e360e9ecb51f59406cd2e
MD5 89466373cd12c65d2934d217947f90bf
BLAKE2b-256 d6fbea94927f7bfe1d86178c9d3e0a8c54f651a0a655214cce930b3c679b8f64

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d40f9da8cabbf295d3a9dae1295c69975b86d941bc20f0a087f0477fa0a66231
MD5 cc6207cc01e6655f994108df1d69c976
BLAKE2b-256 e9d79ec5b3ea9ae215c311d88b2093e8da17e67b8856673e4166c994e117ee3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd7227b87a355ce1f4bf83bfae4399b1f5bb42e0259cb9405824bd03d2f4336a
MD5 dca2331b9c46179b53413e94875795ff
BLAKE2b-256 b7dd485061fbfef33165ce7320db36e530cd7116ee1098e9c3774d15a732b3fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3499c7ffbfd9c6a3d8d6a2b01c26639da7e43d47c7b4f788016226b1e711caa8
MD5 1757638efeab42f45a2e21958e37acfb
BLAKE2b-256 77e2992f43d87831cbddb6b09c57ab55499332f60ad6fdbf438ff4419c2925fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8811f3f098a78ffa16e0ea36dffd577eb031aea797cbdba81be039a4169e242c
MD5 cb140ed183e27b97f71da3c83e2ac9b1
BLAKE2b-256 5aa6789e1f17a1b6f4a38939fbc39d29e1d960d5f89f73d0629a939410171bc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp312-cp312-macosx_11_0_arm64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3ea1b59dc06396b0b424740a10a0a63974c725b1c64736ff788a3689d36c02d2
MD5 bce4141e4c6a2d3c39ed6352016d8b49
BLAKE2b-256 467b87fcef2cad2fad420ca77bef981e815df6904047d0a1bd6aeded1b0d1d66

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp312-cp312-macosx_10_13_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e595c591a48bbc295ebf47cb91aebf9bd32f3ff76749ecf282ea7f9f6bb73886
MD5 a5945567e320a0179b529a7c3011b14a
BLAKE2b-256 69cf4bda538c502f9738d6b95ada11603c05ec260807246e15e869fc3ec5de97

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp312-cp312-macosx_10_13_universal2.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ae545f31489548c87b0cced5755cfe5a5308d00407000e72c4fa30b19c3220ac
MD5 9e46dea3f1d4f951aae085ffd66bcc05
BLAKE2b-256 fcdb2192489a8a51b52e06627506f8ac8df69ee221de88ab9bdea77aa793aa6a

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: aiohttp-3.11.11-cp311-cp311-win32.whl
  • Upload date:
  • Size: 416.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for aiohttp-3.11.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 aba807f9569455cba566882c8938f1a549f205ee43c27b126e5450dc9f83cc62
MD5 ceb560f33e5af1cf17ae85024f1f0866
BLAKE2b-256 7789a7ef9c4b4cdb546fcc650ca7f7395aaffbd267f0e1f648a436bec33c9b95

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92cde43018a2e17d48bb09c79e4d4cb0e236de5063ce897a5e40ac7cb4878773
MD5 9dea04f5a934913d9eca31d7f53785a0
BLAKE2b-256 bc7891ae1a3b3b3bed8b893c5d69c07023e151b1c95d79544ad04cf68f596c2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp311-cp311-musllinux_1_2_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ec2aa89305006fba9ffb98970db6c8221541be7bee4c1d027421d6f6df7d1ce2
MD5 16efd6818a7e0e24210aca8df742d52f
BLAKE2b-256 c50cc2b85fde167dd440c7ba50af2aac20b5a5666392b174df54c00f888c5a75

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp311-cp311-musllinux_1_2_s390x.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bd176afcf8f5d2aed50c3647d4925d0db0579d96f75a31e77cbaf67d8a87742d
MD5 d02367d677bb9f8915da4d56f2a4980e
BLAKE2b-256 85fda032bf7f2755c2df4f87f9effa34ccc1ef5cea465377dbaeef93bb56bbd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp311-cp311-musllinux_1_2_ppc64le.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9fd46ce0845cfe28f108888b3ab17abff84ff695e01e73657eec3f96d72eef34
MD5 05346ee6048d38cfe21c691cbe833f85
BLAKE2b-256 218d9e658d63b1438ad42b96f94da227f2e2c1d5c6001c9e8ffcc0bfb22e9105

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp311-cp311-musllinux_1_2_i686.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec82bf1fda6cecce7f7b915f9196601a1bd1a3079796b76d16ae4cce6d0ef89b
MD5 c823c0e1e99016b619f2bf45e99411db
BLAKE2b-256 1b78980064c2ad685c64ce0e8aeeb7ef1e53f43c5b005edcd7d32e60809c4992

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp311-cp311-musllinux_1_2_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 249cc6912405917344192b9f9ea5cd5b139d49e0d2f5c7f70bdfaf6b4dbf3a2e
MD5 1edf5c3bf26ffd65acf87b90d5cca9ee
BLAKE2b-256 c411f478e071815a46ca0a5ae974651ff0c7a35898c55063305a896e58aa1247

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 70d1f9dde0e5dd9e292a6d4d00058737052b01f3532f69c0c65818dac26dc287
MD5 5ea3182f5af0098b672ab0687d7f5dc7
BLAKE2b-256 2a8b0248d19dbb16b67222e75f6aecedd014656225733157e5afaf6a6a07e2e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3af41686ccec6a0f2bdc66686dc0f403c41ac2089f80e2214a0f82d001052c03
MD5 d0c36d4e09e5969f63b2c0ce9bb6c653
BLAKE2b-256 88b91b7fa43faf6c8616fa94c568dc1309ffee2b6b68b04ac268e5d64b738688

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81b8fe282183e4a3c7a1b72f5ade1094ed1c6345a8f153506d114af5bf8accd9
MD5 c58ff52736d72407ee08559d15f7b333
BLAKE2b-256 bef9469588603bd75bf02c8ffb8c8a0d4b217eed446b49d4a767684685aa33fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0eb98d90b6690827dcc84c246811feeb4e1eea683c0eac6caed7549be9c84665
MD5 a3befc2e32b50eb29c50f613147496ae
BLAKE2b-256 265d284d182fecbb5075ae10153ff7374f57314c93a8681666600e3a9e09c505

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ffa336210cf9cd8ed117011085817d00abe4c08f99968deef0013ea283547204
MD5 cb0f9907c8e3555f83cb45c169bf1ebf
BLAKE2b-256 a96003455476bf1f467e5b4a32a465c450548b2ce724eec39d69f737191f936a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp311-cp311-macosx_11_0_arm64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4af57160800b7a815f3fe0eba9b46bf28aafc195555f1824555fa2cfab6c1538
MD5 b1b57577b048943ba1d79e2922623fc0
BLAKE2b-256 c7e0313ef1a333fb4d58d0c55a6acb3cd772f5d7756604b455181049e222c020

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp311-cp311-macosx_10_9_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ba74ec819177af1ef7f59063c6d35a214a8fde6f987f7661f4f0eecc468a8f76
MD5 98670e6e272efc9e4afaf953a058b605
BLAKE2b-256 34aee8806a9f054e15f1d18b04db75c23ec38ec954a10c0a68d3bd275d7e8be3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp311-cp311-macosx_10_9_universal2.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0fd82b8e9c383af11d2b26f27a478640b6b83d669440c0a71481f7c865a51da9
MD5 6537b6b395465127ab10b7160387ce1d
BLAKE2b-256 ad8681cb83691b5ace3d9aa148dc42bacc3450d749fc88c5ec1973573c1c1779

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: aiohttp-3.11.11-cp310-cp310-win32.whl
  • Upload date:
  • Size: 416.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for aiohttp-3.11.11-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bfde76a8f430cf5c5584553adf9926534352251d379dcb266ad2b93c54a29745
MD5 dacd9ae2ab82807eab1cd2507adefad8
BLAKE2b-256 0b8d1f4ef3503b767717f65e1f5178b0173ab03cba1a19997ebf7b052161189f

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84a585799c58b795573c7fa9b84c455adf3e1d72f19a2bf498b54a95ae0d194c
MD5 4c8134e10fca3f83e252243169265b7d
BLAKE2b-256 a82e86e6f85cbca02be042c268c3d93e7f35977a0e127de56e319bdd1569eaa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp310-cp310-musllinux_1_2_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0a6d3fbf2232e3a08c41eca81ae4f1dff3d8f1a30bae415ebe0af2d2458b8a33
MD5 a3dc8532d0f6bf0b80a256c75ad20edf
BLAKE2b-256 e0d36c98fd87e638e51f074a3f2061e81fcb92123bcaf1439ac1b4a896446e40

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp310-cp310-musllinux_1_2_s390x.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 88a12ad8ccf325a8a5ed80e6d7c3bdc247d66175afedbe104ee2aaca72960d8e
MD5 1160f272080d3d34174789757fe0c18d
BLAKE2b-256 0fddb974012a9551fd654f5bb95a6dd3f03d6e6472a17e1a8216dd42e9638d6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp310-cp310-musllinux_1_2_ppc64le.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 85992ee30a31835fc482468637b3e5bd085fa8fe9392ba0bdcbdc1ef5e9e3c55
MD5 164ec676205e90b4632563bb3490ce44
BLAKE2b-256 61a26958b1b880fc017fd35f5dfb2c26a9a50c755b75fd9ae001dc2236a4fb79

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp310-cp310-musllinux_1_2_i686.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6526e5fb4e14f4bbf30411216780c9967c20c5a55f2f51d3abd6de68320cc2f3
MD5 675a1aa822a9d17f0359daf83374a150
BLAKE2b-256 58b94d06470fd85c687b6b0e31935ef73dde6e31767c9576d617309a2206556f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp310-cp310-musllinux_1_2_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af01e42ad87ae24932138f154105e88da13ce7d202a6de93fafdafb2883a00ef
MD5 d78907acdc9609c98f5c835054a00a7a
BLAKE2b-256 2fcc3a3fc7a290eabc59839a7e15289cd48f33dd9337d06e301064e1e7fb26c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dd7659baae9ccf94ae5fe8bfaa2c7bc2e94d24611528395ce88d009107e00c6d
MD5 e271307920c061bb438749bacf7b2277
BLAKE2b-256 39cb70cf69ea7c50f5b0021a84f4c59c3622b2b3b81695f48a2f0e42ef7eba6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f047569d655f81cb70ea5be942ee5d4421b6219c3f05d131f64088c73bb0917f
MD5 b15e3eabe7ebdc5ca1cdc87f789fd9dd
BLAKE2b-256 df2f95b8f4e4dfeb57c1d9ad9fa911ede35a0249d75aa339edd2c2270dc539da

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb23d8bb86282b342481cad4370ea0853a39e4a32a0042bb52ca6bdde132df43
MD5 cc47e3dc9233dd5c4faae686aa97884c
BLAKE2b-256 d8750cdf014b816867d86c0bc26f3d3e3f194198dbf33037890beed629cd4f8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5854be2f3e5a729800bac57a8d76af464e160f19676ab6aea74bde18ad19d438
MD5 461073a564778c42fe675bf7235c181d
BLAKE2b-256 15b40f7b0ed41ac6000e283e7332f0f608d734b675a8509763ca78e93714cfb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 731468f555656767cda219ab42e033355fe48c85fbe3ba83a349631541715ba2
MD5 f26ac0a82b6c3b21a3f7ff39a7fb1fbc
BLAKE2b-256 9c5b5b620279b3df46e597008b09fa1e10027a39467387c2332657288e25811a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp310-cp310-macosx_11_0_arm64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4b4fa1cb5f270fb3eab079536b764ad740bb749ce69a94d4ec30ceee1b5940d5
MD5 83d2808d1b506bfdff452ee103fdf7cb
BLAKE2b-256 09b8aeb4975d5bba233d6f246941f5957a5ad4e3def8b0855a72742e391925f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp310-cp310-macosx_10_9_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a60804bff28662cbcf340a4d61598891f12eea3a66af48ecfdc975ceec21e3c8
MD5 1490e2dd57a7e5178d22312dbbd6814d
BLAKE2b-256 757dff2e314b8f9e0b1df833e2d4778eaf23eae6b8cc8f922495d110ddcbf9e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp310-cp310-macosx_10_9_universal2.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.11.11-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 442.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for aiohttp-3.11.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 943a8b052e54dfd6439fd7989f67fc6a7f2138d0a2cf0a7de5f18aa4fe7eb3b1
MD5 fa47840a60996c5ace79098ef213ac1d
BLAKE2b-256 2d4728b3fbd97026963af2774423c64341e0d4ec180ea3b79a2762a3c18d5d94

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: aiohttp-3.11.11-cp39-cp39-win32.whl
  • Upload date:
  • Size: 416.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for aiohttp-3.11.11-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 568c1236b2fde93b7720f95a890741854c1200fba4a3471ff48b2934d2d93fd3
MD5 8cd3a5533959fca8174e8b1505c02cd1
BLAKE2b-256 3b3433af1e97aba1862e1812e2e2b96a1e050c5a6e9cecd5a5370591122fb07b

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1dac54e8ce2ed83b1f6b1a54005c87dfed139cf3f777fdc8afc76e7841101226
MD5 d404b412c3e5d88893b53c5c3fc3000f
BLAKE2b-256 e82949debcd858b997c655fca274c5247fcfe29bf31a4ddb1ce3f088539b14e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp39-cp39-musllinux_1_2_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b540bd67cfb54e6f0865ceccd9979687210d7ed1a1cc8c01f8e67e2f1e883d28
MD5 70016dc055419c8f50a10e20baace45b
BLAKE2b-256 4fe727feb1cff17dcddb7a5b703199106196718d622a3aa70f80a386d15361d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp39-cp39-musllinux_1_2_s390x.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 10b4ff0ad793d98605958089fabfa350e8e62bd5d40aa65cdc69d6785859f94e
MD5 547cee2ca28b2cfa6dabe80a183cc5a5
BLAKE2b-256 1aa99d59958084d5bad7e77a44841013bd59768cda94f9f744769461b66038fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp39-cp39-musllinux_1_2_ppc64le.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 479b8c6ebd12aedfe64563b85920525d05d394b85f166b7873c8bde6da612f9c
MD5 88cdedd955a0d3671cd5c4cd3d1c8927
BLAKE2b-256 1808eb334da86cd2cdbd0621bb7039255b19ca74ce8b05e8fb61850e2589938c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp39-cp39-musllinux_1_2_i686.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 44167fc6a763d534a6908bdb2592269b4bf30a03239bcb1654781adf5e49caf1
MD5 fbf469a16db27f1b99ac04a0a384f3ac
BLAKE2b-256 845a42250b37b06ee0cb7a03dd1630243b1d739ca3edb5abd8b18f479a539900

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp39-cp39-musllinux_1_2_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4eed954b161e6b9b65f6be446ed448ed3921763cc432053ceb606f89d793927e
MD5 466cebaeb7b854b191021b54ebc13d15
BLAKE2b-256 f75ba27e8fe1a3b0e245ca80863eefd83fc00136752d27d2cf1afa0130a76f34

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8be8508d110d93061197fd2d6a74f7401f73b6d12f8822bbcd6d74f2b55d71b1
MD5 6f0e4eb103086f6f4e12b3f25e8e4006
BLAKE2b-256 eaa79acf20e9a09b0d38b5b55691410500d051a9f4194692cac22b0d0fc92ad9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2170816e34e10f2fd120f603e951630f8a112e1be3b60963a1f159f5699059a6
MD5 c1f75ed3e91fa7eda442620df136ec9a
BLAKE2b-256 43c0f4db1ac30ebe855b2fefd6fa98767862d88ac54ab08a6ad07d619146270c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1642eceeaa5ab6c9b6dfeaaa626ae314d808188ab23ae196a34c9d97efb68350
MD5 5d5cc0a664e47ec547593a90eee16652
BLAKE2b-256 0e17c8be12436ec19915f67b1ab8240d4105aba0f7e0894a1f0d8939c3e79c70

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d6c9af134da4bc9b3bd3e6a70072509f295d10ee60c697826225b60b9959acdd
MD5 ac1de09eb6e7d3175d8603f17c0b3f28
BLAKE2b-256 25508bccd08004e15906791b46f0a908a8e7f5e0c5882b17da96d1933bd34ac0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f21bb8d0235fc10c09ce1d11ffbd40fc50d3f08a89e4cf3a0c503dc2562247a
MD5 685893b9f229f6a1c692d91214623722
BLAKE2b-256 b2f002f03f818e91996161cce200241b631bb2b4a87e61acddb5b974e254a288

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp39-cp39-macosx_11_0_arm64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 21fef42317cf02e05d3b09c028712e1d73a9606f02467fd803f7c1f39cc59add
MD5 6ad99dc634b67627dd91eeeb9f20bc0f
BLAKE2b-256 9cc5a88ec2160b06c22e57e483a1f78f99f005fcd4e7d6855a2d3d6510881b65

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp39-cp39-macosx_10_9_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.11-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.11-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3e23419d832d969f659c208557de4a123e30a10d26e1e14b73431d3c13444c2e
MD5 87923824d27821f49b0ba51de460c448
BLAKE2b-256 9f37326ee86b7640be6ca4493c8121cb9a4386e07cf1e5757ce6b7fa854d0a5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.11-cp39-cp39-macosx_10_9_universal2.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page