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

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

Uploaded Source

Built Distributions

aiohttp-3.12.9-cp313-cp313-win_amd64.whl (445.1 kB view details)

Uploaded CPython 3.13 Windows x86-64

aiohttp-3.12.9-cp313-cp313-win32.whl (419.2 kB view details)

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

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

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

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

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

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

aiohttp-3.12.9-cp313-cp313-macosx_11_0_arm64.whl (463.3 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

aiohttp-3.12.9-cp313-cp313-macosx_10_13_x86_64.whl (471.0 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

aiohttp-3.12.9-cp313-cp313-macosx_10_13_universal2.whl (693.3 kB view details)

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

aiohttp-3.12.9-cp312-cp312-win_amd64.whl (446.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.12.9-cp312-cp312-win32.whl (420.1 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

aiohttp-3.12.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

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

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

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

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

aiohttp-3.12.9-cp312-cp312-macosx_11_0_arm64.whl (466.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.12.9-cp312-cp312-macosx_10_13_x86_64.whl (473.5 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

aiohttp-3.12.9-cp312-cp312-macosx_10_13_universal2.whl (698.9 kB view details)

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

aiohttp-3.12.9-cp311-cp311-win_amd64.whl (449.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.12.9-cp311-cp311-win32.whl (425.4 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

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

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

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

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

aiohttp-3.12.9-cp311-cp311-macosx_11_0_arm64.whl (468.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.12.9-cp311-cp311-macosx_10_9_x86_64.whl (480.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.12.9-cp311-cp311-macosx_10_9_universal2.whl (707.8 kB view details)

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

aiohttp-3.12.9-cp310-cp310-win_amd64.whl (449.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.12.9-cp310-cp310-win32.whl (425.9 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

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

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

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

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

aiohttp-3.12.9-cp310-cp310-macosx_11_0_arm64.whl (464.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.12.9-cp310-cp310-macosx_10_9_x86_64.whl (476.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.12.9-cp310-cp310-macosx_10_9_universal2.whl (700.5 kB view details)

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

aiohttp-3.12.9-cp39-cp39-win_amd64.whl (450.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.12.9-cp39-cp39-win32.whl (426.7 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

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

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

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

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

aiohttp-3.12.9-cp39-cp39-macosx_11_0_arm64.whl (465.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.12.9-cp39-cp39-macosx_10_9_x86_64.whl (478.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.12.9-cp39-cp39-macosx_10_9_universal2.whl (703.4 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.9.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.9.tar.gz
Algorithm Hash digest
SHA256 2c9914c8914ff40b68c6e4ed5da33e88d4e8f368fddd03ceb0eb3175905ca782
MD5 6b4bae39fa1be5ed8c5a156d956117fe
BLAKE2b-256 4bad5b0f3451c2275af09966f1d7c0965facd4729a5b7efdc2eb728654679f85

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.9-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 445.1 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.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ccb1931cc8b4dc6d7a2d83db39db18c3f9ac3d46a59289cea301acbad57f3d12
MD5 017286d47fc8869f70be190d5edfa1b4
BLAKE2b-256 ff02452bfb8285b980e463ca35c9d57b333a4defbb603983709dacfd27ca49a1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.9-cp313-cp313-win32.whl
  • Upload date:
  • Size: 419.2 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.9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e429fce99ac3fd6423622713d2474a5911f24816ccdaf9a74c3ece854b7375c1
MD5 8ec25d6920903adc0cb97b43c891ca5f
BLAKE2b-256 9043ea621cb45fc0e3e0a7906a1fdfd7a3176892c29e4e3d9d4dfa05159ac485

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a1f72b2560beaa949b5d3b324fc07b66846d39a8e7cc106ca450312a5771e3e
MD5 d611921686ab2a5068dfec121dc58f08
BLAKE2b-256 c91b949e7965d642cdd82c7d9576fd27c24b27f4e0e35586fceb81057a99f617

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 eeac3a965552dbf79bcc0b9b963b5f7d6364b1542eb609937278d70d27ae997f
MD5 8279f534b85442884f77b747efb96f94
BLAKE2b-256 5848808167d6f115165da3fcc6b7bb49bce6cc648471aa30634bcd47a7c96a32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 97b036ce251825fd5ab69d302ca8a99d3352af1c616cf40b2306fdb734cd6d30
MD5 3648e9080d2b19388bf28baded448ea6
BLAKE2b-256 f971286923ff54ae69c54e84bfbcc741b5833d980f192a93438f8d6cf153dae8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d4a0fe3cd45cf6fb18222deef92af1c3efe090b7f43d477de61b2360c90a4b32
MD5 1ee80389e09fd0da308fe176aeb33fe2
BLAKE2b-256 86bf0f7393a2ef0df4464945c3081d0629a9cb9bfaefaaa922dba225f7c47824

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5cade22a0f0a4665003ded2bc4d43bb69fde790e5a287187569509c33333a3ab
MD5 5699ecced36a09b300f2bdfc98e55d1a
BLAKE2b-256 165caaa1fe022e86291c34a4e15e41d7cad589b4bdd66d473d6d537420763ab2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 80fa1efc71d423be25db9dddefe8dcd90e487fbc9351a59549521b66405e71de
MD5 50b08822575a1e6644b8403bdfc6dce3
BLAKE2b-256 edcf6b7ab3b221a900a62e8cf26a47476377278675191aa2ea28327ba105c5c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11b5bf453056b6ac4924ede1188d01e8b8d4801a6aa5351da3a7dbdbc03cb44e
MD5 79098bd8f725202b061429e490b81752
BLAKE2b-256 68cdab572264f5efbb8059f40d92d411918215bc4e669a7684bfa1ea0617745d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 64e22f12dd940a6e7b923637b10b611b752f6117bc3a780b7e61cc43c9e04892
MD5 1ca0f59ee785cab8d3ce09d5ce2c3a2e
BLAKE2b-256 0bb2870cabf883512f0f2cd9505bd7bce1e4574d137f132ab8d597ac5367b0ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0bd0e06c8626361027f69df510c8484e17568ba2f91b2de51ea055f86ed3b071
MD5 1c249272a882be956e762ed326b027b3
BLAKE2b-256 23fa9a510d5ec8e1a75008a1c0e985e1db2ce339b9f82d838c7598b85f8f16d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 20f8a6d3af13f043a09726add6d096b533f180cf8b43970a8d9c9ca978bf45c5
MD5 bb9c796f3e687b3e468d1b87ca87c0da
BLAKE2b-256 ad25ab0af26f80c1b6035794d1c769d5671f7ecb59c93b64ea7dfced28df0dca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 998e323c107c3f6396c1f9de72289009057c611942771f24114ae78a76af0af5
MD5 5bac70614993ba468add994637a24a8b
BLAKE2b-256 88385c308d02754e346ca9eae63a086f438aae9a4fc36cdd1708fe41588b3883

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 00369db59f09860e0e26c75035f80f92881103e90f5858c18f29eb4f8cb8970f
MD5 45d6bef71118222b694e9f8bfc4d23a2
BLAKE2b-256 196f8a6a1dedb8ee5a4034e49bb3cb81ced4fe239d4d047f6bab538320fcb5bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16627b4caf6a36b605e3e1c4847e6d14af8e8d6b7dad322935be43237d4eb10d
MD5 5d5e4abfe6111ee48aebbfafb7bd0a4e
BLAKE2b-256 09e21502272a6e98665c71f9e996f126b64598c6e1660804eb4d78cad7ab3106

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 74e87ea6c832311b18a32b06baa6fee90a83dd630de951cca1aa175c3c9fa1ce
MD5 19c8511e917b6ebece9981925d8c9248
BLAKE2b-256 65b5f1dfda86a66913bfa9b7c3fe30d13f4d5a3642d3176ad0019968cda35d97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 bf6fac88666d7e4c6cfe649d133fcedbc68e37a4472e8662d98a7cf576207303
MD5 f807b538dbeac854a5c30c5794e19cac
BLAKE2b-256 2b5ee7ee4927e72d65b68f612ca2013800c91aab38fd1f487926c2a8e4f1c8ea

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.9-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 446.2 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.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fdbd04e9b05885eaaefdb81c163b6dc1431eb13ee2da16d82ee980d4dd123890
MD5 3591e9e0503be91c0124cdd75b00bec8
BLAKE2b-256 f27eadc99e6dd37bb2d762f4d78df3abd4635531e36bf489b4b580decb7166a1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.9-cp312-cp312-win32.whl
  • Upload date:
  • Size: 420.1 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.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4cfa37e0797510fdb20ab0ee3ad483ae7cfacb27c6fb8de872a998705ad2286a
MD5 4bc0727620bad4062d85b801210a485a
BLAKE2b-256 4e7b9220a3c8d18398fa5195ece36970f71d8c5ba0b601c819b128dfe5171885

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 995b5640969b1250e37be6fc92d185e523e8df446f8bfa723b347e52d7ae80f9
MD5 6538f5d2ed052e1dd110ef23381b6e73
BLAKE2b-256 5e8c7c0ca97b65f38d3453cee496da8d465a7b0b44d302c6b5c1da4d83b62f1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f9cdadfe84beb8ceafa98ab676e8c0caf1e5d60e8b33c385c11259ee0f7f2587
MD5 d215b30642861753170f65d75dda801f
BLAKE2b-256 aaae6a9f1863e5d4b210890fb85b4b33e383351cc0588f1f30ea6866faef2141

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9f44a4ebd717cc39796c4647495bc2901d0c168c71cd0132691ae3d0312215a9
MD5 25cf603243d1a4e16960bccc11a8e6d4
BLAKE2b-256 bca06c4f84197d9d04f548405d89d504afaef4c94dfea3842c52fa852f7f4c28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0575d7ae9a9c206276a6aaa3ce364b467f29f0497c0db4449de060dc341d88d6
MD5 5c5e2a96e7f88be5fd7407e273be38f1
BLAKE2b-256 80bf4d12162630ac2a39025c67bfeae94fdaeaec3b0438e65122f0012a570667

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 94d0cf6606ed9f2373565b8d0005bb070afbb81525ef6fa6e0725b8aec0c0843
MD5 0b04fa665bdfc8e6717a776c984f04eb
BLAKE2b-256 c3fb23e292231a5d6d7413c998d096ed7dae049e7fb2c3406019eb04cb93c5b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55197e86994682a332e8943eb01b462ae25630b10f245812e517251d7a922f25
MD5 41382cb94d3b95399072fed6cbef3ff2
BLAKE2b-256 aa0769889c2e598661418f646038fc344769712a6dbc625c4b16f2d0191d872b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 970bae350cedbabb7c9d0fc8564b004a547d4a27cf12dc986be0abf7d8cc8d81
MD5 57a7d17a0075af53880e4dec08690a5e
BLAKE2b-256 1cd2c153f7858d9c6db578b495b15f533182bd95f24c62ab125cc039d97bf588

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3647dd1da43d595a52c5071b68fd8d39c0fd25b80f2cdd83eaabd9d59cd1f139
MD5 c2b194ee510dd76f71a9048639667757
BLAKE2b-256 37243ece3ca9c43b95a5836675c11f3be295fb65068ffffaad0e99a7a5b93c84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1a3f20a1b72643a0be5c9fcb97eb22607fcca32f1ca497f09a88d1ec3109daae
MD5 181cbcc5996f68732815d44bc5e3d19b
BLAKE2b-256 9eb9fe87b305d1a0272cb5c499402525c06571840349f2b2a4ffdc20e2996ac2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 fc441aba05efec5c72127393f56206d0f3fb113aadcd1685033c10da1ff582ad
MD5 8cebcc6c08cfd40272cfa4e113a37f90
BLAKE2b-256 93b7bf9010f6dfe633147d74e93d41ec982b2538bfebcb6521a4139d187d07e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bfe590ddb0dca3cdb601787079276545f00cfb9493f73f00fa011e71dae6f5fd
MD5 abd31294b0db8b6f005b4587cc96dbab
BLAKE2b-256 4d2dc6e796e6d7e57a3935772333d80e0407d66e551e2c7c2b930b7e18f527a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7ccc5a5a4ccfa0ef0191dad2926e9752c37f368d846a70e40095a8529c5fb6eb
MD5 afb29d432e6c390488adf8dbda51573f
BLAKE2b-256 1aa9ecfffc1659d8e3f02e109afec4df58a600128a2f48819af7e76a398a1ad3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba7a8b5f02c2826eb29e8d6c38f1bc509efb506a2862131079b5b8d880ed4b62
MD5 c48eaddd7b146ecae03fed0a6259fa19
BLAKE2b-256 3baba282806eac098ddbd922038b1c2c5711ea4bb10fdb282f65986ae59c9096

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d467a2049c4405853799dea41474b0ea9852fd465e7e2df819d3a33ac53214e8
MD5 80e7d32a694d61bb651caafeb7bb49cd
BLAKE2b-256 63d0a81d09aea9d1aef10582c4d8fbc0158898ce2247f326a9c9922c9556212c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 7ae744b61b395e04b3d1acbbd301d98249397333f49419039517226ff32f3aa7
MD5 13c9756b968553514bc8063a898a6227
BLAKE2b-256 452d3234b91245a6f6cd0445c02604ac46c9e1d97cf50cfe421219533f061092

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.9-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 449.8 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.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 965d93b08eed59359721a324b998ebf5354c9049b17cd93d9de50c14092b6ace
MD5 91306096d3eb66435a4601a8af030a1e
BLAKE2b-256 12a38419c2493d19acba6fb13f4618ba71fb22ddd6178303f565aa8814792f87

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.9-cp311-cp311-win32.whl
  • Upload date:
  • Size: 425.4 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.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9ec207177e0adc694ed4a41ca8ebdb4008edb8d475a8b94d71d73414fc4707b6
MD5 62582f52a097a9565efc1b150e149bb3
BLAKE2b-256 5ba66be201fbeee6d80d4e84e7eae04a55a5b4ecce25aab012427094144bab26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbe5ab33a6810e9839270b3673eba683b9f91ed011be66feb4823f9fecf1bb73
MD5 4d326336b972e6e8ea4a4de25cc25337
BLAKE2b-256 77925269deb655ee3ec8b48551b228ceccaa21e4fd61d44e7b6720618f09b958

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 43f3d4d6264629d97d44a6d75603923c2c63dad6aff2f72b172635c43db739db
MD5 0006a2041192f5f44deb9c9ad78819c5
BLAKE2b-256 bb4a2e526757885e0d69ef796c470b470084073d2f9286784f34457139a8c2a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 941cd1ce3d1f605fd062857b339f7c3cde5ce83392bfb1029c3de782b8f98b52
MD5 d60b9bf8d872be855526ecb098721a53
BLAKE2b-256 c6a4d8a68c5c3f618e29ae978497c93d05718a98614659336672bbac37d227d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4de97019fec6f236671ee5d5831cebf67fbd52ee6bd47e2b8c9941cd39698db1
MD5 f766262fcc00c6ecb87c890469995b6f
BLAKE2b-256 f91491da26fd19abf723b61f0861a73a917b15f25b6473191a5d597b67ff9c4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c892b2400c0795bbf00303282029c66e8ba912dc9fabf4728ba69a63046c8020
MD5 578a1fae578fc7fe1b1f2fa352d3bbbe
BLAKE2b-256 07e9beb9b75a38be8746242d76d5d4671d5467e54e53208d654ee921cb331fc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c7e03f6dd8210b76587cb17088b3e5e0dabfc6787d42db58bc933da932230b7
MD5 d91303b130c71e4fd4e3566b5bcc70b5
BLAKE2b-256 11528e78137d1145f5bc5e77d39a4072da3bbe4216ddc13624a91d4061913846

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55721245164191ac92808ad39f3b2876195b1e6521ead0aad7f1c9ae69568b1a
MD5 63884885366794ba0fcddf0b77342669
BLAKE2b-256 d6499e635c2f0a4d296e204ef87858ec2d6c590c944d5c3166c01d19813d3dc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b9ad4fe8d068544ba5d77500ea2d450f130109a4b0caf6d9197167303250f683
MD5 49f9ae8fafa628b9253c99c2a1fcd1d4
BLAKE2b-256 263adc6ce1731d6a116d927c6c47e9f8dab283582d2e8fb31f49615ea2447b4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2bb6408bc2cb8ee5be4efb18bcfcfce4d76448f62237074917e146a425daf425
MD5 870b1d25ad4e31b3853652928841d8da
BLAKE2b-256 c7f8049a08282f9e5a45e903cc81ded19de718133daf21924c715ef0435038b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3c7b314d565e235051893a46e14ea14ab05bb17fe99bdb2cf85e9adc62b4836c
MD5 e109b73f5f30c85026f2e525972d90b3
BLAKE2b-256 98af96f10bc9f71aa806cdb1e4af3aa00352e20dc0e70b53a7147526b2f95e81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d011b13f3bfcf711ce9007ea08305a582135ee2105dc3202b011c055c1ac6f1
MD5 170f3ab5fe6ea3c25502abecf626da6c
BLAKE2b-256 83c03347524ee435e13a9bfa54ae59a9e479f7cd05bf5062bee8471a6b39d933

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b5c5fbc9217578f5c9b5a65f27dfb044283b437cfa9cf52531f3ce94dca1e912
MD5 b18842e32984a5a88a7033de57ca645c
BLAKE2b-256 679264cbc47a73282eefca62e44ca44d771ccd40441e295b6b33531eed2d9f8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 998a6e143b2a4ffee14fb2c2ff5a3338d70d811be3f5d4a13a305ee0f4c6ac42
MD5 4ae8c9c9c6e0522b6b110e69ab5919eb
BLAKE2b-256 ec3ed2e3f6864ca88f8b91afb20558fdcd43e11224fc4b4aad2103f05f37c98f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0d8ba7652d815bd5b99189d5b685db5509a08f1282e047a849b7f4353df8a95c
MD5 cf0c3bfb820709a5b64e7ef49ee26580
BLAKE2b-256 44a4080e5aa0aabcd2cf75320169727b5ef0ffadd1774d1b07a27903b513f972

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 301eebd8e1134a8457151b451841a47d3440ce79fa9a0d1c70650bda624cbd69
MD5 b00129f0bbd32450ab6fef9b83534a67
BLAKE2b-256 b86a9df1a8463e19d1ad2f349c81c0a05a1d5762f42855fec3aae3bd88f9eefe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.9-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 449.1 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.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5cf338d75be82709bf1c8d8404f347661819c1cc9f34798d5b762377fd70ccd6
MD5 0f38db9f7172bb482786fa84a362de77
BLAKE2b-256 df5d69701dee7c6a5248baea27df1609b8ecb3d0789969cf6e32424afb688824

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.9-cp310-cp310-win32.whl
  • Upload date:
  • Size: 425.9 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.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7aecd5546e5c65e4904fc697806a4830c2a4870cb7bae28a7f483db008bba3dc
MD5 80f40609f299e35a43adbed57e90b909
BLAKE2b-256 ea49f4b6d7ada60b40328cf4b6430fc7677045cef4262cfb87818fb7f706964a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3fdaaf63a778ae020b9bf8a7ae4a80f87deb88152aad259764e994b3efe44d38
MD5 aded73a3a92112f07b5d395f84dbf18d
BLAKE2b-256 6918d36db9ae9ae972310abbfbd8ebcf53e434e4973a017c9f5677efeb36f31f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1d205549f965bc69c377206643b06fd78d77ed20b8735765c54153cf00a51465
MD5 85652fe6dbe732569fbd84b235a92225
BLAKE2b-256 35aae7410f300a66b6db014873e0efcc277206433c89b60502e7434efccde43a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 db2aef30d877f44716c8ce4adb2162c7ccb9c58d6153bc68bd2cfb3fbd7d6a95
MD5 d1c25b3b3c2c2feebd5c13c8f62b8c3c
BLAKE2b-256 0f6316730d255cd92bf8f834b0199a7faf850989628129b6fa3684d541a4effe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52cec94fa76e488b0ebc6586507421116d7993c7984ea020529107796b206117
MD5 351016260f5981973e8cbdb3f6167b07
BLAKE2b-256 92be9a90641bc61777d9fbd037b12cafa0208726172c22decfdfbea5b82b931d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 daae5ea9c06daacb056351273a38d4465446fbb5c8c8107a6f93db3e1d5bc4e8
MD5 601a8504461ba3b5dafc3a3b14745054
BLAKE2b-256 101d9a63f309928ff6494626659c68bb4e0c8e2678dd5aa9e7a22a47305f297c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ca2ad779958e1beb2f139e7d45f84c13f94f6c0f63025e435e31f3247cb5a05
MD5 5bd905d5eba12102cf7a9a2ebf9ac290
BLAKE2b-256 d2e86cdfe6f65713c4957311a4fad1b343bc93eb3a87b84ef8e5c18f06c77a69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8d89c0ea455b8e8e386db8b82a55671703d4868c7c1e38cca0d643232f50f8d
MD5 68c16263cf4d667d11d059f54813c88a
BLAKE2b-256 d255ff9a6951fb8aa04d95d4c206f189a62bf616a9ab7a325c8e72f1bd817f84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 85ddf89da86915ab327fafe9059540707b9deac7cfad1dfda4621eac6590aa16
MD5 22b6c3213d7007e4647e706f4ab68aeb
BLAKE2b-256 6df1c815a3e91b89f678bbbd053e199438067c554d669f00b5d3a3ddcd4e31e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2466804eaa42bf6340de28fba7254709db788989b891a7c5bd57a84f5a11c04b
MD5 6f32659cb86484dd65fac9216e9531e8
BLAKE2b-256 d871615d3f8fcbec363c998856726daeb8d7a1de348618ddbebf2799694d3f46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 18897f24e80bac4e7df5d37375ab22391f8b7beedfe617f8de064dbfd76ca36b
MD5 baeeaf4397e6622ec0f2a25589fb02fa
BLAKE2b-256 f752907028e57dd34d89424f9adc03bdf2dcbf8ca66b1799a4b0362b3291adf3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 43dbedb626c6bb03cc8e9ab27b9da4414bc5540d3fe1bce0e687e50c20553689
MD5 a434f60a1f8001cad90a310699f9b677
BLAKE2b-256 ccf49245dd38d760d92504fdc1a1cdaa3468b8642e0692875badc509312728a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2ee5ca28436b9203d020924c6dacc1cca4e77acf5f8f5c5d236b123c0158a012
MD5 8c6a1027bd29a9633fa89b372b4d5c0f
BLAKE2b-256 2297c7d8d8ac53862a612dc06574f591d30b64326ef910c43bc5c0cbeffb9210

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26874b2c61ab5d1e05d942d7254a565eeec11750bf8f1a8995c33d6d772f5015
MD5 99314bfed31d35ed8c52f53f2572873e
BLAKE2b-256 ccb4136399c69fef6c412ef5b7a24fa5adf5b07965f686aa52ecb2d494b8bfe5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e2337516411cd15b7257736484dfd5101fa0e6b11ef2086b4bb6db9365373dcb
MD5 e5145ddfde1d9abbfbb20600c3ceb443
BLAKE2b-256 dc9f79feb65d4e8c193e56fe2fca5d352cc1e98548b43462f9ceb8c9fb740484

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 abb01935bb606bbc080424799bfda358d38374c45a7cbbc89f9bb330deb1db26
MD5 16e64ce5ec83509b6376b5862d45cec4
BLAKE2b-256 e1faa843c04c15287d5c0abbfe6e2996e9a74fa4dd0470f280ae893357640fac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.9-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 450.0 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.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0c4f87ee9451ce5e453af2cd868f4a42ea2f49c5aff6e8114cded0f47ed9ea9b
MD5 030693d620c5cf9dc8da66391f2c78eb
BLAKE2b-256 c27e82406c7109c270d91d1e740d919b10de228619086b803398b32290cd6132

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.9-cp39-cp39-win32.whl
  • Upload date:
  • Size: 426.7 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.9-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b06acaba86c46335a862ca0805cd695610bcb785d1a18f9f6498711178974e4b
MD5 dfece1b5a5249a878f7293a1ed6e8f13
BLAKE2b-256 eb90d7fac60dc2f31c94ec510abcfb9906bbe07bb0413636f38f1b204c9e40a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba0843970e8a9cb4ddae47281010997f5b1a1c8cbc635fbefc9a0ccaa7c95606
MD5 cd9760021f16e897cf8ad908a7f28c74
BLAKE2b-256 d6b9292cbc40fddc47e48e971134267f6288d45e851ec39bd01bc1e0228e7afe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 daaf5a5f2340f46291ab7d44f60693cc71a05a8b9104e6efd3bd51c8a6526290
MD5 faab6ab60643224052d4e71b5596ad8f
BLAKE2b-256 bd7685caf3b2910cce3c62c4ea7a395d1dcc14c905a2d5b3d6652a2effa530b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0954f990f274cfcbbd08d8fdb4a0c7949ac753bc1ea344c540829a85b0a8f34d
MD5 bab8c72864ea3fe92bb70eb547f34448
BLAKE2b-256 9dcee354a05cb26bdc1bb54a52aecf54e47089a9cc46644a79b5610c91f6bca1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57971e7adbe0984d9736836d7a34bd615119e628f04dfca302c1bf0ec3d39a77
MD5 a4594647732de05e7f4222d8b130b9de
BLAKE2b-256 b692a19201e3218f912390f36631c38b9f25ef9ceea6111680a4c151fda8db24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 075da814b9a639904041d8d50e3ed665ea892df4e99278f8b63ff0ee549eb519
MD5 c5d6e1f7f7fb3a89bc7bb7cad35f3940
BLAKE2b-256 59f17a9b737306055555d7b5fc57031d4be799203313d5c797afe1baa5585052

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 325acbe0c0225836e720eb758672c2f39e3017e89389de1dfd7fba7977b9bb82
MD5 84dc10f300458649d0d6ed0239eae817
BLAKE2b-256 daccd8dd35ccca0f38e107a0eb1a943679cc18a1d291562c9b0741e2f14ecc2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30a55cdc682d98b8f7f1e8d3505846ab302a5547ffb7cef85607448b090d691d
MD5 e0cb6bcb6cb25c74a267a45175fc55bd
BLAKE2b-256 f34f7c006db1cefbc8ad5a4b772d586548efa56661f4ea6ffce5a57f114d6c31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4027f160e5109d6aac1537426d8b6e693fcca393dd9488d986ec855caf6dc4f6
MD5 a364c1300abd5e7169282f3b5add3400
BLAKE2b-256 c7c48640e86e2cdab212e8c99be747928c20fa37906df9ac653a40deaf248ec0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4351fb8d4b12b15f39ed076a21d53f9542bc0db09ba973c04503b31ef8268332
MD5 053b134019e73493a36dab3d407fcbad
BLAKE2b-256 8ae902e56ba92b099b22b6c494bc33e80e85e30c97150c682ad511bade4c7357

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6612437f2c761dd0b31569b28b8905bccfb88dc1aeecc9ad20fbaf346eafe989
MD5 56bd46d698137e05d267de23342a11cf
BLAKE2b-256 6d17f0c8878103983b87933a8d96b38df51fee89bdb905fcb7b42d639bcf9c72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 495b2ac780e4d4f9a67fc79b7e84f21b09661f362b93d43360204a7bfecc4fec
MD5 3e9e5687e70e7a85ec80cf7f53e46b44
BLAKE2b-256 4cb8bdc05299241f289dc447dc14f134c887b8e946816c6dcf6903c88c345c29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f91ee8ed3d9ccb832dbc93e6b9d85c2a9dc73a7ea5d0f3ee4c3b64136f6ba598
MD5 9ed470f6be57e77aeed357d727b99c41
BLAKE2b-256 bf4654c8185145efd8f6890fdc1da177956411badf6a03931bcf01bde02b87d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8f48df4f6061d4eb0c43867f8b82575bcfe05c8780ff9f21e811535458f6e0c
MD5 86afcbea2308984f67d711050b4c9860
BLAKE2b-256 e7dd9bfe59b7464b95989c3d578a4f181b41b1201d09c82f3be5ff1c50140ce9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d06286278ff413a1a410b6d4f7712e734dbceb2e352fab89b9c4448dd9f3d679
MD5 da230b9ba10cf218ef0ac90ab39ae12a
BLAKE2b-256 11acbe75394a100b8f4d8274bb4da30b57b483772157aacadca8348e82128c40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.9-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 aee2910e6f06f6d229c3b90e277685a8f25fde54b3a4220cdf5901c925d681c3
MD5 4e92c1ccfd069d6dc96763fab413e804
BLAKE2b-256 e87de928db176324cb343054f3d982035f791f0f6974e25e3c7851b937a68b70

See more details on using hashes here.

Provenance

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