Skip to main content

Async http client/server framework (asyncio)

Reason this release was yanked:

regression handling requests with None body https://github.com/aio-libs/aiohttp/pull/11035

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

Uploaded Source

Built Distributions

aiohttp-3.12.1-cp313-cp313-win_amd64.whl (438.9 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.12.1-cp313-cp313-macosx_10_13_universal2.whl (687.2 kB view details)

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

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.12.1-cp312-cp312-macosx_10_13_x86_64.whl (467.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

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

aiohttp-3.12.1-cp311-cp311-win_amd64.whl (443.6 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.12.1-cp311-cp311-win32.whl (419.2 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.12.1-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.1-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.1-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.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (462.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.12.1-cp311-cp311-macosx_10_9_universal2.whl (701.7 kB view details)

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

aiohttp-3.12.1-cp310-cp310-win_amd64.whl (442.9 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.12.1-cp310-cp310-win32.whl (419.7 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.12.1-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.1-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.1-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.1-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.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (458.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.12.1-cp310-cp310-macosx_10_9_universal2.whl (694.4 kB view details)

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

aiohttp-3.12.1-cp39-cp39-win_amd64.whl (443.8 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.12.1-cp39-cp39-macosx_10_9_universal2.whl (697.3 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.1.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.1.tar.gz
Algorithm Hash digest
SHA256 85b8256d911ae4462cdd39a2ad2fd95ec6d7cc97af8f159d29fa69ad0844f6bb
MD5 9bd547da00a9f14e96f4a76a8f897fd5
BLAKE2b-256 d1c8f681bcfdbc8cc2d8d9310710020fa895be2862b5b291ff278dc1ef66e8dc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 438.9 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bb3c685984dddf8f9f1e8bf8106b04fb053dcc9837da6e31d378b525af44aa77
MD5 eb05bf4cbfa84ae4111a5e64bfa92a21
BLAKE2b-256 7d45921595e842aa9cf9d75497a441f02dce95aa932becc9bf3ea4e859608ebf

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 680ea9c7c5e14b87d73493662a8eed1242a0d7ac85e5b7cd599adb898d2d96b3
MD5 e24af805b566ff8eb953bae800849ecf
BLAKE2b-256 9d7d320571e5da0c864351263a9b7d63e7c63362aac3a635bf40edd1654c05df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb4069941b3ae25e9a80b7649889b2ff0e1df606eb25087b2e8391694ba116a5
MD5 49279752484d298dad1e9be27ed0dc42
BLAKE2b-256 883483166c348f70ce4a56b20b54964fa402ee084ba36c320112f60bb105e18e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 da410ce4628082fa9b4fea9057e7d29a9d2d72e8e18459a9577762522bdada22
MD5 812cf3610c604c0b51f3af12a804b26a
BLAKE2b-256 7b584a2e71e96a794268c17da9284535bb4d70334342d89f4328c92a0cd50811

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9afe8288ece956316afaa0d4a3287fde7e9c337b6ce27f6a51a275a3373f30d7
MD5 c1fc911a1d8675978c7d3bc28f8968a6
BLAKE2b-256 4fe514ce6df370fdf56072c02d5bae38e8f9e1b33fd92fed338c44598b1f1dbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0db588298cae65da9ea25e3c1f75e86b7bcb34a824d16c5dd2de726110874c63
MD5 a923d1e52fe10a9ed6cdc7a5fba2c69d
BLAKE2b-256 3057543f7ef8b550ba2f8e258f7a06c24572eb2e0618671ac03cf87b40993794

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ee0911819f4550d5f1aa06bf6a1c9ff0d85c15f98835a49b35589686eb72df36
MD5 7e098fe82361862b416ad49640d85105
BLAKE2b-256 e399d3e21b90f553c8cef3982face62bc65892ce8d76955720468201ca9a7522

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6221d4268d9f3498168eae36328211c32430a091702bbbd86e3b922aa417517
MD5 70c7c42c9af656a88bc61a8a46039ff8
BLAKE2b-256 f9267c311e872e5f6db22f8c51fd2df1f7ce49b0a15a29b12e06b788e25c4374

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8cc7b11155ae578cd352225e3bf4a3fb796f82773c0f5d8d128aa80ffb81c578
MD5 40854ce732ffbebeaa77b886a17e7101
BLAKE2b-256 a3ed6c2019b4ed80da1365810a40a8b931b724d113f9032fb8d643162476f614

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d18f4bdff93981cc2c9ac8ad978c6a6f087aed23baea2b0fbc715d636c33c257
MD5 56fa7af7970da2c538e035a3c6cb227a
BLAKE2b-256 7cffaf844c6864a671c84fc28d3f1fc635e3f80b010c309cb195248ca44ace45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a6ceb71e701bf196b5affc6149388096df34bce462011e8e8c574aec3158edf2
MD5 0d231ec019f3708bcfe39f604cdf1aa0
BLAKE2b-256 5724c0ac5a263e12ea600cd5e0e8fe4eaba25ef7999e2f3408afcba3273e8ad5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 caed695a120d33c6b346679089012d4bed2b630ba9c6d7c9d174f3c56b5cc696
MD5 d024ee5cc6dc91fa9de2b2c234bc7495
BLAKE2b-256 30441a9c4eb0379a8ac3c4ac48418cb2033e4544341151bed77924e08848547d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d50e257062155ef9f62db31517352c9ba29446edf76a788672307c8322dba7db
MD5 7aa7fd0429fde856d227a66057b7ca61
BLAKE2b-256 660734e4fcda5ac2f1d67dca56481f0e6887e9320c5ad4b1175b9ec7bcfd70d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4edd43ccebf3b9c9e805c84e7e74746efa9ffeb75932d5c94e02d42d7d4ea60e
MD5 1ff7a9021ffc1c0fd2d731523d043212
BLAKE2b-256 e7bc8c67b8df254d049d923f20a7d1baaaa756ae32d6c538616b15ce807645ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f1e22ab661bd88d84c1ae18eb1498c3beb328f55fd546546d96ea787ee3e16e
MD5 7723022fca94a848a837094c470775a2
BLAKE2b-256 85e4eefde9ef4b6f8b8c8ed360b18734b7129da45894bfdcb4e911bfe4ab8f1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 121d2369051bec60de5344c8f2ae61814a980044a729846850825494f70c28f5
MD5 72a8fb215841c77d770b0bbb9eb988fa
BLAKE2b-256 03ffb880f1bf5708dcb5e186da3a329bae302cbc5c872233598a0845934d7cbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e0b0a4fd7afcd488818d07ff917789257910bb473a5a167ecb1274e503a35a4f
MD5 d336f6c1323d5d19c9a36ee2b96da8ae
BLAKE2b-256 5cee1d85a49188a8b4eefe79412b59367c0b329f545c6d07365501d605de2ebc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 21998081d931d5b0ef1288f01e8e204ca56f2cfb8055a69a01271ecb4a7b5258
MD5 9899a9184ba8b657c1e4c0adfda376f6
BLAKE2b-256 d5d933b08e29692694b108d1105083d83d7079ba74d2f244ce2a2a341f67480a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c8acbe37e1e3393418c07b226e3c4e90e3e2d5204944c5b2011de0325c76b148
MD5 30f60e35dcbaa516e0a7d93a1e7e9853
BLAKE2b-256 cf5bd819bd9ea4ce0ad2f563d574f2911f35782738587a6b57274a63a2a0943b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00b17b19802e1900c6bd42c21f8c3a1668a069882ee182686b210f422f3d75b2
MD5 401fa0d97c036fac5c9fbefa63f4a1fa
BLAKE2b-256 8678bc3df750b7e778940ef88c3e475ed5f91d8c124d343ee02e5db5a8c7c60c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 82552cf0d12e47e2976c59e1fba12a712f8ec321e759b9c48ce61a28b4449f26
MD5 707ec3d22451d0fd3002a666db345fcb
BLAKE2b-256 05295999e3965569ead4332607d1cddc16c4932d53ce65fc6f1449814e5afa38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 284b3b9458b53c28a8ea273be8b63b320d9a7b55b3856c707421f05ea47f4930
MD5 736acaa0bcb517dcc766e9c8e2dab16d
BLAKE2b-256 1e826b8ac40edc842a004fc17c013cf67a1d8a1f152dbeb8acd0fd12447d5017

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5fa5e3029a251b88e69033fedeb3fb6df05817df60d2725fdf6b4665f9076efe
MD5 0c36c3fe6c95c919da474539bd9c12cc
BLAKE2b-256 a899d1101a4fd0abe8b75c597164a5445cceb870ee6f13d50e680fa7ad257593

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 db35689970e62cc2e39f8e39fc45d6943ad623a14f601ba5f0bdfee87a8ba638
MD5 162099eacb9891fb6544ea1973ddf010
BLAKE2b-256 3545ddaa7c96aecdd5298e70e3eb38cd4cfdf215b338466085de7d28d88b5944

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 324bae9dcad6245f8aa2dbbea2daeae92cff757dab12ec438761462149cf74c0
MD5 32ff2ee8a33bd2141f5d6e6313b56ae3
BLAKE2b-256 53dc37fd5e64dd07b00bda99b14a27394f68e04703a0c8bdc5a1877c31ffad97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c18006fce18be8bc431f8178f24d3d8f0a1ea5c9b9d9cbdc9361158c81579da
MD5 7e6f05bdaaf52cce543538c1ee366c8f
BLAKE2b-256 e42c8617ae6c8ac2761bda8e5492158061c3d4c28dc2dfc2a5dd4e5ae2b55f2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e583f988286f3d1b36b030c91008172561b88fa02c81bccda93442d6ff2f9c18
MD5 8488fc87e8300275854983d3f9eb007b
BLAKE2b-256 ee4215a7621a305439bfe207af8729d8662584d1a97e7a09cd0b337ae953b389

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 03fcc6a08b322f69cd3c4e2f0358a5323ba075bff3af3f02640feaef1c9ca9c5
MD5 07e50b7f39d7dc4630447b701fa29509
BLAKE2b-256 92491a9b4de1f39dcda4eb9427520e83bdc3fa112d38b45cecbb1feab7e6fef5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 222fb161b3890b613184ef8d61c088d4ff3036c3687fcefb3ce54a1b2b41cf25
MD5 ab768b53ed2c811013608f80141526c8
BLAKE2b-256 d0c1e3d1ed65479ae1c6cc5f244cb334da5a97345a3638905084e9b592ca3047

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b7f3ce2f86255b7245f6e2e15b1dc6f6473237bbdd5c0d2eee3c7ca66b556dc
MD5 27850ffd48f691c778928310b845c9c0
BLAKE2b-256 71952296b934f0ae0b1750310ee4f0189807f38fb26d6d2c98d5612936795e63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9f988e07a4d3a5c0ee73ba2a7a2dea8de71ea0e6ebcf19d87d5daefc8ff63566
MD5 ee5b3b96c63e0993994e32a671cb6989
BLAKE2b-256 1c0abc40f9f9c2d24662d9390c6fa7835782bdae990818436adc7d60e06649d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6482fabe5947c109adb6646d1ebd1bbe79cf634d80c11b19b7a56b7d1d628487
MD5 6dd4d8b317066320e119c8e1883535b9
BLAKE2b-256 2772f5a31e4cff9f281e84b6683c6552669e6150c6d6fadac4c470b29f3cd86d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 974d533968a574f6ce27b53b3662b4c1d895237fd151c2a1fff22b94214f0995
MD5 0822429de00b9a69d643c5e2bb9561ec
BLAKE2b-256 b200aec552257a3c920fa3c8950e220f88d878b70d00d7306eb3b6589461100f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 8475e731b69063da96a92519bd78710c949c8ea26434507e957006e52c027d27
MD5 d9a00982c57d44e326cdd427b879c747
BLAKE2b-256 6016eee24f237c30281bf3720453d45be22c89bd9be75de6471789550403b156

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 443.6 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 47625cf2204c72669095a1c69750258d317392f0570090a923d13992f818278f
MD5 af2e775682e7256d54f83d43d3dc6660
BLAKE2b-256 321b6b74be2e5ac40a734a4ce1a93a48b25c89800d1e2d15a370ec2732952bee

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 419.2 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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c7566de7c7e808ecd61032b825cf718fb4df4a462ec62104933b0ec3584d830b
MD5 9f2cdbc503bae174e0b91dab7d110a4e
BLAKE2b-256 92dfce2758e71af9141b4a18eb04e6e24b0399fdc9343922f14b313c674918d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e0df096cbbb8074aa25decfd2491de7866d37a8006956bd7ee09c2b87494ae6
MD5 b2c66e4bbc6252d6c992eca5ae2e9358
BLAKE2b-256 f9126abe3a201e6ee13d67a3bc3c2cf234be926c26350558c8548075bbc04799

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3ebcf1e5d6e92f806db8deef3bd71fe8463d865e147bcd46631897c442729347
MD5 c9868795663218f8143c1265dfe510e1
BLAKE2b-256 be69e19686e53e2f9adef72b3f3e957cd331941674ada4fabac3f14501d81982

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 71e732b283f18d48e6db360212e3ffc1b73e25c94b22994c33254f25f05fdce0
MD5 50e506796826dd86d1e178d02e0db679
BLAKE2b-256 f606bc583d5ad07a44c191f087d60a49d9f5d801c5c18b74b943927d67930d0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 41afe8060390596da8f2f44b33045894dbe5486705e7b50e7509495868c6c03e
MD5 631cd8887848151235f30793630ab187
BLAKE2b-256 7badf1c99b90c0e1be2963bfdd69f4abffb8143836188695f67bb42f3b4a8e7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0d548a34da0d4f669216340a88f5c9a13c64c737f80525b8cb140b9b3313c241
MD5 b6939c622e22a3e83ae0fcfa0d7b6802
BLAKE2b-256 147fdf6a4fd5b4d018cd32665129e4690a33d460557adf93d27721e3d357f347

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f216048faf808d2c05e8a1c09038071cd171854282cad01bf31949745a7ff60c
MD5 4dca63848b0afa5fb568b32110dc08e0
BLAKE2b-256 c431bc89ce98d649694bf3ef978074a3c85d37ab61b466406bff6a380c4d6e11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b57c06fa26ced534026b9d6bcb7b03dac604beb480a92ce6a1dfd9889a54091
MD5 44eff99f75aae37d09688d633c0a3dc0
BLAKE2b-256 9d86a71a7085bf61f264f29a8e50b9e9d10185a5d66110686821a93060a1ddb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 53a5f06eaf41a1661a0430e6c1d7d9a8220c5a427d39753a31b41ce2f52b220a
MD5 f9a3854aaee718ef8b2349cddc448be4
BLAKE2b-256 54b38c3f823950e06bc8cc6e62cc9766474f1c0ee243c5f92eb865f51764bc4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1170c08d71bbb158858ea99fb342773b0aa8ae20dcb305e8dc4a588214b5e705
MD5 27112f3583fe14b449fa0d33e4fc002c
BLAKE2b-256 d1b4f4493eeb486c3add3c715333bafe0c6fcee946ceb8d869b10bd7c7fa457a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2e6027bb218c23becb2f24a99257436f7a91ab81fa7d304a81765f0407eadad8
MD5 c85c8f856e3f468e3ecfef7b892469e4
BLAKE2b-256 c71a7a56b64a02c61610e65b6f00726197b270bd45b4bbb32130ad1c119856c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4b92e41c2abc0344522175c104f6bb8c9c6521d4ee576a30f72a652a2e852f7
MD5 92fa363de29de206a6554646010ba1f6
BLAKE2b-256 2fd77e68376f2ab0201de1ebe79b84f48f9ab3d6334acce99113e0ef26ff6770

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bef0df41a119b30cd095097536a99aea0cc1c6cb70a0f560b31c8fe804b4ae8c
MD5 6c8ed1d9966fd80e5a8b291f6d76d9f8
BLAKE2b-256 ab20fbda272bfd06b8201b626a027a9b59869e021080a308589de28b5303d510

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bbaf6b1cd5edd783f5eb025beb85381e4930793e530e6977a609cfdee8a825f3
MD5 abde906434bcff11a105d508a44e6a2b
BLAKE2b-256 44ff693d62c2c923418ea26b96d153df7de78af14ad5f6925facf4fca5a20cc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f1e6caabc3bb35821b26e473ff8f2dd99852da3dde19e2d262948cbeddf8e4d9
MD5 0b0c91a7e61c63f61860bef733ba2c11
BLAKE2b-256 9c39fb2b1f4821fe8271dc6ab7d0e5aff8b881a275fbbb9694278d3ef7bb80d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1cae5d0f701b3a104264faf1af70dee5199371289e3586cf0d0465e895b1bcab
MD5 ec5d5a8e8b7b07568b816629ff020261
BLAKE2b-256 0a017bf4c4a484befb964256b5cc681c467bc9ab2c752e174bdd352237e96f11

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 442.9 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 591573e71a29b9491d3ae07bd84eda865d049921cb660efc54cbfd4438bf6789
MD5 37f2463a55fcdd666a11bd4d5262993e
BLAKE2b-256 afde9b3507f3834ef9c74c74d24164e1a17f0d4a249e892017286d6116ee0ac2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 419.7 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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 826c441e28c9374442f7db8116ffeecb562d869a8c9514ea4d4879c926fd5574
MD5 a592370fe8cf7293553463d42893e2b2
BLAKE2b-256 5f52036f1ab3b6890c12b9a9cc74c9956ee5d0c6010e812dfb7feda261b34a80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e6860645c7840b3f526c04df2b71864785966a6608458e24ee7cb407193cfac
MD5 e06caeedacd9fc957217e85a12ed7977
BLAKE2b-256 d3cd5a7f0826b4697d5cb62fb839ea8386298ef867642d3ff33e1fba1ce90c80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 65d2ad0ed8467f043a7201be254453cf8327b267dbe3e5131c83ee06f17bea36
MD5 851367c771d99dd6e5648ceb0724893f
BLAKE2b-256 a1042ee5d3088978ed23c6b4c5a08c6e6163c736282ff9234fe06c8e0f085923

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7448d467e653f595a5f470e5048bb72a62bd807a0d90573a6125da04bdd7f670
MD5 c50495b309ac42d60f3d900112000446
BLAKE2b-256 8b7154110293d13d5873bc9089678715c8b60d655255ac13e4cfaf32d4a9358a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5e7ee2f937c7c1741f53e04da48ed33c23ac5b1a6237ca55b17ca17fd64a8d35
MD5 cf6cedd73a1a418da613551537006b9c
BLAKE2b-256 af47fda33ecc1c1b3c02febae89094a1d770aca1738fc85b3d81f7b592765d35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 45f4593647919f34e8c7b74ebfd9d51e2b694bcd69741c6e84dffa45bb54edec
MD5 3d81ff76309ad76141184cd4601c65e2
BLAKE2b-256 46f46ea562fa85d64a5eb620552088f075e55c1265ae837821053df7bc42082a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7a2c1dfb61bcef99781f7a4172023c92fac9c86bd122a68eab0380c47e538ef
MD5 54f50d83b13d460127dd352f02635946
BLAKE2b-256 32e36d255c5c0bfede6e66f41c3111a76763cd61c751ad9a63b9147c7e08d587

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd289e804f33961b51ef199b4ddb94e63feec3eaff1252006b9ca1fb94ed0d72
MD5 7c62f318b8020138c47022bab125135f
BLAKE2b-256 1bb4e737dbf40bf232306445a4f430336dadbf317bc18172dbc2115ed8c3ee34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 873f303ba6f80f397897c4fcc47eb650b298f3d28bc28ab51476a4ce0c76fd79
MD5 cdd9b88d2cf85a1df2b528c6bf890db3
BLAKE2b-256 73bf4fa600844f961576f4244f0ae08c1afa6e21d947376e0bb1b62339925c95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b4f49eec21982b41adcb54aba33fc296e52fdf9b085ea72390d514a8ddd34c29
MD5 c3b2e03c6ea64c12d1479ec5e07e230c
BLAKE2b-256 f08913cbcc02e1461c285c1d0de12a5726ab29075ac754d6f63ee09a2412652f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6fadd6f1bb6a2dc949cc227870149ee6f93002b09d85203518b9f38395372483
MD5 712b9290edfd6910e8e690b269f50354
BLAKE2b-256 fa84a792a4c8bc19e304a982b6e6a13f8402a4ad807d49fb9f0d36d28552f1fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77ba53c4ad25658546f7c00acfce03c4049c996c7b6a7e9d4ac4e1e977a3b2b4
MD5 9f6ecd25c887ae81cf41d92957d78d28
BLAKE2b-256 6e7b8ddf13d05f9e3cb6e8b0cbb60e1bdecc37bb2f71dc1b416dcde75feb2e2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 09157235d9117d10c58c610b868bf882a6b4fe60165ebd344704b216b7db0e19
MD5 f2438712fcf83937df2b6b43445656d8
BLAKE2b-256 e94f570d9f9a5b68523acc1acabfebb2a67ed313cf21267b6e54cc9ccaf602b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1309ad5835cc3d3a04a9fbea43dd42451500081e6893bcfc3116e418b9774c13
MD5 b0dd1ac10851e51504ceac00de958352
BLAKE2b-256 cfb3d5b92b20f62f4978c8cec5e3b86fdf9b81cb229df8125ccde086eaf2bc17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0faaa6df1c133bfeee5eb169395ab8e06d7f2cef985d37148b853a86ef116146
MD5 07bae8451ae4862fbaec7f045a390512
BLAKE2b-256 e73b28fc355b227dd98739a9a8ccedfce9c7fc1c8bd8210b422f70090263b3f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5118ab9c62e12f6ca654ffec453ae74a06e2b8f505afef5a26b056f7c5e2e96b
MD5 3e24784d697aaab4e2e5d3ecf9b5b85b
BLAKE2b-256 156eac76c7133ad5449c83f48b72169ad6abe84cef5c52f032870f0359ea295c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 443.8 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f709fd82fbaa62850b2d6c95a217b0b0bbe03341135c6fe89b47f83e21bd19b7
MD5 f4be9c23aca5d5a2ed99e07135bfe5d9
BLAKE2b-256 b4549d9068d8d11c83aea026f2a0b399e71810064b1ef6babfe0574da01f7d97

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 739169f48b8629cc6836e2fa72a68f865f095bca448b05e13b407dbe5771ea86
MD5 f33ffedcb14ff1cc7f7e349f10bb479e
BLAKE2b-256 a1a44b8f6a406a682da25af672458412c08b2c5830c5bcc8f2a1d9d5515054ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8fca7fff8a9c1ca9fa78547f22888a27210bafdffe2295bc85e7bf3eb2e20156
MD5 e5d51081040fafb3af4b2eb22bbc0517
BLAKE2b-256 bb00ec5c26ba9577bc4306dd34c3c7eade90f3d04fe0eb6cdb1581c171ac1411

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2c80287d7b4ed74ff24d1d368611ccbffb188db5db1c41ca21fdb96231511631
MD5 77c0c51964cc9eecba6a0414daa6e6ee
BLAKE2b-256 9cdb398f1cf2f340280039cacda74e7011b0d951d9e5a06df69dbc8db2ac338d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 21a901e97d2bd572d5a775138492408abb0e3feb82981511cb5448fbfd88b227
MD5 b88c176407d9ab7a1a5b5d2d3d077b6f
BLAKE2b-256 d0c9bb2c6de57b58dd37beb356e33a0dfaa00d1a9ae9f00ba885325dbf99b204

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c0f4690a6bb42f579da83aea4581987efd947471d0d3698b006682354de5d5c1
MD5 a0e1f312dd8110f0c287035b8c7ad755
BLAKE2b-256 68ef183fe7b81872a61a4e6dc9aa29c4babea9283b3a56d8d42e4bf6c9f0976c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f94d2cceac08591faa8df444eccbd7acbf8ed2eb101f6221b12f3cde400faa20
MD5 8a9df7c6e1309437f43dca9ecfb0785f
BLAKE2b-256 1350a2cc27794bb94f39d8f7ad42c74088327afe232a2b827d4fe1b56bc7e34a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d0265da18481d7dfed0941e4648c3c3f250ba489ff0f8d0273901162c948603
MD5 fd2651d2af06f1c59a0afe6537249053
BLAKE2b-256 54c8e874da741dcaf94586432de55992bf4aedb0f2d06c1f090f4e82707d1e65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bfd00036069344424645b271f2d0c4071c2a0d1fce95166fe468f6e9a054d034
MD5 50edf60ed81845911d9c498aba57e186
BLAKE2b-256 6e1f3bb0671feb286c34a6e30264e82a173f7e3eaf8e27ff74197c691a9bbf50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d5e96ac1837fa4fb833fd58f2b58280410f07789fdc17d52abe0f7f44a507062
MD5 5af4f336be64c0759efe6326b537bf4a
BLAKE2b-256 25f46c3092c648d5bd6c5da9501337cf41d2a87adbd6a3798b6d1e6d1017e1de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a470d7397c10579dea83c78c590027395a50bd48cf6516cd31f27fd4e088f35
MD5 7384218856190cad2062948b239cc09a
BLAKE2b-256 8315292a8edf29e50f146575ca882b776bb02dfddc9092905c5f38cd8c469d9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c4f5845bcb8af531df4b1132a40dc58d103b748eb5bb07da3dd083298ba6eb38
MD5 5d48acb0d70ac6d5da55940001bae718
BLAKE2b-256 a77d6c35255dac1726cc21ab8a05cc9d8e0b9e2f9ab1cd1be7f5d6c3bbb818b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed79ce0023a234f19ebe699d943bde2bade071fcc0156d098b0c7c8672cbf9b2
MD5 ca79f86c680837de9820a40b00116e79
BLAKE2b-256 8c199c125253959b7c992785c93ec9e79511e987cfe6be265955be346a84c295

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 713ef65badc1a93c0b81a5949b82fd349d582843108ddeab67a3c39e4f9d5058
MD5 95aa5248e3957691b190bd2cf022d952
BLAKE2b-256 f326e03bd15a2ea7e49deb48d297fc4ad7f464313b61fb920002b933d1b2cf1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f33ca33b4090bb88e14859391253cd923a850c03696cb19bef2010b432432f96
MD5 59410dc3a857fa2e7a632064fc064b0b
BLAKE2b-256 7953554c7f00b7ff22cbe705dd239f6d63776d7620138dbb6a4e2f6dc83a87b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 67a5cf5fb45eaa452c152b83748e49b52efb404d1d5b3aaa0644a839bc42305d
MD5 24ded1c746e1bc5ffab8163dcce3fc89
BLAKE2b-256 b3bacc395cd88ced13a745c669bfc5f7bb83210c96616bb5d06d54c05b4b4c8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8dda625dcddadbc0c51516b9990a2cdd793be7ce21be1b6e9d60f8070b0f43b3
MD5 30b944ab6e31e6326a7e0003193f5d2d
BLAKE2b-256 78c0b40eae46c2626c3c72855a5f14a493d1d93db37c27c5d428cb815f3c3e9b

See more details on using hashes here.

Provenance

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