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

Uploaded Source

Built Distributions

aiohttp-3.12.4-cp313-cp313-win_amd64.whl (439.4 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.12.4-cp313-cp313-win32.whl (413.5 kB view details)

Uploaded CPython 3.13Windows x86

aiohttp-3.12.4-cp313-cp313-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiohttp-3.12.4-cp313-cp313-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aiohttp-3.12.4-cp313-cp313-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.12.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

aiohttp-3.12.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

aiohttp-3.12.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

aiohttp-3.12.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

aiohttp-3.12.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

aiohttp-3.12.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

aiohttp-3.12.4-cp313-cp313-macosx_11_0_arm64.whl (457.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.12.4-cp313-cp313-macosx_10_13_x86_64.whl (465.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.12.4-cp313-cp313-macosx_10_13_universal2.whl (687.7 kB view details)

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

aiohttp-3.12.4-cp312-cp312-win_amd64.whl (440.5 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.12.4-cp312-cp312-win32.whl (414.4 kB view details)

Uploaded CPython 3.12Windows x86

aiohttp-3.12.4-cp312-cp312-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiohttp-3.12.4-cp312-cp312-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aiohttp-3.12.4-cp312-cp312-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.12.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

aiohttp-3.12.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

aiohttp-3.12.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

aiohttp-3.12.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

aiohttp-3.12.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

aiohttp-3.12.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

aiohttp-3.12.4-cp312-cp312-macosx_11_0_arm64.whl (460.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.12.4-cp312-cp312-macosx_10_13_x86_64.whl (467.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.12.4-cp312-cp312-macosx_10_13_universal2.whl (693.3 kB view details)

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

aiohttp-3.12.4-cp311-cp311-win_amd64.whl (444.1 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.12.4-cp311-cp311-win32.whl (419.7 kB view details)

Uploaded CPython 3.11Windows x86

aiohttp-3.12.4-cp311-cp311-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiohttp-3.12.4-cp311-cp311-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

aiohttp-3.12.4-cp311-cp311-musllinux_1_2_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.12.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

aiohttp-3.12.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

aiohttp-3.12.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

aiohttp-3.12.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

aiohttp-3.12.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

aiohttp-3.12.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

aiohttp-3.12.4-cp311-cp311-macosx_11_0_arm64.whl (462.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.12.4-cp311-cp311-macosx_10_9_x86_64.whl (474.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.12.4-cp311-cp311-macosx_10_9_universal2.whl (702.2 kB view details)

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

aiohttp-3.12.4-cp310-cp310-win_amd64.whl (443.4 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.12.4-cp310-cp310-win32.whl (420.2 kB view details)

Uploaded CPython 3.10Windows x86

aiohttp-3.12.4-cp310-cp310-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiohttp-3.12.4-cp310-cp310-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

aiohttp-3.12.4-cp310-cp310-musllinux_1_2_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

aiohttp-3.12.4-cp310-cp310-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

aiohttp-3.12.4-cp310-cp310-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.12.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

aiohttp-3.12.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

aiohttp-3.12.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

aiohttp-3.12.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

aiohttp-3.12.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

aiohttp-3.12.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

aiohttp-3.12.4-cp310-cp310-macosx_11_0_arm64.whl (459.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.12.4-cp310-cp310-macosx_10_9_x86_64.whl (471.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.12.4-cp310-cp310-macosx_10_9_universal2.whl (694.9 kB view details)

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

aiohttp-3.12.4-cp39-cp39-win_amd64.whl (444.3 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.12.4-cp39-cp39-win32.whl (421.0 kB view details)

Uploaded CPython 3.9Windows x86

aiohttp-3.12.4-cp39-cp39-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiohttp-3.12.4-cp39-cp39-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

aiohttp-3.12.4-cp39-cp39-musllinux_1_2_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

aiohttp-3.12.4-cp39-cp39-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

aiohttp-3.12.4-cp39-cp39-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiohttp-3.12.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

aiohttp-3.12.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

aiohttp-3.12.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

aiohttp-3.12.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

aiohttp-3.12.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

aiohttp-3.12.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

aiohttp-3.12.4-cp39-cp39-macosx_11_0_arm64.whl (460.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.12.4-cp39-cp39-macosx_10_9_x86_64.whl (472.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.12.4-cp39-cp39-macosx_10_9_universal2.whl (697.8 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.4.tar.gz
Algorithm Hash digest
SHA256 d8229b412121160740f5745583c786f3f494d2416fe5f76aabd815da6ab6b193
MD5 ddeb11fbeba209e3077fa26aa5394be7
BLAKE2b-256 577792b356837fad83cc5709afc0b6e21dce65a413293fed15e6999bafdf36b0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4c78018c4e8118efac767d5d91c3565919c7e021762c4644198ec5b8d426a071
MD5 c034128b9b8efbc0f3544926cd26dc20
BLAKE2b-256 6531e252246332a12abf17f66c8f8360730a5a3a1dd354ca48ccfb90bbb122db

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 413.5 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.12.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 834a2f08eb800af07066af9f26eda4c2d6f7fe0737a3c0aef448f1ba8132fed9
MD5 5ee1958510f7ac47dd89e0ab9d90066e
BLAKE2b-256 ee7cc1a5e7704fef91f115bd399e47b9613cf11c8caec041a326e966f190c994

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c20421e165410bb632f64c5693b1f69e6911dbde197fa0dcd3a0c65d505f776b
MD5 a893e42a984eeb72e982987eb57f1b56
BLAKE2b-256 61f958b3ce002d1b0b3630ccd02ecbfc6932d00242eb40182e76a65ddbf6ec26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e10365dcf61a7c5ed9287c4e20edc0d7a6cc09faf042d7dc570f16ed3291c680
MD5 4f0a2a273eab10fc643d2d95c26a1a25
BLAKE2b-256 e5b0266567f3c5232e211f1c9bea121a05d115a3f7761c7029ff4ee4f88e6fba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c9e3db6a3c3e53e48b3324eb40e7c5da2a4c78cdcd3ac4e7d7945876dd421de1
MD5 4b9c8390572d3174ab813886523fb196
BLAKE2b-256 83b49cf887a3d2cf58828ac6a076d240171d6196dcf7d1edafcb005103f457fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf12c660159897cebdd3ab377550b3563218286f33a57f56753018b1897796ae
MD5 ace9d7aae4da7d3098f38018cfc18980
BLAKE2b-256 15d60d9916e03cebd697b3c4fc48998733188e8b834368e727b46650a3a1b005

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 002e027d4840cb187e5ba6889043e1e90ed114ef8e798133d51db834696a6de2
MD5 04c445e157e546fd5b5a31739725dc0d
BLAKE2b-256 d6042ff57af92f76b0973652710bf9a539d66eb78b4cddace90fc39a5b04bdd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cbcde696c4d4d07b616e10f942e183f90a86ff65e27a03c338067deb1204b148
MD5 a949f2afecbd6dd3f1de7f3eabd5aff9
BLAKE2b-256 74cb87eaf79aa41a6bc99c3dd1219caf190f282b5742647bf3abb7b66b7eb221

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1102668bf8c4b744528ef0b5bdaeeb17930832653d1ed9558ab59a0fae91dcf9
MD5 569ce8f00a3907197e2b38aa55cf22a2
BLAKE2b-256 b35e36e5957a073dddb69ed37e5ffa8581548d5d7b9d00daa4ba98fff6c85219

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 58dded319d52e63ea3c40dbae3f44c1264fa4bb692845b7ff8ce1ddc9319fce3
MD5 1d2275bc66cfa0fef65305252c927c69
BLAKE2b-256 8aac75ef05d10aae033d9bc87d0eea35d904e505c0a7a5d7c7838d1d8b63e954

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e42986c6fc949926bcf0928b5440e6adf20b9a14c04dd9ea5e3ba9c7bbd4433a
MD5 73cf62b88a133bf26273535333dd4b2e
BLAKE2b-256 afeb75c9863328a9f1f7200ebadf0fefec3a50a2f31e9ccf489faf9c132b87ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.4-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.12.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b3f9d7c7486f28cc0fd6bfe5b9accc4ecfe3d4f0471ec53e08aa610e5642dbf3
MD5 0e56c2921a2ff192a33710e5d8ba3cec
BLAKE2b-256 71021670b62c82d6e19c77df235b96a56ec055eb40d63b6feff93146544d0224

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_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.12.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a9b8b482be5c81ceee91fecead2c82b7bec7cfb8b81c0389d6fa4cd82f3bb53
MD5 d80f7d44d191b82068fa960b4635fed8
BLAKE2b-256 bc1afdf6ade28154d249b605a6e85f7eb424363618ebcb35f93a7f837fd1f9c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e46c5ad27747416ef0a914da2ad175d9066d8d011960f7b66c9b4f02ef7acfcc
MD5 36722a022232c758acd6097e8295c458
BLAKE2b-256 4e9816c3dc7c2534d5109f02da5c88e34e327d8ceddb9b976b4861d787461a59

See more details on using hashes here.

Provenance

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

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

Attestations: 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.12.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca6af3e929de2c2d3272680437ee5b1e32fa4ac1fb9dfdcc06f5441542d06110
MD5 deb895ace8dcfc0dc35ec505122ae8d8
BLAKE2b-256 d0d5c390226c7f0a2a0e4a7477fb293d311157092231fdb7ab79eb8ad325b3b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8eb37972e6aebe4cab53b0008c4ca7cd412f3f01872f255763ac4bb0ce253d83
MD5 b361fe6f519f44bd1da04f61496bf787
BLAKE2b-256 3b8bc36084efb762c8b388e35b564c5c87d287e4d24a77422f7570e36f8195f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 789e9ddd591a3161a4e222942e10036d3fb4477464d9a454be2613966b0bce6b
MD5 5a266a30fd389ab1840aa640c6f4a716
BLAKE2b-256 b3c5acc9a65cd92b263050dcc2986e2aee598fc6f3e0b251c9ce7138bf9f387c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1e29de2afbe9c777ff8c58900e19654bf435069535a3a182a50256c8cd3eea17
MD5 666e3f90478afa96768f4e95d9b2d58b
BLAKE2b-256 700cc11464953fff9c005e700e060b98436960d85bb60104af868bf5ebec6ace

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 414.4 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.12.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 73cf6ed61849769dce058a6945d7c63da0798e409494c9ca3fddf5b526f7aee4
MD5 a75565ee83e96d72942f0cc7158a1885
BLAKE2b-256 a9871b5466145a55ebf6145eea5e58e5311653946e518e6e04d971acbae81b09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a81e4ebbc8d9fb6748046577525ada0c5292606ced068ec9ab3aa6d653bf5d9
MD5 a0ba532d710befc72bf26d6d032c1db6
BLAKE2b-256 d2273d0fc578531820d166e51024e86b8d35feaa828aa961909396f7cce7a191

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0834ec8491451780a2a05b0f3a83675911bb0804273ceafcd282bff2548ed962
MD5 0103d761f68561272b0ba18db5493138
BLAKE2b-256 94832987339271a4d8915370614d0bd6b26b7e50d905adf7398636a278ca059a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 41c064200045c344850688b4d7723ebf163b92bfc7c216c29a938d1051385c1c
MD5 afca691cde663400b0923c89a64dc997
BLAKE2b-256 424f7e4d1c52f6e15c59e2f3154d9431a029aab558735e94fec85602207fee8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 158495f1d1858c07cc691624ccc92498410edfa57900452948f7eb6bc1be4c39
MD5 d54d7e109f0bf40a941f442f715cb49a
BLAKE2b-256 bbd9b7a37bed158bd4aced1585b89082a8642e516f5b08637d7d15971f61ba31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ededddd6fcc8f4403135609d7fb4bc1c1300464ff8fd57fb097b08cc136f18ea
MD5 007d35e5819d04d7500b40076a1ef18a
BLAKE2b-256 457bfdb43d32ac2819e181e1339aae1bc7acb87e47452af64409181a2bce2426

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6586aaccf46bc5ae05598fcd09a26fbc9186284eb2551d3262f31a8ec79a463
MD5 ecad0042436d5ce033d8844a03e4c5cd
BLAKE2b-256 b2e93c98778dbda7cb4c94ddada97cb9ea6d7d5140b487a0444817f8b6a94697

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4c2de2077ee70b93015b4a74493964d891e730d238371c8d4b70413be36b0cf
MD5 4afddfc361438f306632b3a0c6273f7f
BLAKE2b-256 2b4933fd3f82ff187b6d982633962afad24bb459ee1cd357399b7545c8e6ed98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2de98a1fa249d35f05a6a7525e5823260e8b0c252d72c9cf39d0f945c38da0c7
MD5 7222dd14d5f6cc7a0df2f0d90409dc46
BLAKE2b-256 901d5016430fa2ed0d58ca6d6b0f4a1f929c353f72996c95ec33882cd18ed867

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ac155f380e100825fe2ae59b5d4e297fea98d90f5b7df5b27a9096992d8672dd
MD5 86b3dcfdb246c1a22839e8da03a5f1e5
BLAKE2b-256 d5e25682bfb2583b55f23d785084bf2237339ebebe73cc0734fa8848d33a270c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.4-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.12.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 db28a058b837c2a8cbebd0fae78299a41691694e536bb2ad77377bd4978b8372
MD5 054fd08b9b6fad9a7398261b633aa636
BLAKE2b-256 cc79a91f52b0d4e4462ebf37b176164d0f26b065f80f7db1dfe9b44fd9e8f8ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_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.12.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f5bf2015822cf7177957b8573a5997c3a00b93cd2f40aa8f5155649014563bd8
MD5 8182b4b46b7a2e9c4c3be9d1332d29c0
BLAKE2b-256 f84f6ea71dd61725bdaa9437f1a9f032781c5d869046651ad43a93d769855298

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 058199018d700883c86c473814fb0ecabb4e3ae39bafcbc77ed2c94199e5affb
MD5 ef71926cbb7b19cd85b070f57f02727a
BLAKE2b-256 d511e895cb33fca34cec9aa375615ba0d4810a3be601962066444b07a90bc306

See more details on using hashes here.

Provenance

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

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

Attestations: 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.12.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fe52157c5e160eac99bb3589c2f29186d233fc83f6f42315c828f7e115f87f5
MD5 2a7f395fdfe0293fa7e9df9517224e05
BLAKE2b-256 0dfc17093fe2d7e4287218fb99b18a6106b0e1fad8a95f974066f8b5fefb0fbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bb046723c90db9ecba67549ab5614707168ba7424742cfab40c198d8d75176e4
MD5 19ad4b3afae57b41e1393c22f81f0c0c
BLAKE2b-256 82a121eddeee169306c974095183c8820a807c3f05dbefcd6b674a52d18e4090

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 7947933c67eb33f51076cabf99f9977260329759d66c4d779c6b8e35c71a96bf
MD5 6dd62d2801d38a80ef5102fd5e24a126
BLAKE2b-256 6c9a767c8f6520d0ad023d6b975f8fda71b506f64ad597bb7bd16fa5ac1562ca

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 44f1cb869916ba52b7876243b6bb7841430846b66b61933b8e96cfaf44515b78
MD5 d99223f2ee2451292a154f25fc9a03bc
BLAKE2b-256 6aa997e318bfb3fc7a0cffc9dee9f0ec77db5339207887f5f4ebe1a11ecd5f32

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 419.7 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.12.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4bc000b0eee7c4b8fdc13349ab106c4ff15e6f6c1afffb04a8f5af96f1b89af3
MD5 9b61b8440c98967d0c81b0f7a85182f1
BLAKE2b-256 7b558f5faa6e13c51609430081b42c39eb12006c9fb9111eeaedca0f3f574d3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 567db7411a004acd82be2499c10a22e06d4acb51929ce353a62f02f61d005e1c
MD5 a8a7890e7f5ecde79d00c336655519a0
BLAKE2b-256 b7090500ae6b1174abc74ab1a7a36033ecffc11e46e47a23487d75fa00d04b46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9f5065674d38b4a738f38b344429e3688fdcccc9d2d5ec50ca03af5dbf91307e
MD5 32dae4ddb6c89bbeefd1ed0c21e3ea2a
BLAKE2b-256 8312b6b7b9c2d08c5346473878575195468a585041daa816ffbd97156c960ed0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5d74f5fadbab802c598b440b4aecfeadc99194535d87db5764b732a52a0527fb
MD5 56d0f8660df238156c76f7c585c9bd8c
BLAKE2b-256 35859e1f9c7f0b0f70dfae55932c1f080230f885f84137132efc639e98611347

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b853c7f7664742d48c57f382ebae5c76efa7f323569c6d93866795092485deec
MD5 e72ae7c8c99930dd805ab4e5b69f9711
BLAKE2b-256 e9db809ac0c7fa7ddfad33ab888fe3c83aecbfc7f03e44f387a70c20a0a096b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d563387ae8966b6668162698a66495c5d72ce864405a7dfc6cc9c4bc851a63ce
MD5 462eda34083a1f69049d4ee72969e4e9
BLAKE2b-256 da5cd889d8edca8cdb6bb0ff9cfa58b3977320186050c8cfe2f4ceeee149b498

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41a6ea58ed974e67d75b39536997d81288a04844d8162194d3947cbff52b093d
MD5 223611d511a030b28ba86916322c1a02
BLAKE2b-256 94d306c8ba3afb270afa44ffb6cf3fb0a44502be347f0fc7fdce290a60760197

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03a2ca7b7e9436ae933d89d41f21ef535f21dcdc883820544102ddda63b595c2
MD5 97ac4827d04eacc71140292057b1ff60
BLAKE2b-256 bb9de315bdfc2e8ba0382699e686330b588f135189c51df79689e6a843513eb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 94650ff81e7370ceb79272914be8250558d595864cb0cc3e9c6932a16738e33b
MD5 f8f9e648df662198ca2a53f485482c17
BLAKE2b-256 6c98a43da221916db0b9567914e41de5a7e008904b9301540614feab2a03ee45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a286d40eb51d2908130b4e64ca8ae1a1fdf20657ef564eea2556255d52e2147b
MD5 3db418d8f99a3be05b942b9e24e1f7ed
BLAKE2b-256 1bb9e043c06325300644fed7685f904323ecf937adc99971ac229ab97b0769d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.4-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.12.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1972bac2ee5dc283ccee3d58501bba08599d58dad6dbbbf58da566dc1a3ac039
MD5 f9a7fafffa1cd34374cb7fc02216ce9c
BLAKE2b-256 d0bddf557ee83c3e36945499317b9f51dab642c17c779c939fe2df4c0307b85e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_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.12.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4299504448f37ea9803e6ec99295d7a84a66e674300daa51ca69cace8b7ae31a
MD5 4a57eaccce71dd4eed2070f91737eff2
BLAKE2b-256 7cc3846872117cc6db1db1b86d20119a3132b8519144d5e710c2e066d07cac86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea47b02ec80408bed4d59b3b824b44514173e4ebd0bc04a901ffd12084142451
MD5 2370268b1e1921d87b640c193816d3e4
BLAKE2b-256 c1a48250493ab4e540df5a3672e5d01c28ca71fd31b4a9afc217c9678ca350e3

See more details on using hashes here.

Provenance

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

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

Attestations: 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.12.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d54362f38f532869553a38328931f5f150f0f4fdbee8e122da447663a86552c5
MD5 3ad86f114a3001cc2386ef0f7d88a3da
BLAKE2b-256 526bbf1ff91cb6eda30964c29a7fbe2a294db00724ceab344696eeebfe4c9ccf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1188186a118a6793b1e510399f5deb2dcab9643af05fd5217f7f5b067b863671
MD5 14d4fa5efa4f0e3b6a22ced29cc653fd
BLAKE2b-256 651dcc50b39ca7a24c28e5e79ec7c5a3682c84af76d814f2e1284e1aa473122c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6cfe7a78ed06047420f7709b9ae438431ea2dc50a9c00960a4b996736f1a70a3
MD5 859087d1747f7de9bc3c33774352b350
BLAKE2b-256 e95ebd16acce20e07e01d7db8f9a5102714f90928f87ec9cb248db642893ebdf

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cae4c77621077a74db3874420b0d2a76bf98ef4c340767752fc7b0766d97cdb4
MD5 bb12efdc7d1f323ab24c147e700b7a9d
BLAKE2b-256 7097335c4a7180aec0c9deae862d4d866b978f1bd2179ba8889f480afeb88449

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 420.2 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.12.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 05c89a13a371dcb938fbffa4b7226df9058d9f73c051b56b68acb499383d0221
MD5 1d30e954e70d87e714a65963cb070a8c
BLAKE2b-256 71a739beaba9905d653972e4fd3bd6775d62458bc2d0ceed3099d47a35844547

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d22596530780156f3292022ee380c21e37c8f9402b38cc456bcdc17e915632d9
MD5 86286f7afe54f02fa222f437d16becc8
BLAKE2b-256 87da3d7ff2cf8594916e98f4fd13771a33d700f038f330f56d21cbca7e37e54e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 68d39e3c8a7368cd2ab0b70ebbd80a2de6860079270f550ded37b597b815a9da
MD5 1bbcc205513bd7adfe23b3554c8d6199
BLAKE2b-256 c152fcd1b59668627e108c6f7195ebfb30ff342ea5ff3d2616005092e4230c0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ee88d58b60ad65c755a11452bf630114f72725f13cd5acb00b183fbbb53bb3ef
MD5 cf16b723286ec183d646a27eb23450e5
BLAKE2b-256 29eba7f4ddd80a934df8dd1e96fbaaaec37c7d314d563660b3df5a2de7f8f65c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 adff2f5a4aa7e11751b439d0de091f7cb74a3567cae97f91a9e371005e50792f
MD5 08e0679518c8555f0adbce8cf1407612
BLAKE2b-256 682e4399734a6d8a194f88ce40f678abee7b9b32adf68c2a9a2977d1e93a433c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2ce301584f6e90bbb5f19b54a99797511c135f980b083e21d688c3927f9f03a8
MD5 96aa728e50c50ec1bdc6c52fc4f9d502
BLAKE2b-256 797a879405d4bb962c6860ecebb4e34e99387a24712511e75a3142e17b35d7ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f4e7b557b41eccc0e5f792bc55f6eed9f669dfd9220babefbf0bddad17980c48
MD5 1696c688183c339bce15b9d6e60d79c8
BLAKE2b-256 bcc8e301552530c43fc0821ba7f00fcbf879180d943d228c5d578dd2ea9c1d3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b6d4caaba6b1658b1f3cf17348d76b313376cccd5a5892e471e24fefdf5ed59
MD5 dd46456530d70edba8312da7b488374d
BLAKE2b-256 083613c2b7329e9049acc8d5bb7c237a55622b01148a7727ecb69b050b127f24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 29cfeb097a025efee3ea6eeb7ce2f75ea90008abac508a37775530c4e71a2d17
MD5 29db7985bd180642f3e2d7ebf2ab7959
BLAKE2b-256 0ca9c65aa446dbe281c4b557c30899dd3e4716333f0328d63e65c5e66d6aa206

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4e4354d75d2b3988b50ca366974a448d2ee636085fb3091ce2361f9aad7c0bb7
MD5 8b09fde61103a8ed9366fc4dbec1c3be
BLAKE2b-256 c95d59c810044cbffe70be8b49e8b92fc45949484d9027a4aa200921f972e319

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.4-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.12.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 92cb0f7857fe12d029ee5078d243c59b242f6dfb190a6d46238e375c69bcb797
MD5 775b13fca2890d81dace5101ca6737c6
BLAKE2b-256 86b2894b266ec21d7c18f9ca581ca52c4464c791cf6533e04664728f501ad56c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_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.12.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 520bb505f13ad3397e28d03e52d7bbbbb196f5bab49276bb264b3ce6f0fb57c0
MD5 61aa19a6a54f4fb5a840b46422fa06e7
BLAKE2b-256 db0db25a6a3b3c0fee6fe9471c027239341b81a9ad8f9b0d527e3586f0d76d97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d5750aa8a26d27280ca7db81d426a0b7e7bbb36280f0ad4bfaf0a0ee8a0d4ec0
MD5 edbb5908455efec3fde456e26d3fdf8a
BLAKE2b-256 53f5b7c4734b783ac5111d748e6057959bb2169ce9b65e225846ad4bb27b3b9c

See more details on using hashes here.

Provenance

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

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

Attestations: 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.12.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18dead0d68a236a475fb6464f6fcc5330fc5e9ee4156c5846780a88f8b739d18
MD5 cabeac03148390933b9130ebd1cfe762
BLAKE2b-256 8c15a43fb3198aa8d6fe7b864057133699be5d42caa670af9f0288341bd7af30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1d3af7a8905c87b585f534e5e33e5ecf1a8264c3531f7436329c11b2e952788a
MD5 9a65f6a0d280bc1494c8f8929f804758
BLAKE2b-256 f162a5023b2a2c6a3e9fac4c268a5c7c6fdc6e6e969580d2f11804dea2928140

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 437b9255b470e9dbeb1475b333297ff35c2ef2d5e60735238b0967572936bafa
MD5 fb44ecd366605277513236faeeda78db
BLAKE2b-256 c13b07a1e596f7abd46f1482f056fe28933e66c98ad9ad695c9f31d9f2b37b22

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 444.3 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.12.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 592086c0ed4fc071fecf097c54acebfac725376a0bdbbd1be31f1cc23cbf84c5
MD5 b58c2c3ff332d311f8f4e19abc5449b2
BLAKE2b-256 a38b8d1ca815a0725b66dfc094796c660281ec91ca31e37c788311ecba9bb128

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 421.0 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.12.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b3547d8388bc4a8d890e432d0a7a9943f3bb1ee3a0083447323efe5f0646d83a
MD5 119b5d3c3351c610217c4fc237d12e78
BLAKE2b-256 0970b8f928f2a2692527b1d8c81ff7521a8d6d42ab25bfa24de6750110a59f2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f9181653d3761ba949696df027d488d5267df50fe88a8960b0c4bb82ab39741
MD5 f0ad6a8d71d0c1f5e10731624d84fe39
BLAKE2b-256 7975af3269a294c7b9cf0f423f9a131823512a6124157d30affddf37ecdb45e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4e1083608e3ca5d8798ad5b54a85c40074d4453deb454d574e42f6f694b3fb55
MD5 bb935fe4a9c6745c35fe8110f32a351f
BLAKE2b-256 c6b12d298d1f09eb94ce3d574e3a52aedaa8f45248ac9143f57bba7dab1d901f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8917cda033994515b82f676484a2245cccecc7010afeb77c45401862f0957cbf
MD5 8215aa7409a2bf12ef4f2f4e1706d469
BLAKE2b-256 d108d789e51371fdf8ce85d1be601e12371b46571c50e71c185a83f9d33e9b72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 df4c6a6d2a9807acead6355dbe99f038785dafd0f183d824f40531fce1ad9cb7
MD5 b86e1e7b2585f6a8b0d6c64d31d39709
BLAKE2b-256 f570c012909236f212ace2a1f11baa041b66ce41d404c238e3bbce9c6416c13f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 40aa98c42a104a8863d78e26442d8db29babe1b42ff234cd278a0385b15d6faf
MD5 ac92addba218ec7baeac03638a648e7a
BLAKE2b-256 5d072241314968218d48029cb26c41c71f54bfc420d2ea0c3d71e6e2c0fdcccc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 44b9c8eeddda6b154b7add82a039fbb75e15ad424e2eaea76a9ff3e563a8f28d
MD5 2f609246763f42f93518940d47df4821
BLAKE2b-256 89ffc2abcde85b1a32819f567e858dd9b79f90e157bfc6fd7eba9050b1906559

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a696cf379c9d2ed7e79fa6b064e0737c13545d40adbc93deab33a1c473f6f8b0
MD5 5c961d7c4f25a3d59c8db90cd3ce1a12
BLAKE2b-256 5915873f98e14fa51bcdd600cb16f05946ff6d20ad0ec353fffe986a27e35506

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1914c9a1cccc2b66254266856e33142e7ca52d17e539d104b5b40191978cd9ab
MD5 65f530ca908cbb35cfcb00ca30cb1bd5
BLAKE2b-256 ea0c9e1ec0a43f4eaf08e6f6d278e734fbe62513f5d504ea255acdafbefbe35e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7356ef7ea2074b15057e23c464f201c099ee582f5a7df58360d83c5111b37110
MD5 14db2e8d87e954ffc23a4dd4b30ad3eb
BLAKE2b-256 df6c3ccab53a384bcd3f1870bb7666b52ccbebfc1c95e347b5e298180730aab9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.4-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.12.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ce6cf4f19151bbe9f0ea744e18066826bdfa8b99fa1fb4d9da6a92c59bc74685
MD5 ce4ce232a99c47c848397051a96b8f71
BLAKE2b-256 9ac590f4bfccede5f5edc8e7e3c68c33ddafbe1c28efe6f030e4dcf0a9df0b29

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_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.12.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef9af81531807991d7b8a77812c1ef8c116e529ef051e107a860081ccf764323
MD5 f84badccfad97d8b1670ce97a41e0117
BLAKE2b-256 1c0181d5ba7d0241e05e358a7d49400e2d2e08bc8bfa6eb5789b212470c80843

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bf501e5bd6598eaa3db3d177bd4a83d4bddfea5f36e686fa03b75aff2c7dc795
MD5 36a97e89664dcb0082164bf26b2171c7
BLAKE2b-256 904a38670ec28dfc500d3c5ee23db56435cfd5b492fc4741456216fc54d9ad33

See more details on using hashes here.

Provenance

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

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

Attestations: 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.12.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 832558955ed01cd2bfe21e8df5d12b569826e4032bd809f9901ac530ae291209
MD5 cb860ecab2a7b1a17dfeb0c124974e41
BLAKE2b-256 59947375b2e7476ac719809fe04006013bdf712c48631d97e019474f85f6904e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c3ca89bfcfecfd99c75e06571ea538a3b6c455bf5f770133c73b409cfebb2c7e
MD5 89488b41f4ac4d26e290f89f673a5490
BLAKE2b-256 ec2c933fdeea9513f0ca06be421cb2a11c6d8d7a47a9cc30856027622b6e3b9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.4-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c98726a164681ed6b864078cdebd84061068f59ff6b32fbcd9ad9371570ba736
MD5 55a2cc30e239c62b4cac26fdaef5a91f
BLAKE2b-256 b53c91ad3c813948788b28fe7281957b0aea3908cdca6874878edeb492ba107e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.4-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 Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page