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

Uploaded Source

Built Distributions

aiohttp-3.12.12-cp313-cp313-win_amd64.whl (446.7 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.12.12-cp313-cp313-win32.whl (420.8 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.12.12-cp313-cp313-macosx_10_13_x86_64.whl (472.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.12.12-cp313-cp313-macosx_10_13_universal2.whl (694.9 kB view details)

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

aiohttp-3.12.12-cp312-cp312-win_amd64.whl (447.9 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.12.12-cp312-cp312-win32.whl (421.8 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.12.12-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.12-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.12-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.12.12-cp312-cp312-macosx_10_13_x86_64.whl (475.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.12.12-cp312-cp312-macosx_10_13_universal2.whl (700.5 kB view details)

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

aiohttp-3.12.12-cp311-cp311-win_amd64.whl (451.4 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.12.12-cp311-cp311-win32.whl (427.0 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.12.12-cp311-cp311-macosx_10_9_x86_64.whl (481.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.12.12-cp311-cp311-macosx_10_9_universal2.whl (709.4 kB view details)

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

aiohttp-3.12.12-cp310-cp310-win_amd64.whl (450.7 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.12.12-cp310-cp310-win32.whl (427.5 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.12.12-cp310-cp310-macosx_10_9_x86_64.whl (478.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.12.12-cp310-cp310-macosx_10_9_universal2.whl (702.1 kB view details)

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

aiohttp-3.12.12-cp39-cp39-win_amd64.whl (451.6 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.12.12-cp39-cp39-win32.whl (428.4 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.12.12-cp39-cp39-macosx_10_9_x86_64.whl (480.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.12.12-cp39-cp39-macosx_10_9_universal2.whl (705.0 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.12.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.12.tar.gz
Algorithm Hash digest
SHA256 05875595d2483d96cb61fa9f64e75262d7ac6251a7e3c811d8e26f7d721760bd
MD5 230174f1a03b39d0d8042f8e22582628
BLAKE2b-256 f284ea27e6ad14747d8c51afe201fb88a5c8282b6278256d30a6f71f730add88

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.12-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 446.7 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.12-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ace2499bdd03c329c054dc4b47361f2b19d5aa470f7db5c7e0e989336761b33c
MD5 b839f6d889d9eee73d457bf0b443bb1b
BLAKE2b-256 a6db57d2bb4af52dd0c6f62c42c7d34b82495b2902e50440134f70bfb7ee0fdd

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.12-cp313-cp313-win32.whl
  • Upload date:
  • Size: 420.8 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.12-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7f5f5eb8717ef8ba15ab35fcde5a70ad28bbdc34157595d1cddd888a985f5aae
MD5 5c1849dfe7ccd898aeb8db8ca712c897
BLAKE2b-256 855eed3ed640fafae3972eae6cd26f66240108cf62452ac8128d59970d538cb1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e092f1a970223794a4bf620a26c0e4e4e8e36bccae9b0b5da35e6d8ee598a03
MD5 de2a6e4f6c1bbd62ea54cd56914f0482
BLAKE2b-256 f2c12fe007ad930f409d0d7fd9916cd55ec9b78b6a611a237424266ed71da48b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 22fd867fbd72612dcf670c90486dbcbaf702cb807fb0b42bc0b7a142a573574a
MD5 5da3e23ca4f6989f5259604f6a3e5ce2
BLAKE2b-256 f11fadbeb3e440d49b733cef499ace94723ab1fe9fb516425e219379e03b7c9a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a324c6852b6e327811748446e56cc9bb6eaa58710557922183175816e82a4234
MD5 1388170b82e9de93517d9c8ca632f675
BLAKE2b-256 c1eafb87beb7135e25576a1e6fbe98106c037d9fcf1543f19108f9ceb73c192c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0b84731697325b023902aa643bd1726d999f5bc7854bc28b17ff410a81151d4b
MD5 acb8f4cfd78b2072e5c87ab5bada15cc
BLAKE2b-256 d870d949a1612b996e49d540c10ed77a0a1465c482a590e9a59c1c7897746119

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file aiohttp-3.12.12-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f3d31faf290f5a30acba46b388465b67c6dbe8655d183e9efe2f6a1d594e6d9d
MD5 8ba7ed8dd935232865d8c11b4260b92d
BLAKE2b-256 bbdc0a55350025bc297265cfa6c6b1b1f7508f4226ca3238697cbe5e772a7d76

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.12-cp313-cp313-musllinux_1_2_armv7l.whl:

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e408293aa910b0aea48b86a28eace41d497a85ba16c20f619f0c604597ef996c
MD5 70f6533d97072bda7c555013767057bd
BLAKE2b-256 17548305f49a960376136ada977be1370fddb584c63d40bd1b9bef59469f28c7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2007eaa7aae9102f211c519d1ec196bd3cecb1944a095db19eeaf132b798738
MD5 05888f81abaab300749835381dbe64da
BLAKE2b-256 bd6182b15f87088b35705e01fce55806241b45a1099b3470bbca0bed8ee98662

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d736e57d1901683bc9be648aa308cb73e646252c74b4c639c35dcd401ed385ea
MD5 3a7e8468af12b638032da26bf75d99f8
BLAKE2b-256 a77a15867a4c7d39d8fd9bd02191cf60b1d06415fc407bbd4ff2f9660845f1cb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce8f13566fc7bf5a728275b434bc3bdea87a7ed3ad5f734102b02ca59d9b510f
MD5 2d5d9489b62ee2a7cccab3665a8834ca
BLAKE2b-256 89f03aaea866531be2f2fcf3a87607e1f55fa72e6ce5acd6b058941a4fc35e15

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file aiohttp-3.12.12-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a5be0b58670b54301404bd1840e4902570a1c3be00358e2700919cb1ea73c438
MD5 ab97676eacecd8607b08c7ae95f96638
BLAKE2b-256 2ae3a67ecf9c154b13bad9e2a86ea3782a4b73e889343ffde8c1aadcf9099c09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 784a66f9f853a22c6b8c2bd0ff157f9b879700f468d6d72cfa99167df08c5c9c
MD5 a360c1575078aa00840868288f725504
BLAKE2b-256 d133eea88ee55ed4b3f74732d9fc773e6fcf134a2971a19c7ecc49a291e7e57f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2a813e61583cab6d5cdbaa34bc28863acdb92f9f46e11de1b3b9251a1e8238f6
MD5 8c8c430522bb629447ca9afd76a83571
BLAKE2b-256 28f2aed0786d5a1c2ed1f5a13ff2a98baacc27206b81d93812da28fc49d8a5d0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71125b1fc2b6a94bccc63bbece620906a4dead336d2051f8af9cbf04480bc5af
MD5 b4581326d4390f94fb3638eca4ba37dd
BLAKE2b-256 6b73cd7c9439e8cab4113650541017c6524bd0e675b219dfdbbf945a78305e3f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e03ff38250b8b572dce6fcd7b6fb6ee398bb8a59e6aa199009c5322d721df4fc
MD5 3b150a72c669c7819d91364c8cbfb8c2
BLAKE2b-256 cc97235e48eadf73a1854b4d4da29b88d00049309d897d55a511e1cbe4412603

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 ea5d604318234427929d486954e3199aded65f41593ac57aa0241ab93dda3d15
MD5 355351eb23d32d81e1e1bde55c9ae4a0
BLAKE2b-256 ee3e396a7d1c47aa7a74612b186dc716857506c61afac72337a7a96215c2a124

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.12-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 447.9 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.12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d1c1879b2e0fc337d7a1b63fe950553c2b9e93c071cf95928aeea1902d441403
MD5 d92234235be997eddb49fa53d9aba958
BLAKE2b-256 ab47151f657e429972916f61399bd52b410e9072d5a2cae1b794f890930e5797

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.12-cp312-cp312-win32.whl
  • Upload date:
  • Size: 421.8 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.12-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8098a48f93b2cbcdb5778e7c9a0e0375363e40ad692348e6e65c3b70d593b27c
MD5 02be1260891110569f6f22d4b8ec22aa
BLAKE2b-256 4755089762ee32c2a2e0f523d9ab38c9da2a344cac0e0cc8d16ecf206517ef7e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d2afc72207ef4c9d4ca9fcd00689a6a37ef2d625600c3d757b5c2b80c9d0cf9a
MD5 9e6cd2a03dd6f7eb99ae62461eaf4bd4
BLAKE2b-256 2accb1f918cd702efa9ead9d41f89214e9225cda4e5d013d6eed7f1915c17d0a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 60fc7338dfb0626c2927bfbac4785de3ea2e2bbe3d328ba5f3ece123edda4977
MD5 309b90e836a98458762c57b9c139ba3d
BLAKE2b-256 ca4557c7ef1af694a6d0906abab6edde03787c8c6b0cf5d8359b69d1eb0679df

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a1b6df6255cfc493454c79221183d64007dd5080bcda100db29b7ff181b8832c
MD5 004f295acf9d8f2e5b8ee119312c1136
BLAKE2b-256 60278d87344a33346dcd39273adc33060aeb135e0ef70d1d6e71a3b03894a8e9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1c14448d6a86acadc3f7b2f4cc385d1fb390acb6f37dce27f86fe629410d92e3
MD5 f25c8b65c33af5b0c881ff663f543abd
BLAKE2b-256 3a32907bd2010b51b70de5314ad707dfc4e898ea0011ff3d678cdf43d6f8980a

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file aiohttp-3.12.12-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ef97c4d035b721de6607f3980fa3e4ef0ec3aca76474b5789b7fac286a8c4e23
MD5 81adac5fdd6f8ac08c49ba7ee8ad0584
BLAKE2b-256 29c741e09a4517449eabbb0a7fe6d60f584fe5b21d4bff761197eb0b81e70034

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.12-cp312-cp312-musllinux_1_2_armv7l.whl:

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7163cc9cf3722d90f1822f8a38b211e3ae2fc651c63bb55449f03dc1b3ff1d44
MD5 2ce6fe2187015c55fdd4c2593088676e
BLAKE2b-256 631d34d45497dd04d08d662ecda875c44e91d271bbc5d21f4c9e4cbd3ddf7ae2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e58f5ae79649ffa247081c2e8c85e31d29623cf2a3137dda985ae05c9478aae
MD5 95435e463ccb65ce9b156b77324339d9
BLAKE2b-256 8b0b8b1978662274c80c8e4a739d9be1ae9ef25e5ce42b55838d6a9d1a4e3497

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 120b7dd084e96cfdad85acea2ce1e7708c70a26db913eabb8d7b417c728f5d84
MD5 a77916febe58719f83a1b3d19b9fde07
BLAKE2b-256 31eff3d9073565ac7ad5257aaa1490ebfc2f182dfc817d3ccfd38c8ab35b2247

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b1979e1f0c98c06fd0cd940988833b102fa3aa56751f6c40ffe85cabc51f6fd
MD5 cd67a739d19e044905c4cfcd21058ba5
BLAKE2b-256 e9a2dae9ebea4caa8030170c0237e55fa0960df44b3596a849ab9ea621964054

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file aiohttp-3.12.12-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c944860e86b9f77a462321a440ccf6fa10f5719bb9d026f6b0b11307b1c96c7b
MD5 4903fab09d8ad1c481967d84316806e7
BLAKE2b-256 8e674c4f96ef6f16405e7c5205ab3c28852c7e904493b6ddc1c744dda1c97a81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6bf3b9d9e767f9d0e09fb1a31516410fc741a62cc08754578c40abc497d09540
MD5 a7e21ef8f84ad55a68ca249586ee7d8a
BLAKE2b-256 7040abebcf5c81f5e65b4379c05929773be2731ce12414264d3e0fe09ee241eb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9aa5f049e3e2745b0141f13e5a64e7c48b1a1427ed18bbb7957b348f282fee56
MD5 000e8e5d99c8d0b5154e3498fe598333
BLAKE2b-256 56aa35786137db867901b41cb3d2c19c0f4c56dfe581694dba99dec2683d8f8d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0728882115bfa85cbd8d0f664c8ccc0cfd5bd3789dd837596785450ae52fac31
MD5 1653c1d785bd0e563a0498d82637d29b
BLAKE2b-256 80fdc4e8846ad9d9ecdb7d5ba96de65b7bf2c1582f0b2732f2023080c1c05255

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 adbac7286d89245e1aff42e948503fdc6edf6d5d65c8e305a67c40f6a8fb95f4
MD5 8afd2f6d1d2f1c778bda1cc68762c407
BLAKE2b-256 4fdc7bc6e17adcd7a82b0d0317ad3e792ac22c93fb672077f0eade93e8d70182

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 98451ce9ce229d092f278a74a7c2a06b3aa72984673c87796126d7ccade893e9
MD5 44de2b6f75e9b10d06c69151b4939b06
BLAKE2b-256 dfe6df14ec151942818ecc5e685fa8a4b07d3d3d8a9e4a7d2701047c89290551

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.12-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 451.4 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.12-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b0066e88f30be00badffb5ef8f2281532b9a9020863d873ae15f7c147770b6ec
MD5 e0435bdb6ba3502eefb50ef06d9b2961
BLAKE2b-256 30dde89c1d190da2c84e0ca03c2970b9988a9c56005d18db7f447cf62b3ae6d0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.12-cp311-cp311-win32.whl
  • Upload date:
  • Size: 427.0 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.12-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 58ecd10fda6a44c311cd3742cfd2aea8c4c600338e9f27cb37434d9f5ca9ddaa
MD5 befb6e735de167c9f81cc277ce133928
BLAKE2b-256 071e1cacaf5d838869432e96ece1580d0b51494ebb66351f0e8118b74b38d2f0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6fc369fb273a8328077d37798b77c1e65676709af5c182cb74bd169ca9defe81
MD5 9efb9dbfc53f1ab9ce299aa7efdccb30
BLAKE2b-256 88df486f10df681cd1a8c898acc8dc2edbd46ffb088b886757b71ae362bf44d3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1ebb213445900527831fecc70e185bf142fdfe5f2a691075f22d63c65ee3c35a
MD5 4d87ed41bfb2d85dce3578903ce78db0
BLAKE2b-256 a886414e3dae7e07caf6b02cd75d7148d0d8673d4c5077f407be3627d6e33fac

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9923b025845b72f64d167bca221113377c8ffabd0a351dc18fb839d401ee8e22
MD5 0a7aeb56e012e8b139e0f7fc162063a3
BLAKE2b-256 814d370ecc133c648c98a85445f2d331c1272859c89cd52c29a293015bc352c7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2e0f2e208914ecbc4b2a3b7b4daa759d0c587d9a0b451bb0835ac47fae7fa735
MD5 2ccf14fcb81f8cf50932bcdc4cc57557
BLAKE2b-256 a2f095ed9e21250815f1d1a0cd3e868a3f39400a16010ae59f19ddd4ccc4e787

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file aiohttp-3.12.12-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b265a3a8b379b38696ac78bdef943bdc4f4a5d6bed1a3fb5c75c6bab1ecea422
MD5 5d050dbdc46fa227fca5d0727a5dcba5
BLAKE2b-256 d22a15aa1179e9fbdd0d17cdf117b4296dedad098abb5a93f8e9c8ab4626f6ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.12-cp311-cp311-musllinux_1_2_armv7l.whl:

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 082c5ec6d262c1b2ee01c63f4fb9152c17f11692bf16f0f100ad94a7a287d456
MD5 df4b1ea49f0187d62aec227c6d71e47b
BLAKE2b-256 d169a1006021a1d3244c0872ee75cd8da150e0098b3b2ec6945c225754d11a60

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 feaaaff61966b5f4b4eae0b79fc79427f49484e4cfa5ab7d138ecd933ab540a8
MD5 5a6599d99b27499f5b8de8cd8eccf0e7
BLAKE2b-256 55856357166918ff5025602a7cc41332c1ae7a5b57f2fe3da4d755ae30f24bd0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 65d6cefad286459b68e7f867b9586a821fb7f121057b88f02f536ef570992329
MD5 e70792a5e511eeee4ad5db21af12edba
BLAKE2b-256 0c5901f4c55a1f91ad3b5255b2498b3a22362a3fe6ee9bc9ba1af3cc668244da

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 216abf74b324b0f4e67041dd4fb2819613909a825904f8a51701fbcd40c09cd7
MD5 fc10740bacc93e059f921ae7948fc59f
BLAKE2b-256 df2419d6d4c41fbf8304fe7c111fcc701e0aa5a2232ee3ac16272677a11f9cfe

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file aiohttp-3.12.12-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 277c882916759b4a6b6dc7e2ceb124aad071b3c6456487808d9ab13e1b448d57
MD5 f1590cd3679da000d5cdd75dcf1f4b1c
BLAKE2b-256 4d9f04dba2e1c8bee53c3c623d11a1f947c9e2712500f734dc0dfd06daad32ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3d05c46a61aca7c47df74afff818bc06a251ab95d95ff80b53665edfe1e0bdf
MD5 d7033c3cdc51a09646611303c22ea374
BLAKE2b-256 9af05c706cfddd4769b55c0cda466aa6034412d39e416f0b30dda81c4a24616f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a05917780b7cad1755784b16cfaad806bc16029a93d15f063ca60185b7d9ba05
MD5 bd330f016d0f1ddf430bd6c332074dc3
BLAKE2b-256 e3cade3b5ccd5a2aa9352f6ec6f446565f6e1601ebb54860c94c686a9ff76660

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 563ec477c0dc6d56fc7f943a3475b5acdb399c7686c30f5a98ada24bb7562c7a
MD5 bcafcb9e61700b16a54c9b3bc9231949
BLAKE2b-256 06bacfa91fe5cc262535e1175b1522d8fcc09f9d6ad18b85241f4ee3be1d780f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 10237f2c34711215d04ed21da63852ce023608299554080a45c576215d9df81c
MD5 64c1fb266844c4533c83a40eb23bfc1f
BLAKE2b-256 43e63230e42af16438b450b1e193c537fd3d2d31771dafda3c2105a8d11af707

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 38823fe0d8bc059b3eaedb263fe427d887c7032e72b4ef92c472953285f0e658
MD5 83ba46c8fa769fe3b374b60fe597a235
BLAKE2b-256 471fb1b66e05dc3066a9ba7862d50e2e95b3871db82ccf9652568845f353eeba

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.12-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 450.7 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.12-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 65c7804a2343893d6dea9fce69811aea0a9ac47f68312cf2e3ee1668cd9a387f
MD5 65aec44fa73101d5228dd9c558cfa173
BLAKE2b-256 559da4e5379d44679e5f8d7d7ebecb0dae8cafab95176c4e753da6bc4b4aebb5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.12-cp310-cp310-win32.whl
  • Upload date:
  • Size: 427.5 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.12-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d40e7bfd577fdc8a92b72f35dfbdd3ec90f1bc8a72a42037fefe34d4eca2d4a1
MD5 1045713d6704af402e407d9770373eab
BLAKE2b-256 41e531830642ce2c6d3dba74ed8a94933213df5e1651c1e8b4efc81cc88105ab

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 73b148e606f34e9d513c451fd65efe1091772659ca5703338a396a99f60108ff
MD5 42bae7916e53636a847511a51b4b9ca6
BLAKE2b-256 a940b81000bf07c96db878703ea3dc561393d82441597729910459a8e06acc9a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f90319d94cf5f9786773237f24bd235a7b5959089f1af8ec1154580a3434b503
MD5 a34bf7862bc36cc60d054dd54e5dadbf
BLAKE2b-256 878dd3a02397a6345c06623ae4648e2aef18fced858510b4a89d7262cfa4c683

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 411f821be5af6af11dc5bed6c6c1dc6b6b25b91737d968ec2756f9baa75e5f9b
MD5 fa3087778377ea9fa87b5097eaafcea3
BLAKE2b-256 c35dd0096a02f0515a38dff67db42d966273a12d17fc895e91466bfb4ab3875e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5ee537ad29de716a3d8dc46c609908de0c25ffeebf93cd94a03d64cdc07d66d0
MD5 9562646b484dbf49a03d2f7cae908dd7
BLAKE2b-256 5659d8e954830b375fd658843cf7d88d27ca5e38dd5fcbfe62db3d1ba415d0fe

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file aiohttp-3.12.12-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8687cc5f32b4e328c233acd387d09a1b477007896b2f03c1c823a0fd05f63883
MD5 2fc0365720efa0be96ac78cbbf49e316
BLAKE2b-256 bb854eef9bd52b497a405c88469cc099f4d15d33b149b5746ca4ef8ec6ab6388

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.12-cp310-cp310-musllinux_1_2_armv7l.whl:

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e53cf9c201b45838a2d07b1f2d5f7fec9666db7979240002ce64f9b8a1e0cf2
MD5 ef0dd15f41f667ab7734a5ec5ab2bf91
BLAKE2b-256 616f9378c9e1543d1c800ca040e21cd333b8f923ed051ae82b5a49ad96a6ac71

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f68301660f0d7a3eddfb84f959f78a8f9db98c76a49b5235508fa16edaad0f7c
MD5 ea4b5ccd1dd364bd8cd637bd769af7b6
BLAKE2b-256 c1b98b8f793081311e4f63aea63003a519064048e406c627c0454d6ed09dbc99

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ffa5205c2f53f1120e93fdf2eca41b0f6344db131bc421246ee82c1e1038a14a
MD5 ad0cc0ae5600ac0806f848470ad8fb94
BLAKE2b-256 1862ab32bfa59f61292e4096c383316863e10001eec30e5b4b314856ed7156e2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4f4a5af90d5232c41bb857568fe7d11ed84408653ec9da1ff999cc30258b9bd1
MD5 48f60c47e6d4ebdf81dd00f23bf9080b
BLAKE2b-256 ff655ef47708f70524fcdecda735e0aea06e0feb7b8679e976e9bd1e7900f4c0

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file aiohttp-3.12.12-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a4b78ccf254fc10605b263996949a94ca3f50e4f9100e05137d6583e266b711e
MD5 b712c055653fd5364af211f1f76c1d73
BLAKE2b-256 c81fdacca6c7bbe69c77d8535d7a672478803e7078cc20fd9993fe09aa5be880

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28ded835c3663fd41c9ad44685811b11e34e6ac9a7516a30bfce13f6abba4496
MD5 02eb2b937ca776014a2fae2ce8ee4dd1
BLAKE2b-256 31fe4690c112e269e06c9182c32eeb43f3a95c4f203fdb095502717327993b80

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 db874d3b0c92fdbb553751af9d2733b378c25cc83cd9dfba87f12fafd2dc9cd5
MD5 9889c857730edff7ff5df3cc6bf28cb8
BLAKE2b-256 1a5c72f510d42d626463b526345dcb8d14b390de89a9ba27a4717b518460bcd4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81ef2f9253c327c211cb7b06ea2edd90e637cf21c347b894d540466b8d304e08
MD5 37ea1986685ba4205d91f4b3cfd31481
BLAKE2b-256 8f479c83db7f02ca71eb99a707ee13657fc24ba703b9babc59000c1f58ac1198

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b8ec3c1a1c13d24941b5b913607e57b9364e4c0ea69d5363181467492c4b2ba6
MD5 e25e60ba8057a2134aff5a7b1513faf1
BLAKE2b-256 eeb046e38b8bc0bc645317deec32612af922ad9bafd85a1df255a67c2f2305f6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6f25e9d274d6abbb15254f76f100c3984d6b9ad6e66263cc60a465dd5c7e48f5
MD5 5bd609609fe0223a94c1059da087ed9c
BLAKE2b-256 b4d9cfde93b9cb75253c716b8b1c773565209e3d4dd0772dd3ce3a2adcaa4639

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.12-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 451.6 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.12-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ddf40ba4a1d0b4d232dc47d2b98ae7e937dcbc40bb5f2746bce0af490a64526f
MD5 d4197c2867e0a6aba0c3e97b7b166ac1
BLAKE2b-256 dd30b84409c6edd5e63380bab30cfff3423cd48f5ac753f7da11c23066cde74b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.12-cp39-cp39-win32.whl
  • Upload date:
  • Size: 428.4 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.12-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 74fddc0ba8cea6b9c5bd732eb9d97853543586596b86391f8de5d4f6c2a0e068
MD5 0802512e6abe0276b3d20ca5770fefa4
BLAKE2b-256 e5fe0c932ff9eebece040386bf27bfff6571d57b9a2a43f07d79d2ad82812705

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5a49c2dcb32114455ad503e8354624d85ab311cbe032da03965882492a9cb98
MD5 6a4a0e38c83dfe4d8b8f1a541069caf1
BLAKE2b-256 503a09ceeffb4658c84f060be761846833ba5292a304b88122af977dc085ea0d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a4c53b89b3f838e9c25f943d1257efff10b348cb56895f408ddbcb0ec953a2ad
MD5 cb943baaded53a6b10b0da85ad75d568
BLAKE2b-256 b4a7f2c89e5f89999016d7d0e83b0bc2790290f54c20d5749e2948120e8a7b53

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3a2aa255417c8ccf1b39359cd0a3d63ae3b5ced83958dbebc4d9113327c0536a
MD5 24019e0cc0beecfb95606d4e3df23359
BLAKE2b-256 40b4dfac7c43f8f41bf8a381988944dba63479d1b7c859d621ec267afc29e0ae

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f25990c507dbbeefd5a6a17df32a4ace634f7b20a38211d1b9609410c7f67a24
MD5 a89049982afb7599bf7c7ddc9d599c05
BLAKE2b-256 5023be7e601267cffd1bbdca56bcb880a6f615b885142d3179bdfa707ce499fd

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file aiohttp-3.12.12-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 72eae16a9233561d315e72ae78ed9fc65ab3db0196e56cb2d329c755d694f137
MD5 7f7f266d8b286816215a41024542f7e0
BLAKE2b-256 144a302c6f070b9e765de09b213e40c3eb88c79deeb68621c5e1aefc007c9221

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.12-cp39-cp39-musllinux_1_2_armv7l.whl:

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 09a213c13fba321586edab1528b530799645b82bd64d79b779eb8d47ceea155a
MD5 9038b962f25084c4d7db7579a93f5bf0
BLAKE2b-256 96d6eae4b8bd92ef8cee9028f0d711f674c2fa80845d1cea80da7f1109c7a546

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ed76bc80177ddb7c5c93e1a6440b115ed2c92a3063420ac55206fd0832a6459
MD5 6d7c9be816501a862c3430528ec1fb82
BLAKE2b-256 5679f4f7a65c625741ec9230d4157dd1f55f104fd8f458314c994f4053dd8fb3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b434bfb49564dc1c318989a0ab1d3000d23e5cfd00d8295dc9d5a44324cdd42d
MD5 bdeb1427206a8006d2413bba1e1fc3d8
BLAKE2b-256 a1ea577c0ae66b1c63a71d459f633d703c51ed3a973f354ad7fde03fc3fe5252

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f94b2e2dea19d09745ef02ed483192260750f18731876a5c76f1c254b841443a
MD5 1ab16dcedc4e05b4b53d784e8ded44bf
BLAKE2b-256 586dd4fa41d7d57d65595485f840e4c910bc54c4bfc8c86c40d7e6276ebae514

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file aiohttp-3.12.12-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e5e834f0f11ff5805d11f0f22b627c75eadfaf91377b457875e4e3affd0b924f
MD5 727aeb3fd20692dc41931f0aee4d22c8
BLAKE2b-256 969b129dde7357da130183076d4033bdf807fc11e2ad14e982373bd693e5161b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f50057f36f2a1d8e750b273bb966bec9f69ee1e0a20725ae081610501f25d555
MD5 474c1d7bc471ad32daea36264f007252
BLAKE2b-256 86144dac6930ad0d21c69a4df82890405f0811a7b145c1e9e0973a8efc4fafd2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e1282a9acd378f2aed8dc79c01e702b1d5fd260ad083926a88ec7e987c4e0ade
MD5 22dbe653671b10c15a0578e3c5f71947
BLAKE2b-256 b78bff044753d02c520f47a296005f9763a9bf5e7cbdb069858fce93f01e82fb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7678147c3c85a7ae61559b06411346272ed40a08f54bc05357079a63127c9718
MD5 135ba2f192fb716a0346869ff98c06ac
BLAKE2b-256 94b869f6d82be7f0b7e8f4bee7e9f0f453b2c2e269e116bfb57bf07d3e833721

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e5928847e6f7b7434921fbabf73fa5609d1f2bf4c25d9d4522b1fcc3b51995cb
MD5 3c023e0943f95c2ed50e3dfaea920aef
BLAKE2b-256 f31d9ae7b3df3caa0b680a40ae21eec21e435aebce0ad71f4e6bc37551af48fb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.12.12-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0d0b1c27c05a7d39a50e946ec5f94c3af4ffadd33fa5f20705df42fb0a72ca14
MD5 f8f9000fea823df649ca89a5040d345e
BLAKE2b-256 9e4eab5f0622bdaf00ed94c3b349e11225a3c06e1c3ea948c893283d5e2ca92c

See more details on using hashes here.

Provenance

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

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

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

Supported by

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