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

Uploaded Source

Built Distributions

aiohttp-3.12.2-cp313-cp313-win_amd64.whl (439.0 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.12.2-cp313-cp313-win32.whl (413.0 kB view details)

Uploaded CPython 3.13Windows x86

aiohttp-3.12.2-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.2-cp313-cp313-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.12.2-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.2-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.2-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.2-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.2-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.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (457.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.12.2-cp313-cp313-macosx_10_13_x86_64.whl (464.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.12.2-cp313-cp313-macosx_10_13_universal2.whl (687.3 kB view details)

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

aiohttp-3.12.2-cp312-cp312-win_amd64.whl (440.1 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.12.2-cp312-cp312-win32.whl (414.0 kB view details)

Uploaded CPython 3.12Windows x86

aiohttp-3.12.2-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.2-cp312-cp312-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.12.2-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.2-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.2-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.2-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.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (460.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.12.2-cp312-cp312-macosx_10_13_x86_64.whl (467.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.12.2-cp312-cp312-macosx_10_13_universal2.whl (692.8 kB view details)

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

aiohttp-3.12.2-cp311-cp311-win_amd64.whl (443.7 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.12.2-cp311-cp311-win32.whl (419.3 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.12.2-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.2-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.2-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.2-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.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (462.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.12.2-cp311-cp311-macosx_10_9_x86_64.whl (474.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.12.2-cp311-cp311-macosx_10_9_universal2.whl (701.8 kB view details)

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

aiohttp-3.12.2-cp310-cp310-win_amd64.whl (443.0 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.12.2-cp310-cp310-win32.whl (419.8 kB view details)

Uploaded CPython 3.10Windows x86

aiohttp-3.12.2-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.2-cp310-cp310-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.12.2-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.2-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.2-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.2-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.2-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.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (458.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.12.2-cp310-cp310-macosx_10_9_x86_64.whl (470.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.12.2-cp310-cp310-macosx_10_9_universal2.whl (694.4 kB view details)

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

aiohttp-3.12.2-cp39-cp39-win_amd64.whl (443.9 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.12.2-cp39-cp39-win32.whl (420.6 kB view details)

Uploaded CPython 3.9Windows x86

aiohttp-3.12.2-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.2-cp39-cp39-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiohttp-3.12.2-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.2-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.2-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.2-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.2-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.2-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.2-cp39-cp39-macosx_11_0_arm64.whl (459.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.12.2-cp39-cp39-macosx_10_9_x86_64.whl (472.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.12.2-cp39-cp39-macosx_10_9_universal2.whl (697.3 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.2.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.2.tar.gz
Algorithm Hash digest
SHA256 0018956472ee535d2cad761a5bb88eb4ad80f94cd86472cee26a244799f7c79f
MD5 a1e8c77472b5af0fb3d8abe583345f4d
BLAKE2b-256 06a2a946c4f5c54233c97788c2278ea50beaadf45211f452f932b36ce322f660

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 439.0 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cbf833ca90fda31ec505e80f58f8011c64030fb8e368bce0d60f1f9aae162389
MD5 022c34bf85fa1814da20d8a131cc41be
BLAKE2b-256 d0d700abc34b16f1ea9dc8cedffe45c0f454157472480e5b44b6c15f175aa9c6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 413.0 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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 01ac3cc4a0c81f87ed72c614066bfdee15358c5c2cdf30048dd8823826cbc61e
MD5 fa2e6a7a42a068303779383bb4ea77a1
BLAKE2b-256 42191b42589a0f80f14b1bc81ccc5fb0f8c4398fbd03b5886d1307c7aadd8279

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 166d8ba47fca7667dd3169be8bd0fb9ffd0f19fd80f0d5291b1e36ab0f77d02c
MD5 019657fd4ffd8fa05a66c817a126ccb6
BLAKE2b-256 27b67b13d143352494e943ae3f89b5286dc4ed85f8d5487a09f3dd86efb16eb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7e071f1371f38c15dad609bb57d698fe4614b1817e7808966c643336f5615655
MD5 5098bad3e94df0e3985595d30531cad0
BLAKE2b-256 433984d014db48122973171c3cfcf23a2c3ba765163ef8169d6b959d9440152b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 631f4da6b1d503f9df883ba86846fa0ff455eae60497fab5f1d21683b2a2784e
MD5 d57faa25b002f0f6e23ae483d2063cc7
BLAKE2b-256 4e762be34ed27931ab1a4cdd40eba3ef2d71bf0eff9d6c0ac8793e92f20f3ac1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 385f01fe9be53a0466fb66504b00ab00ca7faa0a285186327509cbbe1386363f
MD5 2374f764a0d4fe23eb85805eb104292c
BLAKE2b-256 d212c7443b288263b4ab3d8c6329de0be8df2967445aa9731b738da7b34f04ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 48d743fbc8a88dffb2d2e96f17f9e2310aaa672bd2103b198d7613361affd1a3
MD5 4df02cb4c9c0244ad3773bf1b5fabeb3
BLAKE2b-256 8c03367badf467bd9708b2eaa5fc36689b9b2e43489b63d8508fddc508ceaace

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62179517ef8d0abc950ab7e6545e97142bef3f58007da12b9cff5260e8084fd1
MD5 7ed2623aede2bc68359d6e39b2eca23e
BLAKE2b-256 8c69da43fe30ef3323add2ac03b11cef91c50b648d544953732aeff9a47cdb5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86ca0aa49854b195e314171756d06f81c1286541425a929950f7316d617cc3b1
MD5 943beed677059185980577fe520bf226
BLAKE2b-256 2dbe76db303c98159b6c0494fe4f14a6c57a28c81db9010d2d5d764219339f0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4de7a3a7e482f5832838047c1612c0c3d1f4309e3e2d4ea80cb1b7f5ab0c6bbe
MD5 a53cb476e41e75f2eeb6a2ccd97bf09a
BLAKE2b-256 983ee6cb54d8329b7c60b6678631c228339730632ea7c18dd6279e64ad134d52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e1f3968162f274ed8e97aad591da178fb04725a386a4852b1c0285f3a51390af
MD5 2e8e0caa60d5edfc5513ae69a387588b
BLAKE2b-256 7dcaffb5d548d6aa195797bebd5e3688821c40c2a6503363e5849d7114678a59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 88f8d247c4b6cc75eb5ef1724998b3076f5f2f6b7d357560caa5b5da08228cb4
MD5 99f0d89982ac92b0129e78c2bc1d3e97
BLAKE2b-256 d94a1b0507cfd73c1736e5cd607c7f16790747112c86e0c17860b1b635ad7d52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e4991a7dcdd577a749429248321196dba6ade4315c6262e9b2ba9a3bb80e9cb
MD5 11b896fdb6088c6a62598ae59e336066
BLAKE2b-256 fbf1f20c87b0baf096f2d36897fe4a9a0e703f32dbf7b3fcaae0a5a196f779dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9bff129c6674f3a14c68a0f49337ebd8637440201cbd8af05df52cb2d7db0902
MD5 4cae9adfc9d99c695d60a15eb31db26e
BLAKE2b-256 c3c1d6d4abdeffaa9dee12b27c80919a1bda50aea22d5a1dc03c001a005b16ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2c7bc896696ada3df4ffd787b80d08af53eb16658fd19623f469f89c5f95846
MD5 f92961fd96219d277d993cf91638e050
BLAKE2b-256 5ead4fea70b2d1994edf3c34220a41f0ac1263ee4b704343248f7d15fa8e3b8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5293245b743d3e41fd4de631aed6018e0016488686ee70d3dbd9ac61cc040429
MD5 3eb82e492a169561504fceb8d2f02043
BLAKE2b-256 e89300e623a2c984d95a52e7f9e92d178828beb4a5d31b9231b0fda77fc13e98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e6dd24e72e7425b4eee49eeaa1a08742774f5a0c84041e80625aeba45812f92e
MD5 39901dc52e9426e443c6b63b2e7cd7df
BLAKE2b-256 f9eda341ddf8402cc4a177eb63a63d2aee2f177a94b1f2d53ef192e43e82760f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 440.1 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 35df44dde19fcd146ed13e8847c70f8e138e91138f7615df2bd68b478ac04f99
MD5 d1ad3af2c02e96d4602853df8c043d8d
BLAKE2b-256 e2dd0d5f6aef062433cf88ea08ab2c8c3c1466e812311c9e0657370835ed27c9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 414.0 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d602fc26cb307993965e5f5dacb2aaa7fea4f01c6658250658bef51e48dd454e
MD5 7b576da64a7ec5999320d651f5a642c3
BLAKE2b-256 d31ac79bae467e39439d5ef044f121b280aa0398cb23ecd77ee49f8a1759dde7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7181b4ebd70ad9731f4f7af03e3ed0ff003e49cefbf0b6846b5decb32abc30b7
MD5 8757b1779a2b6c63b70150e6a7a8a0c9
BLAKE2b-256 2877faf662e3b87e3d5a1ca3092c5cbeaa4349abdff3388bdc3c3c057302b380

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7f10d664b638f85acdeb7622f7b16773aaf7d67214a7c3b6075735f171d2f021
MD5 81230621943e4b71a9af4ffccb75db65
BLAKE2b-256 31d039b2b1111b81952015e7390ea07b404f417577e6ed4df1a683dc3d1a0a2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6c31782dae093a507b94792d9f32978bf154d051d5237fdedbb9e74d9464d5dd
MD5 b3fbfc4b4e13fdbb1ccf1bb29b92661f
BLAKE2b-256 98230a9b1547260d554f2c484c2f5e9d3800eca31a387146e5e0a0cfb6bfe17e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a38e144942d4f0740dcb5be2ceb932cc45fc29e404fe64ffd5eef5bc62eafe39
MD5 d371a3a62f67c9d3d0ffc00e686b007a
BLAKE2b-256 1d0e73a16e4008f78fa3538a1e564d0ecf026c7fd422f522e87af48337942f48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b4924ca6bc74cb630e47edaf111f1d05e13dfe3c1e580c35277dc998965913d3
MD5 314a0bd04088e73fe7cd1fcdfdb8661e
BLAKE2b-256 3c690542c4c125e40c47e26bab47d8aff50f831c5626a4d4ab9da7018ee2d15c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d913623c7e3be188fe5c718bce186e0bbc5977e74c12e4832d540c3637b9f47
MD5 8e87fc188f68b54dc098094ecc8649c8
BLAKE2b-256 993ea6b7b55a38a6372b7e00f751778fc653cdd14770f1c20c5ed309f1b87768

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7127241e62621eabe437cce249a4858e79896abcdafed4c6f7a90d14d449066
MD5 ac8e9b9e79abd690dcf1c9cc0a18d44e
BLAKE2b-256 17490b7c3fb319c4a9c75c41ec066e578bfd3ee847a550ef579d9fb6d65af3fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 851d226ecaf30ec7f12d9e9793081ecd0e66fea7f6345bcb5283b39e9ea79c71
MD5 30681748449ab2a4d2ea3cdf08a1a2c6
BLAKE2b-256 eb88deab2324c7468d6405cf9bae287276edef14a00fd00d084b3010e194e8d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d0c32972b485828f2b9326a95851520e9a92cdd97efe0a04ae62c7315e8d1098
MD5 f65561ffd4b23cde6bd61319568bb2b8
BLAKE2b-256 d971f04d5c86cfa5227ec2a54dd72b8de5b1930eb5c9ea75bd1c987b463cbb36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7a6f09589cb5928ee793210806d35d69fffc78d46eca9acaa2d38cc30b3f194e
MD5 284e7cf1bf3fb0d35ea9d96ae4422ffe
BLAKE2b-256 8aa13b267d691a79472e6a0d9909363c2dc6cad44e60deb99385ce41e7926b40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8259a311666becf7049ae43c984208ac20eda5ea16aa5f26ea5d24b863f9afcd
MD5 0ca2f1e4201cf7f44d38e63cffd68546
BLAKE2b-256 941e9724a45cb932b0c01c558493fac5f706a1a53740a77efc22c2f6764ce611

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bca43af1c77f83e88641e74d1bd24b6089bb518fa0e6be97805a048bdac6bbc3
MD5 e1b3f74083b8339422e090d9fbd8aac9
BLAKE2b-256 eb233c366db7343384cd81b0ec9609019dc34e14d25b7099d9390cfa561bb49f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8345cea33295cc28945c8365ac44ba383ebb757a599b384d752347f40671e984
MD5 5d543687f2ccf3d35bb5bb5ffd55b3e5
BLAKE2b-256 d8ef48eda5cd949b8af818d892b5ddf07cb15f0cf133e14c4ac9734ff32ba0a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4d6941dd4d8f6dfd9292f391bc2e321c9583a9532b4e9b571b84f163bb3f8135
MD5 9fba8c5c0ac2ffd9e9be958c167af25f
BLAKE2b-256 cc5d770e9f17f0efeb1c40109535561ea7b0a3e9b654bd7853c27f3d62763086

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 7679b2af5a1d43d8470672079baedc1a843e4f27a47b630fbe092833f9bc4e73
MD5 8734ef68f5492b8775721287f078c797
BLAKE2b-256 842517af725b3855ad54eb1cb8e45962b05856a7e4986b64fbc6158331d7b64e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 443.7 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a84cf5db31efc14e811ef830288614bf40093befd445efe743dc015d01e6e92c
MD5 f85318ed4f54abaddc9d6d8d8732ad65
BLAKE2b-256 976cdb68994b49a2c50a4a8943ba3696f66906ab09d206243f91ea8ede7b7d87

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 419.3 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e405ccdd3cada578e5bc4000b7d35b80a345c832089d23b04be30c0e7606fb80
MD5 7543c11723011c82dc3be1a4e5f78e66
BLAKE2b-256 c112bf9ce81a2954b421cd6acb90a41777075baec3a3a21fb0dd10b483ed3652

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef392a613f53fc4c3e6ebba2c3b90729266139a3f534e7eba9bf04e2eac40287
MD5 08c49d29cd6261a5e7a6eeef255076c5
BLAKE2b-256 4bbcde6c5969285b309a11582d0009cea97384f2cac9b2c88e3a35b642cd6d17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7061bce1accdfce6e02c80ac10efcdfcae95718f97f77fc5fbe3273b16b8d4bf
MD5 23ff9e7c508051aba317e7aa001362f5
BLAKE2b-256 22a80075064d24f4d4987ba8e73a67fc8c0c0075134abb087000316147d2bc77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 64e48ed61d5c74b5a4a68fdb3fde664034e59788625ebf3fcae87fb5a2dbde7b
MD5 ab1b7e5b6c2662538c594f1533a65c07
BLAKE2b-256 8935ccf684cd9d343b1401be07f0c43793d8475fed2b2418e01f885bcdcd972b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 59668d843c91bd22abc1f70674270ce38e1dad3020284cccecc60f492d6f88ae
MD5 e5f4e0bbc55ec4c13c1cce642285db43
BLAKE2b-256 5ef595a835814bd34378ad18d05e3351e6bd1035263ec20480f69f3688fa04ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 722fe14a899ee049562417449a449dfc7c616fdb5409f8a0a2c459815473767f
MD5 b62542dc079c9f230a67aaa5affec3df
BLAKE2b-256 6180c0f85511b8f315cab5a86615d155d9584cd5d6f1d48c94f92dc3dffd4a7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 875df9e4ed4f24af643f4e35bf267be3cb25b9461d25da4a0d181877a2b401e4
MD5 f877ccf010f25759b6c812f14e76a51e
BLAKE2b-256 c170d1735c170aebdc4eda456768bb8714529a90743fd1de1bff075e33292ee9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad4be1c1adb604591a607abb9c4474eedc6add6739656ee91a9daddf35f7f9fa
MD5 fc79af0c7d7506acd09e11f85c23af67
BLAKE2b-256 6fb684fd20aca84651e373fd90187abe1daf7596ab5e79b6045b294496b73bea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3a590566c5c139edfbeeb69de62c6868e6ef667322b0080489607acc39e92add
MD5 9b0866594f98aa5314fc97e2a93e5ae0
BLAKE2b-256 41dfc9dc8dd89e40e469386cfb0adbdf63be04e52a85562bae271c1a863de5b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5169898d17a2ac30e31ea814832ad4cf6bb652459a031af40ed56c9d05894c80
MD5 9a324f767966860c37de5108c0626a80
BLAKE2b-256 fc2d4eb92b7e42f7efb8ab22d0eca89e73b96653d6fbfb9847435ad29dee385d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2711392a2afe1dcf4a93b05a94ee25efa966971fa0bf3944f2ce101da182ce91
MD5 20d159ef956c75be89a22eb92a1b3bbd
BLAKE2b-256 e6722dee9dd29a6ce5abbfa5ee7b75db00ce9c213aaea588476464285a3aee57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7af4737ab145fb1ac6e2db24ee206ee9e9f3abb1f7c6b74bd75c9ce0d36fe286
MD5 e716dd3c7e034050b36171a75631b7d5
BLAKE2b-256 7d0f9c33853f4f1c6c75a0f1b3e7b6d955f5883bd14a189232115e2e0c8633f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0cf15667ecf20bfe545adb02882d895e10c8d5c821e46b1a62f22d5170c4803e
MD5 2e2739a16108525987cf66696f0846c4
BLAKE2b-256 869c412603ca6e3be2656bc3b662828087f8b3a21f82fe20f94219ba7769a6dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74190229bd54bc3df7090f634b0b7fe53c45fb41aae5fbfae462093ced35c950
MD5 eb6dc5969ee2d2ecb11ed0fc6600c636
BLAKE2b-256 c5e58f203120a8a932739face58614f8c93912ccd26c0b18da3f476b7372158b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f8fbb48953238e7ba8ab9dee6757a4f6b72cd6242eb7fe1cb004b24f91effee
MD5 eb3aa7c6ebbb0f9fa9d162d563b042d3
BLAKE2b-256 81eb187fba5f1c210bed03c4e4fe50b6cc64d18c6776e6d17887b527ee2fb806

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 536a37af26ed50bd4f3cf7d989955e5a987e9343f1a55f5393e7950a6ac93fce
MD5 526ee51e4f7ec5758f34de734a98aab5
BLAKE2b-256 08399866f5996a7db870464e1f153b9f6a3412167ee79293f138bad09de783cd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 443.0 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7d77abd371700dc51f8b46aebc6e2316d826dcb490bd56edd96b6caf0b1fe84c
MD5 2fdbcb22270d1155022041176cc58557
BLAKE2b-256 4b6c8da8c0dfcc31451d921afc075d1b5cc9c2d4eee315c7c131fabee023dada

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 419.8 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e52282768a415db141898ecc07a10cdde2721fa897e091fe67fd66ca3be86080
MD5 3360f1344ef14b1a58c000e1853d9d2a
BLAKE2b-256 507627750bb22c6879c1f985200a252a18454c1db47f35cf090347b6b2d5e8e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2eeda8330d331e1eafd5ff06f8dfbd7361d728c7542d0be106d31e5bec9da57a
MD5 72169e87207e948b2b7ea89185dd69ca
BLAKE2b-256 64978e8c9fddbbab00ba77218acba289da62f5cbea5f8b3b2cde2129f9468685

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5f36bd875c9296f1e2a2eef592a0e952d8673b4c514952b09be42249fad593c8
MD5 cc506667ea38c2c31d33b2e53683b36a
BLAKE2b-256 7ca748ce739fc897f3a8d7fc036eaecc04350548ff12f4220e776a6ccc66ae1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 de27fb67bbbb5266635cda7aad24ff620028ac8eecef21386a11b6108eb3e8e0
MD5 88a900a502a6f468a222d9015c6edde5
BLAKE2b-256 1408337fdf914587670b664b2b2fe461eebff8f18aa0eda998a9f89d831e87e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ab6be7083f72acc206e3687c4966d0893d204e183e26dceb822e9c07496af44c
MD5 e6e79b09289711b5c2ec1a4cde00d5b0
BLAKE2b-256 0a1e1485a1a15f422e9a9de57d4c2ffc21d88cd6a0e768d810e874e565f758d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1b84f396042daa713b5cd1f07347bc0c5c7567ee64210d3133711487fe2d0dbd
MD5 efad6d766250590848b0531d112b21cf
BLAKE2b-256 e3db7e750fd5ca7af946f9ae38646db37570d31b1d6ce9a36fcc4b990381cd6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 059e8c67d81da4da9f6056de5b3a7e892bd07135d2434666b5a696f2feb7c655
MD5 c4e705a8b23bbea8de504ee051130f36
BLAKE2b-256 61df6757d2dea29408b52b24e7988156afac502983bfa06a2fd6bbfb709b0f72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a6eefef2c0d13b0594aac71b17eb7589ed450e900bc40917128d445224476ff
MD5 3532e1764789afb10ee1387654586507
BLAKE2b-256 f0b2b19fb90c39299302540c0b5cc04bb40f5fdc9357f85a8c2b042b085e3432

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8d5c2a673fd8c1f8287ef1a10f1fe19f0e14af6c5831c1d9b05f0a5bfbdd7d60
MD5 25bd5ebebfaa5c3b2d5a1e9b9ec8a83b
BLAKE2b-256 a28235b505ae43803ef89f573f4167ef621327026b7a8ef9e05090cfc1716f25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1476627ea5ef213950e2d7edbff9101e48e24d6139a660b4c90edc84f9d9d344
MD5 d6087643ee22b65cc85da84e23ff55c4
BLAKE2b-256 3f45819d99e1a59499fdcc0b76ce8c35d0fedc2e9f017a9eedf6da1e882bc26c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 00d493486ed40e7be61267be32bf2353e4d044c33a00b75a1a87053b30b1dec6
MD5 04c93442331554809b5fab1c8b5de88c
BLAKE2b-256 ae3fc1d644a1595f0551884bb56d0799466e2700dd8f62b513f8abef5e225acd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 351969b7e1e11b2091011fde8f0ae3c95bd576c2d64a8cb2947ad5ca44506674
MD5 c42c8b2244f8cbbff0c63487e3b3ee52
BLAKE2b-256 59d113ae8d7d24e58b3ce8a48a4c7f0e856911339824ade731dae7f729fd475b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b943c62467072437ec25ccfd05516d9aad273467e251124e4c22407220ebdd75
MD5 1eb2142d5cd25d3d252ddc7d9a65fb9a
BLAKE2b-256 fd98fc7cbd558fb3333fa98cc05753f23318ba2f92e6cc5eda2b7db893f65984

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ebc2a98f4177271eb4f48c4d9e2e8a44641f4572ccf9c7940f419027fb8e834
MD5 43f7f3908264ba3813ce0d60a28bf751
BLAKE2b-256 419fe450a5f695cf8161a68317f89ba7a6f7663d2424a23da7190dd383223d54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4670d5ddd1b274aa2e5471f354ce1231e0f8795a136bedd3efc44ed9b33be9aa
MD5 9ea82b491eaf9353be2170a201b46fac
BLAKE2b-256 c9b56883851a1063870eb0cb219bda9734b414743950c1f19eeb4efaf81b72ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5cee9687b74f134507174d50903a167a0fe34e4bb6e0c9b4664ddf058c604bae
MD5 ccf43859adc4a74d5c92eba46c740765
BLAKE2b-256 55974a2b923ac93d863de0dc7387a884a6f24b26594200745f4d8c662e2a585a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 443.9 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7bffd54d62e31abb35d5ffab7296d97f724aee3cfae7c72f36988c8d37664999
MD5 85e34dea13a4ebf5cc24907fa9dcd828
BLAKE2b-256 941795ec4b37ffa8cdfe3674d02dbbd10fe1267b276f5247e39f6f35f4fd08eb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 420.6 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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2457b9193909d046636861bad61902759d7a178a012238192cbb45016142a19e
MD5 ade0ce4cf3928b72e499e44ae8b5320e
BLAKE2b-256 a615798bb0c82776c1ef43e48ed1dd390e291f841308c3b2babbdb2f952170e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3436af8c5db9e963f2acd9bb09316833ee5e93ae1729b8e3f7d25b390cead22e
MD5 179a7da1c183e29ef472778166ffa36f
BLAKE2b-256 859e4adadc073a9c462be149f561f6db441af4a63d052835c82a00f2e701b618

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a92e71e7ed036e94cbd59da9c34e9e064dc8ecd95aab38422f38d5cb34754088
MD5 5f5288fbcec04ed6794c372c2fdfc833
BLAKE2b-256 e6183fefd7dacfa5a5fce414aacf04639a067bd2caea9516c8befe97790611c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ba92663a7ab73108bc1d4869810602b78de0e2c9957a46b9b654c2dba9414f27
MD5 186dc0fd8780fc53bcd9d7b6acff23a9
BLAKE2b-256 f510e047e953c936654c9aac8af3078b2287531756ce0faaf44b0f3e80834249

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fedc41cc7641b71f38d853157e8b8f05663e8799fd1cf53435ff257606e635aa
MD5 9a384fd8a62de7c5b58d500c1c78e9dd
BLAKE2b-256 038dc5c9bc7df2ab52ac955a0b6af69cddb85e43bc46a24104dc3e624e48bc0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2bafe06464fa0397d3d88af0c9afab423af02a6befa0b04f997d2ffe65a0c023
MD5 f19207b53f984ef266d0c1f1530a3ea8
BLAKE2b-256 275d82f4d08dc65a6b352f56a1499bf90a8d4fd630bac28712260557ec38d9e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86fe4072556dc19c949cbf83721f191828a57081318aeda231a430419dd0e789
MD5 8a762d6ed465981c31787b1844568cfc
BLAKE2b-256 81f49d12a687f17e8b3bc800614400796eeb5205ffc9a89db5ddc87f672477b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 091ae2bf28f861607fc807f44069999f63aba5d540c6a84b6f4eb26c63b09768
MD5 3678edc930fda24cba45fa899365626b
BLAKE2b-256 6a8fb792fde8abd6112528bba9cccfb60dffd31f625eac8cbd3ef981078de499

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 60efcbf422ddd5094c048fbcccb8c5532414fefd33f568e16bfc3ddc981421fc
MD5 483ab21f5f534ec9b3d9008bcb635d02
BLAKE2b-256 8b6d5c4c6c83b37a72e4ad242d87ff8ce0d636f4c82c8f36814ec0ad2e751976

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc5693b08ad875e640737515c579e7103c4a5f5802489d610df867b56542f75e
MD5 059add7fe05bc32d5dd95c99439a623e
BLAKE2b-256 74952928ec2081d331062267f31dd85811cfaf913c23af44cb48b534888ffec7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2f0e26b1c76656a992f1c547b74cf07e0da07f3b43ca2eefc05ce1fc8b4c054d
MD5 942779bfd1bc193a4799d6ea4e8ef8ea
BLAKE2b-256 318ef632d5f06ec9226f27e73f467e64c6c8a1959c682781dcf0adb91dd37e73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c0e37a3aa9f47ad8ed7e4fb6142d1121bfae9b9eb2e3b641b060a0d6fccf991
MD5 07f10219974bcd280d6417850ab76495
BLAKE2b-256 50e70d117984e39eb8147866333f99934528f25ce28ddcf330ec55fa4fb0a871

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6b5401ccb86eca461ba232d98577d97009672846835c81b1a4369e3929f936d0
MD5 b160335e097aab26b554a2755d41c11d
BLAKE2b-256 9f96cd8f05d45ee928de09ab8ddbb25d7f82ddefb9a0d6a61a0a7196dbbd829e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76a20aaf7f7be6777267e003ffc3c0f3bd5f755cd187f1adf146a47530bae79f
MD5 60899b4e7641bc7fed608d0abdc7a470
BLAKE2b-256 cd00b1df6f9d31f9e863c305ef6118c9cd322b25c4168d9abdead538cd61bcac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4789c10a72308375d0c3e53b22a7094380e9cf0138ea6c18331f48856672d426
MD5 687daab7896b75edcd0012fd75788ef2
BLAKE2b-256 7323f174f38877fd3605b6fb3197d9ac33d96831e375b549e5a65263a954a381

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 79d0332eefcd4d7af468361ba428e84e9ea9d6bf0d8f68f20ce4ccfab8a2a2ff
MD5 d4700a29cd74a4b3192b481ce928c4c3
BLAKE2b-256 1c8d7619631f851f093a0824ea07fa4c664706e07380b26afe6f5772c98e890e

See more details on using hashes here.

Provenance

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