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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

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

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.12.3-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.3-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.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

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

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.12.3-cp310-cp310-macosx_10_9_universal2.whl (694.5 kB view details)

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

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.12.3-cp39-cp39-macosx_10_9_universal2.whl (697.4 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.3.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.3.tar.gz
Algorithm Hash digest
SHA256 4929e2ced6fc480ca320615804a50d37c72859506658e0da87272e9152299a3b
MD5 13f8e7dd5b7a8fd811c1d423f5bca008
BLAKE2b-256 17e94428ec17591f030cbff8e82071d1076219320573e900a1468b8f85be2b7a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 439.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.12.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 54d819b593d33925c60c80e18dceef4b5ae5f4c467d221821fd64fc633d286ca
MD5 728daead7584f91c01248788b07f5438
BLAKE2b-256 066215b789d51b464ac2a40cb6099ae051d229b3d0ffdc6aab3dc60106a70999

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 413.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.12.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f1f1c49bf661994abb60b8933ff4d66a284190c2b866006bad2b38cecfbec9b5
MD5 4b73bc05ef848eb8eaa0fbbb1f53384a
BLAKE2b-256 70269f32be299c5aea281b9bfa050bd39fc330ef2af5959051351d8020c0be11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d95651f48a96d8bfc664dfca672653ebe16d9b2bef9b26a823823745428a916
MD5 e3aea4147b3507de744b9e81f115bf35
BLAKE2b-256 9729cd5f5275b0bd40189bdb6abe62d6262940b366c53a111a95953cf82932ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6757dce5dbcf9c8557e20fd124235190ecac33ae057bf480de4248702d95b548
MD5 261b4980b66a7573bf5c87bf19ac2c3f
BLAKE2b-256 b541960d62d10d36edd29ee6c7be93a55190a9818ca5e193194c94ae4de7fee9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 328581f45f6eb5f9ed6b82ad4553fd6558fa6ad9f975618ae089e211bee5def5
MD5 45aa8895fdf681793c543b091cd1ee25
BLAKE2b-256 352acb714b2507200b3cebebea002a39afc34c9412872de093e01e8aa8ac67cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f57ee0a9921890aeacf3e015bf9e3ff5b106068ab5e72b628ea9670c3e7668dd
MD5 61bc46faad875bcdadafd3897807552d
BLAKE2b-256 a6f7c6f947fc2c143a1624f34daf6a19f5ba2dcdea0f0a23298b87c48bb0fe08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 27bc2808f875fd29805266741647d800546fa4c94fde9c1783406223c1b881f9
MD5 308a6727fe5bdb3b2f36fc1489b636ff
BLAKE2b-256 a7b0b49cac9e01819bc6c704698b3357568b624abaf3a93540e503bafb550b7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c2473b0919be07c3990f633f7dea9f3447a209314d682b946eb99b977081fe8
MD5 8b725d3ea1a6a290d3e31651ad94a639
BLAKE2b-256 514cdbce3c85bc18f02cfc7c05c98cb771a251ba1c1801cbd13401dc47825a6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db0fbcf937d93b4a5b3aedc722b89575e4fe47f6ce14a76ca44dffb83f8696b7
MD5 f948f3475750bd03653988daa52746bf
BLAKE2b-256 37e2e5a3d9cea3d96112544c5b2f000f3cbcb65cfc56b94c256689de8c20f600

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 01f2299e3827a4303b45b873a8c68959c1673235b6240239bdaf1cdf5ff6eb53
MD5 eda30aa56df1a57e6ba554e0f3535f03
BLAKE2b-256 0064bd2a13799f428ef5966e768a700c6e9dc77db649b8ea3034973184e70cb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 98286ec39d13cfafd32e5ed9bbe4e7d440de77ce67ef8b46ea40213482135062
MD5 1ded64b57b7fcd9ef54ba40567f6c7fb
BLAKE2b-256 a7133b7137b0a0fabd8d20d223b62ba77185cb91abfb8718f551e4e92202290c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7f23a69aa21fe07a50c0eb18721527f5329500ea999747a1e7c6f8cdf26d7e95
MD5 d94a1ea4b09e5dc92d26f30296fafebf
BLAKE2b-256 5a6293363986870cf366057f23bcc9745aa890ea73227475956f5d26bdc07872

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32e3dd4c7882178f40c482e0ab1fdc4158a1a12f076b513b86fb7fa65f632358
MD5 dee73162e85d7e4cc2e3188fc7950bad
BLAKE2b-256 e7c6a19832390497d7e72710bcaf9eaa17b476e3296bdb60dc0f66186a3eb73f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4af1079c73a02ec5959d38b2395c1c58e4276530ab6d430d6a2a8ba5abe06dca
MD5 c2620c9cbf31d0376ee7595a2e66fca5
BLAKE2b-256 1aaaa0bea5a4bb9cafa5e65973eb757d0fd6924f83ec4e49e55989daeda7f458

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8ac2f3492ad4b230b95960f2c3919a552bf0f5409c637ce6756be50ade6b341
MD5 49d247aa6fcd4181e90e3bfd6f4cab4c
BLAKE2b-256 ae0c3ebfaebcfabe37cbbbc80af1761586f6d4caee2ea72b799b859583553519

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c08a7c98a7f70c1168ac4e83802c9c7832401b7f94b50fe0a7d7f4eec4685e93
MD5 3553f51c0b1bd381a45dcee70e519737
BLAKE2b-256 5f94847e1b6d3d57c02e7bbe43c1a8f865b42e856c5d855c0234a5bc37716a68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 0168d82e4e3e051a95161f8226fb68ec433a353eac70444f8eb2fe386c61cd34
MD5 9dfea33708a5b2c4f1881ea457b2d04d
BLAKE2b-256 68305fabcc8038080e024899ed476eed6324c8314576fd3e145084ca2e7b096a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 440.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.12.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c9b0ad63902224a0ccaef6cbe2753635977fb542b7ceae723e77cb397dec745e
MD5 cc966694aedacd7dc1dceada72480eb2
BLAKE2b-256 31f71b5e93d66bbe99311778c491e4e882bf4a13b064c940a1784e71f865b888

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 414.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.12.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 85f7aecfc20741dcb3eb518117810642f4b4e19296309db728a3c00a1fe7a8f2
MD5 6b3b610d409fa5dab9bbb0fc904d893c
BLAKE2b-256 0364c978baac1fa332683cb2a78b3f5e4a3d2e6bfcfea98817d653dfeff5a771

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d68dd4f4ac7cb6728ac27a6c09a625b79dc03f63783b39ba04baea4af7284e6a
MD5 1d41b770e69de69aa5ba8be9ca4b143f
BLAKE2b-256 a50bcd1a593e5c1a9e63672d82e05d6766a7201516b3739c16853ca3cfb275c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8006b676a5fb12d1ea8927af6898f27d756f25270b9785bbf7e56aada2648071
MD5 b1f9b70f15715303d3f7f98af73ac6a3
BLAKE2b-256 0a8997da343ed3e8a2944def5523b083405f91450829204a93094d389d483c0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 60cb4037a457105ea4803f103c995f0ab6db69a533749e04689ae424aa4cfaeb
MD5 87264132e85bff68e88de2446d8c2298
BLAKE2b-256 5dadb32fb9565ce550b71762cabece6135dba2d4611f16d9cf0714710e88e17d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8ac893f7e69ec6ed85d02e3e9d1c4a34f31c0edb8f20e601e89b484b18c57e6a
MD5 1e9b575373b03c15d924d7e1885dbd6f
BLAKE2b-256 c10e1f235d37cf36396deddb8155ee98fa5078af264ee64d80a3026a0efa63d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a1753877fa7c10c8de46dee3d09d55892bc148399ad927c459c0a4e3d3c684b9
MD5 615f40e6e708397488f6aa9466acd667
BLAKE2b-256 45db76ab78b209fc9e6a6c8a1044c7afa1db500220f2073129287013f3d8a727

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 94253d7a0dc1abfbe4293c95ec4e60a4dd3f7a826a0decf0cf36ebea9022aac9
MD5 95277fd10c360fe52c3a28fc42ef2af3
BLAKE2b-256 6a3f5c58c72677f019f41f2d4bd593c2d08328cffb2131bb3b808c8594f60020

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a54047262dc06b333ea0e34c272a54b72698c1dabbf422d2893d2a89948c1e41
MD5 6c926ca2553c02857045fb2eae6efbb6
BLAKE2b-256 f27f02784b5a7f94c74ac8443e468929aabe6e33d100d4e4359d2fcba3ad20eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6379de92d95a3fa0f565227eaffd2418fdb568633f79e3f4da480b06ba911da1
MD5 6b32dee987ff20033517300583223628
BLAKE2b-256 dd56d36ca9273aa5929e3a1b306b376054cb4ba6b8996ea391ffb644a0c3f912

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8460849fdd9f944368c9f19f9b67e556953ed9f2638bb45976040812fb0ffe09
MD5 d534c8cd185533868dc3fc899d515213
BLAKE2b-256 40d9641fd55bb477a1b25c7b3430fdf02136ae253df9ff3c69c88dcbed41bc9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 aab39d9c30d93dc5a20191d87637159333cb93ab6cc79ab4112c022986bd2182
MD5 d7abcab24bcf248649a0027e00c4b0dc
BLAKE2b-256 fe3899bd04fcf0dea218a1ce4332927388efb9082a7a8bb54c1a9cf48725e9a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 734d7ba57d88060eb84931c8cff887498e47af00728af40832d4b2b45ba5e3de
MD5 4e8555f781111fbfdd0599c37ec5f790
BLAKE2b-256 27ddf975b6c4cf6b0160dfeefa4d8d2369b0ba794c62f3acf6503f6c284be69b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ba2897ba613b9c3bbd18c263cf7ddae75a38d5177c13c9392ef1b25f42140739
MD5 bd64f782c575125c88b37f14f9a0af55
BLAKE2b-256 ba5daae31fc0f7058bc3d5659235966b34b3cd6d6fc434d21b88edc99b6d39e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0c7d05de056e3c93c6ee30f0f9198ebe973e888045bd0d1c36601bd0bcfa93a
MD5 8b28bd3aa53b7f33bdb46cb6ebd0bf74
BLAKE2b-256 91c0e001087e0c1e05b24701233367743c34e1045dc1eb9756733e937ce92f44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 63ee653fb39e7361e9207a76e6796b07e54c6fe067dacebd003f88ced1ee9c77
MD5 464cb7155b6ac3219fc7037053b662ea
BLAKE2b-256 e566e67b5500aaaed74093f90062d1b5a2d360b3d68e2ae8c32ab89bcf40595c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 7a9b52d689a0b2f1bda8be8b2390454c54cb79971b4f078970e84111f14bac4f
MD5 f57b401804b318c8563ee2dc8a71b30e
BLAKE2b-256 e7bac33eca719cb26b863a5a7b3b87f0be12435661feec8d9961fb3cb946ca66

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 443.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.12.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1fd4c39d7ae5b810f3a6341a7064ebfc5dc8fdcb439bbcb5946a81b8e6f66c51
MD5 f99819fdf940785a2869ded46bf33774
BLAKE2b-256 74c5d1b6602bed2978e4cadcac5edb539405f2dc77a4563a0878e8499e62425e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 419.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.12.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f1d2ace6b8e73c8ce115b201cd8bc1de5b124b666abc3fcc54e276518156015c
MD5 fd52524e4486ade7b59833d4484b786c
BLAKE2b-256 09bd94099d0b48f80df0f5748edfee6c4e5d67e19f8ac43ac11a96b08d5ddbef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ec1990ebf367f1366c68e9ba8adf1e12ec64777b8fa065648e112446462d89d
MD5 ee8211e70da4a86cd9e2d462cabdaac1
BLAKE2b-256 0ebd50991d4f0af03e39da7d83da9c07f74c1015015a451d68ae1cd16335b9d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6ca7b6890158a7bb5c3b8b5399e73d152db3b54a6e38f916f84bfc1a14d4678d
MD5 fe51012f2c6877a1b3988117fc411d6b
BLAKE2b-256 957c2694df9ca1a167a1fef3dd3da3f90be4bef6b3b49baac0eebe924c40360b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0cf39187f0f369fe08f085f1bbf29ff31455960bfe7fbc9b6defa6f275c02994
MD5 583776acf0199fc52d33e5fb30bf2899
BLAKE2b-256 b4398af7c14e395f280992869bf1fa653109d7677f8b4123c2d19d6cd5db0056

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3909f724d3f809d0a5a40ee0a57e5549d72769511db5819add564b56ff9f45fb
MD5 6ef24cfb7442e3a754d5fa3ca7947313
BLAKE2b-256 1dd758642a2e96288ed8d422b326280f72069473a1b5edaca0fe3abd24cfac0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8812f08c19296166130ac23a66d6e51e7ad14d698231554cb9863194e865fa14
MD5 f9cc3c3eda31e610b7044947fef63522
BLAKE2b-256 3330caf574b62d6b54f79e0922a2ad5b74024d37a9fff6803e80b55a1026ff0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9fc89dcaf5c799f44d8c7f03cd66d9665e1c1b7b5e8c945a17ee9e726ac3a535
MD5 b02dcf3b416233680635b12a6940ad7a
BLAKE2b-256 c738df51350bac302b09683637f3feac0e26fd08c89364e6e8c35e78fa4821f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef5518dda1b444ad0ec99429467e222ffd95b4c744ca6f94050db7838760b12b
MD5 c10bcc046e6895d2500ec617ca5dd324
BLAKE2b-256 91a3777a49e5e9d273042b0a58c4d6b74cc1ca53cf60568cfeca4ff01e674909

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0014ea904c3d7c336e60fa92b22dc58423ed78539e8b487c16196b4e9a48b4c1
MD5 e6f8f6a050c11aeb551eab669fb93af8
BLAKE2b-256 5a5d99ad6ea137645b74ebc68da251d5f5d7902f1c21822c00c44d60e79e85e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f2346fb313177288ecddcd35ea9e42f6088c9b44cfa2fd709dc7550f6559cfb5
MD5 1a1b62530787735e104c5a7b700cb0c6
BLAKE2b-256 44ce7c6e64e8990a93576ef38cbc505c98fed8404200213b5fab5adc51655751

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ddc0901ee3fc50f8e3e7e3a4f460948e6130b3436d067727f7150b100d21f6cb
MD5 b7b1f561aaaa735482d3a39876c2744b
BLAKE2b-256 279ae27e2afe8bb1f31a12aad03a1db828298efc5663b40e72147dec35cb60c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebad6d0921ec607794709f17154e8edd9833e7e9e8bc1839134af796c3054d90
MD5 6b1e83f44256d94f20db85ed5186b465
BLAKE2b-256 19dd4821c3bc274b1a923178cd7664dd2d208f9093f312a21ff3481b9b486e89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0cbf51e83756cdce5c1e10ba095324ce290bf579294cf72b3e0b2c0ae7615190
MD5 41fc6c7b88664dade7aecb0cb9998ac8
BLAKE2b-256 1c7d51394fc09b451b1bc4dcb8e1c6a970438e602c09f266a570d85118139360

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8258af6ef8fec914b2b2d4beac3c1a0544ef038bd58c443baf459e028721583f
MD5 268b63ecdd1ea96e0ef4b1c4ea4e208a
BLAKE2b-256 0a6eb13fa85fdda662894ae7f2d9efcdd9d6356d293a5c87992f4bc2de2dadf6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa45cf833678c069655f3e32b727db9096d144d40682f1d80929cdeb9f2bfa56
MD5 c79482fc434d94469ddaaff504c6bd80
BLAKE2b-256 5b3a30d6d45aeede51fa1b54432f65f75ce12940d560549140fe635611fb5157

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b29003ecfdc64eea872896ad29025dbe9559c878605387ef5b37931884153ae2
MD5 b0b36e0ddcb4a42ce25216f2135e1fb2
BLAKE2b-256 54035a73f90a2f3c41ce74816e37de19474fa66ff5e9d59dee674b534140ba79

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 443.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.12.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f1ba08fb40a5142b01956a2a6bf9c8f728a6c98c708c8b0c659539b0aa4c783d
MD5 602524dece84125fbb34e377f6538a47
BLAKE2b-256 c35f8bfd147941eb19bc52b5db3dd5b436978150a66fd9a9f32ab60078458775

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 419.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.12.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f52f6debebb3bcc0eec2e1ad1e916388f5928636aa27db6b89ebcf52ac66f828
MD5 3ec2a3babd56c940272b22331b778d25
BLAKE2b-256 13e5ff282e1777d790a40ad82e4672d0c128d89cf73cd952ca63cf15a13d4c73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 acc7f702900c195ce29b1ca5740c7c290a86c8bd6a7f2748908192abc66ecd85
MD5 a2bcef4ea41ccf1e524f83820aeca101
BLAKE2b-256 35afa49f36a61dc92bc14f685c969bceceda8c80c854509439ea362027ba1b46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4275dc1f8bbb4db7f5788bb6e1ba4b94689371c290b9e96d79f1ca1cbbe468ce
MD5 32cec2f1d476e0468a3af38a20ca0d8c
BLAKE2b-256 89579efcae538123969857b7b1667310e21826dffde3a16f03b339d77fc8863e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 64d7f104e9cd837bb18fd7f3cbfbb60a8f85ab9325ae14c41f9c0441a9c134fe
MD5 40934cbf9274e13d32afb270921eb480
BLAKE2b-256 3677d1613eb6b4b2aff936b370e34db794d97b1d85a02c6ca354032ee920ae99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8b9efafc644e7551d0650fa6527674e79a85e563784dd791576845ac4f2add40
MD5 1e32af73156fb6e118cc39842026986e
BLAKE2b-256 9e636341fe922b2f022a5b0fdc6ee12684cf7bd925c55546066fe57467488a36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 96911beda5d27c1145df52c078cf1352c870e80a9aee8a0571bcc93c39006ed3
MD5 40a01dc76eef7b3a5247a586ca423249
BLAKE2b-256 2b32ac48bc956a91ace64450342966e78069a7a781fe7dadb743cdf25d730246

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8de3e956bb841fd48de1d65559be02fc5e116ebba49c62958e79e73dbcbf781d
MD5 8514ee18071d4053d83603f3e51214bf
BLAKE2b-256 b7625e4b82a93d3c14602e3e8b6e72fa5e394323eb87cfae006a3fe26225f00d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa6b601297025729b4221c5db57873d8aa52d89148c78aaab11713068f7ad71a
MD5 547eb44459e53b605fefc4e9123eec9c
BLAKE2b-256 525a440aed0d2f8100a59009bc2d033d847e03bc5eb71c42916c1cb8f82b5ee2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 24e9ccf3c2471119664fcdd9abd95f77f3a48398d966a14539a914d1ff836260
MD5 e43d76e34342b9c65f46f25b75d9817d
BLAKE2b-256 19eab74bfbd37851f28cf43ab418e3cf1197aa45584bc4cd8a94c0c24f3dd6e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cca4f8d0cb31d5459d9985a8472e0dfb640759edcb388653c9028c77e4f6fde4
MD5 39f0e761cd9b71bbf678d2dddb04266f
BLAKE2b-256 fce61e69b2f7fefb2a49cfdb188566682670c72dc1c42be6058b117357f81f36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 90d4211e59272735068746db6b95c06c5519b67a0992083311520e6cf56ff277
MD5 64e3c794fc7a777e951153e917cad284
BLAKE2b-256 bcb134353a35698b763d426ce24920e86fd297293b949f3a6f7376e6c88d2622

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 832a4f7b5a0c3a28ae9f647c327d347ffceeb97920039cfbf4400981f77b13a8
MD5 cb61b927aab23b834361cace6d9e2135
BLAKE2b-256 e6ac5155a15185b39ff5a3c671b8ef4a6ee542b4a1d0927735b11b506ab28994

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1d48e479998e3c72f0687876346b1cb1e045626af5454c6027e7db508fc8466b
MD5 8f41bb8b9edbc0f928d1d8e9d69f3a10
BLAKE2b-256 87fe93aae23686b8a04f081ed76e0a4691a45be1f95a076f7cfc9aa4ae357cbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7dad3ab42eeacf8b1e53c3b724680ba1e553592e1fcbb1ddaedb22d00b7f5bab
MD5 af4d0d1c17c14ea3907c99a83f5836e5
BLAKE2b-256 de1d84ae1573266cfc18aa0da026b6f787c35b066604eee3f58b8c4297a3f48c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ccd12a8d71a6e47db3988bc7a4ed151004702c9f297666413076dc20dbfad1f5
MD5 2a19579e9899e5e30fd4eeb9c0026c12
BLAKE2b-256 00f100290e6eb7b3a7fd5f66ab7b4f43cdf340802f760a085ac5bce1daab4530

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5b6342ab31d2f89cac5539668fb7e89971f46928072db5ed93caf74c3a4ff5f7
MD5 294a3ea32a042aae470460a325f186c8
BLAKE2b-256 65a3be91d50fdd82cf646f12dbd4ca6aa87b53ee6ffb05ba89e8d19677280e5e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 443.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.12.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 91815eff47fd9f72b07e090891a30e5dda4a8b6116032ac2191b01b5ec6bc8ec
MD5 5ebd1ed646c466b3b44335bd235954b8
BLAKE2b-256 95762c34d39653bdb840c084393075fb410d52dae693b7c772293e82223cf450

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 420.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.12.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8dc6bfbae4632153336b91746ba739588334fd6baf03273c5d8ea8cf18f3e2df
MD5 c09e334a576b9428b23a9be3ed085683
BLAKE2b-256 61fb8e34e868abe3ed5834c775ef6f1f8b8b75d510749911f481c0cb3ff13bfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb02d6c632b0246e5c073857ffec0854331f0a99c2566cfd4838f0a583f9d183
MD5 c0731afeb734a90b4962f8f55a77b571
BLAKE2b-256 7dfedcd9e86ae6374368bd84228c069db9584ad61c12cf3f988d26330916f748

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 eee618f3c25fa84634dbc59f7e72761b679a8311f30c3f2d06adab096e10d32a
MD5 ae8317ea5395720dc17d1f07ff8ee5b0
BLAKE2b-256 1196d98c4f62468d6662911ce85fbd0424fbb9b498b53893a990c3705fda9731

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 471b01adea9c4ec7102763c9b974eca06be72d5f68bc547e08e76a3aa99b62d8
MD5 978ccdd77ca4d59ce50e25fc3ea32ded
BLAKE2b-256 19ac0d525f68f10f7853edbc3f40ac13a73ceb3abb610116c0ef3ac402ce5f15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0b4d809a62b07e8e4a91121ad6a5ca09646ab833103faa61443bead0a3feb3ea
MD5 2b92d6a9b527db112f984332d444cf4d
BLAKE2b-256 b6ffc5d213c594f919f3bd4b55fbc8e20185578349ee8f6635197a028791f1e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c359370f583f790da058de681dfe555cc1662e017431f59b9aa3b8819e8e93ea
MD5 6ce85feb9af91cfeb230503496c18427
BLAKE2b-256 e24fa7b24a21be341b3fd1f5431f2b3890bb20725f9e8ce731c44521b5cd24c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1e4b2934e9858c27596b6a7c432a13496dd2b1786eb5bfa3a8a077626ff48e6
MD5 ad6776f3ca5691b6c93ca4a6b405ee77
BLAKE2b-256 e1be32b936b08e28ad7616bb84be7022c583a5dd98f085a89e922b96a4d7c5a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7ad9b14b3d653a4a66792788d36e577a858b0f9c065f683d1743c67364ce4ba
MD5 d482a218728a73e6440458dc84abe656
BLAKE2b-256 1c54befb8270efc9a361bc2963063bc7da813865e214712a6024c8758a6d3e71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 74fadd99494bcb9828535f702e2c251c14d6ba8b48c7c0f770a03c3e6f5c7907
MD5 780615fa7d1f51f13e9a515c7c32cc55
BLAKE2b-256 196539b8c350b2712b1786615cfa580196535ba5395d58d3da39155d7443d550

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8e51efcdc9272ba8444837ca322cfa5c3becf6d736d127e882d41bdc6826a4e9
MD5 89547a9adc15f925b9d92e09a757d505
BLAKE2b-256 6bd5dfba8d1069823a805f7f9ee79472b4c4ec71142378b53005e4d49d277d8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c2d5b4bb2094b7f16810a211b597244fddd1ea5fa1552646a5dca41503ee4168
MD5 a76f7c7de4cd2e49550312f38d87e337
BLAKE2b-256 a2b17e5e4ab6f9e2efb5828f6031cdb59d96c55a890a8ca82a080285f2d4a9c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8380ff78a796ed0a3d8e6d2cc7c702c333feb9418787597517db7ebb969316f
MD5 0eb11163a56c45cd3d4a3fb8a0a05240
BLAKE2b-256 42293d50f9b7d98b6e118609b652fd36cccf3a17dd94bf903550b915fc9fd03e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8b169a3e80a029bb81d897e78913c518f21a20f3af0234fd1a0623d98f4dd84c
MD5 87d4fb3dfb5d6e6bcf5e92d148d39faf
BLAKE2b-256 24b438f4ec9eebaeb9676b7308fbb0065fb79e0cca5e9047f33904646c1ab50a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e9854aaa496946f7ff68fd6ff5b64e1add3d12c8f61d97e11f8ccb595cd02d9
MD5 1ac10543ac636a51804f7fe89a879aef
BLAKE2b-256 4139fbccb7dccb67568f5fd145006c435392d2a731bf82d4731d82732f88aec7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2e4a1ed00d1d820d680aed41d9795ebf89fb5a256ed1fdb50db0261e8e4af3b2
MD5 9a53c199b7674d833de409bfc475ba9b
BLAKE2b-256 a48126e030b1f123615e1deec57663887834fa2f90d681f06e78403d3c7fade0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 55db99900638ded3f556e55dbba0b21f8dd2f509ccf6ddd2d57df5fdaeff43d5
MD5 55b9f8bf208da8619939cc4edbe94f2a
BLAKE2b-256 a85d25ad49eff2503f6937b556a269580fdc4806d520fe9cc9600d7a61715239

See more details on using hashes here.

Provenance

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