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.11.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.11-cp313-cp313-win_amd64.whl (446.0 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.12.11-cp313-cp313-win32.whl (420.1 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.12.11-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.11-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.11-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.11-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.11-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.11-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.11-cp313-cp313-macosx_11_0_arm64.whl (464.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.12.11-cp313-cp313-macosx_10_13_x86_64.whl (471.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.12.11-cp313-cp313-macosx_10_13_universal2.whl (694.2 kB view details)

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

aiohttp-3.12.11-cp312-cp312-win_amd64.whl (447.1 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.12.11-cp312-cp312-win32.whl (421.0 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

aiohttp-3.12.11-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.11-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.11-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.11-cp312-cp312-macosx_11_0_arm64.whl (467.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.12.11-cp312-cp312-macosx_10_13_x86_64.whl (474.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.12.11-cp312-cp312-macosx_10_13_universal2.whl (699.8 kB view details)

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

aiohttp-3.12.11-cp311-cp311-win_amd64.whl (450.7 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.12.11-cp311-cp311-win32.whl (426.3 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.12.11-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.11-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.11-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.11-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.11-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.11-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.11-cp311-cp311-macosx_11_0_arm64.whl (469.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.12.11-cp311-cp311-macosx_10_9_x86_64.whl (480.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.12.11-cp311-cp311-macosx_10_9_universal2.whl (708.7 kB view details)

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

aiohttp-3.12.11-cp310-cp310-win_amd64.whl (450.0 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.12.11-cp310-cp310-win32.whl (426.8 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.12.11-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.11-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.11-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.11-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.11-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.11-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.11-cp310-cp310-macosx_11_0_arm64.whl (465.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.12.11-cp310-cp310-macosx_10_9_x86_64.whl (477.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.12.11-cp310-cp310-macosx_10_9_universal2.whl (701.3 kB view details)

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

aiohttp-3.12.11-cp39-cp39-win_amd64.whl (450.9 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.12.11-cp39-cp39-win32.whl (427.6 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiohttp-3.12.11-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.11-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.11-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.11-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.11-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.11-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.11-cp39-cp39-macosx_11_0_arm64.whl (466.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.12.11-cp39-cp39-macosx_10_9_x86_64.whl (479.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.12.11-cp39-cp39-macosx_10_9_universal2.whl (704.3 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.11.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.11.tar.gz
Algorithm Hash digest
SHA256 a5149ae1b11ce4cf8b122846bfa3d7c5f29fe3bfe6745ab21b3eea9615bc5564
MD5 fc48ae2d90c6f134cf3a5a93e83e847b
BLAKE2b-256 936b850a842871ab7be0d00686750d0ee9d8fb8e7be981e4e5700bb6c88f1b8f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.11-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 446.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.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 854132093e12dd77f5c07975581c42ae51a6a8868dcbbb509c77d1963c3713b7
MD5 cd20ac8b29fe18177ba1b4ad19491342
BLAKE2b-256 6ccfcd84df67147c986315c63fef29a6ecadf03bf5528340b8c82eedd988cf57

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.11-cp313-cp313-win32.whl
  • Upload date:
  • Size: 420.1 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.11-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 65952736356d1fbc9efdd17492dce36e2501f609a14ccb298156e392d3ad8b83
MD5 f1a0abf7e69562c79baed1533874a9d4
BLAKE2b-256 f4fc3437d3e40581bc7d0816e134fdcae3c7e5c3f21dbdcfbd54402af3973b1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd749731390520a2dc1ce215bcf0ee1018c3e2e3cd834f966a02c0e71ad7d637
MD5 078f10c4ff6d5c987f713749a5acabca
BLAKE2b-256 b669b466ec346506384a93bcb864ab75a21b6520c64fcc3720ab2056470a657f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 aace119abc495cc4ced8745e3faceb0c22e8202c60b55217405c5f389b569576
MD5 3d645ce2535fb06d1460bd31d0f9b747
BLAKE2b-256 d40a34fc018d4e193115b512bc08f6afaf79c23609a6487e47f0d593d1d9df41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9c2a4dec596437b02f0c34f92ea799d6e300184a0304c1e54e462af52abeb0a8
MD5 5d54488c08e8420ae3991ebd98cf0388
BLAKE2b-256 44f5f427ef971e00088c7f0f5a4a7e405732e0ce0b87dfc3eec0f1a8c16863d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 590e5d792150d75fa34029d0555b126e65ad50d66818a996303de4af52b65b32
MD5 682e70f64e1f83f6930bf64fcce3dbe2
BLAKE2b-256 2818dc16cc7cb9b8baf9308f23ecf1e787d916238d01060bea272d5c29e9aa6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ebcbc113f40e4c9c0f8d2b6b31a2dd2a9768f3fa5f623b7e1285684e24f5159f
MD5 16bb65db9a3b2020ef4b08f413f38619
BLAKE2b-256 e12a038cb4af5e58994bc9315d0cb6a906d20ddfffb8eb3d0dfcfe8fe95b1939

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b795085d063d24c6d09300c85ddd6b9c49816d5c498b40b6899ca24584e936e4
MD5 ea1cfe741916f0a58b1f2708ac926f4f
BLAKE2b-256 2c98446c96927f2e7d2eaea95660a60eb6077771d00df834430cec002cadd96b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d5b11ea794ee54b33d0d817a1aec0ef0dd2026f070b493bc5a67b7e413b95d4
MD5 fac80fe58a63d051b63b677bc444294d
BLAKE2b-256 2c2a7defcf31010a2964bf17f6c9d9190e3be889f0c5edc3ff2cdac6e60764d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2601c1fcd9b67e632548cfd3c760741b31490502f6f3e5e21287678c1c6fa1b2
MD5 c2549120ea380a5d61e8b0a963d23746
BLAKE2b-256 980fb7aa0fd1ed777b5d6fb62c0dcf82effb717e8b51c802067fc3bcb703e003

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a8a711883eedcd55f2e1ba218d8224b9f20f1dfac90ffca28e78daf891667e3a
MD5 59fb4bd864e02ac06b3887e491a00170
BLAKE2b-256 56f70324c499b7c610633d2f5e8af5457fd3a0584f5f4827bc46b673866596ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7a0ecae011f2f779271407f2959877230670de3c48f67e5db9fbafa9fddbfa3a
MD5 86ce2c9aea7aa056d40a0aa44fd69e22
BLAKE2b-256 b12eefcb6a35d0646ced659edc3172e8e9384246d2cd0b0f3080fc3c441cb511

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1226325e98e6d3cdfdaca639efdc3af8e82cd17287ae393626d1bd60626b0e93
MD5 a0983cbf9cf4db9fd86667c4cc6a84cf
BLAKE2b-256 3c8dedcddc41d4f1157a2536143476070ae66de2b839af3724655c2a6358670a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 109b3544138ce8a5aca598d5e7ff958699e3e19ee3675d27d5ee9c2e30765a4a
MD5 c4f0788c3301643d0316dad7b06a2d97
BLAKE2b-256 b69eff3d9a01f533752e81fd92bfe1301ae5a7bd5a306d752ad54f8bc61570fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b73299e4bf37d14c6e4ca5ce7087b44914a8d9e1f40faedc271f28d64ec277e
MD5 ef6dd40172007f5732280c82cf21b224
BLAKE2b-256 4be59ed82f5b6a2dca30940e90820ce2f8203e15111de464bba0980e2c7e169b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 144d67c29ae36f052584fc45a363e92798441a5af5762d83037aade3e2aa9dc5
MD5 86dda81efdb267d39497f8630ac5779a
BLAKE2b-256 025b347f8aff5793829b3a31a927bd039ec4f22221a32c459b9d19fe880921e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 5fadc4b67f972a701805aa501cd9d22cdbeda21f9c9ae85e60678f84b1727a16
MD5 bdf23773b0c7cf0c13eda87fd676f67f
BLAKE2b-256 87ac15e21c6a17b5183d1617505b125c773f554a56e06be577a289151a8e5ce7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.11-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 447.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.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b54d4c3cd77cf394e71a7ad5c3b8143a5bfe105a40fc693bcdfe472a286f1d95
MD5 4e4ebb80799a64ee56e10b3d11e79eea
BLAKE2b-256 ccef4340f3e2bb7a00fd6ef9bbbba13ba8d56b47025c9323258da94b0d649117

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.11-cp312-cp312-win32.whl
  • Upload date:
  • Size: 421.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.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f20e4ec84a26f91adc8c54345a383095248d11851f257c816e8f1d853a6cef4c
MD5 38780229fa7f7034d1716bdd9281f384
BLAKE2b-256 5a7500b04567495f6ec2099b8a413408b65f058e78ce7325d3e6093f259da9b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6fb2170cb0b9abbe0bee2767b08bb4a3dbf01583880ecea97bca9f3f918ea78
MD5 f294e703fedab00d37ad05af826c38ca
BLAKE2b-256 4539f1fb8c2b3e3dd6e39ba9a5cf5dcb0cb70d163de4abceaab27d666f81e701

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5c981b7659379b5cb3b149e480295adfcdf557b5892a792519a56badbe9f33ef
MD5 889e13355e3a387829ef80b16c58a3bc
BLAKE2b-256 678344057c78dc34f2c9d5f258da4aa6495aa20ca047044d50acfbab6630649f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 87ece62697b8792e595627c4179f0eca4b038f39b0b354e67a149fa6f83d9493
MD5 128e632266924b701ffb60d8a5b0ff01
BLAKE2b-256 fe730ba372b3cb158334b1a23579a72f24c8ee99b7147d0671eefbe8a327cba4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2a06b2a031d6c828828317ee951f07d8a0455edc9cd4fc0e0432fd6a4dfd612d
MD5 9e6a82d8fe81982a5a62000c371d4814
BLAKE2b-256 ad54481761fcffe7264608272fc67877556e9ef00268af32a091950b909d06cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0329934d4df1500f13449c1db205d662123d9d0ee1c9d0c8c0cb997cdac75710
MD5 008d36f9856b59dae9dccfe40a40c00a
BLAKE2b-256 e7887af64b23ce041ec2693d763306fa670102a5b48c1012f342703e0a998f05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 15e1da30ac8bf92fb3f8c245ff53ace3f0ea1325750cc2f597fb707140dfd950
MD5 08aa258401a3f978a9f1896f4582399e
BLAKE2b-256 12fa5f8f06bfeb8e9668d54082eb7428f47dc3a1dc74d7dfddaa16e237388b5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 405a60b979da942cec2c26381683bc230f3bcca346bf23a59c1dfc397e44b17b
MD5 14a51248acab117e80007ecc409740c7
BLAKE2b-256 f51b1ba9cdb3d4dd676f8d335785562bf74eec98848c7516938522865f2c5ce5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 726d9a15a1fd1058b2d27d094b1fec627e9fd92882ca990d90ded9b7c550bd21
MD5 813646c4840e8475cbbd684f27d85c23
BLAKE2b-256 79823c0b1dc8153d7158919e67f7eba5b52e4d8fb1708df1a562c0e3af7d949c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 644f74197757e26266a5f57af23424f8cd506c1ef70d9b288e21244af69d6fdc
MD5 cced6195f9fd82d4b488d2d0f63034bd
BLAKE2b-256 4126844b6bc9b97e2cf76b6c1ee53ed2d65ed48d1647b90866d26f70dee7e679

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1df121c3ffcc5f7381cd4c84e8554ff121f558e92c318f48e049843b47ee9f1b
MD5 d928db92abf0217504eb32565d356678
BLAKE2b-256 cfcd79538050dfbe9fcf745eb626bdc5429855615dd7ad3660f8082636b54664

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39d29b6888ddd5a120dba1d52c78c0b45f5f34e227a23696cbece684872e62bd
MD5 89655a36328bcae772f0201dc7fdd9bf
BLAKE2b-256 7667349ad4ee103e2998b904c950f67cf8e854635714dd50f2dc7a7e9d66b68e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 27e75e96a4a747756c2f59334e81cbb9a398e015bc9e08b28f91090e5f3a85ef
MD5 f945ff80a591511b0eb5c49c0b6b65fa
BLAKE2b-256 b1e3b2f42962f379307a1c3a5b5162115b8f244f47f1ef656ae3cf5f60c40116

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a01a21975b0fd5160886d9f2cd6ed13cdfc8d59f2a51051708ed729afcc2a2fb
MD5 35c07a447d186d8a9b7a9c68e106ca2f
BLAKE2b-256 de9af570309da9bbc84926683857893abaa3d77be1d77559fea10b1330feae70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f50c10bd5799d82a9effe90d5d5840e055a2c94e208b76f9ed9e6373ca2426fe
MD5 5023d9707f91cb7df97a5a3ad843b51b
BLAKE2b-256 47c098d34a3ad793dc9884ae217ed5381e128d33d86b001da0687c9a457e415a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 3d222c693342ccca64320410ada8f06a47c4762ff82de390f3357a0e51ca102c
MD5 b3d6fb119771532667355b8b7390e1b8
BLAKE2b-256 3f6bd5c7aa0e0b938ee1da791f781d51c5f08bddaa02b08f211999a62cc6abf2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.11-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 450.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.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b461f7918c8042e927f629eccf7c120197135bd2eb14cc12fffa106b937d051b
MD5 7fb41380eee348027e88102f1eaa9c67
BLAKE2b-256 60fe9ceb67fe0af2ab39b9ad55c35e800bf44b569a1d932129edacbfc53f080f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.11-cp311-cp311-win32.whl
  • Upload date:
  • Size: 426.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.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7c345f7e7f10ac21a48ffd387c04a17da06f96bd087d55af30d1af238e9e164d
MD5 9688e5f22bd3d398a3416931c2faa597
BLAKE2b-256 d7ce7bf32b3661ceaea9b67c9ae924903f9abebf39b3babc9e8cafb9b6287d1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8ccb376eaf184bcecd77711697861095bc3352c912282e33d065222682460da
MD5 21e691d1f9a42d7394a0e46ee894b9a1
BLAKE2b-256 4f21b77312ced467ac18adba74862aade02714a3d6aa9dcc022bf35aa49326c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ccef35cc9e96bb3fcd79f3ef9d6ae4f72c06585c2e818deafc4a499a220904a1
MD5 04dd7ad6da7103ec3a05718ade9e9056
BLAKE2b-256 2e43504360e858a85b4d735b9c991483980b55e0bcd4362781229219b4ebbe3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 cb9af1ce647cda1707d7b7e23b36eead3104ed959161f14f4ebc51d9b887d4a2
MD5 e5fcf38f4e9038eb1ce854d97fc504fb
BLAKE2b-256 82778efabd6cae1419e164dc686a85212c4014188f269c68b1b9708a4d632630

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 210470f8078ecd1f596247a70f17d88c4e785ffa567ab909939746161f304444
MD5 ff569735ed22676f3b40af86a35c0c49
BLAKE2b-256 8ca5c79fe56cada620aa1a19c0184f3745b678dccdee319361fb6d7c8cab8017

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fa806cdb0b7e99fb85daea0de0dda3895eea6a624f962f3800dfbbfc07f34fb6
MD5 1bc147aa9ef1a8f3339eea5529a12de0
BLAKE2b-256 3dc997343b283963e72d542ea23b5825b7b03d83bc9fbe43a08b47bdae824ac6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f31bfeb53cfc5e028a0ade48ef76a3580016b92007ceb8311f5bd1b4472b7007
MD5 760d441aadb758d6f8cf2352267c07a6
BLAKE2b-256 cd959ce546c725c4e3566a6c91a07095233b7c27ea3ca2df1e728c1b2b81116b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22e2874e665c771e6c87e81f8d4ac64d999da5e1a110b3ae0088b035529a08d5
MD5 9b05df48a5de289fc82cb3db5082ed8e
BLAKE2b-256 1c9814649f17c9b2110ae5e445a4317db10d14c57b2f1ff5b5635e74a2046cd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1585fefa6a62a1140bf3e439f9648cb5bf360be2bbe76d057dddd175c030e30c
MD5 0bf240e1c040b2f7137cb3a588ff4f5d
BLAKE2b-256 7c783cbde2f8a6da9dcc97fa0700f525ff9853f3bd7e6b7d89e326449980f0e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 196fbd7951b89d9a4be3a09e1f49b3534eb0b764989df66b429e8685138f8d27
MD5 e8f395403b4e5e247b4b87d026ef3249
BLAKE2b-256 1a58c59e46873ce5c1e427e92bbc31351eb68e2bc22ac48f6c4eab54efb7577c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4b603513b4596a8b80bfbedcb33e9f8ed93f44d3dfaac97db0bb9185a6d2c5c0
MD5 8bac980f5b1259bebb73e52faf07b280
BLAKE2b-256 7fda04cb11214bc51cd14a2c7ed1f2ad423a0581129e7fd7d31f1aa99f2f0d4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 734e64ceb8918b3d7099b2d000e174d8d944fb7d494de522cecb0fa45ffcb0cd
MD5 357311a58bd91c1254801f9c3f5ad3ea
BLAKE2b-256 dd65bd2b9abc059d46c4e86ad00d2432aaa0a9fd8d11f7eb8b524a32e22b0ad7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f6563fa3bfb79f892a24d3f39ca246c7409cf3b01a3a84c686e548a69e4fc1bf
MD5 c031f9b2fcdcd2a123aa4c1c67435747
BLAKE2b-256 4d276a061f23b4a0a09426c5daff865344b676b05bb15c03e4367b312567e8d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f014d909931e34f81b0080b289642d4fc4f4a700a161bd694a5cebdd77882ab5
MD5 ff756a0ca17b80ea4d151436e59dd465
BLAKE2b-256 de7d0b471d1d5f215dcfaa30a46bb5bebb61a5464915df93242c49b1b0b9ad5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 afe8c1860fb0df6e94725339376628e915b2b85e734eca4d14281ed5c11275b0
MD5 76c6780ccf887a8bf1a79d3bfe75a639
BLAKE2b-256 072b5d39d182524e09587f43d7c76887300bbce3de03f7f93a848b7c54d62bda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a7603f3998cd2893801d254072aaf1b5117183fcf5e726b6c27fc4239dc8c30a
MD5 42fa54a28ba269ef641fafd972ff5a76
BLAKE2b-256 82845fc8724450b3db29cc6a9f039d3b192363a2620745c31f6126da372e1637

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.11-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 450.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.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cd58a0fae0d13a44456953d43706f9457b231879c4b3c9d0a1e0c6e2a4913d46
MD5 79806b04633ebac5196553094d03938d
BLAKE2b-256 2a1ec17ca735d05ca68886268433f3a662df88d1918b475473eb52ed3711d28f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.11-cp310-cp310-win32.whl
  • Upload date:
  • Size: 426.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.11-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 421ca03e2117d8756479e04890659f6b356d6399bbdf07af5a32d5c8b4ace5ac
MD5 24f141fb1d762938140685481ff9ac96
BLAKE2b-256 b2f14dbe68a00b5ca991898bb44c625a7d4dc7b272eb99f1323bde46efaadcbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 554f4338611155e7d2f0dc01e71e71e5f6741464508cbc31a74eb35c9fb42982
MD5 77a339d6c7e65ee2bbf4b130bcb53e9c
BLAKE2b-256 96b2369606e0d08686d585f64d8747b0fb53ec4e9bb2a34cac0200cb4a15628a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9d9922bc6cca3bc7a8f8b60a3435f6bca6e33c8f9490f6079a023cfb4ee65af0
MD5 73f442769e7f1869637e4995e9606508
BLAKE2b-256 5e39244e31209fab9edb1c3cb28e33e726a2e0f96099a78bee215c07cd680d71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e6cbaf3c02ef605b6f251d8bb71b06632ba24e365c262323a377b639bcfcbdae
MD5 bf2e78de0594ea97e397dce1edcc28ef
BLAKE2b-256 1bdc2b2ea658dadb22b9671c4b0cc7aea66168240c84053912a8864654111524

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 104f1f9135be00c8a71c5fc53ac7d49c293a8eb310379d2171f0e41172277a09
MD5 8cfcb8e608c3b2de36126b750a959ed3
BLAKE2b-256 44dc392e0b62444a00aed437f18f58ff914ac66a7e6ee279e25954fa370afc24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d211453930ab5995e99e3ffa7c5c33534852ad123a11761f1bf7810cd853d3d8
MD5 81651e402dc179699ab04556a59a4b01
BLAKE2b-256 c9920abc349304431c6d0ddd8e75bfcddb1c5adbab9226faaee35f865d4b01ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47f7735b7e44965bd9c4bde62ca602b1614292278315e12fa5afbcc9f9180c28
MD5 8b1aea8d98e949bad4ecd93713a5fe0a
BLAKE2b-256 a61b02f3638a881deaf8e3a7f0f5efc4bb2038398396d62ca6a16c04a819e83a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb02a172c073b0aaf792f0b78d02911f124879961d262d3163119a3e91eec31d
MD5 562c57b8ddc887dd0f5cfb7737cdb858
BLAKE2b-256 b1adfd6aaa95f9a5d0ac3449d35e4c048d8fa57a8c332ce35b9bbef26d843e39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 efd174af34bd80aa07813a69fee000ce8745962e2d3807c560bdf4972b5748e4
MD5 b34be75b63e5300a92daf841da423e82
BLAKE2b-256 558f096346f9de52bc779f59914f11e34f51fcab1be5014777401c081c46c514

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e4aec7c3ccf2ed6b55db39e36eb00ad4e23f784fca2d38ea02e6514c485866dc
MD5 25dfc3fc76ce0e325cdf9f0e9c04c607
BLAKE2b-256 213b54a12bf17941062d82e210bdf92b2fc795b9b8686c7748c98abcdf2b6a90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 14aa6f41923324618687bec21adf1d5e8683264ccaa6266c38eb01aeaa404dea
MD5 e953df00b2263caef6520cdf082a5751
BLAKE2b-256 7a60720ccb5e0c3d1b8a92dc4184c0f63b1440477ef8c363be964b63dc92540d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6866da6869cc60d84921b55330d23cbac4f243aebfabd9da47bbc40550e6548
MD5 fe74fc5b08da7fc0f892a82f20001fc0
BLAKE2b-256 179d74bc3b1c7be89b09a49516929ce89f70b55a48b98c0ea08dc289be5b899d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bcf5791dcd63e1fc39f5b0d4d16fe5e6f2b62f0f3b0f1899270fa4f949763317
MD5 0c740c134be2537e96931fbbbbf60e9c
BLAKE2b-256 2c1878524a051a0acca139520e828027fd8b14fa3f73a1a45cfce09d8c7b60cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efafc6f8c7c49ff567e0f02133b4d50eef5183cf96d4b0f1c7858d478e9751f6
MD5 1957e52a7037e3674457de3252e85e59
BLAKE2b-256 006431c8b601ade2c2d147e4270963dd16162c4c76bf1b06b3b22fe828c6c77e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fe3a9ae8a7c93bec5b7cfacfbc781ed5ae501cf6a6113cf3339b193af991eaf9
MD5 55a4b2861aadacd2bcdc6d698f577e2d
BLAKE2b-256 759514be664a432f91838f3e3631aa74ca8e11452b98528157592e9bad8016aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ff576cb82b995ff213e58255bc776a06ebd5ebb94a587aab2fb5df8ee4e3f967
MD5 84f10ceaaa6c13cc9bd1dd98c85dc250
BLAKE2b-256 ead1364a1b717af86c389b8f249e47d890f2f1615e46090dfe2b0696c8cadc54

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.11-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 450.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.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2af98debfdfcc52cae5713bbfbfe3328fc8591c6f18c93cf3b61749de75f6ef2
MD5 29c069d810ca7323b324726db1ca7dab
BLAKE2b-256 c39cacdcf23b482f1ebb4605a4dbed22780538f4f4778c4381663e9090434546

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.11-cp39-cp39-win32.whl
  • Upload date:
  • Size: 427.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.11-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d28f7d2b68f4ef4006ca92baea02aa2dce2b8160cf471e4c3566811125f5c8b9
MD5 b3fd8d74ef53f0bbe0532f8c93f7ad01
BLAKE2b-256 798df9a557a13705f8a646fe156c6f8d690ee2150aa04cb6725d49aedbeeb01c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 760846271518d649be968cee1b245b84d348afe896792279312ca758511d798f
MD5 4ef2696cc0b7051fbee5cd2e67354765
BLAKE2b-256 e6e298fa84fb21a9dff2a729702896cca8f7227c07526993a0df6af35a54443f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 cb907dcd8899084a56bb13a74e9fdb49070aed06229ae73395f49a9ecddbd9b1
MD5 24127333d4398f2770bfe44ec9d14408
BLAKE2b-256 651d3aaf4d06616016cb5103134a6072e61f13579264520b15ae81c47c4c230f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 29f642b386daf2fadccbcd2bc8a3d6541a945c0b436f975c3ce0ec318b55ad6e
MD5 a2a3776d610e1e976f2f095bc848e2dd
BLAKE2b-256 ed15f7195c50020b6b9981c19abf542ebc9590412ddc6d0e8d1d24a1673dc36d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8ddd775457180d149ca0dbc4ebff5616948c09fa914b66785e5f23227fec5a05
MD5 b00f206c58086a3e5ac6de73b7b58bfe
BLAKE2b-256 6e5256fe4d93331f78f7c99ca4f35dabed64682887f9d7c0622a04837156ec0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8d353c5396964a79b505450e8efbfd468b0a042b676536505e8445d9ab1ef9ae
MD5 c4cd785a2afad24e4638639eaf37d7d3
BLAKE2b-256 874f277e5e15ac351d478953e42a451005df38a877162513f12c464d5e0de3da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b63b3b5381791f96b07debbf9e2c4e909c87ecbebe4fea9dcdc82789c7366234
MD5 2e6cfb3602254c4cb91a974ec7071c56
BLAKE2b-256 5ea915b9c85c6d211e23e836bffb8fee7867ee15bf43d5130d5fc968939fb4fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f672d8dbca49e9cf9e43de934ee9fd6716740263a7e37c1a3155d6195cdef285
MD5 dc8492e60006fbe05ec11c99eca576c0
BLAKE2b-256 6887c4b6c5ebd050b653673688d64399b98916931b98c33eae88c49a39e952ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 340ee38cecd533b48f1fe580aa4eddfb9c77af2a80c58d9ff853b9675adde416
MD5 d05a89ef80f276239c3d8b3866b6afb9
BLAKE2b-256 81693fd719d66360fabfb588782bb932551abb66c5dc8945217e1e344ff8a688

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8437e3d8041d4a0d73a48c563188d5821067228d521805906e92f25576076f95
MD5 f0a84d3a1e98d0945ccb530f834200d7
BLAKE2b-256 bbb77c9dc0c2dc304c549594c7f391052dd34b411cf81de957faa24b88ccedc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 063b0de9936ed9b9222aa9bdf34b1cc731d34138adfc4dbb1e4bbde1ab686778
MD5 689818e07da653915cc2882988b35406
BLAKE2b-256 904f621841bff6beba0018ecf0aa90f1cbf2e8ce706d7aa2c71dd62d5ac2de53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 019d6075bc18fdc1e47e9dabaf339c9cc32a432aca4894b55e23536919640d87
MD5 7a46306ed192024fb6d6f446538c94ba
BLAKE2b-256 0076cc03b5127b76759d093966cac28ccd97b03cf21e1b288e4544f2ee77f71e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b4a36ae8bebb71276f1aaadb0c08230276fdadad88fef35efab11d17f46b9885
MD5 29b56d49627f84202bb0bed2f591eea5
BLAKE2b-256 c011514988c354fec320ff55d1750268e29c6994c2c928a1e710d72b6e04257b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06e18aaa360d59dd25383f18454f79999915d063b7675cf0ac6e7146d1f19fd1
MD5 76ec5ec1551e3d5174970d5590ad359a
BLAKE2b-256 2ba47b43523173a01d7ae00fdcbc7a58aed71f829e34410f90085a1d0b845ef2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f36958b508e03d6c5b2ed3562f517feb415d7cc3a9b2255f319dcedb1517561a
MD5 b8e2d4353fc7ff42b62d9985da5166a6
BLAKE2b-256 3f497234d84357f56d527b6271ceecd3fb62bbdbee0f303d451f56e4ab223bb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.11-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4f1f92cde9d9a470121a0912566585cf989f0198718477d73f3ae447a6911644
MD5 233b667ca8a0f0e8456a80daa38b73c6
BLAKE2b-256 2ce3794fdf123a538dd3f90b50687c8528be097a26ed65e82d3b4194997591f1

See more details on using hashes here.

Provenance

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