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

Uploaded Source

Built Distributions

aiohttp-3.11.12-cp313-cp313-win_amd64.whl (436.2 kB view details)

Uploaded CPython 3.13 Windows x86-64

aiohttp-3.11.12-cp313-cp313-win32.whl (410.4 kB view details)

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

aiohttp-3.11.12-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.12-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.12-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.12-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.12-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.12-cp313-cp313-macosx_11_0_arm64.whl (453.1 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

aiohttp-3.11.12-cp313-cp313-macosx_10_13_x86_64.whl (460.8 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

aiohttp-3.11.12-cp313-cp313-macosx_10_13_universal2.whl (698.1 kB view details)

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

aiohttp-3.11.12-cp312-cp312-win_amd64.whl (437.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.11.12-cp312-cp312-win32.whl (411.5 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

aiohttp-3.11.12-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.12-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.12-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.12-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.12-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.12-cp312-cp312-macosx_11_0_arm64.whl (456.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.11.12-cp312-cp312-macosx_10_13_x86_64.whl (464.2 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

aiohttp-3.11.12-cp312-cp312-macosx_10_13_universal2.whl (704.8 kB view details)

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

aiohttp-3.11.12-cp311-cp311-win_amd64.whl (442.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.11.12-cp311-cp311-win32.whl (416.6 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

aiohttp-3.11.12-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.12-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.12-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.12-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.12-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.12-cp311-cp311-macosx_11_0_arm64.whl (455.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.11.12-cp311-cp311-macosx_10_9_x86_64.whl (468.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.11.12-cp311-cp311-macosx_10_9_universal2.whl (708.8 kB view details)

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

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

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.11.12-cp310-cp310-win32.whl (416.8 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.11.12-cp310-cp310-macosx_10_9_x86_64.whl (468.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.11.12-cp310-cp310-macosx_10_9_universal2.whl (708.7 kB view details)

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

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

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.11.12-cp39-cp39-win32.whl (417.1 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.11.12-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.12-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.12-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.12-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.12-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.12-cp39-cp39-macosx_11_0_arm64.whl (456.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.11.12-cp39-cp39-macosx_10_9_x86_64.whl (469.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.11.12-cp39-cp39-macosx_10_9_universal2.whl (709.6 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.12.tar.gz
Algorithm Hash digest
SHA256 7603ca26d75b1b86160ce1bbe2787a0b706e592af5b2504e12caa88a217767b0
MD5 efe78467dfb0b559cb4725554b1fb53a
BLAKE2b-256 374b952d49c73084fb790cb5c6ead50848c8e96b4980ad806cf4d2ad341eaa03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f7914ab70d2ee8ab91c13e5402122edbc77821c66d2758abb53aabe87f013287
MD5 f9f9cb2204a724615d7672fa5275800c
BLAKE2b-256 68fd677def96a75057b0a26446b62f8fbb084435b20a7d270c99539c26573bfd

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.12-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ce1bb21fc7d753b5f8a5d5a4bae99566386b15e716ebdb410154c16c91494d7f
MD5 3aa46cd9df497f1034e7d8164e0f5ec8
BLAKE2b-256 25be0b1fb737268e003198f25c3a68c2135e76e4754bf399a879b27bd508a003

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30f546358dfa0953db92ba620101fefc81574f87b2346556b90b5f3ef16e55ce
MD5 b6c8029d09dce5c7b73df68f22cd65bb
BLAKE2b-256 8e24e9edbcb7d1d93c02e055490348df6f955d675e85a028c33babdcaeda0853

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e4cecdb52aaa9994fbed6b81d4568427b6002f0a91c322697a4bfcc2b2363f5a
MD5 2e9784b8d3bc468d404469293aae9860
BLAKE2b-256 8b38ea6c91d5c767fd45a18151675a07c710ca018b30aa876a9f35b32fa59761

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f6a19bcab7fbd8f8649d6595624856635159a6527861b9cdc3447af288a00c00
MD5 abac1561e2dc381d4c800874f2026c98
BLAKE2b-256 b05e6cd9724a2932f36e2a6b742436a36d64784322cfb3406ca773f903bb9a70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2cee3b117a8d13ab98b38d5b6bdcd040cfb4181068d05ce0c474ec9db5f3c5bb
MD5 4a7d902a538e8e5dff7811cfe3c988bb
BLAKE2b-256 c51daafbcdb1773d0ba7c20793ebeedfaba1f3f7462f6fc251f24983ed738aa7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8a2fb742ef378284a50766e985804bd6adb5adb5aa781100b09befdbfa757b65
MD5 2d3252871bce0427aa00af7543eeb712
BLAKE2b-256 3f50e68a40f267b46a603bab569d48d57f23508801614e05b3369898c5b2910a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7442662afebbf7b4c6d28cb7aab9e9ce3a5df055fc4116cc7228192ad6cb484
MD5 cc911c7721cadbd5ceb8b9f1a4296dfc
BLAKE2b-256 fc72b66c96a106ec7e791e29988c222141dd1219d7793ffb01e72245399e08d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0203433121484b32646a5f5ea93ae86f3d9559d7243f07e8c0eab5ff8e3f70e
MD5 481edd53b1df831954b7068ab103374b
BLAKE2b-256 13c50d3c89bd9e36288f10dc246f42518ce8e1c333f27636ac78df091c86bb4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9bd8695be2c80b665ae3f05cb584093a1e59c35ecb7d794d1edd96e8cc9201d7
MD5 72b14189f636e1782673ca055905c699
BLAKE2b-256 e0a9166fd2d8b2cc64f08104aa614fad30eee506b563154081bf88ce729bc665

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 525410e0790aab036492eeea913858989c4cb070ff373ec3bc322d700bdf47c1
MD5 3b4467cf6f421c2186590a257b9d3b9f
BLAKE2b-256 829baff01d4f9716245a1b2965f02044e4474fadd2bcfe63cf249ca788541886

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5148ca8955affdfeb864aca158ecae11030e952b25b3ae15d4e2b5ba299bad2
MD5 9c64e6a2f0c5226f84caeff81d9564ea
BLAKE2b-256 8bfdb775970a047543bbc1d0f66725ba72acef788028fce215dc959fd15a8200

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 40cd36749a1035c34ba8d8aaf221b91ca3d111532e5ccb5fa8c3703ab1b967ed
MD5 a6fd5f92249111b34e11a250bcb7ce08
BLAKE2b-256 72b2017db2833ef537be284f64ead78725984db8a39276c1a9a07c5c7526e238

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d589264dbba3b16e8951b6f145d1e6b883094075283dafcab4cdd564a9e353a0
MD5 79d15e1b0bb3ce25308e4e4a987513fa
BLAKE2b-256 8ef9de568f8a8ca6b061d157c50272620c53168d6e3eeddae78dbb0f7db981eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4a93d28ed4b4b39e6f46fd240896c29b686b75e39cc6992692e3922ff6982b4c
MD5 361a27b842e2df97784fee8b6a2fc5cf
BLAKE2b-256 915c80d47fe7749fde584d1404a68ade29bcd7e58db8fa11fa38e8d90d77e447

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 413ad794dccb19453e2b97c2375f2ca3cdf34dc50d18cc2693bd5aed7d16f4b9
MD5 08f236638fdd05eb8be71562a04f3b0e
BLAKE2b-256 c39bcea185d4b543ae08ee478373e16653722c19fcda10d2d0646f300ce10791

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 54775858c7f2f214476773ce785a19ee81d1294a6bedc5cc17225355aab74802
MD5 f20274f4da9af3e4c83252e39779b13d
BLAKE2b-256 3d635eca549d34d141bcd9de50d4e59b913f3641559460c739d5e215693cb54a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.12-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0ed49efcd0dc1611378beadbd97beb5d9ca8fe48579fc04a6ed0844072261b6a
MD5 99d2748beba03e62a5af7ee53d1229d0
BLAKE2b-256 3f54186805bcada64ea90ea909311ffedcd74369bfc6e880d39d2473314daa36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9fd9dcf9c91affe71654ef77426f5cf8489305e1c66ed4816f5a21874b094b9
MD5 6ec952b7a1b88666c2e933e86bf34f81
BLAKE2b-256 9fd2ccc190023020e342419b265861877cd8ffb75bec37b7ddd8521dd2c6deb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 68d54234c8d76d8ef74744f9f9fc6324f1508129e23da8883771cdbb5818cbef
MD5 04df5ca22be2212e203fb546622cb032
BLAKE2b-256 5e3918c13c6f658b2ba9cc1e0c6fb2d02f98fd653ad2addcdf938193d51a9c53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a5e69046f83c0d3cb8f0d5bd9b8838271b1bc898e01562a04398e160953e8eb9
MD5 fd6b47f7f501700a386642937be3aa53
BLAKE2b-256 b4fcba1b14d6fdcd38df0b7c04640794b3683e949ea10937c8a58c14d697e93f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c96a43822f1f9f69cc5c3706af33239489a6294be486a0447fb71380070d4d5f
MD5 63c9457cfa97b0c36583f181fac67591
BLAKE2b-256 9360b5905b4d0693f6018b26afa9f2221fefc0dcbd3773fe2dff1a20fb5727f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a4ac6a0f0f6402854adca4e3259a623f5c82ec3f0c049374133bcb243132baf9
MD5 e8d29570d9325c77661eed03bb696a40
BLAKE2b-256 1b257211973fda1f5e833fcfd98ccb7f9ce4fbfc0074e3e70c0157a751d00db8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1987770fb4887560363b0e1a9b75aa303e447433c41284d3af2840a2f226d6e0
MD5 98baf2e9de23b48b5ed24c891bd4245f
BLAKE2b-256 6070cf12d402a94a33abda86dd136eb749b14c8eb9fec1e16adc310e25b20033

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6dfe7f984f28a8ae94ff3a7953cd9678550dbd2a1f9bda5dd9c5ae627744c78e
MD5 bacc8229ded79bdb824c52e920e692af
BLAKE2b-256 17e29f744cee0861af673dc271a3351f59ebd5415928e20080ab85be25641471

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e3552fe98e90fdf5918c04769f338a87fa4f00f3b28830ea9b78b1bdc6140e0d
MD5 165b23550f8d110f3862b00af885d387
BLAKE2b-256 ff24d6fb1f4cede9ccbe98e4def6f3ed1e1efcb658871bbf29f4863ec646bf38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9dec0000d2d8621d8015c293e24589d46fa218637d820894cb7356c77eca3259
MD5 bd411d21ddc7530f2e51f31090363a6b
BLAKE2b-256 90cb77b1445e0a716914e6197b0698b7a3640590da6c692437920c586764d05b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cddb31f8474695cd61fc9455c644fc1606c164b93bff2490390d90464b4655df
MD5 31021fd905e125eccbf7386506b9b95e
BLAKE2b-256 14fb980981807baecb6f54bdd38beb1bd271d9a3a786e19a978871584d026dcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a481a574af914b6e84624412666cbfbe531a05667ca197804ecc19c97b8ab1b0
MD5 3060f4aec0ef5767be9814c9a4182e58
BLAKE2b-256 90c44a1235c1df544223eb57ba553ce03bc706bdd065e53918767f7fa1ff99e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc065a4285307607df3f3686363e7f8bdd0d8ab35f12226362a847731516e42c
MD5 102b8b2c06526133bb9897c155e4ed68
BLAKE2b-256 f248b9949eb645b9bd699153a2ec48751b985e352ab3fed9d98c8115de305508

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8fa1510b96c08aaad49303ab11f8803787c99222288f310a62f493faf883ede1
MD5 5bc4b9078c7591140acbc56bf79024e2
BLAKE2b-256 a9af05c503f1cc8f97621f199ef4b8db65fb88b8bc74a26ab2adb74789507ad3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e392804a38353900c3fd8b7cacbea5132888f7129f8e241915e90b85f00e3250
MD5 02dba512ac95aaa2380ae458bfa0157a
BLAKE2b-256 4dd094346961acb476569fca9a644cc6f9a02f97ef75961a6b8d2b35279b8d1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 246067ba0cf5560cf42e775069c5d80a8989d14a7ded21af529a4e10e3e0f0e6
MD5 e04110ee1e0b5220f6417a775a20ec22
BLAKE2b-256 35974d3c5f562f15830de472eb10a7a222655d750839943e0e6d915ef7e26114

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.12-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e10c440d142fa8b32cfdb194caf60ceeceb3e49807072e0dc3a8887ea80e8c16
MD5 90a0a77ccd8e9fa5a1d483ea463c5325
BLAKE2b-256 409c8ce00afd6f6112ce9a2309dc490fea376ae824708b94b7b5ea9cba979d1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97fe431f2ed646a3b56142fc81d238abcbaff08548d6912acb0b19a0cadc146b
MD5 f9904439884e9cbd0bedab11ca92a0b0
BLAKE2b-256 307d49f3bfdfefd741576157f8f91caa9ff61a6f3d620ca6339268327518221b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 76719dd521c20a58a6c256d058547b3a9595d1d885b830013366e27011ffe804
MD5 518335803cebbc635b3a1cc425dcebfe
BLAKE2b-256 55f8540160787ff3000391de0e5d0d1d33be4c7972f933c21991e2ea105b2d5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8fd12d0f989c6099e7b0f30dc6e0d1e05499f3337461f0b2b0dadea6c64b89df
MD5 bfd8fde7e22f7bff67ffd5c9c8bfe92c
BLAKE2b-256 f8f8453df6dd69256ca8c06c53fc8803c9056e2b0b16509b070f9a3b4bdefd6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 850ff6155371fd802a280f8d369d4e15d69434651b844bde566ce97ee2277420
MD5 2b338541fd7bccb12e6ebe3a83b2d53e
BLAKE2b-256 d3cc6ecb8e343f0902528620b9dbd567028a936d5489bebd7dbb0dd0914f4fdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0450ada317a65383b7cce9576096150fdb97396dcfe559109b403c7242faffef
MD5 10723b355543a9cbe8d15f225e748025
BLAKE2b-256 25df047b1ce88514a1b4915d252513640184b63624e7914e41d846668b8edbda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c0600bcc1adfaaac321422d615939ef300df81e165f6522ad096b73439c0f58
MD5 5e307c1c775ea067d980bd6298616226
BLAKE2b-256 9d83ca425891ebd37bee5d837110f7fddc4d808a7c6c126a7d1b5c3ad72fc6ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8340def6737118f5429a5df4e88f440746b791f8f1c4ce4ad8a595f42c980bd5
MD5 228549eb9f000b951532933376d4f2b5
BLAKE2b-256 cecf28fbb43d4ebc1b4458374a3c7b6db3b556a90e358e9bbcfe6d9339c1e2b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 930ffa1925393381e1e0a9b82137fa7b34c92a019b521cf9f41263976666a0d6
MD5 b563d02eb35b21ddc84a23f0239b8275
BLAKE2b-256 909b9728fe9a3e1b8521198455d027b0b4035522be18f504b24c5d38d59e7278

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b9d45dbb3aaec05cf01525ee1a7ac72de46a8c425cb75c003acd29f76b1ffe94
MD5 1e4ddb88a059e5fd776b8f2c1e2cae77
BLAKE2b-256 25672d5b3aaade1d5d01c3b109aa76e3aa9630531252cda10aa02fb99b0b11a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2de1378f72def7dfb5dbd73d86c19eda0ea7b0a6873910cc37d57e80f10d64e1
MD5 638c2736c1cf0f7bbeb1b9a490729c75
BLAKE2b-256 e7dcc443a6954a56f4a58b5efbfdf23cc6f3f0235e3424faf5a0c56264d5c7bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4016e383f91f2814e48ed61e6bda7d24c4d7f2402c75dd28f7e1027ae44ea204
MD5 50da7454e28e8090fa640c4e6671dc35
BLAKE2b-256 e5d2006c459c11218cabaa7bca401f965c9cc828efbdea7e1615d4644eaf23f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 936d8a4f0f7081327014742cd51d320296b56aa6d324461a13724ab05f4b2933
MD5 74610e93e0bbd9bb2c13ba1ba1352b4e
BLAKE2b-256 a0d62088fb4fd1e3ac2bfb24bc172223babaa7cdbb2784d33c75ec09e66f62f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b34508f1cd928ce915ed09682d11307ba4b37d0708d1f28e5774c07a7674cac9
MD5 b1991494e25a9f9af9eefba6a66e206f
BLAKE2b-256 443e46c656e68cbfc4f3fc7cb5d2ba4da6e91607fe83428208028156688f6201

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 87a2e00bf17da098d90d4145375f1d985a81605267e7f9377ff94e55c5d769eb
MD5 26bd9a3130da6c07ec70114db173d1ca
BLAKE2b-256 9c3835311e70196b6a63cfa033a7f741f800aa8a93f57442991cbe51da2394e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7fe3d65279bfbee8de0fb4f8c17fc4e893eed2dba21b2f680e930cc2b09075c5
MD5 742d3f14c9f7cbcaa03fec9f16c2d048
BLAKE2b-256 51695221c8006acb7bb10d9e8e2238fb216571bddc2e00a8d95bcfbe2f579c57

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.12-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b8d3bb96c147b39c02d3db086899679f31958c5d81c494ef0fc9ef5bb1359b3d
MD5 c888c71b5d647efec2c0c475cc6af472
BLAKE2b-256 90c44a24291f22f111a854dfdb54dc94d4e0a5229ccbb7bc7f0bed972aa50410

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 526c900397f3bbc2db9cb360ce9c35134c908961cdd0ac25b1ae6ffcaa2507ff
MD5 9319ea57e80baf5a90831b2c2d895311
BLAKE2b-256 3662adf5a331a7bda475cc326dde393fa2bc5849060b1b37ac3d1bee1953f2cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ea756b5a7bac046d202a9a3889b9a92219f885481d78cd318db85b15cc0b7bcf
MD5 015522d4f9b169219d168abb9e35462c
BLAKE2b-256 aa9baf3b323b20df3318ed20d701d8242e523d59c842ca93f23134b05c9d5054

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2c311e2f63e42c1bf86361d11e2c4a59f25d9e7aabdbdf53dc38b885c5435cdb
MD5 4061d045bace84eb310905000d9469b5
BLAKE2b-256 301259986547de8306e06c7b30e547ccda02d29636e152366caba2dd8627bfe1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 145a73850926018ec1681e734cedcf2716d6a8697d90da11284043b745c286d5
MD5 711acfabe6fcc37fea7731ac0c586acf
BLAKE2b-256 f143112189cf6b3c482ecdd6819b420eaa0c2033426f28d741bb7f19db5dd2bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7e44eba534381dd2687be50cbd5f2daded21575242ecfdaf86bbeecbc38dae8e
MD5 7b7533e509aefaa1a43b0410803b962a
BLAKE2b-256 ae56fbd4ea019303f4877f0e0b8c9de92e9db24338e7545570d3f275f3c74c53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1c031a7572f62f66f1257db37ddab4cb98bfaf9b9434a3b4840bf3560f5e788
MD5 45719d61b148c215ef746ad92ecefca7
BLAKE2b-256 cf5e48847fad1b014ef92ef18ea1339a3b58eb81d3bc717b94c3627f5d2a42c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b5263dcede17b6b0c41ef0c3ccce847d82a7da98709e75cf7efde3e9e3b5cae
MD5 451ff7d27d0392c349b97cf1cb044f1e
BLAKE2b-256 f6790e25542bbe3c2bfd7a12c7a49c7bce73b09a836f65079e4b77bc2bafc89e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b10a47e5390c4b30a0d58ee12581003be52eedd506862ab7f97da7a66805befb
MD5 f8252f02f7741ae383b8220e68b9b1ca
BLAKE2b-256 711f42424462b7a09da362e1711090db9f8d68a37a33f0aab51307335517c599

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 88d385b8e7f3a870146bf5ea31786ef7463e99eb59e31db56e2315535d811f55
MD5 067cca574746658e041ebdeb54afd579
BLAKE2b-256 bd1ecee6b51fcb3b1c4185a7dc62b3113bc136fae07f39386c88c90b7f79f199

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 392432a2dde22b86f70dd4a0e9671a349446c93965f261dbaecfaf28813e5c42
MD5 774e0af09e1bbe1c65bab4c87cd3191f
BLAKE2b-256 fd6806298c57ef8f534065930b805e6dbd83613f0534447922782fb9920fce28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 50c5c7b8aa5443304c55c262c5693b108c35a3b61ef961f1e782dd52a2f559c7
MD5 ef93f5cad4fc2a9d8247cb0a8a0e7505
BLAKE2b-256 d11393ae26b75e23f7d3a613872e472fae836ca100dc5bde5936ebc93ada8890

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 584096938a001378484aa4ee54e05dc79c7b9dd933e271c744a97b3b6f644957
MD5 4bdedb02f479d120937c8a5771535073
BLAKE2b-256 4ff49074011f0d1335b161c953fb32545b6667cf24465e1932b9767874995c7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 84ede78acde96ca57f6cf8ccb8a13fbaf569f6011b9a52f870c662d4dc8cd854
MD5 8009bbce296b11d59c15656b7e3ac027
BLAKE2b-256 d88c04869803bed108b25afad75f94c651b287851843caacbec6677d8f2d572b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 aa8a8caca81c0a3e765f19c6953416c58e2f4cc1b84829af01dd1c771bb2f91f
MD5 f186323a0922b3ffefc47e7ee37258eb
BLAKE2b-256 65423880e133590820aa7bc6d068eb7d8e0ad9fdce9b4663f92b821d3f6b5601

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.12-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.8

File hashes

Hashes for aiohttp-3.11.12-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 74bd573dde27e58c760d9ca8615c41a57e719bff315c9adb6f2a4281a28e8798
MD5 3a872ba4c81df83b1cee0d61260e78a0
BLAKE2b-256 e0fa6cfc042c0f59d1fa6eaeeb678b9f13b2c0bf1d7803dae81b93ca55ac6288

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.12-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0d5176f310a7fe6f65608213cc74f4228e4f4ce9fd10bcb2bb6da8fc66991462
MD5 3f664b033094e2e7b6a48005c81ce11e
BLAKE2b-256 a359ef91da9971e187033476945cd18bebc3974930bde81cdf66099b318df7a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab3247d58b393bda5b1c8f31c9edece7162fc13265334217785518dd770792b8
MD5 2197af90515a0b4d820b34d4c96838f6
BLAKE2b-256 d27325fb4d2d259caf4cf23035204315665976a66292a1055d0937c62273675a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f752e80606b132140883bb262a457c475d219d7163d996dc9072434ffb0784c4
MD5 b2d7fe56e5e239b48a50b67969f1db70
BLAKE2b-256 b03187e869650c5532876e83c7c7d9d3f5505c5a738abe991f3ac2264070ee81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e6b2732ef3bafc759f653a98881b5b9cdef0716d98f013d376ee8dfd7285abf1
MD5 335b72ea7cc570a3585c57ec976b64e8
BLAKE2b-256 60dba2cfb5565f5e5870757e2d3099f8e24640e746ff2ba9ea899b35b6acad3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bf4480a5438f80e0f1539e15a7eb8b5f97a26fe087e9828e2c0ec2be119a9f72
MD5 a1aaaab70e0853d09a9153d5e21a03a0
BLAKE2b-256 fd0e72144954bae5d80a8857dca18b8ed8e2ef76acf557465545ad5b5b9bfb58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4ee84c2a22a809c4f868153b178fe59e71423e1f3d6a8cd416134bb231fbf6d3
MD5 9de8c1f06a176bb0e85e13a5b0788497
BLAKE2b-256 144822527fadfdfca85fb585870ffd98aece982606775fd2f4ee80270f5c85a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 edb69b9589324bdc40961cdf0657815df674f1743a8d5ad9ab56a99e4833cfdd
MD5 d1c5da3a838a08011057712d9ae9b118
BLAKE2b-256 4a40769d221f4067a05974b3352ffa228041bcda72c487689ab4030791691861

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a478aa11b328983c4444dacb947d4513cb371cd323f3845e53caeda6be5589d5
MD5 0680c41d2a73956c29988cbf27bf9b57
BLAKE2b-256 90088c409ab4040276a8c9944d5e444121a2f34151872440b3c69f31c35edf18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8dc0fba9a74b471c45ca1a3cb6e6913ebfae416678d90529d188886278e7f3f6
MD5 189d9dae2892c3bbad314fe6264e1f72
BLAKE2b-256 e15cb316b559dde4ae983e725132a2fa2518532ad56ca4698d4b71f42af48722

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 34245498eeb9ae54c687a07ad7f160053911b5745e186afe2d0c0f2898a1ab8a
MD5 d277e6728a4f9272efc81715010bbe3a
BLAKE2b-256 3178ab78f36b44c7239c953afd9bb331edf2b3977925de2ce98545d62e415565

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9060addfa4ff753b09392efe41e6af06ea5dd257829199747b9f15bfad819460
MD5 37b622251558b6ca363ace04bc758faf
BLAKE2b-256 ba6ba1fe710860b10d83799af8c63cf2ffb63eac4edaa42d76e9540679545951

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c160a04283c8c6f55b5bf6d4cad59bb9c5b9c9cd08903841b25f1f7109ef1259
MD5 f2da5656fb3fbec9e499c9b781c39f3a
BLAKE2b-256 e02553b4ceffaac5dcaf4772be41f4f06e7201be5407aa743758e1a37f7d1b63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6130459189e61baac5a88c10019b21e1f0c6d00ebc770e9ce269475650ff7f73
MD5 6e991bdc71d965d9b90a7961fc8467b9
BLAKE2b-256 c0fa585b66076795911800f8f16f0f93ea8fb9bfa5d8fd757bbf78f32d17c2d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 67453e603cea8e85ed566b2700efa1f6916aefbc0c9fcb2e86aaffc08ec38e78
MD5 20f7be36fbf87be088708bdaf3d46ab1
BLAKE2b-256 9f879e4700a56722c139b6ed4ad9be926183545a1b55e82babd9b082be3ef4c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.12-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7c3623053b85b4296cd3925eeb725e386644fd5bc67250b3bb08b0f144803e7b
MD5 120ea335277d6b243f191aa9eae28d67
BLAKE2b-256 a7bd358c7032c43d4875dcbedc9113b087ef8bc619bee034f9423335698631e3

See more details on using hashes here.

Provenance

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