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

Uploaded Source

Built Distributions

aiohttp-3.12.8-cp313-cp313-win_amd64.whl (445.0 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.12.8-cp313-cp313-win32.whl (419.1 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.12.8-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.8-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.8-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.8-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.8-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.8-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.8-cp313-cp313-macosx_11_0_arm64.whl (463.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

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

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.12.8-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.8-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.8-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.8-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.8-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.8-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.8-cp312-cp312-macosx_11_0_arm64.whl (466.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

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

aiohttp-3.12.8-cp311-cp311-win_amd64.whl (449.7 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.12.8-cp311-cp311-win32.whl (425.3 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.12.8-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.8-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.8-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.8-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.8-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.8-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.8-cp311-cp311-macosx_11_0_arm64.whl (468.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

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

aiohttp-3.12.8-cp310-cp310-win_amd64.whl (449.0 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.12.8-cp310-cp310-win32.whl (425.8 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.12.8-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.8-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.8-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.8-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.8-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.8-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.8-cp310-cp310-macosx_11_0_arm64.whl (464.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.12.8-cp310-cp310-macosx_10_9_x86_64.whl (476.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiohttp-3.12.8-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.8-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.8-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.8-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.8-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.8-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.8-cp39-cp39-macosx_11_0_arm64.whl (465.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.8.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.8.tar.gz
Algorithm Hash digest
SHA256 3c0d2ca376b7cea6c1dfa1fc2479b02b3f482a249fc7020c69063b321080140a
MD5 9d7ad6634345cce620d2d1055f19f6a7
BLAKE2b-256 5214591553163be65a45d5b9329ae2d95d491d77cded4e1c8213d9537b78c478

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.8-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 445.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.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2f7e553bd4ff72d7e3b06ff60fc2d29457865ddb8cb7d7dc9287991c660151c5
MD5 d7b2d96ed38d6c98878f1d9fb1f3b92b
BLAKE2b-256 2e443ba175afa2d6d6db7cfe27136dfcd0f3c0e4c9d48dd2f3c58f955b61597f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.8-cp313-cp313-win32.whl
  • Upload date:
  • Size: 419.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.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3ca646524940dd62a96658ccc1e64dc548c633dd0468a0bf8525dd3163e2c60c
MD5 7b43bcca7088aee84f32afd884a07097
BLAKE2b-256 fe2d6303861ebd2ac90753f0f789892c3ff841df0fcee7527cbd8e5be82c354f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad754910e7acce5bd52326b308ca58d404e8ba1a5bcd5a0c8607ce3dee4a1d65
MD5 1f48b81678fa998c45249cbac00af5b1
BLAKE2b-256 47c002c94b8d4dcc790976ef047737faa995aff1b3eaebd506d781ca43371d9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a9e0be4d239794c065e1ba439d19de7e4773b4b4b3b9849af2c3c233f3e5b3eb
MD5 3585dd782084125e54635728cf4e257c
BLAKE2b-256 f54e578938d73e73187d835623a2902979d775b25600320244724f7fb47677ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ae8c65d708a473fcfa5b972a1dc6bf31257d58a07f4e4c93d0327384deab5cae
MD5 5bb9c6164c89bec9e750f7a2a1c27ce4
BLAKE2b-256 ed81151c62ec0fdeca4952ea716a197c54b36272b0dd23d202321a01e4b76997

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0a99972b368e370882994a72bd2e7b2d89a886288f0ff0ea09793452865b97a3
MD5 2422712a980cd3c1f4295732b2f5e6a4
BLAKE2b-256 4888dd5866d495dd07ca76d97b8a90373310b3ae9d9da845a8621038a36d289b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c2b7f82193482c7778d2de25d67dcc29a65895f5281ef177609ed4ebfb015d68
MD5 52bb8c2b88010135b3af7b9013bdd909
BLAKE2b-256 2a04c58e5347960a385bc360678e1fee3ea021db99b0c7b83adaedf98b54e6b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 952d2fa762ba6a946f3498a3a62c19dadb066539f5ac0dfa20dfe58bb8f733b5
MD5 09b07a0cce9c8f6e0f00d118d4c3cce5
BLAKE2b-256 6f08dd7d243b2f44914d647614503c5616d1393930fef5acf74ea6da1fe0e181

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a8edf6c68eb4397136591d66ce4bda8cdb47ca585948223bc98e8492d37c71f
MD5 ca5dee6b9d857f67978418933fda50ae
BLAKE2b-256 2326e667da558e29b30a1d758b7f0719a3be0c44bd14fb326bf3d988596075af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0725406d0c512d589be41141391d11d56b447f4b56eee9bd9a17424b0e3e1d78
MD5 15738a9c6a9bd73458ed003c814863ca
BLAKE2b-256 811f2db47efa2325b05869ed4eb0935ac3adee9c82689e8c43824f84979343b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 268a7c20eb404e9154b77fa521f832bbfd876cf5ff7b3e0dcb744d5b46738149
MD5 f06e3437c06a0682b8e4e7eabc5b1687
BLAKE2b-256 4507288839d84b64a525e332e8e71b38de67549887aaaf7352896ab4ef7ab42e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 311060ebd0832074968dd7d1b204a3b155203f7f9159c5b0908b76c5430be50f
MD5 108b9f5c50dabc4a7d38079300c708ca
BLAKE2b-256 5857c0ec6bf62c390956e6c66369abb23e3369cf5f9472744ecdbedf2c884886

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0759cbdca820a6a5a8562606052792ef9acb79633c3e79e6733a3c1c133d4c7d
MD5 a3e3dc7e5c16c10362d42eae0569a378
BLAKE2b-256 c735b17b894e129176639fcfdef2d859c6602e206e032ad8b41d050899296190

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 25aa7f26286769210938a159db2f2f65d05bcc06190e34fca03eeb643f20dfc7
MD5 d9d2033aa33d70e398e27f4432ca84fd
BLAKE2b-256 b04a621345bcc17c7045b97b5e4374cc30e343e03f1434f710aa4c573d25d676

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0e7de9631c3163997a34d8ed55a2165e2df2ec6082dc4bd16eea92d00145c4c
MD5 b6f96f962c15abbdfc4414e3c120cb93
BLAKE2b-256 8c87ae2ec08f33742c3cc71bcf2bdd50e2d08e0e886a13a16579243c4105abf6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 326396e1c174e775ac1bd49d41689128a28434d86af2d5dd9adfb211686f16c8
MD5 59afa74a3b27ccfd0d308524fc087ed5
BLAKE2b-256 4f53c63430c4aaaf00407a2a3889182b66c9888386ae7737b11d76336f0a21d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 0cfe91b12a86f1a1f292f46201f8801263f1df3b843c1f9020b98e6007838918
MD5 08ead948b6067ab1dc463f85822eaa3f
BLAKE2b-256 832df1661c5069c94e5236ebc94aedf3071dcdbdf3e826d768f563a79dd677bf

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 58a90c26603a7ed89f2dcaeb8dbdf4805d55b363666870c71106a6f60ee93efd
MD5 3d91d4adc93fb80496c73f74c20b732c
BLAKE2b-256 1e472c1d2783d9f4c1a6bb943b48e27f8cd71794358b761b70aa978ff5c28e88

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b20d42b621287ac12bd3e627d401615c80397bd3a4ec3ece50654af5b2b30c58
MD5 c7233b5ee8b2ef02fc300a208e8c0df9
BLAKE2b-256 4ae2d9fc4a49c31ad294900c56a435b000e7a700c548386b8ff43f9413efd22b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 afd2e80e229ecc30c8b773910c2c381fd89b1f0662ecbf4fc4494a7a25788f8d
MD5 b2863bbd2eaf828285f469d52ce1ac1b
BLAKE2b-256 c331934ed9adeda538b221913f9e96426680c993bbbf9f4ae2f58afa42aa5309

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7e88efdb0e4373ac7040cb9009527f2f859e0035639aa57ff8281f0206a75bc4
MD5 503e27d9b317693aecf001797dbc4a4e
BLAKE2b-256 e5619e616aec811817f3a9da1a162787ffbf22761d857a9cd06ba9de74d87140

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 be1b38de5c846e2ea0589a5967f5d9d37e522d5ee4df8393af7550d038662ba1
MD5 c3c470ed0fe0237898a343a2dbcc06d7
BLAKE2b-256 1ba47ebe22478b51b1076db3a9a7658579121d21deec1de66460eda4104897ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5da5aabbd47a95d7cfd65a9b6b201b628474471f0e49fc4d6d8af8c15d544957
MD5 0f8a6013aa6d3f60e04371bf947ed0a1
BLAKE2b-256 11e04583e90fb518243182d5ccfd9011524a50a9d6a7a73443ad6bbed91dc5c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 db7fd45e72947f555bd4c8a529f017a8d519f814d45a071f9da66d04166ed6ed
MD5 baea00c524519ad0d41c9b4c1c1f9c6d
BLAKE2b-256 7f4742945ecc9c86834c7c46f2e16b204da15fc6ce3a041b42d48ab799f030c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4fceb45ff7b539c8e5af00aaee38d13e50c9ac7a024da0f9ecc832347f77ed3e
MD5 72a2872fa01591ff7fe462a9083c5e86
BLAKE2b-256 48d9d2066059c3afb0dd6479444fc57ee633058140c90f8e61e80b28a06bf4be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c03c0a5a8169cec51b8447700fd96183c0917c4a29aed707d2775cda20abbed
MD5 827b115dc9f015e093517d824bfda2ce
BLAKE2b-256 c29753e2c5b4ba7d0dbd1a9832cf5a65958921c9534f297b54d6506a28bee17c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 db28ab4a5b409ae7e747575d6dcb5bff75aa98d750b8366fa036135b5446d3c8
MD5 1f13913b2e7d88e95f0b9bf4b80218fa
BLAKE2b-256 f199955ff89eebdb6939e3db9726aa5f24a00f2096d8d1269377bb7828c5ff6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2edb5286a4c924974f12798863ef81568c45e1ce2191f483a981276f82ce64e9
MD5 4d0de744d4fd179690cfff4668d443a6
BLAKE2b-256 75e403080ebce1ad2529ccc5a94576a3af1aa82a2e866334943d4a8dba5a95ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2fa21401a7fd516cafcf44511d356dbf15f77bdd2c53a92aa8760cf97af41c36
MD5 591191e7a90e194ee84e0b08f32e17e0
BLAKE2b-256 95f2f4ebe2972b55a9f2cde27bed78b052c3ab5f8fb3af82414f5de072b2e076

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc7a47a7fcad1a396abe7b7951cd4e9c50824e50bb5ddd6de2d465ad7e9f40be
MD5 937ed620b1eb13111b20f50900c48ba6
BLAKE2b-256 f006b6afb9348df5c782134931274576cc09e3cc333f5f2a39a5ed434fa6193f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ee2821809ddfa441263f616c644c5ba8b6a0c9586555efc804c0cfabccc8a1e5
MD5 de1326b3d7b36e526d69bf5a75c4b3d0
BLAKE2b-256 ab89dc5faa9aa20d83cb37dae40773ad273b3de75532d57f3c60a432474dedf2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 443d29d6c382b8d5c932cf88db006cb8c12db1019618b228791a251e2c73490b
MD5 f7905ebc1a9778404207bf79c50d478a
BLAKE2b-256 2159af42df3129bbfdc6d8c1fb863379c16e25860696529bad8b5e49e20a81b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c6fb7a89538475597e7635086ade991c7223c2aa34105c53dc3878a61e21ebcf
MD5 382a485246ca197bb23133acec8193bc
BLAKE2b-256 a4316002e9938ca82bb0df7647bab99bd256c7ee67a73e56c40703a037a1f279

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 10cf602de13ce84965d113094a7f88c8b393c58a40663b342f60c7e84472145a
MD5 172e6b599577dd09f21c72b8233653f3
BLAKE2b-256 d094ca11431028b78e71090105a77cc37baf1be6594aad9738bba3593382e278

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 449.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.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 61cafeda35bfbabce4c38237485da9e31adae6a0a81ce351936cbe36acae0507
MD5 c8379c58b4ec381dbb2e27e230ed4cbc
BLAKE2b-256 3b7dc17c898082cd16c3644a9f36b845020c0ecada68e85a8ba2cb0d1a8a403d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.8-cp311-cp311-win32.whl
  • Upload date:
  • Size: 425.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.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2969c9b9d8312f01dbe8cfd96d31ce0ff912ae3653d437fa73d2a6cfb0aed20d
MD5 9c8edf210a9477af607868da50b38a4f
BLAKE2b-256 8cf11d36f122e7feefd25ee80c2872d4881a02576e3c6247ec1ac16279cf23a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d53ce5059731e3f11f3245baec47620ad777ac336fc87d1cfd8b2393e384dff7
MD5 da9e1e21ada4abc4ecef4a46702469f3
BLAKE2b-256 89274cbac098c041bf75a241e0219709e67c1b79ae5f9d08e4840e9928adb06c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 31484e637a4b34e7771d0a9bf14de655a8943041ff2981e825556f3fa6f51e4f
MD5 96983f56c7ce0ef06649026c8b7924e1
BLAKE2b-256 a1acfb2e070e896eefd7ae33b048157d2fedde0c7aedbd32d2ea6501096a0ea1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 51c7f01e50cec0a828a2dddaeb37c4f6e57882ddc7d5c91fdb955424dafac28e
MD5 408f3dc96ec88639446410d905c98357
BLAKE2b-256 c4229e3e373b3575489edf8c2e8aa43614a8ed0e25f8c5128f664a680c6836c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1bdf5baa3f1874654923268f220340352e1bb1c054cd1538e0674e94bd2d9ab6
MD5 ab0a3f3d1024aab95969c0cef24ea5c1
BLAKE2b-256 22baad3051e5b99461e93cd450d12faf88cc3c8ce96219c87eca7cd795f8b39b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 408225b0f91b27d47d8b838ddc84595b12927e63031ec7e37130a0a15294b39a
MD5 4b84e9c999c41878bcebb669b8009981
BLAKE2b-256 d8fff6604d7823fc3162b0b85398320e8a9df6810acade846a51677993ff0bf5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 516edb0a9476be7b3ea9b66320950c399a719404fbaa11353c190a98990a1f61
MD5 6193695e5ce3c774c5966cca037d4e09
BLAKE2b-256 eefea1dd82fcfd91663789293a46a3a9931dd317d2ff96ea5ccd4172c8bbf3b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b5dd6dd7dbedcd037837edfd2686bda91366b477e2e01d016cc72245254c2cb
MD5 8cf869ecb342f0c69f4eb5c7762abeee
BLAKE2b-256 d3f723fa5a9a435de267eadc2a6c50133132fb4419d22c69ff716020128793af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a2cc417dd10b797f471016a8630ea3d7e8717a7c14a9b04487edfa5c885acd94
MD5 e791d579317f5a238001e264d1cdf7b0
BLAKE2b-256 c37fb2257b49e901014409a46ad86f58f3b84f30512b05a889cc7ed1d8b8efd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 18e46324b9dacc8c921b78825d968c2b465d1dd6a859558361ada2e21d21cf56
MD5 aed47e817faef0bbeac6950fc972ad1c
BLAKE2b-256 5b7f604716215ab9cbbd16bef6f85c0130422d8a039c63bfee33772a66f7ccdf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b2ca5edbed995039b668c0640945bbb1683da6ffe853ee791a11997197b6826c
MD5 bd46d4c93c02953d8f7e1232e04a1d9e
BLAKE2b-256 b0ec9261bb96b4b300a6e90c502e693cbc745ee7ebb25f693b1f7bf2dcbabadc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 418a9c19e9481ea744a40f0213db1132f8bc462013b79e4f7544e458a1995b38
MD5 be812651a285bdc601f38be2f19e646a
BLAKE2b-256 4f413784fc55246ea7f4aac06c8296cd27c0e0b62767b86984ff4c7d5d0487bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d80a144083ada630d1aba99eded7e877555af3f9065f92e946a72d94619d4dff
MD5 7581d2dafbd0253f935a15dd9d1c4111
BLAKE2b-256 57ee28e9fbd920eb415d82d94c895f0071fd6a2face9c60a575247cb9c5aabd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67ac2706fd0581717b626ef8c0e9db7840fed0d85b5dbe6523036f116a61c3c9
MD5 5e49deadcb0b4cc4f6ced4621407b4c6
BLAKE2b-256 06dc94958fe022a04211565496eecef1adc3c44a6470d2fe4341816c94cf61b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fe66d0bab9430b40278d5736ac59b52861783f74366449b74ef1e7feb37b98de
MD5 613464755b4282af2827a5c224fddde7
BLAKE2b-256 0fe6f6254f977410150f3d402cb8377a3256feb0830edfdb7ff9b05e3d1a8919

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 27bcd1bbbddd49e40b3a01c2c442881d1e4548487468f12b5ff13b45c55c169c
MD5 3cb6a4744b1278ab5a98de3cc87ca297
BLAKE2b-256 c50ab0a086b59288f8db7017a808639c42249cb6cf4a3145cae648370f37a036

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 449.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.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7dfb744fbf99da22bdd8f62bae54c9953201c3fc0f198f48951b8b15afba0cc8
MD5 2a1675b351a05ff6cfc384afb9d5c565
BLAKE2b-256 bd8827e42be6f926bcdb2b3a115d9fa749dcbe456a53d69b8c68dfeb88922855

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.8-cp310-cp310-win32.whl
  • Upload date:
  • Size: 425.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.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 85ff9f7f04486504b0a46d9f570e15fa905804d39563685af44659023a98e62a
MD5 6ec63e104e6766744b04471e2ff46b59
BLAKE2b-256 1cc4fd04a43d4d7c1a3b97c3ec5c4b62f86b9d62329ee65fef89fb69aa2c0a2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6164219acf66c8fee268008971843173e2fabedd6aa86531b6ea9b1211ec271c
MD5 97e87f75a10146e91a2ab7348db45af9
BLAKE2b-256 dd990129c580c0fadec8993fec0c520cf3a91181734f90ab53e5683608d0d477

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d6eedc0407ead020b2ac7295c85ba71115c12ec70e2e80d460a738a0d1cd3c07
MD5 1cebf86dd94bc30e14ae26e71948a7d3
BLAKE2b-256 2b2e61b184aa2c966c29fca70d272127dce6445320d5c0c693887323479932cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2a2b9d9db25fff1eaebd8c5a1c83f901f6f3d3474ca8422dc2b3cfdd61aba25d
MD5 10c09b11b323dda9cea554fc804d2f8c
BLAKE2b-256 5fa2468fd0a9b65f3b3c4adf2260940e08a07a1595196b46c2e2679646c56230

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e2f79ef7e620a78a29af3e0e05b8ff74790461dfe794b98ad07543b835092d68
MD5 bf016635f49b1c898a5d4da895d8ee5d
BLAKE2b-256 b7526274885a4d1521e3399addb232d3005906b8508c61a80614f77526344ae7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 035feaafa9ebeb7fa609737f7dc4232403a0854abdb809aadf8a0eebde8da974
MD5 a085d06f9afd1dc6d45328bad64b5836
BLAKE2b-256 9bbadde7fe6c06163d7abd4da2f70fb6b2e5860de64f2c2ac9863df3e6668159

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71407580e2b6c7aed1d991ce3c372fc577812b1a91a9980f12395bf723bad9d7
MD5 7e7aeb4b12fbbc033b9dc165a7f19bac
BLAKE2b-256 36b7891b4f9284c65bca728b368a2b930677657d1912b9a42e18fa4b59dfe197

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08d108b9136b97f9abbe1fa24fbe343a77d63d7e1202e4910c656c79eb7f1e85
MD5 8e6d4381027032963392e9690b41a853
BLAKE2b-256 2a504411e8bf73ff347e560de75fb351e5d3c3aef1618581b0f87b1984eb363b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 983a100232bd603e741d059fbe66ae4a6d15c824c0faadfcf76f912667248da6
MD5 95041612e415b8838d2a74893f6d93d9
BLAKE2b-256 e78876dd4e9358e33783a1eff620fbac1cf887093757669668e5859422f324df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e5c13363592704339a6ead1943c1492b123e11e1debdf764eb71fce8c9531ffc
MD5 9af6d91a26428330b99b4b0f8b94ce6d
BLAKE2b-256 37525845ae724208d579f4bc008b4cde5181236ec7026f92c1b03fda8c8a1cee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 be80d260a9b8e41ef5c33189c7f28d877a637bc5dcb30054d6a26350a5667d1d
MD5 135f27e80035618d59c88483a57a273e
BLAKE2b-256 ca529af2670d5aec54c5fa021086332ba8e7ac231748ddb8ad65ac0323d9ca68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99d6699a957b14f90489194e1c6215927ceb66b3ad5c41d4cc88eb83fba3aa56
MD5 a899c8332a92e1597dcd9d4aaaec5a49
BLAKE2b-256 fb6777106e2ef3ce09ab9ab942015a3e16404f26204e32218e9769fb28d91555

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 02266fb5818158ac5cb9e0360df1be8acc2035ed4703e0e4acd251cb11f0929e
MD5 2b99dab113b23e2c7a38e94ecba57980
BLAKE2b-256 99486f22eb3773c27aab126629db036ace95d5001782181453a18fde43383e5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b84f4e77372490d6c07a09f9982013e135e337453012f6f599fe3ec98c2eb486
MD5 2abff7853c019632e34e4378262ab604
BLAKE2b-256 c8c295aa51a6289e46961d592dd289cc1332ce439e5915d9f9f52b2bb8d84a29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b1ba9b08a99ccb409c4ede20265316085e7e28971984eae93277ed4e4a1d9690
MD5 9e135449de543fdd1054ea7e721aa33b
BLAKE2b-256 c1a78393338e997856f837d978b59cf173946c87872c45b91b19e75725e99bb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4dbb967657a4e290cafaad79e4b6ae0bb04d44463214f552360ebc64e86521d0
MD5 86f0f12b269e99deeaca725610fdad91
BLAKE2b-256 c7aba82f13949a08a67afdc421306ad5e0c26ae7d957471878eb9d87b63f412a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 42d54fc4e16f2f757a3081335988d4dc9277db34b001c718b7e25aedbc5af8f7
MD5 f4da4731d8b4114f1c5df0654339dc12
BLAKE2b-256 a6bf4ed7fa980ad78679fc9cbec639333046aaf8f114b3668d3a44c388260889

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 86262b58893701ec88acdc2fd9aa6b56d83ed244ad3dfe1f3642986a2172239c
MD5 6384678638cf000b5eb41691407caae6
BLAKE2b-256 0f8fd6b7660dcf94a7246798913274ad1979734890571c6f1fc08e727e9b212b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dcf9bb3f3d9aee06074067701971e07018f41ae3cf06d220471148c5b41cf644
MD5 2edba8fef6e9cfe7370d9ed001aad6e6
BLAKE2b-256 3e327ba8c3fd88a3697ab89283e4337adc5ec8e637610facca9a512d42e43b14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3075f67cbf7533af422983464b8d6af508795eb1da5ff318390de0127ae52f42
MD5 5193158721f18cd34dd3ff5e035c6e4c
BLAKE2b-256 b7e0d04983f430597da4862fc166a60c845f08656dc59574d9f2265263ec0a01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2cefc341d25e4940081576b7e3666ecced80deb0651e186eb06fac4d029a5a1d
MD5 f114b722c91225406898adc5305f2d2b
BLAKE2b-256 191394c1266207246e01448f6dfbead1b4cb2a0176dcd8b2991fa33c72b4d496

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 622d3f2e50e623221429b05433f0cfef17494618b82d2f1ebf7c161aff7e4dad
MD5 0fb48d2190afdb1c00f3d9b25221af53
BLAKE2b-256 6c74af592ea770f9a9b084ae484fc789dd132f87caada3e196d269758eee7e2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 93a4d00d9b08fbaeacd93a385177c0d39442789924e747bc636b26b448bc44fb
MD5 5315b98174d33e95b31a8e16a4ac9191
BLAKE2b-256 9216723bd93ad41922e39bdc05d028ab3f8a98f0c2bf4ccdec4c783f265f4b31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 79d83aae6ed60de95f3095590e45d3cb15d0ff8ab30c8b7c254e7343d01f3cc9
MD5 fcd5f8da5c2d90c1754d7c4f47d64968
BLAKE2b-256 77178c759ff5c1881036bd57547b8cbc43027838d6a80ceab6a7c304e41cce07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 022e59f551b1e0022c13ab258770b230f9419e70ae30304344d39877730ff412
MD5 45bce84c7054d014793e7450446685ea
BLAKE2b-256 4590983cb73f7e873432909e8544479c7d997083c96cac79b1f5ea833a45d079

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3783a87d1f704d65ba41470a12c2acc6f299ac856632b008b1361dfaefb1973c
MD5 87743f08cb468da8f1b5b4cd81893056
BLAKE2b-256 424883def206b3951fb4d581930dc282e81b62ec13be471c520473883d7aad25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8bae2b0801095fa5d747f71a51750b25ae5f99278e05fbb8e219e0142ae5a403
MD5 bb4aa6f1bbc3d3c98d66f05ae9825b8a
BLAKE2b-256 13f99976626fc327ac1b987262594ce38d855ae0c6abc53b31e0f143f2ecf9f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e4cac5a21b03c96caa5e9c88e8e4e4fa81b8a55e5988735875960a50d955cd27
MD5 b02b5f6e6b7315766be72cbd5699117b
BLAKE2b-256 cf6cd089b341bf6ef687f101f398a922f07cff801fa356faba199868903739be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a0deeae01ff39b4a51be7353e74bde83d03c7394c9d8bea5696732fdd08327a
MD5 4937691719a22d08f09419c50ae27e54
BLAKE2b-256 9aff17cf4c4c00e4630230871920d5929c27c77997e561041eef51a9f17822f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b3b1cc723102f270aca976df732991736a2287d98a1f7537f34c3501e2f511e6
MD5 e914eccad6803c4d050926b048bff20a
BLAKE2b-256 6187652ad3fe6c89429a880497b19e3dbce578eee77383eaf16718b47e14c4f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb93c41be6c20e934733a25f28171333dbf5029efe7531a412a1979fd4147e06
MD5 af6a9c8fa2a1d059b3364cf2477a3b8e
BLAKE2b-256 7ce8a5ddc52eec90265c24d9068ac581e28bc8896ee3a1404695227b98f6f04d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 265a2a6f6ea42dc712ff453fb6e66059a08ecc8a492c6e38109c0677f6239525
MD5 2ca63289bba2ec57d596d4461beb65eb
BLAKE2b-256 4a2d6376cf3d769eaa27e05ed34523602921db2e4091ff861dc2b3060b218fad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.8-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 feeea724193df2fb795f3985785d4ea99e66b8db42812f73b1f99f96408ab79e
MD5 fd99b924ccd30273fd9d89bf120be014
BLAKE2b-256 26498edb54c3f2dc809a10767c93bb0ea9b3c8b9a04e8d278130f51e588e291f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.8-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page