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

Uploaded Source

Built Distributions

aiohttp-3.11.16-cp313-cp313-win_amd64.whl (436.4 kB view details)

Uploaded CPython 3.13 Windows x86-64

aiohttp-3.11.16-cp313-cp313-win32.whl (410.7 kB view details)

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

aiohttp-3.11.16-cp313-cp313-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

aiohttp-3.11.16-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.16-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.16-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.16-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.16-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.16-cp313-cp313-macosx_11_0_arm64.whl (453.4 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

aiohttp-3.11.16-cp313-cp313-macosx_10_13_x86_64.whl (461.1 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

aiohttp-3.11.16-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.16-cp312-cp312-win_amd64.whl (438.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.11.16-cp312-cp312-win32.whl (411.7 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.16-cp312-cp312-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

aiohttp-3.11.16-cp312-cp312-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

aiohttp-3.11.16-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.16-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.16-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.16-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.16-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.16-cp312-cp312-macosx_11_0_arm64.whl (456.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.11.16-cp312-cp312-macosx_10_13_x86_64.whl (464.6 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

aiohttp-3.11.16-cp312-cp312-macosx_10_13_universal2.whl (704.9 kB view details)

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

aiohttp-3.11.16-cp311-cp311-win_amd64.whl (443.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.11.16-cp311-cp311-win32.whl (416.8 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

aiohttp-3.11.16-cp311-cp311-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

aiohttp-3.11.16-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.16-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.16-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.16-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.16-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.16-cp311-cp311-macosx_11_0_arm64.whl (456.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.11.16-cp311-cp311-macosx_10_9_x86_64.whl (469.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.11.16-cp311-cp311-macosx_10_9_universal2.whl (708.7 kB view details)

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

aiohttp-3.11.16-cp310-cp310-win_amd64.whl (442.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.11.16-cp310-cp310-win32.whl (416.9 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

aiohttp-3.11.16-cp310-cp310-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

aiohttp-3.11.16-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.16-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.16-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.16-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.16-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.16-cp310-cp310-macosx_11_0_arm64.whl (455.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.11.16-cp310-cp310-macosx_10_9_x86_64.whl (468.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.11.16-cp310-cp310-macosx_10_9_universal2.whl (708.3 kB view details)

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

aiohttp-3.11.16-cp39-cp39-win_amd64.whl (442.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.11.16-cp39-cp39-win32.whl (417.2 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

aiohttp-3.11.16-cp39-cp39-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.11.16-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.16-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.16-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.16-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.16-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.16-cp39-cp39-macosx_11_0_arm64.whl (456.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.11.16-cp39-cp39-macosx_10_9_x86_64.whl (469.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.11.16-cp39-cp39-macosx_10_9_universal2.whl (709.2 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.16.tar.gz
Algorithm Hash digest
SHA256 16f8a2c9538c14a557b4d309ed4d0a7c60f0253e8ed7b6c9a2859a7582f8b1b8
MD5 e28d2a17717d6da40b4ae88ef578a6b7
BLAKE2b-256 f1d91c4721d143e14af753f2bf5e3b681883e1f24b592c0482df6fa6e33597fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.16.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.16-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 42864e70a248f5f6a49fdaf417d9bc62d6e4d8ee9695b24c5916cb4bb666c802
MD5 9fae5b0dcf13ebee2559f276bb6d5b39
BLAKE2b-256 ceed853e36d5a33c24544cfa46585895547de152dfef0b5c79fa675f6e4b7b87

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.16-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.16-cp313-cp313-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.16-cp313-cp313-win32.whl
  • Upload date:
  • Size: 410.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.16-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 493910ceb2764f792db4dc6e8e4b375dae1b08f72e18e8f10f18b34ca17d0979
MD5 d698ccbe1ae0e3b24b0b361c44ca236f
BLAKE2b-256 32d9d2fb08c614df401d92c12fcbc60e6e879608d5e8909ef75c5ad8d4ad8aa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.16-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.16-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3b4e6db8dc4879015b9955778cfb9881897339c8fab7b3676f8433f849425913
MD5 c3787d4fd3bc9673502f966e5ef79307
BLAKE2b-256 e518dda87cbad29472a51fa058d6d8257dfce168289adaeb358b86bd93af3b20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2540ddc83cc724b13d1838026f6a5ad178510953302a49e6d647f6e1de82bc34
MD5 3eab70617f8064e0739231e1c4bc6047
BLAKE2b-256 ad6beaa6768e02edebaf37d77f4ffb74dd55f5cbcbb6a0dbf798ccec7b0ac23b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a6db7458ab89c7d80bc1f4e930cc9df6edee2200127cfa6f6e080cf619eddfbd
MD5 92962dbf85968b260e3ee6e458742792
BLAKE2b-256 469e2ac29cca2746ee8e449e73cd2fcb3d454467393ec03a269d50e49af743f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ecdb8173e6c7aa09eee342ac62e193e6904923bd232e76b4157ac0bfa670609f
MD5 aa4a2ea94fa2795b959fdc6aa0bca49a
BLAKE2b-256 d6e15c7d63143b8d00c83b958b9e78e7048c4a69903c760c1e329bf02bac57a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.16-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.16-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 780df0d837276276226a1ff803f8d0fa5f8996c479aeef52eb040179f3156cbd
MD5 affb64975c8b0c6e4ca339c714164c08
BLAKE2b-256 6f27452f1d5fca1f516f9f731539b7f5faa9e9d3bf8a3a6c3cd7c4b031f20cbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 72b1b03fb4655c1960403c131740755ec19c5898c82abd3961c364c2afd59fe7
MD5 101a83e85763ee96790fd513e470515a
BLAKE2b-256 8b4883afd779242b7cf7e1ceed2ff624a86d3221e17798061cf9a79e0b246077

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58ede86453a6cf2d6ce40ef0ca15481677a66950e73b0a788917916f7e35a0bb
MD5 f50c7bc6d77b45ad942190767dea70a3
BLAKE2b-256 735b54b42b2150bb26fdf795464aa55ceb1a49c85f84e98e6896d211eabc6670

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f420bfe862fb357a6d76f2065447ef6f484bc489292ac91e29bc65d2d7a2c84d
MD5 0daaf671c283aef6df4c305d0033c19b
BLAKE2b-256 2c4fbc4c5119e75c05ef15c5670ef1563bbe25d4ed4893b76c57b0184d815e8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a5abcbba9f4b463a45c8ca8b7720891200658f6f46894f79517e6cd11f3405ca
MD5 d9ef8db40fee1b9f5a051d99939193ee
BLAKE2b-256 0e2797bc0fdd1f439b8f060beb3ba8fb47b908dc170280090801158381ad7942

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ca37057625693d097543bd88076ceebeb248291df9d6ca8481349efc0b05dcd0
MD5 920dc50946ef3c18244e240198b4f6fa
BLAKE2b-256 4b04e1bb3fcfbd2c26753932c759593a32299aff8625eaa0bf8ff7d9c0c34a36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6fdec0213244c39973674ca2a7f5435bf74369e7d4e104d6c7473c81c9bcc8c4
MD5 838fcf2e1c6a42b205684974f32517f9
BLAKE2b-256 10eea0fe68916d3f82eae199b8535624cf07a9c0a0958c7a76e56dd21140487a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad497f38a0d6c329cb621774788583ee12321863cd4bd9feee1effd60f2ad133
MD5 79006e09a510ed2273af55ccdbcfd86b
BLAKE2b-256 4f856b79fb0ea6e913d596d5b949edc2402b20803f51b1a59e1bbc5bb7ba7569

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9b751a6306f330801665ae69270a8a3993654a85569b3469662efaad6cf5cc50
MD5 1c15940265da631870d526f1fa1aaa8f
BLAKE2b-256 513e61057814f7247666d43ac538abcd6335b022869ade2602dab9bf33f607d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 a3814760a1a700f3cfd2f977249f1032301d0a12c92aba74605cfa6ce9f78489
MD5 a81ac395d799d117e6b731f9e426f3eb
BLAKE2b-256 52527c712b2d9fb4d5e5fd6d12f9ab76e52baddfee71e3c8203ca7a7559d7f51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 23a15727fbfccab973343b6d1b7181bfb0b4aa7ae280f36fd2f90f5476805682
MD5 7d46007eee5de1061697d1f16a85fc31
BLAKE2b-256 33fb41cde15fbe51365024550bf77b95a4fc84ef41365705c946da0421f0e1e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.16-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.16-cp312-cp312-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.16-cp312-cp312-win32.whl
  • Upload date:
  • Size: 411.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.16-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f244b8e541f414664889e2c87cac11a07b918cb4b540c36f7ada7bfa76571ea2
MD5 8eb4ef13550977c0105cc065d6670db3
BLAKE2b-256 61d5fea8dbbfb0cd68fbb56f0ae913270a79422d9a41da442a624febf72d2aaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.16-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.16-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa73e8c2656a3653ae6c307b3f4e878a21f87859a9afab228280ddccd7369d71
MD5 7a03dbf64ab7938706c7f2e46028ab55
BLAKE2b-256 732a08a68eec3c99a6659067d271d7553e4d490a0828d588e1daa3970dc2b771

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f4065145bf69de124accdd17ea5f4dc770da0a6a6e440c53f6e0a8c27b3e635c
MD5 d1291b749cd7a39f54a7324dff080b19
BLAKE2b-256 b16d6ab5854ff59b27075c7a8c610597d2b6c38945f9a1284ee8758bc3720ff6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6a792ce34b999fbe04a7a71a90c74f10c57ae4c51f65461a411faa70e154154e
MD5 1a08cc59476cd74678aafd6227758d8a
BLAKE2b-256 fe943e42a6916fd3441721941e0f1b8438e1ce2a4c49af0e28e0d3c950c9b3c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fadbb8f1d4140825069db3fedbbb843290fd5f5bc0a5dbd7eaf81d91bf1b003b
MD5 6b71dba8815d70acb697094dc156add0
BLAKE2b-256 2bb1c6686948d4c79c3745595efc469a9f8a43cab3c7efc0b5991be65d9e8cb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.16-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.16-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 13ceac2c5cdcc3f64b9015710221ddf81c900c5febc505dbd8f810e770011540
MD5 c1bd660e43c8682801942ad0c79a5236
BLAKE2b-256 2c8859d870f76e9345e2b149f158074e78db457985c2b4da713038d9da3020a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f6428fee52d2bcf96a8aa7b62095b190ee341ab0e6b1bcf50c615d7966fd45b
MD5 b7355c5633468de56b62e103eaec063f
BLAKE2b-256 1d1daaa841c340e8c143a8d53a1f644c2a2961c58cfa26e7b398d6bf75cf5d23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ce63ae04719513dd2651202352a2beb9f67f55cb8490c40f056cea3c5c355ce
MD5 70e8f94fda2c661656e615cd8e407f40
BLAKE2b-256 86b3f61f8492fa6569fa87927ad35a40c159408862f7e8e70deaaead349e2fba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd464ba806e27ee24a91362ba3621bfc39dbbb8b79f2e1340201615197370f7c
MD5 8278ef9c48d4195368365cbdedfadd35
BLAKE2b-256 5141c7724b9c87a29b7cfd1202ec6446bae8524a751473d25e2ff438bc9a02bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 69a2cbd61788d26f8f1e626e188044834f37f6ae3f937bd9f08b65fc9d7e514e
MD5 2ef0731372bdb876df06d7ded311f6bd
BLAKE2b-256 bdea7df7bcd3f4e734301605f686ffc87993f2d51b7acb6bcc9b980af223f297

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d489d9778522fbd0f8d6a5c6e48e3514f11be81cb0a5954bdda06f7e1594b321
MD5 cfd044a33a75ce1f4a3854804be9fdf8
BLAKE2b-256 80ad216c6f71bdff2becce6c8776f0aa32cb0fa5d83008d13b49c3208d2e4016

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 09b00dd520d88eac9d1768439a59ab3d145065c91a8fab97f900d1b5f802895e
MD5 ebb7266af4617dc3528f11aafe18c03c
BLAKE2b-256 cebe7097cf860a9ce8bbb0e8960704e12869e111abcd3fbd245153373079ccec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd36c119c5d6551bce374fcb5c19269638f8d09862445f85a5a48596fd59f4bb
MD5 dcef32412b5e1921a3673a3734a29858
BLAKE2b-256 3be1a9ab6c47b62ecee080eeb33acd5352b40ecad08fb2d0779bcc6739271745

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6ac13b71761e49d5f9e4d05d33683bbafef753e876e8e5a7ef26e937dd766713
MD5 fb520a5e396ad3f2cb04df7018ed6719
BLAKE2b-256 21edb4102bb6245e36591209e29f03fe87e7956e54cb604ee12e20f7eb47f994

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 911a6e91d08bb2c72938bc17f0a2d97864c531536b7832abee6429d5296e5b27
MD5 9cc23ae1e8996b4745b785328601726f
BLAKE2b-256 db38100d01cbc60553743baf0fba658cb125f8ad674a8a771f765cdc155a890d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 745f1ed5e2c687baefc3c5e7b4304e91bf3e2f32834d07baaee243e349624b24
MD5 382d6b6bb56b5c3320436aac9a455395
BLAKE2b-256 e7dd01f6fe028e054ef4f909c9d63e3a2399e77021bb2e1bb51d56ca8b543989

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.16-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.16-cp311-cp311-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.16-cp311-cp311-win32.whl
  • Upload date:
  • Size: 416.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.16-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3e061b09f6fa42997cf627307f220315e313ece74907d35776ec4373ed718b86
MD5 abbb6b11d7eb024096c94cf757bb75b2
BLAKE2b-256 ce6dc5ccf41059267bcf89853d3db9d8d217dacf0a04f4086cb6bf278323011f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.16-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.16-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61c721764e41af907c9d16b6daa05a458f066015abd35923051be8705108ed17
MD5 9387a5e804175df7658584fb5197c27e
BLAKE2b-256 a75387327fe982fa310944e1450e97bf7b2a28015263771931372a1dfe682c58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 56a3443aca82abda0e07be2e1ecb76a050714faf2be84256dae291182ba59049
MD5 70d8290ca414f9374095d3c36006bacb
BLAKE2b-256 d554dcd24a23c7a5a2922123e07a296a5f79ea87ce605f531be068415c326de6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3ab3367bb7f61ad18793fea2ef71f2d181c528c87948638366bf1de26e239183
MD5 a94402fc3c3b6eb966f4ec273e0a3618
BLAKE2b-256 3a527549573cd654ad651e3c5786ec3946d8f0ee379023e22deb503ff856b16c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e3538bc9fe1b902bef51372462e3d7c96fce2b566642512138a480b7adc9d508
MD5 63196fa2469374b49dbf1c8e17a96a78
BLAKE2b-256 1de27d92adc03e3458edd18a21da2575ab84e58f16b1672ae98529e4eeee45ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.16-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.16-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 696ef00e8a1f0cec5e30640e64eca75d8e777933d1438f4facc9c0cdf288a810
MD5 2915828eede2d7b26df950a2120cdb9f
BLAKE2b-256 cc6c21c45b66124df5b4b0ab638271ecd8c6402b702977120cb4d5be6408e15d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78e6e23b954644737e385befa0deb20233e2dfddf95dd11e9db752bdd2a294d3
MD5 f8a6e9eb431670ef427eff80b9ff6462
BLAKE2b-256 b1dfca775605f72abbda4e4746e793c408c84373ca2c6ce7a106a09f853f1e89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a2f451849e6b39e5c226803dcacfa9c7133e9825dcefd2f4e837a2ec5a3bb98
MD5 3c47129b37ea28513c596d28231cfc9a
BLAKE2b-256 58283e1e1884070b95f1f69c473a1995852a6f8516670bb1c29d6cb2dbb73e1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f6ddd90d9fb4b501c97a4458f1c1720e42432c26cb76d28177c5b5ad4e332601
MD5 b515f1d28861663d66b5c61655e07e2e
BLAKE2b-256 644cee416987b6729558f2eb1b727c60196580aafdb141e83bd78bb031d1c000

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d007aa39a52d62373bd23428ba4a2546eed0e7643d7bf2e41ddcefd54519842c
MD5 036471c10806372207d1ce7e4b718ad7
BLAKE2b-256 d05dc7474b4c3069bb35276d54c82997dff4f7575e4b73f0a7b1b08a39ece1eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc3a145479a76ad0ed646434d09216d33d08eef0d8c9a11f5ae5cdc37caa3540
MD5 905ebfbb32ee4bdbf5f7fe3682fc9ec2
BLAKE2b-256 36234a5b1ef6cff994936bf96d981dd817b487d9db755457a0d1c2939920d620

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8df6612df74409080575dca38a5237282865408016e65636a76a2eb9348c2567
MD5 0cd489af681318ea720ebb572baa8d85
BLAKE2b-256 ad55a032b32fa80a662d25d9eb170ed1e2c2be239304ca114ec66c89dc40f37f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df7db76400bf46ec6a0a73192b14c8295bdb9812053f4fe53f4e789f3ea66bbb
MD5 b3c9a7b40384547b7a0c5cf5873d1a7e
BLAKE2b-256 3423eedf80ec42865ea5355b46265a2433134138eff9a4fea17e1348530fa4ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0ad1fb47da60ae1ddfb316f0ff16d1f3b8e844d1a1e154641928ea0583d486ed
MD5 a34088ff886906262d33bfa09e575309
BLAKE2b-256 e627d51116ce18bdfdea7a2244b55ad38d7b01a4298af55765eed7e8431f013d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8cb0688a8d81c63d716e867d59a9ccc389e97ac7037ebef904c2b89334407180
MD5 6c220019dd3108092b38cef575fe2afe
BLAKE2b-256 b198be30539cd84260d9f3ea1936d50445e25aa6029a4cb9707f3b64cfd710f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 938f756c2b9374bbcc262a37eea521d8a0e6458162f2a9c26329cc87fdf06534
MD5 f807252e94920100bdc6ffb489843fe4
BLAKE2b-256 dfada64db1c18063569d6dff474c46a7d4de7ab85ff55e2a35839b149b1850ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.16-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.16-cp310-cp310-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.16-cp310-cp310-win32.whl
  • Upload date:
  • Size: 416.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.16-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 634d96869be6c4dc232fc503e03e40c42d32cfaa51712aee181e922e61d74814
MD5 96b8dad491067bc91709746ac4590718
BLAKE2b-256 d582bb3f4f2cc7677e790ba4c040db7dd8445c234a810ef893a858e217647d38

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.16-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.16-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad9509ffb2396483ceacb1eee9134724443ee45b92141105a4645857244aecc8
MD5 c1084f5c9be329aa0cf6d0be73d186e9
BLAKE2b-256 493a35fb43d07489573c6c1f8c6a3e6c657196124a63223705b7feeddaea06f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c15b2271c44da77ee9d822552201180779e5e942f3a71fb74e026bf6172ff287
MD5 efb035f4ab3624d23e217cfaffc5f2f9
BLAKE2b-256 f8a253a8d1bfc67130710f1c8091f623cdefe7f85cd5d09e14637ed2ed6e1a6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 004511d3413737700835e949433536a2fe95a7d0297edd911a1e9705c5b5ea43
MD5 96d4f4030c39e721f1e0e1109fbfaf73
BLAKE2b-256 f58f9623cd2558e3e182d02dcda8b480643e1c48a0550a86e3050210e98dba27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4d0c970c0d602b1017e2067ff3b7dac41c98fef4f7472ec2ea26fd8a4e8c2149
MD5 4d1efdfbbf6f58f5a354fdd579fa3f6b
BLAKE2b-256 7e882fa9fbfd23fc16cb2cfdd1f290343e085e7e327438041e9c6aa0208a854d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.16-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.16-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 37dcee4906454ae377be5937ab2a66a9a88377b11dd7c072df7a7c142b63c37c
MD5 6137e348818005f2e1e6d63cd003a525
BLAKE2b-256 336da4da7adbac90188bf1228c73b6768a607dd279c146721a9ff7dcb75c5ac6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2a450bcce4931b295fc0848f384834c3f9b00edfc2150baafb4488c27953de6
MD5 3d21475b1f8fc03fdc1afb15a80edff8
BLAKE2b-256 f6fb194ad4e4cae98023ae19556e576347f402ce159e80d74cc0713d460c4a39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98b88a2bf26965f2015a771381624dd4b0839034b70d406dc74fd8be4cc053e3
MD5 c7098bf97a933bab34f5f0826611ae48
BLAKE2b-256 2b0dd2423936962e3c711fafd5bb9172a99e6b07dd63e086515aa957d8a991fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3ad1d59fd7114e6a08c4814983bb498f391c699f3c78712770077518cae63ff7
MD5 c51852e0de94b05794d94dee20786b58
BLAKE2b-256 be854229eba92b433173065b0b459ab677ca11ead4a179f76ccfe55d8738b188

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ba92a2d9ace559a0a14b03d87f47e021e4fa7681dc6970ebbc7b447c7d4b7cd
MD5 fbdadaf33e4f5b2da9a97893bb6281b2
BLAKE2b-256 75d3291b57d54719d996e6cb8c1db8b13d01bdb24dca90434815ac7e6a70393f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d0666afbe984f6933fe72cd1f1c3560d8c55880a0bdd728ad774006eb4241ecd
MD5 d6eb20c6ca6fcd81f5badc76a3f399b6
BLAKE2b-256 5d12b73d9423253f4c872d276a3771decb0722cb5f962352593bd617445977ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 576f5ca28d1b3276026f7df3ec841ae460e0fc3aac2a47cbf72eabcfc0f102e1
MD5 b57f692897f05cab8678a4823998565a
BLAKE2b-256 ea9304209affc20834982c1ef4214b1afc07743667998a9975d69413e9c1e1c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38bea84ee4fe24ebcc8edeb7b54bf20f06fd53ce4d2cc8b74344c5b9620597fd
MD5 6de65308193040da77cf9492d091aaa6
BLAKE2b-256 13daa7fcd68e62acacf0a1930060afd2c970826f989265893082b6fb9eb25cb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 54eb3aead72a5c19fad07219acd882c1643a1027fbcdefac9b502c267242f955
MD5 164d49b380bb4a0ca765cd0df2b65e24
BLAKE2b-256 968c7b4b9debe90ffc31931b85ee8612a5c83f34d8fdc6d90ee3eb27b43639e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fb46bb0f24813e6cede6cc07b1961d4b04f331f7112a23b5e21f567da4ee50aa
MD5 b9a4d0f1a99ff502efde16bed5befad9
BLAKE2b-256 b8216bd4cb580a323b64cda3b11fcb3f68deba77568e97806727a858de57349d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.16-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 442.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.16-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 17ae4664031aadfbcb34fd40ffd90976671fa0c0286e6c4113989f78bebab37a
MD5 7d732ee1be9aaaeab76715a6ace62b6a
BLAKE2b-256 11b87200f637f223199d8f3e7add720ab19843b9969ffa89b758b5649cab8099

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.16-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.16-cp39-cp39-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.16-cp39-cp39-win32.whl
  • Upload date:
  • Size: 417.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.16-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 92b7ee222e2b903e0a4b329a9943d432b3767f2d5029dbe4ca59fb75223bbe2e
MD5 e956333eb80ba2a32cfdb0e4534a6ca8
BLAKE2b-256 e593e90a84c263f02f01efd6f32042c08d7f7d88338cb18d91c5b1752accffeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.16-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.16-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87944bd16b7fe6160607f6a17808abd25f17f61ae1e26c47a491b970fb66d8cb
MD5 c11f1de89905103b25fde4747d0a0aa8
BLAKE2b-256 88513319add72ea4053bee66825aef3e691ee4b26d0a22b7f817d73b0af02d38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9756d9b9d4547e091f99d554fbba0d2a920aab98caa82a8fb3d3d9bee3c9ae85
MD5 cb928a55528e86a93d0eebbae1b20403
BLAKE2b-256 d391b1f0928b6d2eb0c47ecee7122067a8ad330f812795d8f16343d206394040

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 14461157d8426bcb40bd94deb0450a6fa16f05129f7da546090cebf8f3123b0f
MD5 3ad04e97194134d697800b9960d0a04b
BLAKE2b-256 945810af247fb0084327579ebaccfd1f9c2f759ec972b204b31598debfa0829a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7951decace76a9271a1ef181b04aa77d3cc309a02a51d73826039003210bdc86
MD5 04c16aa8e9be20fadb6e9324b4849a8a
BLAKE2b-256 c41cfe0dd097427c295ae49b6c10e37eda546036fd8de75bc43d69df392b9377

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.16-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.16-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c10d85e81d0b9ef87970ecbdbfaeec14a361a7fa947118817fcea8e45335fa46
MD5 ed5b7311e048b7ecfa6ffbea8e829d21
BLAKE2b-256 a8ff2245148b047833eb7b37f5754ece17ade561a46c40d6fecc3ed3f5eae1c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a950c2eb8ff17361abd8c85987fd6076d9f47d040ebffce67dce4993285e973
MD5 8b6d46ec26bd0db797e107e7aaad02b2
BLAKE2b-256 88dd5d0c0a936baaabbf7467851c0cc9f1aedab67428479a528ea14ab852c730

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0902e887b0e1d50424112f200eb9ae3dfed6c0d0a19fc60f633ae5a57c809656
MD5 ca2f200f4cbea2722f3b2346e31866e0
BLAKE2b-256 541106602ab3446fe96519998b79c762cf0921b620e702bd7659a5e8b998d0e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 776c8e959a01e5e8321f1dec77964cb6101020a69d5a94cd3d34db6d555e01f7
MD5 5e7f87d5ee938a7ac278aed9e84c82d3
BLAKE2b-256 0f0d78a64579b054fa3c0e72083912d4410f5514dc0cd03bef5644d4f1e4e6ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d07502cc14ecd64f52b2a74ebbc106893d9a9717120057ea9ea1fd6568a747e7
MD5 03bbe82c4e893be2eea5e35f46046d8e
BLAKE2b-256 db49ec13c0ad70c4843169111265c47dd568437be354aea4ac732dc6f2e79842

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb3d0cc5cdb926090748ea60172fa8a213cec728bd6c54eae18b96040fcd6227
MD5 f1a81b080958fc565f7d02951353b9ff
BLAKE2b-256 e8e5e8114c5b1336357089cacf5a4ff298335429f0a0e75dea3ffefd3d4d82e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e87fd812899aa78252866ae03a048e77bd11b80fb4878ce27c23cade239b42b2
MD5 618b2c5e448ca19dac2f23074855ee8f
BLAKE2b-256 341b6bdebdf702d7f339579e9d3c2e784ca6e5867e247dd7b8690c004431ab57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccf10f16ab498d20e28bc2b5c1306e9c1512f2840f7b6a67000a517a4b37d5ee
MD5 bd95fe01079a98468bc5ad55ea973728
BLAKE2b-256 49578a27b793480887bd23288364138c9db2f58cd3cff28945809aa062d019dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 87a6e922b2b2401e0b0cf6b976b97f11ec7f136bfed445e16384fbf6fd5e8602
MD5 03f5ec38409a5b1c47da5c8bbb6f5f5d
BLAKE2b-256 bf8d925f3c893523118e5dc729d340df2283d68e7adfa77192908ae63f1ec904

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.16-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bbcba75fe879ad6fd2e0d6a8d937f34a571f116a0e4db37df8079e738ea95c71
MD5 06d09757c8e2204a94e4a025b6b74a90
BLAKE2b-256 4b6ea423a6fd07e651f6078da862128031cff2f333e995f5efe30bb110c97041

See more details on using hashes here.

Provenance

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