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

Uploaded Source

Built Distributions

aiohttp-3.12.15-cp313-cp313-win_amd64.whl (449.1 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.12.15-cp313-cp313-win32.whl (422.6 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

aiohttp-3.12.15-cp313-cp313-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.12.15-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.15-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.15-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.15-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.15-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.15-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.15-cp313-cp313-macosx_11_0_arm64.whl (466.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.12.15-cp313-cp313-macosx_10_13_x86_64.whl (474.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.12.15-cp313-cp313-macosx_10_13_universal2.whl (696.7 kB view details)

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

aiohttp-3.12.15-cp312-cp312-win_amd64.whl (450.3 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.12.15-cp312-cp312-win32.whl (423.6 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.12.15-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.15-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.15-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.15-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.15-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.15-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.15-cp312-cp312-macosx_11_0_arm64.whl (469.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.12.15-cp312-cp312-macosx_10_13_x86_64.whl (476.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.12.15-cp312-cp312-macosx_10_13_universal2.whl (702.3 kB view details)

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

aiohttp-3.12.15-cp311-cp311-win_amd64.whl (453.3 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.12.15-cp311-cp311-win32.whl (428.9 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.12.15-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.15-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.15-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.15-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.15-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.15-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.15-cp311-cp311-macosx_11_0_arm64.whl (471.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.12.15-cp311-cp311-macosx_10_9_x86_64.whl (483.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.12.15-cp311-cp311-macosx_10_9_universal2.whl (711.2 kB view details)

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

aiohttp-3.12.15-cp310-cp310-win_amd64.whl (452.3 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.12.15-cp310-cp310-win32.whl (429.2 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.12.15-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.15-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.15-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.15-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.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

aiohttp-3.12.15-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.15-cp310-cp310-macosx_11_0_arm64.whl (468.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.12.15-cp310-cp310-macosx_10_9_x86_64.whl (480.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.12.15-cp310-cp310-macosx_10_9_universal2.whl (703.9 kB view details)

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

aiohttp-3.12.15-cp39-cp39-win_amd64.whl (453.4 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.12.15-cp39-cp39-win32.whl (430.2 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiohttp-3.12.15-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.15-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.15-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.15-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.15-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.15-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.15-cp39-cp39-macosx_11_0_arm64.whl (469.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.12.15-cp39-cp39-macosx_10_9_x86_64.whl (481.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.12.15-cp39-cp39-macosx_10_9_universal2.whl (706.8 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.15.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.15.tar.gz
Algorithm Hash digest
SHA256 4fc61385e9c98d72fcdf47e6dd81833f47b2f77c114c29cd64a361be57a763a2
MD5 2fdd3437623fa0d86313a3a3c7d1e2b5
BLAKE2b-256 9be7d92a237d8802ca88483906c388f7c201bbe96cd80a165ffd0ac2f6a8d59f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.15-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 449.1 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.15-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1a649001580bdb37c6fdb1bebbd7e3bc688e8ec2b5c6f52edbb664662b17dc84
MD5 04564933efe94cad1c74170a884cfc2b
BLAKE2b-256 1b8e78ee35774201f38d5e1ba079c9958f7629b1fd079459aea9467441dbfbf5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.15-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f813c3e9032331024de2eb2e32a88d86afb69291fbc37a3a3ae81cc9917fb3d0
MD5 d0f49ff6ef024cd2b41b4f41335592ab
BLAKE2b-256 b42effeb7f6256b33635c29dbed29a22a723ff2dd7401fff42ea60cf2060abfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad702e57dc385cae679c39d318def49aef754455f237499d5b99bea4ef582e51
MD5 ef5877bc7c908d5c57827f9de4eb3273
BLAKE2b-256 056aea199e61b67f25ba688d3ce93f63b49b0a4e3b3d380f03971b4646412fc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 760fb7db442f284996e39cf9915a94492e1896baac44f06ae551974907922b64
MD5 a3a1d3a811889a55cbb2c4ac7e1c8c0a
BLAKE2b-256 aac8f195e5e06608a97a4e52c5d41c7927301bf757a8e8bb5bbf8cef6c314961

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 47f6b962246f0a774fbd3b6b7be25d59b06fdb2f164cf2513097998fc6a29693
MD5 b26cfece664813eeddd1eb19a6510243
BLAKE2b-256 0436a6d36ad545fa12e61d11d1932eef273928b0495e6a576eb2af04297fdd3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ac77f709a2cde2cc71257ab2d8c74dd157c67a0558a0d2799d5d571b4c63d44d
MD5 6ef20e1045fa6019a34ef65d5d889bf0
BLAKE2b-256 d56bf6fa6c5790fb602538483aa5a1b86fcbad66244997e5230d88f9412ef24c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9b2af240143dd2765e0fb661fd0361a1b469cab235039ea57663cda087250ea9
MD5 92b783466d06ab3ff8f063521177fbc0
BLAKE2b-256 ce42d0f1f85e50d401eccd12bf85c46ba84f947a84839c8a1c2c5f6e8ab1eb50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b52dcf013b57464b6d1e51b627adfd69a8053e84b7103a7cd49c030f9ca44461
MD5 a542be3a7528106181d62b72fb9e68d1
BLAKE2b-256 1ff8cd84dee7b6ace0740908fd0af170f9fab50c2a41ccbc3806aabcb1050141

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5346b93e62ab51ee2a9d68e8f73c7cf96ffb73568a23e683f931e52450e4148d
MD5 37f6b65f632772ed44c7f2d460c79ab9
BLAKE2b-256 85b89e7175e1fa0ac8e56baa83bf3c214823ce250d0028955dfb23f43d5e61fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f0fa751efb11a541f57db59c1dd821bec09031e01452b2b6217319b3a1f34f3d
MD5 f735ef591642c9eeae4f6bd925e5493b
BLAKE2b-256 1c00d198461b699188a93ead39cb458554d9f0f69879b95078dce416d3209b54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5fa5d9eb82ce98959fc1031c28198b431b4d9396894f385cb63f1e2f3f20ca6b
MD5 4045de5386efd009fc64b421f7d98cec
BLAKE2b-256 dc71164d194993a8d114ee5656c3b7ae9c12ceee7040d076bf7b32fb98a8c5c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 894261472691d6fe76ebb7fcf2e5870a2ac284c7406ddc95823c8598a1390f0d
MD5 be391c78e780b8fbf9742e46bbdd2e06
BLAKE2b-256 f1f359406396083f8b489261e3c011aa8aee9df360a96ac8fa5c2e7e1b8f0466

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b97752ff12cc12f46a9b20327104448042fce5c33a624f88c18f66f9368091c7
MD5 baaee54b2b5fedc678b94d2f8b06ef2e
BLAKE2b-256 092fd4bcc8448cf536b2b54eed48f19682031ad182faa3a3fee54ebe5b156387

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 049ec0360f939cd164ecbfd2873eaa432613d5e77d6b04535e3d1fbae5a9e645
MD5 b93845052cb2fb106cc884b2cc1df9d9
BLAKE2b-256 59e416a8eac9df39b48ae102ec030fa9f726d3570732e46ba0c592aeeb507b93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3eae49032c29d356b94eee45a3f39fdf4b0814b397638c2f718e96cfadf4c4e4
MD5 fda2f6bde209f8ce91ccfd14b1d5edb2
BLAKE2b-256 49fca9576ab4be2dcbd0f73ee8675d16c707cfc12d5ee80ccf4015ba543480c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2ee8a8ac39ce45f3e55663891d4b1d15598c157b4d494a4613e704c8b43112cd
MD5 e49c4b6e23c29fa0bbe75e07fef2db06
BLAKE2b-256 b52a7495a81e39a998e400f3ecdd44a62107254803d1681d9189be5c2e4530cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9f922ffd05034d439dde1c77a20461cf4a1b0831e6caa26151fe7aa8aaebc315
MD5 8b203515d90fb32e1f5949e259b6ab58
BLAKE2b-256 f233918091abcf102e39d15aba2476ad9e7bd35ddb190dcdd43a854000d3da0d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.15-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 450.3 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.15-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b390ef5f62bb508a9d67cb3bba9b8356e23b3996da7062f1a57ce1a79d2b3d34
MD5 38d2c2e4b83eb711cd453b266465db3b
BLAKE2b-256 2bd8fa65d2a349fe938b76d309db1a56a75c4fb8cc7b17a398b698488a939903

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.15-cp312-cp312-win32.whl
  • Upload date:
  • Size: 423.6 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.15-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d849b0901b50f2185874b9a232f38e26b9b3d4810095a7572eacea939132d4e1
MD5 45414436a97175d205248bb4c0fa0ee1
BLAKE2b-256 7116949225a6a2dd6efcbd855fbd90cf476052e648fb011aa538e3b15b89a57a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2acbbfff69019d9014508c4ba0401822e8bae5a5fdc3b6814285b71231b60f3
MD5 e7370ba12a08eb614eede6adc9cbebe1
BLAKE2b-256 52b04ff3abd81aa7d929b27d2e1403722a65fc87b763e3a97b3a2a494bfc63bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 56822ff5ddfd1b745534e658faba944012346184fbfe732e0d6134b744516eea
MD5 ff070f03b59dc5683d43e15446277304
BLAKE2b-256 00dec269cbc4faa01fb10f143b1670633a8ddd5b2e1ffd0548f7aa49cb5c70e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5015082477abeafad7203757ae44299a610e89ee82a1503e3d4184e6bafdd519
MD5 7cdb5e388c03a1e996abfe3f790676fe
BLAKE2b-256 8f28c15bacbdb8b8eb5bf39b10680d129ea7410b859e379b03190f02fa104ffd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a041e7e2612041a6ddf1c6a33b883be6a421247c7afd47e885969ee4cc58bd8d
MD5 1c44fd43d54cc835e6d3fe4a765f85d8
BLAKE2b-256 2ee62593751670fa06f080a846f37f112cbe6f873ba510d070136a6ed46117c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d86a2fbdd14192e2f234a92d3b494dd4457e683ba07e5905a0b3ee25389ac9f
MD5 1bd34c2f8810b011ce38ba156fe265c2
BLAKE2b-256 02906b4cfaaf92ed98d0ec4d173e78b99b4b1a7551250be8937d9d67ecb356b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aaa2234bb60c4dbf82893e934d8ee8dea30446f0647e024074237a56a08c01bd
MD5 c2bd598e2b10a5a62b024b25522a5fe3
BLAKE2b-256 7a4606cdef71dd03acd9da7f51ab3a9107318aee12ad38d273f654e4f981583a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd736ed420f4db2b8148b52b46b88ed038d0354255f9a73196b7bbce3ea97545
MD5 11751d98037e43d0eca99e8d5ffec003
BLAKE2b-256 de5e3bf5acea47a96a28c121b167f5ef659cf71208b19e52a88cdfa5c37f1fcc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6990ef617f14450bc6b34941dba4f12d5613cbf4e33805932f853fbd1cf18bfb
MD5 2db5e06f2e3aee6e639521709542cc67
BLAKE2b-256 fbc149524ed553f9a0bec1a11fac09e790f49ff669bcd14164f9fab608831c4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3ead1c00f8521a5c9070fcb88f02967b1d8a0544e6d85c253f6968b785e1a2ab
MD5 875db7680e6e92b4e37df6a4517044cc
BLAKE2b-256 a32b4968a7b8792437ebc12186db31523f541943e99bda8f30335c482bea6879

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6404dfc8cdde35c69aaa489bb3542fb86ef215fc70277c892be8af540e5e21c0
MD5 202284f5f4febc4b3526e6d75a97c261
BLAKE2b-256 79b160370d70cdf8b269ee1444b390cbd72ce514f0d1cd1a715821c784d272c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e5a495cb1be69dae4b08f35a6c4579c539e9b5706f606632102c0f855bcba7c
MD5 424acb2b0dd79aed976143cc0552d41d
BLAKE2b-256 387db76438e70319796bfff717f325d97ce2e9310f752a267bfdf5192ac6082b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3c5092ce14361a73086b90c6efb3948ffa5be2f5b6fbcf52e8d8c8b8848bb97c
MD5 6b9320ae7b2af2548507582e3877663d
BLAKE2b-256 39948ae30b806835bcd1cba799ba35347dee6961a11bd507db634516210e91d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8466151554b593909d30a0a125d638b4e5f3836e5aecde85b66b80ded1cb5b0d
MD5 d0f64ba4b453cd9f5ea5e81fb9be0529
BLAKE2b-256 3a1dc8c40e611e5094330284b1aea8a4b02ca0858f8458614fa35754cab42b9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f2800614cd560287be05e33a679638e586a2d7401f4ddf99e304d98878c29444
MD5 61e9ee49aaf89530532881059d062aa9
BLAKE2b-256 836d0544e6b08b748682c30b9f65640d006e51f90763b41d7c546693bc22900d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 802d3868f5776e28f7bf69d349c26fc0efadb81676d0afa88ed00d98a26340b7
MD5 bc7788f957ebc972db364e13cf5a58b5
BLAKE2b-256 639777cb2450d9b35f517d6cf506256bf4f5bda3f93a66b4ad64ba7fc917899c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.15-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 453.3 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.15-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 edd533a07da85baa4b423ee8839e3e91681c7bfa19b04260a469ee94b778bf6d
MD5 d1c21f9762904c7242a2393cdcff536a
BLAKE2b-256 1097ad2b18700708452400278039272032170246a1bf8ec5d832772372c71f1a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.15-cp311-cp311-win32.whl
  • Upload date:
  • Size: 428.9 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.15-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4420cf9d179ec8dfe4be10e7d0fe47d6d606485512ea2265b0d8c5113372771b
MD5 4c3e365e6e3ded5a2b4eb3ed1f65aa90
BLAKE2b-256 36ab1006278d1ffd13a698e5dd4bfa01e5878f6bddefc296c8b62649753ff249

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 421da6fd326460517873274875c6c5a18ff225b40da2616083c5a34a7570b685
MD5 b2016ad20f2244de93ba99f3c8751b1e
BLAKE2b-256 85e0444747a9455c5de188c0f4a0173ee701e2e325d4b2550e9af84abb20cdba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7c7dd29c7b5bda137464dc9bfc738d7ceea46ff70309859ffde8c022e9b08ba7
MD5 a7ab0baafa1397e28c07832843c3e8ed
BLAKE2b-256 574fed60a591839a9d85d40694aba5cef86dde9ee51ce6cca0bb30d6eb1581e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ced339d7c9b5030abad5854aa5413a77565e5b6e6248ff927d3e174baf3badf7
MD5 1909c6136f376f3e85e4b7f8dd844ff3
BLAKE2b-256 cabf23a335a6670b5f5dfc6d268328e55a22651b440fca341a64fccf1eada0c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db71ce547012a5420a39c1b744d485cfb823564d01d5d20805977f5ea1345676
MD5 a4aa24c45d27603182d03a69d640c734
BLAKE2b-256 55fd793a23a197cc2f0d29188805cfc93aa613407f07e5f9da5cd1366afd9d7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2abbb216a1d3a2fe86dbd2edce20cdc5e9ad0be6378455b05ec7f77361b3ab50
MD5 87991cc670263037875dd9009186a999
BLAKE2b-256 470ba1451543475bb6b86a5cfc27861e52b14085ae232896a2654ff1231c0992

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c5f40ec615e5264f44b4282ee27628cea221fcad52f27405b80abb346d9f3f8
MD5 6d731677cfc6f261833958aa31cdaf0a
BLAKE2b-256 128a8b75f203ea7e5c21c0920d84dd24a5c0e971fe1e9b9ebbf29ae7e8e39790

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5b7fe4972d48a4da367043b8e023fb70a04d1490aa7d68800e465d1b97e493b
MD5 078026ebc8ab1935c39c7361a396bc00
BLAKE2b-256 c6821ddf0ea4f2f3afe79dffed5e8a246737cff6cbe781887a6a170299e33204

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b6f0af863cf17e6222b1735a756d664159e58855da99cfe965134a3ff63b0b0
MD5 54296246aca7bbc6341e2facb7dc58a0
BLAKE2b-256 28e555a33b991f6433569babb56018b2fb8fb9146424f8b3a0c8ecca80556762

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 74dad41b3458dbb0511e760fb355bb0b6689e0630de8a22b1b62a98777136e16
MD5 245e53d5935343f171126a19f1d29ce8
BLAKE2b-256 374ea22e799c2035f5d6a4ad2cf8e7c1d1bd0923192871dd6e367dafb158b14c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7fbc8a7c410bb3ad5d595bb7118147dfbb6449d862cc1125cf8867cb337e8728
MD5 4afbe049d6c011b1801151af2a4dbb7b
BLAKE2b-256 17e5fb779a05ba6ff44d7bc1e9d24c644e876bfff5abe5454f7b854cace1b9cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc4fbc61bb3548d3b482f9ac7ddd0f18c67e4225aaa4e8552b9f1ac7e6bda9e5
MD5 b90b17c34e76e43ef57c59995559fdea
BLAKE2b-256 f86cf766d0aaafcee0447fad0328da780d344489c042e25cd58fde566bf40aed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6443cca89553b7a5485331bc9bedb2342b08d073fa10b8c7d1c60579c4a7b9bd
MD5 3867c9a4fc92fffa72d9f2928563aa4a
BLAKE2b-256 1b96784c785674117b4cb3877522a177ba1b5e4db9ce0fd519430b5de76eec90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f9d7c55b41ed687b9d7165b17672340187f87a773c98236c987f08c858145a9
MD5 031a2fb1963a6efe4a77817b3fb70d1e
BLAKE2b-256 626c94846f576f1d11df0c2e41d3001000527c0fdf63fce7e69b3927a731325d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 010cc9bbd06db80fe234d9003f67e97a10fe003bfbedb40da7d71c1008eda0fe
MD5 33163656d03f5707d32780d2dae9a09e
BLAKE2b-256 71f90a31fcb1a7d4629ac9d8f01f1cb9242e2f9943f47f5d03215af91c3c1a26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d3ce17ce0220383a0f9ea07175eeaa6aa13ae5a41f30bc61d84df17f0e9b1117
MD5 bf045815ca2241b265e8b70171389828
BLAKE2b-256 20199e86722ec8e835959bd97ce8c1efa78cf361fa4531fca372551abcc9cdd6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.15-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 452.3 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.15-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 83603f881e11f0f710f8e2327817c82e79431ec976448839f3cd05d7afe8f830
MD5 08ec1583b682b809e956d37f9473279e
BLAKE2b-256 ebf9470b5daba04d558c9673ca2034f28d067f3202a40e17804425f0c331c89f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.15-cp310-cp310-win32.whl
  • Upload date:
  • Size: 429.2 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.15-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2c7d81a277fa78b2203ab626ced1487420e8c11a8e373707ab72d189fcdad20a
MD5 1016c12ab6fd1eda0e302102407dfa69
BLAKE2b-256 1b833dacb8d3f8f512c8ca43e3fa8a68b20583bd25636ffa4e56ee841ffd79ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2776c7ec89c54a47029940177e75c8c07c29c66f73464784971d6a81904ce9d1
MD5 98054f1883ed2427d09667c5b7fa86a7
BLAKE2b-256 5739b0314c1ea774df3392751b686104a3938c63ece2b7ce0ba1ed7c0b4a934f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fc49c4de44977aa8601a00edbf157e9a421f227aa7eb477d9e3df48343311065
MD5 d86f9d870c04c6ce06b3f40073a5cdfe
BLAKE2b-256 0898bee429b52233c4a391980a5b3b196b060872a13eadd41c3a34be9b1469ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e153e8adacfe2af562861b72f8bc47f8a5c08e010ac94eebbe33dc21d677cd5b
MD5 7328decb2ffafbb0ef8bcb6822ea2c29
BLAKE2b-256 0f7e1d2d9061a574584bb4ad3dbdba0da90a27fdc795bc227def3a46186a8bc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b761bac1192ef24e16706d761aefcb581438b34b13a2f069a6d343ec8fb693a5
MD5 fc76d3a49a8c5ce6dd966b450ddee094
BLAKE2b-256 4e4627bf57a99168c4e145ffee6b63d0458b9c66e58bb70687c23ad3d2f0bd17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 79b26fe467219add81d5e47b4a4ba0f2394e8b7c7c3198ed36609f9ba161aecb
MD5 f181f9185bb287d685435eb322e8f852
BLAKE2b-256 bf3f1f8911fe1844a07001e26593b5c255a685318943864b27b4e0267e840f95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe086edf38b2222328cdf89af0dde2439ee173b8ad7cb659b4e4c6f385b2be3d
MD5 5f0615939f279b7bf1b765af1b1b3dfd
BLAKE2b-256 b8c394dc7357bc421f4fb978ca72a201a6c604ee90148f1181790c129396ceeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1004e67962efabbaf3f03b11b4c43b834081c9e3f9b32b16a7d97d4708a9abe6
MD5 7bf69324f7e5fc12739e8ee1bb23a2cb
BLAKE2b-256 20432bd482ebe2b126533e8755a49b128ec4e58f1a3af56879a3abdb7b42c54f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d5f1b4ce5bc528a6ee38dbf5f39bbf11dd127048726323b72b8e85769319ffc4
MD5 6efba0fea6eb76754db115b7c9f4951c
BLAKE2b-256 0cad07f863ca3d895a1ad958a54006c6dafb4f9310f8c2fdb5f961b8529029d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c39e87afe48aa3e814cac5f535bc6199180a53e38d3f51c5e2530f5aa4ec58c
MD5 a9641f82202e213391ac1f6dd65d0257
BLAKE2b-256 ddde8c9fde2072a1b72c4fadecf4f7d4be7a85b1d9a4ab333d8245694057b4c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3beb14f053222b391bf9cf92ae82e0171067cc9c8f52453a0f1ec7c37df12a77
MD5 b871dbe2a2c2567c4276d393f5447fce
BLAKE2b-256 b06bb60ce2757e2faed3d70ed45dafee48cee7bfb878785a9423f7e883f0639c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ce13fcfb0bb2f259fb42106cdc63fa5515fb85b7e87177267d89a771a660b79
MD5 814cd7ef25c188e82267f240e343688b
BLAKE2b-256 8ff5d11e088da9176e2ad8220338ae0000ed5429a15f3c9dfd983f39105399cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8faa08fcc2e411f7ab91d1541d9d597d3a90e9004180edb2072238c085eac8c2
MD5 16e5d5fdf7c584441d225c0f634902fa
BLAKE2b-256 23402fa9f514c4cf4cbae8d7911927f81a1901838baf5e09a8b2c299de1acfe5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40b3fee496a47c3b4a39a731954c06f0bd9bd3e8258c059a4beb76ac23f8e421
MD5 de34868b64a6f4c2b7152dfa6910cbe6
BLAKE2b-256 9ca27b8a020549f66ea2a68129db6960a762d2393248f1994499f8ba9728bbed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 098e92835b8119b54c693f2f88a1dec690e20798ca5f5fe5f0520245253ee0af
MD5 614f4787cdca7e9029f781bbb8e8fb98
BLAKE2b-256 8f4263fccfc3a7ed97eb6e1a71722396f409c46b60a0552d8a56d7aad74e0df5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b6fc902bff74d9b1879ad55f5404153e2b33a82e72a95c89cec5eb6cc9e92fbc
MD5 751d6b002e8be34cc92fda593de55846
BLAKE2b-256 47dcef9394bde9080128ad401ac7ede185267ed637df03b51f05d14d1c99ad67

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.15-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 86ceded4e78a992f835209e236617bffae649371c4a50d5e5a3987f237db84b8
MD5 e206e505cc3bec770098e9fb7f6350de
BLAKE2b-256 1425e0cf8793aedc41c6d7f2aad646a27e27bdacafe3b402bb373d7651c94d73

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.15-cp39-cp39-win32.whl
  • Upload date:
  • Size: 430.2 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.15-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b784d6ed757f27574dca1c336f968f4e81130b27595e458e69457e6878251f5d
MD5 dea757e392a267d07f801330190354d8
BLAKE2b-256 fe1da7eb5fa8a6967117c5c0ad5ab4b1dec0d21e178c89aa08bc442a0b836392

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14954a2988feae3987f1eb49c706bff39947605f4b6fa4027c1d75743723eb09
MD5 5808470e61abc232202c5ba4e5f2f447
BLAKE2b-256 881670c4e42ed6a04f78fb58d1a46500a6ce560741d13afde2a5f33840746a5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f0adb4177fa748072546fb650d9bd7398caaf0e15b370ed3317280b13f4083b0
MD5 676b588bef5e2ac1b68f79f9db378353
BLAKE2b-256 e702ee105ae82dc2b981039fd25b0cf6eaa52b493731960f9bc861375a72b463

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 536ad7234747a37e50e7b6794ea868833d5220b49c92806ae2d7e8a9d6b5de02
MD5 d0d273ed9d51053b564d17d21faa3bca
BLAKE2b-256 66f62560dcb01731c1d7df1d34b64de95bc4b3ed02bb78830fd82299c1eb314e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc9a0f6569ff990e0bbd75506c8d8fe7214c8f6579cca32f0546e54372a3bb54
MD5 cdad0f5d1e476149d6fc07b026b556c8
BLAKE2b-256 dd7f10c605dbd01c40e2b27df7ef9004bec75d156f0705141e11047ecdfe264d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 57d16590a351dfc914670bd72530fd78344b885a00b250e992faea565b7fdc05
MD5 7815110326f08f1388a45b7af6e56111
BLAKE2b-256 ae261a44a6e8417e84057beaf8c462529b9e05d4b53b8605784f1eb571f0ff68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3bdd6e17e16e1dbd3db74d7f989e8af29c4d2e025f9828e6ef45fbdee158ec75
MD5 d831adc755f1503d5ef2b9c5c0e9eb78
BLAKE2b-256 5fcdb4777a9e204f4e01091091027e5d1e2fa86decd0fee5067bc168e4fa1e76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a146708808c9b7a988a4af3821379e379e0f0e5e466ca31a73dbdd0325b0263
MD5 9d55b78dea0343457f819c3290bf84ef
BLAKE2b-256 dea4fd04bf807851197077d9cac9381d58f86d91c95c06cbaf9d3a776ac4467a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 74bdd8c864b36c3673741023343565d95bfbd778ffe1eb4d412c135a28a8dc89
MD5 647fa6b9b279810f2798cd63f6fe3bd4
BLAKE2b-256 cbdc3cf483bb0106566dc97ebaa2bb097f5e44d4bc4ab650a6f107151cd7b193

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a23918fedc05806966a2438489dcffccbdf83e921a1170773b6178d04ade142
MD5 69893c71fe57f70b8f178bc49384b96c
BLAKE2b-256 39f7f6530ab5f8c8c409e44a63fcad35e839c87aabecdfe5b8e96d671ed12f64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0c643f4d75adea39e92c0f01b3fb83d57abdec8c9279b3078b68a3a52b3933b6
MD5 0a0e684889e7998b0d49176dfdb9d7ba
BLAKE2b-256 baedfd9b5b22b0f6ca1a85c33bb4868cbcc6ae5eae070a0f4c9c5cad003c89d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46749be6e89cd78d6068cdf7da51dbcfa4321147ab8e4116ee6678d9a056a0cf
MD5 69a03b0149c706765168aa5332f67f29
BLAKE2b-256 38143d7348bf53aa4af54416bc64cbef3a2ac5e8b9bfa97cc45f1cf9a94d9c8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b7011a70b56facde58d6d26da4fec3280cc8e2a78c714c96b7a01a87930a9530
MD5 8e55c46aa8e963ed2896396ad4ce4068
BLAKE2b-256 980329d626ca3bcdcafbd74b45d77ca42645a5c94d396f2ee3446880ad2405fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd44d5936ab3193c617bfd6c9a7d8d1085a8dc8c3f44d5f1dcf554d17d04cf7d
MD5 1c81e547a413dabc33fde94a1e4133e7
BLAKE2b-256 3868b13e1a34584fbf263151b3a72a084e89f2102afe38df1dce5a05a15b83e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e995e1abc4ed2a454c731385bf4082be06f875822adc4c6d9eaadf96e20d406
MD5 06b211926f77c93497203b9faac411f3
BLAKE2b-256 4e948eed385cfb60cf4fdb5b8a165f6148f3bebeb365f08663d83c35a5f273ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.15-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 691d203c2bdf4f4637792efbbcdcd157ae11e55eaeb5e9c360c1206fb03d4d98
MD5 88310a8533ab95d744311f909dfff504
BLAKE2b-256 188dda08099af8db234d1cd43163e6ffc8e9313d0e988cee1901610f2fa5c764

See more details on using hashes here.

Provenance

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