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

Uploaded Source

Built Distributions

aiohttp-3.12.6-cp313-cp313-win_amd64.whl (439.8 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.12.6-cp313-cp313-win32.whl (413.9 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.12.6-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.6-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.6-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.6-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.6-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.6-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.6-cp313-cp313-macosx_11_0_arm64.whl (458.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.12.6-cp313-cp313-macosx_10_13_x86_64.whl (465.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.12.6-cp313-cp313-macosx_10_13_universal2.whl (688.1 kB view details)

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

aiohttp-3.12.6-cp312-cp312-win_amd64.whl (441.0 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.12.6-cp312-cp312-win32.whl (414.9 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.12.6-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.6-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.6-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.6-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.6-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.6-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.6-cp312-cp312-macosx_11_0_arm64.whl (461.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.12.6-cp312-cp312-macosx_10_13_x86_64.whl (468.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.12.6-cp312-cp312-macosx_10_13_universal2.whl (693.7 kB view details)

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

aiohttp-3.12.6-cp311-cp311-win_amd64.whl (444.5 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.12.6-cp311-cp311-win32.whl (420.1 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.12.6-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.6-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.6-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.6-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.6-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.6-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.6-cp311-cp311-macosx_11_0_arm64.whl (463.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.12.6-cp311-cp311-macosx_10_9_x86_64.whl (474.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.12.6-cp311-cp311-macosx_10_9_universal2.whl (702.6 kB view details)

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

aiohttp-3.12.6-cp310-cp310-win_amd64.whl (443.8 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.12.6-cp310-cp310-win32.whl (420.6 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.12.6-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.6-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.6-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.6-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.6-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.6-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.6-cp310-cp310-macosx_11_0_arm64.whl (459.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.12.6-cp310-cp310-macosx_10_9_x86_64.whl (471.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.12.6-cp310-cp310-macosx_10_9_universal2.whl (695.3 kB view details)

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

aiohttp-3.12.6-cp39-cp39-win_amd64.whl (444.8 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.12.6-cp39-cp39-win32.whl (421.5 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiohttp-3.12.6-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.6-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.6-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.6-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.6-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.6-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.6-cp39-cp39-macosx_11_0_arm64.whl (460.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.12.6-cp39-cp39-macosx_10_9_x86_64.whl (473.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.12.6-cp39-cp39-macosx_10_9_universal2.whl (698.2 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.6.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.6.tar.gz
Algorithm Hash digest
SHA256 37b1c6034a1e14764adad1829cd710543b1699d7985e1d336f0aa52a2dd76ba9
MD5 802d2284a05d53ffb1c8917564f050d0
BLAKE2b-256 23282d96dffe4deb40faa7f5615b4aa96c87528e65837d8cb5385da4aecf1c07

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 439.8 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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 938afd243c9ee76a6d78fad10ecca14b88b48b71553e0e9c74b8098efff5ddf8
MD5 cfe8b51629ea8585a960f5e33e7428a5
BLAKE2b-256 7fd64680e3601edf5ec0e1e56cca7746f0de9b9758a33b88067b1935e95f7005

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.6-cp313-cp313-win32.whl
  • Upload date:
  • Size: 413.9 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.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 259269870d9783de87c0430760b2498b770201ead3e11ee86761d268ce5d196a
MD5 ffa480cefbbf42c6b5983154b902b35e
BLAKE2b-256 bd7bdb64cfd8fd522de73b803b600d967cc2821250f82ba97892a90c4f7e204e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 52ce7e90ee9dd25bcd2ed4513e650cc4f9a03bef07a39193b82fb58892004bd6
MD5 bf456ae6202cd8a7edac0c62e6942bf5
BLAKE2b-256 ee2d5a0bd6d09ea38fcb3ec683425b25946156b99ab451c69ef84ea3d03b6eaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a52aa39eb1160775a6e80e3025c990e8872c8927c5dd4b51304788bc149b9549
MD5 ec70bef344544ffe16980407ad0f0235
BLAKE2b-256 816efd000fa2708cb3b887c0fe8a144f926ca34960a80ed1c44d3606027fd831

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 06f20adcdc4f383aeb7ce884705faea44c0376cde5cdee4d32ef62d6cb1f97cc
MD5 2959b3edf64d71cb9d7f2137f1e048bd
BLAKE2b-256 4427ebc660cb7624ce8d6b71486490478bb52784074cc46f5fed8fbf5f0306d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6860351cfba0196db2edc387cfeddaf1dae443e55f261ea2bcb77fecb33aae34
MD5 0de591e6b69a2bc12521c612ca7705cb
BLAKE2b-256 a23cbcfc532cf09755c5d094e320ba7e9e7a6b977d6487b211278a5d400d0649

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 38af291559401d13eb90259ba79ef6ac537ae6b5bdb1251604606a88cd0fd5e0
MD5 a195aef24fcbbba397ef11b7497f62da
BLAKE2b-256 b8be59bc7538ccaff6fe9cf0b3a27f976d8b2729150b700dc37beef71705f009

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b700cf48fd04b4328965d1afe01f835fe6cdecc3b85ca2d950431e5cc0647f7
MD5 bbc5e82d186fee417a7bbd1b48c89073
BLAKE2b-256 bc5500c119c8ce2d65879b7b6d64b5a344df3ee8845f0d2a11d190376c9e7256

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da073f88270aa434ef16a78c21a4269c96c68badc2b9ad5011fa175c06143eee
MD5 b826d832636b89e8c238b2931a0931d3
BLAKE2b-256 d8d0c72d6b5a204291bbae5ae38fc367df9df11ce32dca6dcca6355d469c9c13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7d162c4f87f9dcdc7151f6329438de96beb527820381e3159ce08544c57e9ced
MD5 5aa6a472a47bad9d268b41c85cc87954
BLAKE2b-256 d90c02df1921239913d91a74563547d8e1c79ec6caa052d0bddfbc48e09708a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e8da054804352e974f4349fb871b07c8ffa1978e64cfb455e88fbe6fbe4d6dcb
MD5 036ef2170230141addc4aa133aba3c31
BLAKE2b-256 26bffaa89212e33b6c6ba5913bd7319942f2955f0d199b7c6097896bac35ad6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 148ffa6b2b825ff8520844ce23df9e2a5b969bb6917c4e35a832fbaa025d260d
MD5 fd7e8304dca0c6519ff746dae1368fb0
BLAKE2b-256 ec40209bb8dbb0b03f5758b7de70f86b7ac6acd8450a9bc4b4128cc5e89a20b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c88ed8c54f7fd6102ef711d24710454707cde4bb3ffdec09982dcb3cb966a3e1
MD5 6845d330d564c355c921871f7ec34e7a
BLAKE2b-256 985f8603860deada8e84ac5954bc736428ef370f8dd600b266c7d8177eea69ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b2e026a9f9ac0df70f14ca5dcaf1f83a55b678e51aa6515d710dd879d2691fd7
MD5 2c929d47bb6e094661a73d90c62648af
BLAKE2b-256 b4b12e2cc4bb3de9d0b185a5c5b6b9d04e3a37c79e52529c634a962ca7a22bfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3331ef09dd775302aa5f4d3170bd46659ad018843fab3656f5e72e3ff68df21f
MD5 ccd25829c7223d1a65baf84214c2a783
BLAKE2b-256 d13c4abaf69965a63aac3bf3c9054c58b1eef68d6cf520ffeb593ed47e590da1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9dd9211229fa2f474da01d42fafff196f607a63aaf12d8b34928c43a713eb6d5
MD5 e6bf872956b42f87afc0c08d005fee23
BLAKE2b-256 9bb0f0326159505f05a32e0dd858ca4770bdeb97900797d80ece9e8031f87c76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 7487f707a4b8167394f6afefa690198300d8a618505583eb536b92202bdec24d
MD5 725cc6ef3636b288d895e8d472387e6d
BLAKE2b-256 be5d4db8a8972642779aa981aae2d71d88106a12f3f6a8354725ef4dbcf31a70

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 441.0 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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d83ab494eb583ba691af9d4d7c073987526bb9f73aa5a19907258ef3a1e39e8a
MD5 0bb7a489295e9cbc8d4b85da83043e28
BLAKE2b-256 fec18561f01a6386a7ecdc54aefff155aae51a349c98c04b1325619e12049fbc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 414.9 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.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 561f545dc062e6c31fc53535d8584c06516bda2fc37821a67a61b69202061e71
MD5 2c42619809c6f4fea38f04c435392d9a
BLAKE2b-256 dc439b9204284c08c244d89c69e3e556dfd7757e0393d4ef20a9238bf2643795

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 58f79b376a426961418df1d08656ec3a01494b7ba81824ae629e6636deddfff7
MD5 d8e6f845c90d752566155ce3ea66651b
BLAKE2b-256 251d250baf6961354772bf7447bb280dffa2df15c08875e535cf6a735a41373e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fd1d6116c1364ab00ffed1654a01091dc7f897d315c5103bcc6e5ab7f70172c7
MD5 fb28f74d9e76625582f6553c504a4479
BLAKE2b-256 1040a14b0cf78531d504391a311c3e7c190f230cbf7dba5d4ccfbf53a5d121e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 de83f567e31418fd7bc22c5a03526a2b0a82e68c7a7fec23ef91a398228f559b
MD5 9151f64c0f3a691aa909df9148c8363a
BLAKE2b-256 1c682b425bd8031666be7db81e37918a9b3a9898e02b8d7e672737b05c55e2c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aac87d78f55057ab48ddcc43055620546d40bbc0888d2658d8705d183c98f901
MD5 dba5689d110da86dce2947359ce2aed4
BLAKE2b-256 1ff2fe3d3955a2c9e78c308783ef0b1b53e5a3b56beb87133a52584e8dda52c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3cc06a99e065ed7e766d2cd574671428261c1b8f30fedfbd91ab3c738fd9c08d
MD5 3858724289399a08524a77b8676afd01
BLAKE2b-256 c746e486289bc0a52d2cc4b87091de7428c4c4ddc76465c1aaa22eb953b8bcb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 25de52753386b0c16d5acd2153e7819f52c9e7fc05f5eca804adc174e99b735d
MD5 7ff8e63e6bb947d9fd8d4fabc7faf6ce
BLAKE2b-256 5ef0de34cad1d44c6a7e4bffef9d42f982a28a4cdce8815733134aceb542be1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c232720190ca4240c15abefc7b765e987ef88df44d2384612890db87b33898f3
MD5 671e8eb2053d6d8db3bbb9a5e487e744
BLAKE2b-256 782fcdde703cbfd281aca8679b75289c3cde865a541efc593354e50c5c6b7c01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8ea77675818fd8cac28491d0d59582e5e2e5b14dbf5e21bef797aa5b23b5ca8b
MD5 62d4e3251e2fe2e75f7be11e81f11f51
BLAKE2b-256 ad196fb117cf46a99d302405012f05faf67e7ebae925e8ba5a0948f5c046a7b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db5c402ea0aed10af2e54e5946bf32f3ebb02a7604eaaa4c41a608053889de4a
MD5 b84c75f3c0c69471679a6c31dd1af5cc
BLAKE2b-256 10f2c5e96be25dd3efd0fe4b21a0c583fffadbadfc85f039cc0dd013e08bdc07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 15817882d25e840aba85d1f5706a7128350b81050f8ca9dabfc25a5f521a792c
MD5 7f080b88acff8ff003688472b529a60f
BLAKE2b-256 43dd74d8f791bf7832077ce5f7592126a64c6de57849182f730bb75dc7030ee7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ca81cb1e41d251cc193164409c0bbb0175e696a9997491a10db9171a2f70603
MD5 cffc11e6c4420764ad3375d9c8e021a5
BLAKE2b-256 0a56de7ac8b49ce179618ede56f01f0050f75a270f3d9eb5d6905793e331a7d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a2f3c974874bd0c76dfdcc60db5a6f96ca023a85318a5ac401603baa7e299272
MD5 71325f12af13254563aa4cd2bb108ed6
BLAKE2b-256 e8a1edfdfe7ea9160f1bbf7bd00964da45ac290a5d19661761098eefa95ac400

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdb03da5ecf74a331511604f3cf91563bf29127eabb28f4e16d390a73cb826da
MD5 a23a96306e1886706075982b03507a95
BLAKE2b-256 b06e6bc969bab1d4790548220b7bd061b711f246b708d7d8a6d88a0ecb04154c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 012ea107092d4465aeeb681d5b2fb8b51a847a72f0b71906f40876419fba1355
MD5 06a25fa215371e89940b44074ba27d2c
BLAKE2b-256 0cf40e4c010b669ef7418fcd5249edc1671bd07492be7989699b92cbc65e19c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 cfbf8ed94b57e3b5a886bfe2a530c8eb067064cc4419fd94431a2cbeeddec54c
MD5 7e07289f3e0316315950561a0e5af7cc
BLAKE2b-256 e271d4534c305623ba4e759caa381a5902713284f1ee52163d14894e60b3d254

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 444.5 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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8a88046a5adddf5d99f15a1920f6b8f659f46a4cfb5bfabbd668d06df045df7a
MD5 6619601c322552457dd85fdf048f3151
BLAKE2b-256 df718aaff029d07b15f7f79c484ca9b10f34cf8466d8dc4b13ecf32cc46b8de0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 420.1 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.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a057680218430231eb6ab644d166b7ef398b3ffbac0232f4f789cdce9391400e
MD5 1faa7c9cbb461b2c08df3cf9c2d2c26b
BLAKE2b-256 e0ba730f75a17b613f2ecc336b698259140bbd439d8f7b14eae10aea14158085

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc4be1d8d68a62859f74f9ada9e174791895366601ce66342f54478d3518c8b3
MD5 63d4c1c2a5c86854580debe50ef4fe2c
BLAKE2b-256 5d18c761b934543512077c3de8d8f383bcafd94ada30c83273ea6ceeeda8aa2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c1d8a4a5a7e28d8b9ec815ffecca8712b71130a4eee1c5b45e9f2cc4975f3f7c
MD5 d82a6d5b09b25f0f2c2097ab2b418bb3
BLAKE2b-256 d6078b9081655c08807fa49134b209eddc823e7501bbcf6b044f48a01f30a504

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 25dac87ee297e2b5826ce8e96c7615ebe7a1613856b1614a207e3376b776021b
MD5 789dea320e5ffe977be776424bc755a8
BLAKE2b-256 9d5a827ca828af26ceeda69459c2848fc58e76adbbea0ad9994429ae885d1a33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 545f89c389a47bac024655b5676658f35f80b0d007e4c3c7ff865d9aa3bf343a
MD5 69bf49315d0385ea9add1e8fa10a3094
BLAKE2b-256 1e3c73b6e184df80ebc5ec07c6e9d398713c40091f6cf4a5e75eb93972ee35d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d7ff55a38fc9851fa5cff41b30605534dfe4d57d02f79447abfed01499fe31d3
MD5 3cd08cf8406f8a9eadabf416cfcabcc6
BLAKE2b-256 e94cc8d375fa9b6ea5c381747e5e56bc0249d33bb12c5d7171d4c1b4fcae02b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86fb0a5762f936606dcab1ca248f5053587a598ed44825f4744ce3c53ae9a2e9
MD5 3537fbe71e882ccbdc3ba4c92ba4ef06
BLAKE2b-256 853830df9eedcfe28265f1efb1bfe9b19cc94c5a37aea5d2cd246dde8c8080e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a74a566872f41247774980334e5b0309dac11b402e188bde6db8a57de4506cd
MD5 4d966590b9aef071deb087c65d044403
BLAKE2b-256 70049f4ad736af830d68dbd376db17f7294c648af393ec24a148bcd5cc2112c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 efbbde2297e4ab10d187103aba9b565277c85ac7d24d98cae201c033ce885504
MD5 11348e01d7970426ee0aca109004a5f0
BLAKE2b-256 c792475e7c1781aa0907671b66355ae414f0d479f0bcf0929469ea44678b72c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eefd98dd043c33c45123c56a79c6c39acb628304337c90f16f33569cc3aa4ba6
MD5 48041c7dc9628cd57cb6666d6f8283cd
BLAKE2b-256 6411620be3270f913c8d5ae4e9a88fa5ce80b7a7848324506da8b2916053f5f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 deddf6b1c83ce518a156b7597a0d7a1a7ec5c1d2c973ba3f1a23f18fa2b7d65e
MD5 d5abfdece74afeb22e5a68511e68b5fe
BLAKE2b-256 61e2992378c6b1e1b4beed78044ce5b70b749c269cc6e42472fc878339f90f4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e4fb0d7f221c36ed8469c1d2d9a2bb6a27b543cf90aa46ca701f63fb83dd7ed
MD5 d09914526287dfee59d702da9745e0a0
BLAKE2b-256 cb2aabe1c72f9b6959b5459f8b99bcdb661a7c2de7901b0c541c26996dd70006

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 24d19cbd1d21d207ee855500d2033f1852b4d2113a741246ff62eb16a3921306
MD5 e9c6b0a4368b9bc0a9b8dca1ab0ace18
BLAKE2b-256 76da5ec4f8deacc4107bf95590d285879f4054d62ff9300a96d8abb4b1143384

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d557918fefb29884335e1a257df6c961f35ba1caf8eddaabad762b3436cf87ff
MD5 3412b15c82af8c458a213929ba0f2ca4
BLAKE2b-256 7489fe980184d1313669f731d7f32ce824a3ee1af50b4fe83fe723fcb56ca425

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 59e19517abef2af49cff79b8a863497036ff401051c79d6a3b6149a48213a7be
MD5 16b75e48f64ffd59e752b5030702a5f2
BLAKE2b-256 0759cd70b7798b5f6c13c65a692dbbbeacf4c085a9ce05a34363c4413384d895

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ed4db015494a6d0acaadce035531f9fb321afab2075a4b348811e4f7795e87e6
MD5 85c5a2d01b7a838ceff521ee2df2ad71
BLAKE2b-256 07f0313bd623a40638ed65eddd930fbee3a81efd9c87441ea117067beb66b7e8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 443.8 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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a1532ea3f41a818d4f50db96306a1975bf31f29787802bec4c63c58f61b6e682
MD5 c964d9a748a38ed705a562bf9468af8e
BLAKE2b-256 0b57bfc204636b0758bc178849398fa9adc88f7f3506e904d53331992b6ed73d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 420.6 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.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8885da8ae99bbe6ce43b79e284ef8e6bc5285dea297fe2a163552f09435c8069
MD5 e9d27a2ec4d41d73a564e2921c68f4e8
BLAKE2b-256 042885c16859b3ba1a3061429e0fe48e14ec74a5cba37be88db6a59164a289fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c05776d1854ae9d8132d7ced7ac0067f602d66589797788ed3902d5c68686db5
MD5 2aa8e3675320058b97a625179361686d
BLAKE2b-256 f96bb7393c492555b2b69a9ce876c77d753771ae1d25837d88bb7cd8d9496e8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 30511c5e66ac4399d46b4bec57a3d56bc16cfb649255fa798ee95d8b45f97a4b
MD5 9612425dddb48fb5e96776b507927d40
BLAKE2b-256 0b7d53f8887bda11cd2b12d7d9991d28f7b01107304ce391d482b70e4f83a112

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7f22a0d9a995c12bb20247334b414edaf65ce8f22a1e838b90210238f9b57571
MD5 42bfaeb66b215d72929e29fd5e1f5672
BLAKE2b-256 73ee9733eac5d47259687c78d522215a67aa8df4f77725670373ce24b9538d06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a90b6f2d5ca4d3ad56034863237b59b4a5fab270eb6d11b5c0326b4501448b51
MD5 a48be1e5ba532f597f35098de6970cd4
BLAKE2b-256 37a00049025f03558d8e3382d4e4e884507221ff3dab5eee54d76735acd43346

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d590b36c3497ecfba4aca71ab9342fb2c07e1b69baf4e28ad4227440c128bb22
MD5 cf71328f4791974634ccb394620ed599
BLAKE2b-256 38145cddfe3e797731f8303c43016fdb157a12287dd56ae0a93aab21ddfde5c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71905d34b3bb1a6be44e986f08404987bb317d890746e71f320cd10cf3222b46
MD5 cd41fe07c8ce812faf9da2058f86d739
BLAKE2b-256 c307460c49e04089ede997510e915989f541b0c0c3cc22b9e1758e5d73f17831

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5f698e7b5b57aa4dc646c8f13ccd965c694199595d7a45cecefaf0e5c392890
MD5 49bd827ed09c10e26c1c96acbe4a1a9f
BLAKE2b-256 25cb56698b3168efc5b7d8951e8a8cb27e2c8dbb061944f184a3f0dd2e330f9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9aecb4ce110c9d321860a00b4f9ec72bef691d045f54c983fa678606f3f918b0
MD5 a0f1d368087006a00bd31906e04f79b4
BLAKE2b-256 eec96baa9a2afe6acefb1e5cd0d85f8169825cd8ec1d9749a8e401f36d975118

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5fe1d74ab6cd1f16c3c2f0e3c3230481dcedc0d3ad9f0b82b1e43f44a4980aca
MD5 78187cf61f1379872212b59b51514ac7
BLAKE2b-256 2d768de52ecddeb74bfde4df1149ad92f805c874a672a721409af40f0daabe47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 93a0887cea23f76e9354235b0e79b3c9922ad66529e11637940b6439849105cb
MD5 c617526412557337702fc3756c603b8f
BLAKE2b-256 68900489400ea0510f9f1c71ae0dcdc036517721fdcfa674d7bef455c5c763c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 128603479bf13479661d763e77e254139f066914227b5f2ff3284d19e416ad75
MD5 16289cddd44a79a576172554972fda71
BLAKE2b-256 eeaf4855ef83585e2e88dc364307f1d3f162064e3fda7840cbd89d96393162d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e5c6869319c0a5f4150959e065c40836b18a99e02493c3b4c73b25378aa0f0cc
MD5 175db235d84bc9793fcd1f666a9f5537
BLAKE2b-256 3a1e6ae22ea1c30bc0870f0d87522e24b6d9ad377a930806bda111c7eefc4dc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce6673b73352edb17c2db86a9586dc7744e0b5009709152a1e75379f16af19e0
MD5 1a2a585e8f79281965470a8ea3e4c792
BLAKE2b-256 ddf94fd911875ddbb6e049c3fbbb84f1d1b2fa62e44cc5845e239d3eaf03c4d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 93f207a64989346bbd0a9d3b31ebaa3934ea6e0242b555491af7eb97ad1c0a5a
MD5 76a6bc522d482f8cce87e04772f6b74b
BLAKE2b-256 101cebc577220c3e583e08b10f2a12018e82e975aff8f65d77e38cdf760099af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 77ba53286c89486e8b02fb47352a5a8270bab1084e2a43fe8e35eb261befda13
MD5 8f65dd25bd79266fb98cda6ed5641ca4
BLAKE2b-256 067a5e64694fb5955e94b96e231a26da1ab14fba22aa64e4138b264d2126cec4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 444.8 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.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a68cb45d2b01f1599e762d382ddac7c6bd62c95210db339827e973a7ba61673c
MD5 a5658d76ca262a9e769fd4779b789ca1
BLAKE2b-256 553de89986c605fd6ddb0407d2a392c36c9de30b5754f1977dd5e8434f0baaf5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 421.5 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.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 79ab680ff7dd0b6c36073738b5f6336e2f018fc07ef0486dd7dd68b2e888ce46
MD5 659c2af1bf6bf8c960102c8aa4b5349e
BLAKE2b-256 fe0afe680ed3e7952ea993c3436f66e350ec3a7e5f78a5887605e26bef7e0b48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2cd7c7018cee1638fc64cbdceb47c870985ce5650161c7e3c5b578850f74b113
MD5 7002950c27cf36bed8d736c917c0c995
BLAKE2b-256 4dea7f14241bb9197665693cc3a95fdbd117b40b6d23fa82c71079d526aff012

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 29eb0a7d64eb2cf17c436cdf0b9d1b17931551a5c089fa2c63410848a9cd029d
MD5 a26f561fcb4abd528c5de2b6023c9188
BLAKE2b-256 50579bb0e43d57380e8c58c722e26879f75651acbd0b45ebf14b0acac7ca940a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ef1e34409fe412825cde39be93efbe1f52d9e5c00a21abe95969c5e595595ebd
MD5 308ce0df7b50e601202e5691410148f2
BLAKE2b-256 5221361b5cba96286e61ab48ebd554c41079a1c401511a9d5d8045be618e8905

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7d34f87dd26a686097675fdc43c3b60174b8d6f0ae383d128648fb30535097e5
MD5 39a4b3c998714f7a20999d048d3c11a6
BLAKE2b-256 ff9424f1286d6e8c269f814732756bd1aa25d8f5dfecf2d1b26c8008adbfa8d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 41c73154bba1c8fe80ef329fee5602bc6a1992740735637f1f05112b15e1cd97
MD5 d3d3eb33cf3cb79e106397e04eadcada
BLAKE2b-256 10d61d5c8849300b076093d1a29db7852b46d7b7b7770b47bcc608ae7dbc1d45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1d66b091e707a1e296ccd00903bed4f270579c5b8000a9e5861ae9a33dc250d
MD5 e80a4736f429d8dc93d9ed421c0501ab
BLAKE2b-256 388c66b4e53c7eeefb4d18b306e5810a64522c22c44c509a2df88acda820d1b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61ed8371a645b89008910b3c7ce286ec5f19b4d67adaa15ed21e4a8fe1adedca
MD5 d6c8a7899e8baa25cba0673128c0bbbf
BLAKE2b-256 933b4a0303f120089fb22673588c0eaa4d42fda8dd9d9e2cc2818255d414c6f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 faf7c0224423106c5e0a4897c668c6cef2ca9b588295993d83d8c3e69772c7f0
MD5 aa887e2432917a8ee952bbe2fdd3cb8a
BLAKE2b-256 c007bd46ce3fe5cb90d72cc71fa696817eb859ed97fe60072b0198e64d957374

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9220418982f90e5b293e36fe356f4df6953da8539b54b9ae5a9a17e8f227463c
MD5 c8171878080a34c6267eb53849380d1b
BLAKE2b-256 5cd1e57fc8415dda37ba7e15f7785e31ae863423c7f29ca79f8e1ef956af936d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7e839f36ff048eef10034d25a4b699e0b363b16d3951c8ef2f1b3cea9e2bf859
MD5 3840ecda1d70f987747eee1456419f4f
BLAKE2b-256 a1f95e82160d126568c9e5c90286d7d733ba94580a0bd2fcc37cf13e6158d447

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0673bdc2914fed2651837e9ce45639cf09d342850274fa0d955d15f148082ab5
MD5 92bc341615ef05489cd133cd5e4e1537
BLAKE2b-256 df8d274571b471f6eb5176e91c754c8f1dc4ac7af2c490edc6d00f78cd50606a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8b0dee7a763ce483c459fc2d963350d10e692e863dac985357e2eb7e7e74985f
MD5 c434c6216b7c02462ff2440c15b30d01
BLAKE2b-256 a87a2a0e638822e9349d0e37d1874bbf65a1f4fe83a45652e81009fece08cf1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d10dbce6ad5fd5a635021e44696f98e6f535675c515f3ec5143a1d6b94e97c75
MD5 6f7cdeaeaa1ab4231531a3ad85f962f2
BLAKE2b-256 88fc4f609274722665ae4092d904fb845d0e048d904efa45d9dfff0c5882bede

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ad8c000bf876f09bebdbb6122d0b83ed2047d808144dcda844b973f91a62239b
MD5 4ab1a3de65e08bf9682950e6a707ead3
BLAKE2b-256 88810721f1f62d979ea07afa1aa2f9d5f945d79c067146ddcb9271d9ee7d1766

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.6-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3a0fd1f91535f64ac726a9203a2ca12e19ab7232a8e3ed070d4a952f64a7f3b8
MD5 df62465197e88ab744228f848f8a95c2
BLAKE2b-256 0a6c1c97bf98100748a2170626a37aa35e8891e2a95e3036f467c978b207e4bf

See more details on using hashes here.

Provenance

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