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

Uploaded Source

Built Distributions

aiohttp-3.12.10-cp313-cp313-win_amd64.whl (445.2 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.12.10-cp313-cp313-win32.whl (419.3 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.12.10-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.10-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.10-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.10-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.10-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.10-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.10-cp313-cp313-macosx_11_0_arm64.whl (463.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.12.10-cp313-cp313-macosx_10_13_x86_64.whl (471.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.12.10-cp313-cp313-macosx_10_13_universal2.whl (693.4 kB view details)

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

aiohttp-3.12.10-cp312-cp312-win_amd64.whl (446.4 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.12.10-cp312-cp312-win32.whl (420.3 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

aiohttp-3.12.10-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.10-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.10-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.10-cp312-cp312-macosx_11_0_arm64.whl (466.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.12.10-cp312-cp312-macosx_10_13_x86_64.whl (473.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.12.10-cp312-cp312-macosx_10_13_universal2.whl (699.0 kB view details)

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

aiohttp-3.12.10-cp311-cp311-win_amd64.whl (449.9 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.12.10-cp311-cp311-win32.whl (425.5 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.12.10-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.10-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.10-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.10-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.10-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.10-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.10-cp311-cp311-macosx_11_0_arm64.whl (468.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.12.10-cp311-cp311-macosx_10_9_x86_64.whl (480.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.12.10-cp311-cp311-macosx_10_9_universal2.whl (707.9 kB view details)

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

aiohttp-3.12.10-cp310-cp310-win_amd64.whl (449.2 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.12.10-cp310-cp310-win32.whl (426.0 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.12.10-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.10-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.10-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.10-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.10-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.10-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.10-cp310-cp310-macosx_11_0_arm64.whl (464.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.12.10-cp310-cp310-macosx_10_9_x86_64.whl (477.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.12.10-cp310-cp310-macosx_10_9_universal2.whl (700.6 kB view details)

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

aiohttp-3.12.10-cp39-cp39-win_amd64.whl (450.1 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.12.10-cp39-cp39-win32.whl (426.9 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiohttp-3.12.10-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.10-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.10-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.10-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.10-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.10-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.10-cp39-cp39-macosx_11_0_arm64.whl (465.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.12.10-cp39-cp39-macosx_10_9_x86_64.whl (478.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.12.10-cp39-cp39-macosx_10_9_universal2.whl (703.5 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.10.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.10.tar.gz
Algorithm Hash digest
SHA256 a9871b1b1381f8d8241f3ff3de5fcb6e2fdcfe8af43c35bb0496b8be550c5fb9
MD5 5f281750aed77353340c84d8ea5f2665
BLAKE2b-256 fc76cc6f37a12372dd72891dad5ffc3fc71375c2f92bb4a59f7ac11119332559

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.10-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 445.2 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.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 705d10796f3a0bb7cd473f6fc2918eb3629b1a85aa3eca872e34d3b11c9895ac
MD5 23479c355bb069e58a709afe043b5983
BLAKE2b-256 cdbef00f066fc2985dbdce12e885931cdcfef2e9a6a713cf96a3f6e9d05b40da

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.10-cp313-cp313-win32.whl
  • Upload date:
  • Size: 419.3 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.10-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 65dab452be7b11e58af797b824191dbf6727a89f61e52ddd6508bbcd3dcff1df
MD5 1e416c528c68c9511878058cc5aa5f33
BLAKE2b-256 4b839f76cf9773fb06ba7fac2678a4f419cfc76dad8cb530fad2091d2a565c11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba6cf68c33434e9f07f28e56847533116f1be260fdf4f2fd6faba8d0d972e62c
MD5 7b8187984c4783372d1afc46f55ad9ad
BLAKE2b-256 ef6b8206de419fb0f16e3ba32855a26435a869d06492b25c98313d021cfd0085

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 00d801ad3485c43f2d630c430bb023f7c22eb7621bd8a6f83dd328e730ec3cc4
MD5 eb08ad934ba3ae6221d989237d122a62
BLAKE2b-256 c88237ce4abc00e0f2e258575c81b66ee053539794140a06b473a553d5d307fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2f42c1a05a852ff1b8047ef3e5b9481e6ad9905feeb46b51178e27d8d0fb799e
MD5 aa3ca9a1734c1a4224fee6150bc29989
BLAKE2b-256 56b6ba3aa5a991e3062a3f1aa0d7b02417e4500c809b6c3b22de3e1e6a772138

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a9a616ce193b3118e458dde1642e142790fd9ed4cf3ac137fa8dc6e1d8916c5
MD5 54f66a824ea94302f942bf1d685ec61b
BLAKE2b-256 f02d0545d5c448cfab3b16893f4e116fe7967de36101bd9c260d4a866bd04bd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 14dcdbeac2c1d35c632e2feb4946958d04eb734b3866d43d94bac257febefcf7
MD5 4fe589dca4b3cf87d4af7d75d546c715
BLAKE2b-256 e344637b86bba785c10fe771f7eacc02fd4e900389b10f23a9e8c7cfd7c72016

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f353d8ba1bb7ba8ddc741949bfa576f7cf7a37464e1b32e94c61fb872adc9918
MD5 d67230c125a696f8547b9a46a5376aad
BLAKE2b-256 80e05917f3d74d0937bd14229ac4292c92b712fa4298ad474100708052a5771e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc13c484d21ffc819b0e569e1b036ee6b6c5346436619d22e7bfb62e1fa6e916
MD5 526e8de545e5b96e6ad038cd96bb3275
BLAKE2b-256 a34eadde11a354a674de340066a5b57eae069c26adaa4f688221f619fb4edc2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 82d4deeef4b09e9f8526f1d677b1892d895360f54c358ca9f0e596a30c9ee947
MD5 7a22feddf2a05e6e56879b4d0eef0cad
BLAKE2b-256 03fd3402c5f4f5ff24b86a74af98d054011577f3a05ce22435a10ce26f4fff28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d6a8d01459299a34248fee73bdd92ee1d784f6efee61082e8912049bb6196ad0
MD5 b9245394c7aad67f1efc0381fd0047aa
BLAKE2b-256 f021fc3ee9d248aa064e582ec9f14f6170aee09535b3f7ec1d7ec4dfa3e305d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b8c0cbb43ccf56ac22db8aeaab3282ad232123f1cc1cd049d4935482663c7df0
MD5 67358a69b48b097f9b2b40f2c5bc0014
BLAKE2b-256 ff86a4a88ef2fa660a20030a0d6acf45468bafac40155807fe4f8549aab8cecb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53e2bb3179c78ab4dc693d17b1b94d8cc0127150fc559085dd2fac0a782db019
MD5 ef0ccc4fa801bf674d61599a0632f3a9
BLAKE2b-256 4f03befd7ebed42b17c8e73719bfd40f7e575c685f4fc5b3f4b558e4bfed4356

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2f61943e0c0e492ec701445b36c1ea43b5f196a79639ac799f9a89f3baeb2cf9
MD5 fc571d08f8aba03d642b85ae97b8d0e2
BLAKE2b-256 aa9fcf3fe9500aa0a35a5193a4dba00f9eb4c2b29f3a8c4433b08907db398870

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e24090aa1968191a3b15ae078ed5ce4d12a9b43b4d7fba1ae064cc519134385
MD5 a44a6f5affafc0b09a379869f0258163
BLAKE2b-256 f3674172e0cc08d022a620ec9bfd2de2384bbea88fd6e59ffe8021916a01b188

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 19a8d362b222a40fe97cd1641ce5c6a1fb2b2fbe2cf247d514f84f9c1d0f5549
MD5 7216242efa134e08c50ecc01d5c1d6c8
BLAKE2b-256 a6e4e4f5e0235e46be576843f3892ab4a846a3cdc72f44e4bc62d38c903a9f25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e093a24605e8cf71d8bccd54672581a72404b84fa3adafa2c416b67edff1ced1
MD5 79e363165a025ccbd8212ca97c0cd76f
BLAKE2b-256 399274b8f79a643a87069e4e0ad9621e9e803d51798eba30accd785c71005ffa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.10-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 446.4 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.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 db8d26b8e901502fd3f9c2bb5d466beb35ebc8c02877bf844789f4b4d87a37ab
MD5 42ee33ccb130c1a209bac3142e0e5ca0
BLAKE2b-256 aea8c42afeb43a22caf304eaa897d4c8555d303e1e7fdffc3f9dde13e5384e84

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.10-cp312-cp312-win32.whl
  • Upload date:
  • Size: 420.3 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.10-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f06c6f233123280b9ac1023051b62a1444745f7e92c6196ae21dd74fa52696e2
MD5 dfddb6ce5ef5360bebd3477ababd017f
BLAKE2b-256 8c33f8d294864c8fc4709d835130b67bb136519ffa95c3533b49445c5329017e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8292511a577d2d21ca85ee73d917bde3c76532beefbd74640b25e6e0f5f6eb61
MD5 5a4159ab41d1cbde9c622e354cf30d54
BLAKE2b-256 3ee984d5e083487d633fc0f81ae0d8ffc06905215ea7c85733fee5f062a7dc7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7c032210a3c5477269ba414bc4eec2689630509184cecceda80c746325fcd946
MD5 7a4a813f72cb5dac9d81df3908add3a9
BLAKE2b-256 e8721b3850a09bc99a86c5c177c32dd2ba199826359ece1925d584ece10f9f0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 05f1619126d679effcecac71caa186ffab93a6b03e638242c741653844a51f0e
MD5 b6b63967c60e3c5d71bd64aeac258147
BLAKE2b-256 0f784ad7961c2275514f5ff7207c241d9b0be9b5924f1fb4aa760c07c54278e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e6b713c983907b2dffb114b3e1573d3ff97fb912507d82dfe9dd7629ca72d963
MD5 1a1ff5ef5173c76c48b65a13a51b43de
BLAKE2b-256 25a0249513b6ffefda1954d99602c1db2ecf78e7aad70306903a2daae9427c42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2c2dc19ab7d59aada559c3c96f4373d5c01794d53c1a18f0d745cf6843e5a917
MD5 8f570665ee5a2f2f191e02805cd58479
BLAKE2b-256 e0d05746e348e87f5b4cdd9f10a95e3af36559fe1aae0ca62a6cf51f58039559

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0cbddd75a04e09b969a550773ee6c00bb84bf020bcd4a2023667a4eec1d4905b
MD5 f6ee93998771ae6dc9e3af252b2f9cf8
BLAKE2b-256 a4467f71050bdeab9b486e9daad6cbd4a8665a36689040d6fd1b153dfece2c90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f077b809f40bbb56e131d4e7170a840a1f3508da42cb1006503ea92dae56eb8b
MD5 7675d4faefec57a4d7768ff943fd073c
BLAKE2b-256 a9faec1a521324caa3e06b152ef1f3bf18c1e1e11db39914db2208ee96a7ecc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b97302588e67d973bfae16bf9dfee22fcc6c10478275d53baf00d827420ecdb8
MD5 8c2a3c7ba8a5ed46c4c39e3499433e97
BLAKE2b-256 39f40424b5286a4cf2f4bfbafed6b350a2ad04bc723d75ebd54c04330c6c031c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1ad8d06941d3309909972b36ac7bee559ec35ca2129414309dc550ee5fc8ab31
MD5 6a568001a5ced991363d1ae97c991ed1
BLAKE2b-256 a71292cbeea9bf4e74b2a33d39b2973820c6372998202aafef498972d45bce43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 318587425795f16e612750cad5d4f1e4e86f5d36ef6e35796fa4259c794973d6
MD5 4f22421627228ef8ddc58bb4196a8474
BLAKE2b-256 6eb6404fe601d2aa5af418e94041a7104aa2e1dbdfc60ea23860c7f6cb70c5b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 883d923cef0393ab6c2bc177b3aa65eacb95fd3aa4f5d00cdc38c9670fc24c18
MD5 cae02b94572010e12992d72f2ac53e36
BLAKE2b-256 139dc06b8f17b5eb2e8c817cd1f94d6450bb3a5cf3c1b59d575ec0fe22248515

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d9a412c89f68f3f00ee3afe9b754c882b3a59c0de9826ebfd19451077555b71f
MD5 343cab37c304820dbef662ee765b0c24
BLAKE2b-256 7af451876cfe3cc3c09207339625e1f625fb2d1edd9c8ac839b54f628bb89542

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 151129084b08223b7fb425e06536f68c54bb6e3e7aec096f795170dbad516d29
MD5 1bbd70f3134b43bb64e746fef505f6f5
BLAKE2b-256 e280aaa08c1a118f74be4e62f15ec949f166d31d2d150f30e117afd95ac0094f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cd4560a16f6370c395bc9022ca6d785dd3dc15873dd3846039bb1c2c4d515ed0
MD5 6477a7670e454854f1ac1cc6b68c87c7
BLAKE2b-256 a19ca39182ef5eb3d3dc5844c9421d0e743acbce2a2f8b9dd44946797c998301

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 986ec1b4ff9ca0842259d943b925af2a546ca055cb6ac22062cf3443e9ad844b
MD5 a739e89e3fd4b9325380bf699c053caf
BLAKE2b-256 e34d1745c50186ac3f50df2c67727d87270dae0376fd29cfc02d49884be61337

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.10-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 449.9 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.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0e0992499b0ac711d58dbf17e896335b37fa7a6b6b683d6687bc826d639065c4
MD5 58aa30ef3cf5949ff18fdd62a852f36b
BLAKE2b-256 8fee295fee9e6df04425c91dcb23ba0d558982018198112c50ad31e8ecee0817

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.10-cp311-cp311-win32.whl
  • Upload date:
  • Size: 425.5 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.10-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b6142f26c9d3f00f869e262d7cd3e4505c515218e08ea206703a789cd671ded6
MD5 4233364f21e8f905c60eb173ca28ba65
BLAKE2b-256 ac8fe5f22c0738a9b426ab2c48f74c52c363a0c5379330e80153beb8e19c3cae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9883d6bcccba88d4637e1b67734089b9e2a2f8a34dbf5171deedb4d61730afe7
MD5 b6bfcd2f8362208f5cd9b164fafe6a5f
BLAKE2b-256 5bcf3d91b8b40acd4223b7fe1480aa3f5b6ab872a40dbe7fee6d0cd801911a31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2decb66dc0c2d4ab3e4a93df23cdede83dd137143e4d3e5eb5731582244d04f4
MD5 6477a497ee084c6a58609b8dc3fa7ea9
BLAKE2b-256 f7699ee565b4dadd240f0ecd17a1cca7a089cc9d6d7c13877b559076ae19270d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b6d8cdff8cc07ae46b4605781f46ad4cce74284185db0dfd787940aa81de9886
MD5 475eba1b6f718b780805643201098335
BLAKE2b-256 6ce8f13346f78b3e3d0432423ad31518f05624763d78d84588495e9fb90cddce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8431f29223bbb5f9f0f6e0f110c21adfc59e685805bd3b2adf5526eac680bba4
MD5 14e2220cf2e32a9cc655b9cc48265956
BLAKE2b-256 0178aa5e356859bbef4c730e751bbc957cb98f57443789e6893e8e1bf730a246

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e325c1248f3c146a7c794259666e1a0213d5d20b3cf229217755031e5419d5d9
MD5 1e3599c24e0b252e9f1fb178e2f84d7b
BLAKE2b-256 db2979815be5b9f0ecbdeefb0e16a790d2538d8e29d64ebb129cb6d02d59b064

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b5beaba7fa473e017b6fe0e78f29613a10843218f6891f41e8fa69e27dff68c5
MD5 664760328ad61fec40b80c9654e95267
BLAKE2b-256 828177e092bca175c11dc301ae5b9e7e73df6628e56e21f91d4520bbe42f7ebf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87565e6a4b263fa8e0c08dfdda08d4734075a754fed573d5bd49bf35b3464761
MD5 4b1fb8953efbcf5608c4a178181c7363
BLAKE2b-256 92b8ef600b7b5d16a73b6d177131dd04a672b005143cbdd812a5145978656581

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96220c5ee843d0c497d381a080f420f06e2be638589cded9c5ca23e8b36619cb
MD5 da25ce7281413f2be598f047ca07bd8a
BLAKE2b-256 0b38caebe83806fe77d2b2bcb49fb35ad045d168ca2963a84d91c0c91c09c447

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a1f57c15b139bfdc5620be94d9abfe340924c665fb0fc9331a340ca5ffeb3282
MD5 2c4e1ccc1ac1940c9bc0cd1398102f9a
BLAKE2b-256 148cc78927b93fce98c0102b4aca7796642f97280d70e4bd527d897a3ce80e61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 11de2738af979dcdf25debbea45a7dbbbf03d4ad6ecaeb93bc387005bb2a627d
MD5 4d188db370bb075a4aaf93f907022a33
BLAKE2b-256 1c9bfd221288f5bb12a9421cf2d7259a9fa6c0ae36228a28ec4cfb00deafb0d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 215db70f6b6d01f4755763a11f9c277ad5828fad348df3eb4cb67e23fe829492
MD5 429dd7e17378190507d5e04869ea682e
BLAKE2b-256 b2c6dad195e7d9833b0195d7ed49f2a930952ba050da82dac4aa25d4c5a53c04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bc8188293ec4b5dfddef05bde32b180e927e7e89c78dd29a7fe629181f87b753
MD5 f988fd6366b5c8dc37ed42e9b3b6fd6c
BLAKE2b-256 338b512e1944b0ccd26012ed363c22d234c5c814011d5c511d2e3805e31e6b33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8bf5b5829e006bcd7ae31d44d4afad085a88176f896f33ed36197fbc52cb2eb9
MD5 60cfe6c6fab8ed3ce818b0fe5078725d
BLAKE2b-256 0c97fad5d0f73aa5fa90a4c31ec108c98ababdefeb093fdde5b40bc228d95339

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f040d9c100ea258e8bd8fa0f0853734afb640cbe7c8ed060826f1c2cde0c9fee
MD5 b885af3c43eadddb8a29f0bf188f8bb7
BLAKE2b-256 6d78589bac4edb36b8b3c9a67212390b9953b562b7405e8915ac636adb062cce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2a632c874c102316f94fce1a76aa7dc9d3b2c19b0c6f9a971158618e53429bc3
MD5 eaf4306c29097947d136ea79ec74d30a
BLAKE2b-256 0617e1bbc25c5f64d860c63880999b0c1dbdf45183b88b771035901b83adabf0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.10-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 449.2 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.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 43f6923780b0d12c2e059710e5fe02be357d53e066d87a1129d47fe1ffd80ec5
MD5 d5bb8d6e33d58fa439f4856dda8b8628
BLAKE2b-256 aff2b55e581168940cf67eb25a6a8472379de576849ea0ca3e1325c3574c15d1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.10-cp310-cp310-win32.whl
  • Upload date:
  • Size: 426.0 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.10-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bbc0f9a9bd68da5ef54179329d2a5ff86d7b8cded12fb13c06950f7fb5e8ae51
MD5 5839dd3d9df629f58a2a9ced15d4fc40
BLAKE2b-256 45533e0864a4543cfda98cb2fdb53566c25d6d90f8d23f88369801cd891ccb2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d031808192703259a49da1e8b4cad95eb8b076de326b432f69495dedb7405e11
MD5 a0e3dda4cea41e4b631d72b923f7eb38
BLAKE2b-256 183a41e6f947e4ea8f4686ce04c7bb4b27514ebf4b4feab70d17d4f6ac6fbea4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 91401ae05e711689c8f02e4b3f72ae8a14390a31036e5c7d86d1fc6c9e14fb40
MD5 b2a885c5a03cc251d1f9821ef23c4733
BLAKE2b-256 0f2192abe35f29eccb31e3daab00578e8435e211851efe077ec691698e56c1e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 52f7666b76437f317bb3699b28462b5ebceba5f2dd66ed3fab4f3b1dd68d3968
MD5 5121fd994a9dc033a8ea8a4360aa8240
BLAKE2b-256 895c9bd9a1ceda7d8b3a13d49bb3ad07e529a57a48934b72086e95b6ec5de2ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 303ddf7efcfa7ba38c1ee9f4d72184afa9585a713ff057daa8b2e11af42ef1e0
MD5 6f14b62f53876a242cd0c903bf2d37d4
BLAKE2b-256 67a77ae0ee67e5d8ee18d1e50c4f3cfa16b766cbbc7185a779216796b744b3ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 127690e5eb2546a43bea7131094028fc029d150f2b5076f85cfbc25b3061861d
MD5 927f6986c85af81be6f3348b212c46e6
BLAKE2b-256 53003bc112dfb1e38757716029cb9bc28270bee392049c716981e68a90e7b763

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b8d96ecf7afe08029723e2fc7432ec4afb45f57cd3ec788402cba31e11704d0a
MD5 846d746e20746644795ca30e7b3f03ee
BLAKE2b-256 0b48b6647e56dbde389c5d84bddca12a7b41d64082d189922fe79bc03860d7d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51ecc537774f0a1c9ed7054d8ac86cb1cbfe6b053a0a9899782dd4d6f83a2c4f
MD5 e282bb842c383e87b19e8fe50d005b5e
BLAKE2b-256 085aa79b05fa77a3660259a3cb44592a7bb3cb936b09ebf4de9265dd9257762b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b9cc720fe9b89dffde534ac470d231f5ab867b6866ae3d3c3005dd7890b3bafc
MD5 89d7dbe69f8b68cd00463b7ccfb6972d
BLAKE2b-256 0a5ac89b52f756c8e391e790f570ccbce754da565b3466b0371c6f760fa43a79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad9f688da4a971c1c47653ada8169066312eb1798fe860035867eb3dfd2df311
MD5 aaab2445630c2ddd7bb713eac864e744
BLAKE2b-256 977ff3175e3b91a8ac5a50c8ae3333e4859fe281dde945ff948dd1c886885280

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 884e519a921a62816cfe20bf65243f03868b9d02f13c3d9577e18c55b63b1454
MD5 348a24fb8271c7b17fb152ee91db3807
BLAKE2b-256 dfbaa6a86b41fbb26a9f8a77bf01312bd165d364948872ed6cd1991d98311a1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8419434bb1cf3603d5fa0eddd7501d0b679db3b3c30175d40606e39dab6a141f
MD5 1ca1e220555044428bb1d8fdcb4c8bf6
BLAKE2b-256 98632010d7d6ba4613e99046830faaab9fedfec2c6a2c030f9f775d9cfafd8c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c323f4c105bdcf586f749822738ba6c8176123619e4e2444a6ec2a8b0adab5ce
MD5 973b54916972485fdb2db7c86d869f27
BLAKE2b-256 2aba2ab22d5a0eff5c3ca571af15fc465b933fe9d14ef845707dea4e59c5b8a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86e131555eb41dd058aaab8736ae6f123071585a86ada1526547688046e50e26
MD5 2c043756c695135d0dce9c795a3256f7
BLAKE2b-256 c39423af1fdc3651b6a2ca59eecd7e3bb4ef0e057e5fb2dd1088073e9148baf5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c1fcfcc77fc9a4a9abcb4f01fe658d02e15b0446cef81010ba6945cbcb743f4
MD5 d26587c6628dbf070431f55999684341
BLAKE2b-256 ae3cd963e0077dad34fa769acab5d5f33de05e3caef12b3d3b0ca847461c0e24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8e702963f298fa471c046b38ea50992328afa1120f1c714be38e5a0e0eaa50b7
MD5 6951e327884c6c63bb8c14bbb265bf67
BLAKE2b-256 22af869010ad3b52213aece9231fda1b9d4cb2fc820256b89906807ba0c78018

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.10-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 450.1 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.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c7178ddb1b4137b2076e652d8d507147d20b6cfa7a64d26bc32c6a099f423528
MD5 b302bb719203bbbfe750de6e1a303828
BLAKE2b-256 0892fe09b8cc4eabc34ba908320834bca9fdf134b9daeff7a661aaa9ce64586f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.10-cp39-cp39-win32.whl
  • Upload date:
  • Size: 426.9 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.10-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5b5e97582eb3d1674d0130c605508da18dc6b2a2f52a01f4476b27f056594ffe
MD5 81554874613d2afa0aa8d199ad4cbf9c
BLAKE2b-256 04afdc60c3e6770621c5fb1d85a6aa6538618734205c9b6f25b54307d7dde3bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 870326b74e23a2d6960096630830b6f20c0f87ea291ff6271a878d9a2db62174
MD5 a3a4b0b218bc54138da49d5342d34f3e
BLAKE2b-256 466d97ef20366da66ade7a7092ba3e94cc885d8400d3e0026cf9a13fa5f78638

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 71df8e89efa091578f1a078ea9253668ef63bc0d9fc14e4e8072c60ddfe03733
MD5 84a32b62ab6ff6da43447e08b3afbe8c
BLAKE2b-256 47855e235dbd745ef4495c7b7b1d0dd8015013a267fa9c3191154694594b8769

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5aa6eebe6e5a62c630f8b53d9925f94c30d12e03b7dcf21db377295b0ef3c232
MD5 b12a2547aef75dfbfd6c4b0f25aa71d0
BLAKE2b-256 ef854ad85a1b2b7dadf4a6ae65a76bb91040156e9c8d8d50dda2e1815881872b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cc60b450ceb4cc4e394cbff805ea81ceaaf0a4cec69af4ac31b165028aa28045
MD5 1c40a5960f48a9a0b71525e3073011e9
BLAKE2b-256 ad7391b40438ade7b213568eaa1fa4f0a3fcda75457d798aef3685992c3b252c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f10f267b7cbb25b40d9e396b4fec7d0ab68022970749b7e9755c53e00f6666ab
MD5 acef3f35eaf7e2263276de906f97bcd9
BLAKE2b-256 3ea1b6a2a8842c53e2f10f281723fe3ad40d6bd05521ad5db39a5b07c63b3b08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0aa51ab3ed410b4e59381cf2ed8048ebafdc7d5690e80623c851e5451a6e8a0a
MD5 55ccf1d76989c9d1c8810ee5f230b328
BLAKE2b-256 dfbe24f01581de3bbac2aaca844e3df5d7f1f64b3a515d5d3e25f7adc2093229

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de571f72057833604a7620ad627d0b71bd0288a29a75384f8b97b7ba1dd5bfd7
MD5 cabbebdd910cad86020b2b3c949f9b0e
BLAKE2b-256 5508e3af0809047e76cdfe78442e2f25dd8304391bd6f1bb59f87704552053a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 680832b26b09a2784f93b94d894bfc7709441552293a5773e712fafaec1716ba
MD5 37e74ca2e8fff11c5986737129c01b8a
BLAKE2b-256 a32468744170dd4374a9a663e2819007015083fec79ad8b66c8d2f4a0b05e217

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b35e461e0e99b438ab61de6d687fcc3b6f68c0bc41dab64b4e5021786d445aa
MD5 3ad102f0a3f19d61b8bff86b96449dd8
BLAKE2b-256 a78a9a70781d5ab6c818152c18c09ff6af7f040c100ba69c7bbcb20981de4268

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4f20e14d553a73a41d6d8e87ca1d44eebfbac100addfd2c38459e8a6e93b065d
MD5 2091e7b17e92b6c3ffb3f7e9d5c7efd5
BLAKE2b-256 078c0db7e1579df6b8c1c78c31648c459a9fc1d92a9e9f34adcbd49fc414cb3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8e439e439d28e8a45b2ca3ca3bbc154d1f5490e06b637b6e62cb20daa94d221
MD5 4cb001de70a4014eb3f8ce69453a1472
BLAKE2b-256 01e6608ef943a6bbceeadfb6a8b973f7d52b35b766c40c92df7e9805e8918bbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e1c04b27b8a87692a061fbd38b495f5dae0f7f114d755d71528978edd2f06c4a
MD5 75da5bee8f42da47b09cf363ba143446
BLAKE2b-256 31cfb3a854f4122340b5b53a211e98f61166e5e731036b952793853e5ddc1ef4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22b43ecd749901f63513d87333d16faeeecfe9d7d61733f27dd2c72602abd2e5
MD5 66b5cc116faf912857414fc1d62d2194
BLAKE2b-256 053a5b895000540ef893542b6cc87c2db1a029c5abdf3e2dcc90769c1f832b32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 203cd1122278b33c60bc4d6f63eabb1ba5f4841f9582a20ccd6dcfba99ee8c5c
MD5 308d5b584fc05c495034a751b1d35d01
BLAKE2b-256 f16c3512e129ef792684302afa4560391276bde31905561af74ba7886b3838b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.10-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7a8af50e5ef94e59781a5848ce0e254f9d08465e431a49f79609e3723db95fcb
MD5 a82db8a32fb6cefa0c3d6be420ad14b6
BLAKE2b-256 ecfb916d6dbdf8893c1579c06ed86feb11f553a2a26759aac9c2639b9969257b

See more details on using hashes here.

Provenance

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