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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

aiohttp-3.12.0-cp313-cp313-win_amd64.whl (434.5 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.12.0-cp313-cp313-win32.whl (408.6 kB view details)

Uploaded CPython 3.13Windows x86

aiohttp-3.12.0-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.0-cp313-cp313-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.12.0-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.0-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.0-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.0-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.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (452.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.12.0-cp313-cp313-macosx_10_13_x86_64.whl (460.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.12.0-cp313-cp313-macosx_10_13_universal2.whl (682.8 kB view details)

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

aiohttp-3.12.0-cp312-cp312-win_amd64.whl (435.6 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.12.0-cp312-cp312-win32.whl (409.5 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.12.0-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.0-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.0-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.0-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.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (455.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.12.0-cp312-cp312-macosx_10_13_x86_64.whl (463.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.12.0-cp312-cp312-macosx_10_13_universal2.whl (688.4 kB view details)

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

aiohttp-3.12.0-cp311-cp311-win_amd64.whl (439.2 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.12.0-cp311-cp311-win32.whl (414.8 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.12.0-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.0-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.0-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.0-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.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (457.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.12.0-cp311-cp311-macosx_10_9_x86_64.whl (469.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.12.0-cp311-cp311-macosx_10_9_universal2.whl (697.3 kB view details)

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

aiohttp-3.12.0-cp310-cp310-win_amd64.whl (438.5 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.12.0-cp310-cp310-win32.whl (415.3 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.12.0-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.0-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.0-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.0-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.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (454.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.12.0-cp310-cp310-macosx_10_9_x86_64.whl (466.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.12.0-cp310-cp310-macosx_10_9_universal2.whl (690.0 kB view details)

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

aiohttp-3.12.0-cp39-cp39-win_amd64.whl (439.4 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.12.0-cp39-cp39-win32.whl (416.1 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiohttp-3.12.0-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.0-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.0-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.0-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.0-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.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (455.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.12.0-cp39-cp39-macosx_10_9_x86_64.whl (467.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.12.0-cp39-cp39-macosx_10_9_universal2.whl (692.9 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.0.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.0.tar.gz
Algorithm Hash digest
SHA256 e3f0a2b4d7fb16c0d584d9b8860f1e46d39f7d93372b25a6f80c10015a7acdab
MD5 6b3ba85e5487addf4582b65e5fd0b23d
BLAKE2b-256 6a61d37b33a074ad867d1ecec9f03183e2b9fee067745cae17e73c264f556d57

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 434.5 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9c24ce9ccfe2c24e391bdd72f3d5ff9c42ed1f8b15f813cb4b4c22e0d5930433
MD5 1c33de090809de408baa3a765ad4521b
BLAKE2b-256 308870f19c1c1714d2b4920a4e675fd5b92ff5162b55d20d04b5ba188f0d623b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 408.6 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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 199bfe20aebba88c94113def5c5f7eb8abeca55caf4dab8060fa25f573f062e5
MD5 734e921f1442cba9f2f6c5635cb331f8
BLAKE2b-256 9227e19dfbcfdbe5f000b2959c4cb1a93c32e8632a36b29b7a01d59251e14b5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33bb4ab2c7b86bf0ef19d426afcc3e60f08415b8e46b9cdb67b632c1d48931a3
MD5 1d2c62642b4fa309512b32ae0a17bd5c
BLAKE2b-256 54df4c23861c97384a18a03233629ba423b2cdee450a0fb76354095fdd30cfe5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a08d1c18b588ddfd049f4ac082b9935ee68a3796dc7ad70c8317605a8bd7e298
MD5 b30096183a1a31ebbac332a5ec5fa447
BLAKE2b-256 dd8369b8a5a32e48210ce3830ee11044245e283c89adb8e797414145ab1d1a4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c2d61673e3eec7f703419ae430417ac84305095220af11524f9496f7c0b81dc6
MD5 38841ed6eef2aee084a8f47e1c3a5f8f
BLAKE2b-256 da9eee4b95390cf73ff3875d74e7661378115f763ff445e2d7a0c02f1916db3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1c4ae2aced91b2e879f16d4f0225c7733e007367403a195c2f72d9c01dac4b68
MD5 f7628a1770c96c474a3a5d311b31e220
BLAKE2b-256 31266c91957dc52eb47845b5f03901e1162b412c77ac3c0e082b10cf6be7b3ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 47d30f5fc30bd9dfe8875374aa05f566719d82e9026839dd5c59f281fb94d302
MD5 ca5d24660763f18dcca7133a889eb69f
BLAKE2b-256 71b2e79603df4a9916ecca3ef6605d66bc8dc9d1cf94be12b5b948e19eba4a7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 471858b4cb972205fbc46b9485d8d532092df0189dd681869616bbbc7192ead3
MD5 619995151879630eb9a6a8016e057b23
BLAKE2b-256 5ebc1e36156c126ff0f1cd9af55a2e3bdd71842e4c76006fd6f16adec92f7c50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8314272c09dfb3424a3015222b950ca4a0845165fa43528f079a67dd0d98bd56
MD5 335462d7d3ba1945eb5add4eb4272ae2
BLAKE2b-256 29eca51e3fffd7538e7cc6376b2693c5f15365a542d42045c9345f8571962c3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 16acea48107e36eb672530b155be727d701658c8e0132f5c38919431063df1aa
MD5 56f6b36f70d52589f49ae904642ecf55
BLAKE2b-256 b038b6e7ac5234f0eda7763737460793cb478f0270f73adcf2037f0913c9bf9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc77ef0cd57e669f4835ccced3e374c14a9890ef5b99427c5712d965b1a3dca3
MD5 d69590181488781b88b8a8b331a725a5
BLAKE2b-256 a1c7ff6153b07cd03358eb0faa7fb5ecc319ec2cdccd9789bf25d2a6c580b653

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f4f06d93c08670b8deb6e965578c804eecd85450319f403ed5695e7105ca4f38
MD5 eb06572b1af6360db9c07d0fcc050767
BLAKE2b-256 f7dbeef9360855d3d2218bc38c0a94781324fbb7361b168bc6ccba29d703bb7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9dff812b540fd31e08678fb1caed2498c294e0f75262829259588992ca59372
MD5 9dfac8d4874ad2ff7771f2840763473c
BLAKE2b-256 012954e623c3854326e54744996917919a033ce00313888aa5e5fe2348c8968c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c9b51e1f1fe9ef73e3dc23908586d7ea3aa928da1b44a38f0cb0c3f60cfcfa76
MD5 5cab94bcf8cb74d66d956fdb4918dc3a
BLAKE2b-256 cdf8701e3869d04c6d1b908fcbcb6f41013a3400750c289a494500ed68fe5f5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb157df65c18f4c84dd2a3b989975076d228866e6c4872220139c385bb0fea3b
MD5 7b29abcee50dc072e3e8773389caeda5
BLAKE2b-256 90a2019f0e33b5d3f201f400075841a31db7014a175d6e805fb13c26d8ff85e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c5beab804eeff85cfae5c053e0d3bb7a7cdc2756ced50a586c56deb8b8ce16b9
MD5 e2758b009a0de7ea75a16db9a5be6680
BLAKE2b-256 9d7ed8f3b2efbd359138f81121d849c334b6df4bb91805a4e7380f175ea822cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 6ab223f5d0bd30f1b419addc4aef37f8d7723027e3d92393281cba97f8529209
MD5 71c71d961acfbd924b401eee10876ae1
BLAKE2b-256 fd7e9d27424fadc63f89d9165e7865ecdcf49bd4ce03ed5f453e8fb1300c3ede

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 435.6 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 68e4a94c3bf80e93340d4c9108f57b46b019ca88eddec18bf5c8e1ded463cbef
MD5 58996c555118f861c476ffada5a00d3a
BLAKE2b-256 71bce8ce9d8c298f6e5d8517a684eb616089c01c4c8185fec5376b19ac7b72c8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 409.5 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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b53cd833233a09d5a22481a7e936bfdce46845e3b09f1b936d383d5c14d39ba6
MD5 86652f68fc340b22a4caa8e42578f832
BLAKE2b-256 0e07ae3b5ab96caadfa7f2d1e1718ececf9c0dcd05cd2338eb02a9a8de4c772a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7285a756ba23e99f1a24cf41e8440f06a1d2cba595ee2cc1acb854e4262e2075
MD5 162a35241caee1b95208f3b07aeb62bf
BLAKE2b-256 8669b85b4a531669d20b5effcb7ff00dd515cd0530a51db5749de14b1fbc8a34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b3e62337e0a24925fefe638f8dd91be4324ac7f2bbbe9d8d0ae992bd35b2dc45
MD5 ca05b126f6cda5220dc2d9cdccc61d41
BLAKE2b-256 44a7bbfc67803bbd7cc3b8b36e98dfabbf0cf3eedd66583a735a1d1ecba182b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4ac3e360ab9c1b7893ae5c254a222986162bafa9f981fa85f09bad7b1527fed4
MD5 586f84e201ab4f9634bb89fea80182ac
BLAKE2b-256 b388616f05549e083f7985fa5ca39f7b7ec2bb6921330f31891e164346ce415d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 32c1977f5354fef6b43b98ac830c87bddaafcfb6516c520e3241fef8f3e299e7
MD5 982b570f78234258d948c063d2de3af5
BLAKE2b-256 36784c420fbda62f50585b9537fca612b4c09af5c0f85419e87082f31440b8d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9c8f9e1de28529751345f1e55cb405f22ff09fb251a1bce7fc7e915d0ee49d1f
MD5 47f69aa00a2ecfaaf389a2ab661bd6d2
BLAKE2b-256 e1a6bffbecc2e53b63081a958b98291ef11e005c03bc8e353934c7e5ba2e3002

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a613da41e577256d13929bbb4a95cadb570aebeab3914a24fc0056ae843d3c7
MD5 0a4f43ab0d6a5e6638de5b522c78bb69
BLAKE2b-256 707e8d2f3ed654b7a4d7c5c57eec88e2e01a610e16f4a851f033e37115a5c860

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9cbc8604c21a163ee492542b344a4f02797d48d38d335af47490d77c0e15d2ed
MD5 7ca18e4630c78a8aaf95d97301798c5a
BLAKE2b-256 294e63044dfa4176be5c795db24fdae7233acc1895794c544de9689438923acd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2688fb204b07c2bffcb12795b6384ec051d927147e0ec542ba3518dd60a86f2f
MD5 bd44308dcff3f6117433dd31f169ed54
BLAKE2b-256 b424e848b8493c5597cfd7814e3952e182cb91b3193adcea5967513844e99051

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 851543bb8dd5db048c0b6a7454cae3fd0f618a592cbb70844ec0d548767b5763
MD5 b1511471575cda53e8b622ef993a9a1a
BLAKE2b-256 4e74f9b801c9b250b9501d3ce28ce3e499cedf77035dfc4d74c7e5488a9980d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 037a53da5016e8fa33840ecddb2bdc20091d731e0fe866f4f9d9364a94504856
MD5 619ae80a1b9686dae32d0e7b17760e39
BLAKE2b-256 f5aa1e8b90fbe2bfb1684f4461dc70f05d4235bc7e962d39e0febe6bbeec68f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f9cb8f69371d50ba61f061065d440edcbebf00cb4ef2141465a9e753a00ecb9
MD5 717bb1643cd452ef479a0805f93d6d12
BLAKE2b-256 43348b94b13b80f1a83fef87a4e324067f72e73a9713dae497de9eff0e5754ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 754d5fd1a47656592d3b11488652fba567d00c6492e9304ba59255dfee8b856f
MD5 39e4c8ec84b07d5abb196e192e305048
BLAKE2b-256 aa0e2d7f4a0e6f22578b536fd1a22f3b1cf19b8f0f05a6feffcb6fd26ac97ddd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75a7d00e20221b1bb8a04e14dba850596cdafeac10fb112ce7b6ef0ad1f9bd42
MD5 fe20f6c482b5465c430353752b54f35a
BLAKE2b-256 9de447fccf8b5e6a174228a3e1df7f5c723c3f120e2da6f06cac8df05cac2aa2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9ce499a7ea20925572d52f86cd42e16690f4db2ff56933710bf759cf1ec68212
MD5 c68cabeab66d98834137308e7c3ea0ba
BLAKE2b-256 fcf4034d086f5dacd94063a6926d17c63094ba32dd4938954beb704a6f90d2a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 71fe01ddea2673973f1958c3776da990106e33a02a4a5c708d4bb34717cae712
MD5 cd6196eb32cee134fb1c631a27119037
BLAKE2b-256 a4835cf89e601d565ca18fa8792f5b7393f6f3d80fa26447ee4649232f83a6aa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 439.2 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0159620f09dd338bab29e7136efd51c971462a5bb69dcdace39a2c581e87c4af
MD5 873a0245ee971bf1fbe0bc14e539ce90
BLAKE2b-256 729fd7bd0442c1af0efd9af493399db1eccafce8c5e47f1600b565e069eaaf99

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 414.8 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6859c7ecd01cbcc839476c7d9504a19bf334bbe45715df611d351103945a9d23
MD5 b2f88ca8ba5d6d59f46cc961ac6e598e
BLAKE2b-256 6b3cb8396363eae9e77a2c605d826e549f2f5d1d79f77b12f17c655e7e3b6a2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b210c1cdc7f1a45714d17510b7e049ca7b15766b66f8c278a2c73a6021bbc389
MD5 eb53091b8a39486125164e94425fa74d
BLAKE2b-256 7e41ac33993993b2b0b1e9082b99a72c2a18ab595d53f258aa33d8cdf6ee98cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b19f964b9130d572f0fed752417446ff6622fd1288e8c7860824a0dd57cd8dd5
MD5 c28f79aa0a3539248c209fb72d2d4c29
BLAKE2b-256 643cf07536f9f5c9572d91260463e4d132ad225b07a34552a0d0b3f01b3988df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 062eaf38763c6b22fcbd47a97ba06952ad7751ed7b054a690cddeed4f50547fe
MD5 b5d49d78dd25c65feb9342c8a1caa8f4
BLAKE2b-256 f7547878850b0d764f82ac9629ca8dc4b44c21e2f771dd1aff51d9c336dd6a64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3fcc1ccd74c932ce6b6fad61e054baa23e6624db8f5a9ec462af023abe5c600d
MD5 3c7b2745c145730aa1383f9dc7059aff
BLAKE2b-256 8af483d9fff93bbb4b26aeb319bd007c63e87e37655bc63fdfb7b561c663b631

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0851359eeb146690c19d368a1c86acf33dc17535ac8123e25a0eff5f5fa110e1
MD5 bcc3147d5a8982e37ae5e4d99655d274
BLAKE2b-256 3d51c0e7dc789cdc7105803099c89e57d8dcfe4671600e3ec0f05ce1fb6954be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc9f188d2b864f65b17cee23d7a1923285df0c7b978058b0e2006426700d4c93
MD5 701c3ece9541c8788d7aa024a5af526e
BLAKE2b-256 ef26d81ed27b520c25b5b84102bd6ddbf16154d7b07d12097b3fdad7c5e5df3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02b33c67d7db1a4b2df28e5c1e4d8c025db8e4432b3d054db3ea695063cbfc52
MD5 a0a732843e601298c4edccc154ec20ed
BLAKE2b-256 da96ced0a23a2898aa97facc8aa7dc92e207541811de1c34f30cb4338f57dda1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c0ab714799a6fd698715d9fc1d1a546a99288288939506fede60d133dc53328b
MD5 1cf71bd79c439cb74459a9890968f990
BLAKE2b-256 101b29707acfc556b9acb2471702623e3c2962569ae5df58e977b356825b65cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8c3aaae0180d804b4fe95cee7fe03c2ff362828c5ebb7a8370132957104b6311
MD5 30bc4137f09bd607f8cbf256f201f3f9
BLAKE2b-256 bab0146f27c6d1565d692c3c9d7ba20af6b794ad43984260ec733f024c26da5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1accf0a2270e1e05b453d1dd0f51f176148eec81306c39da39b7af5b29e1d56b
MD5 9a84949cf5968d7b06fd422c3f868054
BLAKE2b-256 9c3270b637ee15e3e72b6b028748a2a46bb555ae91311bf9c266db2e248922b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07b7e64a7c325e2d87523e1f8210bdba0e2e159703ad00f75bff336134d8490a
MD5 38f9ead068ef16a5b1a9df35527d3ced
BLAKE2b-256 c2c58eea63458cbf37e8b917cff62a0d5606c5df58b502cd00b03aaf57db6383

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3718948668ae986d53bd2c443ffc82e6559de2bec1d66a215c1c5e059d80ff37
MD5 1b951db6838195edcf641537dab98ce9
BLAKE2b-256 5f8f25760fca550eaaa8c3759f854eda95e3c3e373d942434939da823211c39e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8cd1eb1d5498cc541ce40946e148371e23efefcf48afdaa68f49328d2849f393
MD5 41a6e2d7c81b0f3d8e711ce7eba79f81
BLAKE2b-256 35494aaefdfa5aa74bc6276660175664eb6e1e654ae3befe5342abfcbf596ec7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8862c9b190854c0ff3f5a3f25abee9ed7641aee6eccdc81aed2c3d427623d3dc
MD5 4866db450e96144a6c70bc49fbd6fb60
BLAKE2b-256 6ed765d1de0140b952cc88683cf4f52fe0c29d5c617ee1c5a4b9b40ad43d67c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 38ab87bc3c2f2c3861438e537cbd6732d72b73f2b82ea9ba4b214b6aca170ad9
MD5 13bb162f4f243eb4dd095b443ad6ac2f
BLAKE2b-256 d98cf2d1c0cb4b859185bb38369180785342ef0ba56328c8cb2a0b7c9ddf8651

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 438.5 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a44b25ade659f8736b0f2c32cfd2b59449defad41c5f1e514b94a338c777226f
MD5 f29e15084070966a65aa734b5195f6ac
BLAKE2b-256 0f4288b1162432dbb3e7a8776828d6a096d520f4046f836a2bbfdaa28cfffb1b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 415.3 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 709d823cc86d0c3ab4e9b449fefba47a1a8586fe65a00d5fbce393458be9da1c
MD5 18ea23f8b98346c5bba9cdd4da2d3642
BLAKE2b-256 13bc299a2dbb9f92b6bd4c025ba39704c947e3b406ea65626aa817f9ff8bd087

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bd190e4c418c1072563dd998ae118dfb588101f60c1af396e5cd42023f29259
MD5 59c8f95a846198aaf208f0674d22aefa
BLAKE2b-256 ac1829b1ec691bb172244b7619e72ac30814b6b5f6a07ec4b933ee9896bf9659

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d46d99d028ad4a566f980bc8790099288824212c0f21a275d546be403cbcb7bc
MD5 848c7366e92a67b007546fb644eae405
BLAKE2b-256 ec79d77fe1eac6be73c8826cb3ddde134a5b2309b157e6e48875c3665b31242b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2eba07f1de9a02920f34761c8b8e375f91fd98304a80ff0287f8e9e2804decf7
MD5 2698b059057d997daaa0b7b43d6f8e8d
BLAKE2b-256 1097a656de02fb70db5819f2ab2bc9b7831b774220ed4c4098b5cdb87fcb78d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c7cfb0b19e775143982e34a472f9da66067c22b66ce7a56e88f851752a467f15
MD5 7b9ae66ed8ff0259502e5d4fd519b70b
BLAKE2b-256 4c9f25bc921e20901787977e634ce0718637a3cc81e91c5776420c7673328f7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bf9acc3914c921ea8fb0bcda3d07ece85d09eff035bd7c11cea826aa5dd827a5
MD5 d73bc1805397a9d3d1d95eb76532840c
BLAKE2b-256 97df3ce40545a00b2614a33ee1a99d12d4b06cfa090cfa1d06a7e0818309124f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a03fb47a954df7fb0d587053e2feafdd5306828fc8a764b456775fc00d2d82a9
MD5 8042a2669afa7d20783c3cdc3720c681
BLAKE2b-256 c8dfb34c6b94aee4395268bf7d76ee18f9e45fd652a8bad2cfc5f9f0dc757b26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba8d85d36edc6698ef94cf8f7fcf5992cc2d9b639de67a1112799d5020c91a63
MD5 4638d72461dd7b0d320f80b06227aa0b
BLAKE2b-256 6bc3c6fa242e13281b06acf0a00b6b8a77f44fc28ba78924405508c7f9086ffc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3ad61b28652898b25e7c8d42970b9f27f7eff068623704aad4424e2ee9409a80
MD5 3f703a4e30b952b8177d24ac5ecc83a9
BLAKE2b-256 69007ef9722e9d4442ce155c6e6a08f6824f041384b04d92baa60096acb9b1df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e76898841d4e655ac5e7e2f1e146d9e56ee1ffd2ce2dd31b41ab23bcfb29b209
MD5 6e4a2a5a0449f9829f24053f11352e0b
BLAKE2b-256 1abd25a3189e2bacfffbf1099646856ffc1fe4479a2c98c90f3d7bc2c7161130

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 976607ee1790d2e6d1666f89f64afd9397af2647b5a99a84dc664a3ac715754f
MD5 b6fc9828f6418828a0320db6de1bda2d
BLAKE2b-256 6dd726760f0596731227cfa3db4f8dc76bda7283de9b6401a5584fcde30e0661

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9c8db3b45fb114739bc3daae85ceb03b2bcb11f11f2d1eae25b00b989cd306a
MD5 b26a35dd0a935691cd337d8f2ccc5918
BLAKE2b-256 97ebd536fb2e07d497d6d1c489ed39918d14a444c4fd00557b1d86cf6816dc07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5123488226a61df4a515dc3d5c3c0b578660ec3c22d2579599ce2e45335655db
MD5 99bc68436da223bba11d36aa3a16c6e4
BLAKE2b-256 9a97bed6b780aa8c7aa14d6676521634e81895e87fb2da1bbf2ae54772478d16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b011907c9f024d9b2017a2c12ca8abea571b919ebd85d42f16bd91a716dc7de2
MD5 e9141910407737bdd6c11ed2b4d77ba1
BLAKE2b-256 1c0b3c6327efc64d509b5de1fc9157aa4da555d22154ba21893dee9a169c70dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4cd2ffa8cefce24305e573780d3d4a1bc8904bb76bc208509108bac04bc85c71
MD5 fd4782c15986473890987775acf04076
BLAKE2b-256 666d19bac9bdbaf0893005d61a25898147c781fa78c337d09d989a5216e6422e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 91fca62b1a454a72c48345ad3af0327c87a7352598049fd9fd02b5c96deca456
MD5 844740c4d4cc983c92589e1dcc99095c
BLAKE2b-256 c56d687b42743088d86de83653153d4ef2ddf77372ce46b9d404c8340b9fec00

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 439.4 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 243281975c4a4fa7af43f35c962ed15ecd3f45342ef2052dd1afcf55afa14902
MD5 badb939e27eeecf93b9752c295dbe58a
BLAKE2b-256 80cff395ad647f1712cd9d5bf630c4d6e993aaa41b03b380f8fafffa532635ae

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 416.1 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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 19ae1ca271325184153c51b08512758e4c8cf631e39f37cf96b9f39d8de9be2f
MD5 b92035dc9829ad32ed60b9c936a49348
BLAKE2b-256 74433a7088bb413b11e38bfb05a314a4190d323acebcf328552d0c383ce57762

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4744aa06674299040d7a560e79282df7e66769882cfc0a4f602d5d2e3b972660
MD5 454802953c5037f3e1fe979aaa54ccc2
BLAKE2b-256 e6aa4bf7394b751cf17bf0c4ec39382a9aed460c4588654b244a41152311a506

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3a6785d737ad7acc95c28f945d58f65876b80715da9f9b312edb0e7a61b2a459
MD5 83861320a16a7e0ef9cee28d9ccaa43f
BLAKE2b-256 53519c54bb963c647429c9d40a26cd757060b88f28b1ae5f2d3276af43d26aef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 459196d2f86edd9588079a5c338007e744c4d02fe64231de005b47fa2d465d78
MD5 e68f86a5c0ffd7cb15ead51b72ecd323
BLAKE2b-256 12bdff92b14b52f2022f54b7c1c1bcff3cde1a4577b410d516026908702619c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2241d73ff8d2fb429d446e1286c5fd9a6f38c34ce5d617a28be7345abc505168
MD5 5bc259a69479ab97540b41ae4ec9b3da
BLAKE2b-256 ba39ca5ff36f9898870f6bbeebfb775f9c9045294cff85bd432de91b1e585f9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d1bf5632b57266aeb3af47b6ab96ef6927d20add906815f15e20ab3b15ca3fd6
MD5 e02f71a5dce162fdfaec4a9ba27beb76
BLAKE2b-256 b4cfd4221d76d12ca156337fba2014715619745fe4dcd822ee7ad0ed55634b64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbcff7b1dce09bb430e0035cdbf734a69a0c87c753e6cd2c7e87dca46e3f2443
MD5 2c657a0cb37f8f836c334d7fb3680922
BLAKE2b-256 06bf252c68fbdbab4629b6efc50608e51f7fbc9d7677d71a18e367450fcf849d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 222fdf305be960495793b872ccebc64b03d761cdf7351533c87101529840ddee
MD5 fb262dfaf8887f4043069d0bbec51a58
BLAKE2b-256 5f3e968f4732ffcdf952c10d63808d30e5f3e543186578bcadb9dcb349dc13c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2bfcbca6abc6337cdb4b7d5329fb4bce598dcf72e67ceaafadd1cf46d95a90cc
MD5 c4b8bd15a80a026eec83336944e317ed
BLAKE2b-256 586aeb21bd2ddafccd1600c657abf6c6a852f71962346fa70438519d013793ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e898963e18f8734ee5f8772367beb29791ca861e0e1f7ddfeb90e75c7a6c7c83
MD5 6f381da794200fdaf525c2a310d2379d
BLAKE2b-256 b4a4ff0036640d1fa5ff1abaa612f9de2801527a50e134bd3881c9732fc898c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b5f6e7c74db7e88e1a6d62b2838f7cb9211d6786ae41b016faf0c1eae01fff18
MD5 fdc1f7bcd78eea91c7066759d2f9cac5
BLAKE2b-256 dbd9a301985f25c0a12ea517f064ae36ee570976bd4ddcab10bf68e4bd15aced

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d219bcc62e4470d91fea9ecff2c1563976d1363e294da8c4b79d8463f9abd60e
MD5 8fd148cfa47240c164cc5289707eb552
BLAKE2b-256 c7a86af620fb79c417979a5b9c76e0d4ff232496ad61ba991a63585019171f73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f7931a21d80d1a2ba30d238b38228a7fcb3160a4a22eb2d555e80eb5962015f2
MD5 51852eeb06a6b9bb6ff6069e74871e75
BLAKE2b-256 7f73c0d04b426a6dc4c572bb170749c5642f617acfa48b57b4ad967b31175261

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 796fd64d36d1b2a1c96fea93b4423a693494f7c5439cb6139f609ad1b26c6e55
MD5 aad7180c90994d1e8e442192e806300f
BLAKE2b-256 f66238c395a3bf31ec99b739887c14e3cd91a767dfe5d044ff7f8dbcf359b907

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 77f1ce28d4ed7c2aac4c23d290232771def64de95b10c06173a00be5d0ebf635
MD5 c9fbbb4cc72294817069f29bce24e2c9
BLAKE2b-256 6a20e598ba34aa0b499d3726fca14a3323d04ddb068bec9f8ba946f4f0bb015b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 438c44e1d0b58b2fe0c02c0bc265ebd7908b84cf1788ab53afbda459f072ee00
MD5 520d7ab60ee37b0a0aee171c31b85ce6
BLAKE2b-256 ae891fa07146488f912b9711c43a8d8ef706cd5c272c7a1d9d6cfb8c11d4309b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.0-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 Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page