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

Uploaded Source

Built Distributions

aiohttp-3.12.7rc0-cp313-cp313-win_amd64.whl (444.4 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.12.7rc0-cp313-cp313-win32.whl (418.5 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.12.7rc0-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.7rc0-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.7rc0-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.7rc0-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.7rc0-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.7rc0-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.7rc0-cp313-cp313-macosx_11_0_arm64.whl (462.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.12.7rc0-cp313-cp313-macosx_10_13_x86_64.whl (470.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.12.7rc0-cp313-cp313-macosx_10_13_universal2.whl (692.7 kB view details)

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

aiohttp-3.12.7rc0-cp312-cp312-win_amd64.whl (445.6 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.12.7rc0-cp312-cp312-win32.whl (419.5 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.12.7rc0-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.7rc0-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.7rc0-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.7rc0-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.7rc0-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.7rc0-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.7rc0-cp312-cp312-macosx_11_0_arm64.whl (465.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.12.7rc0-cp312-cp312-macosx_10_13_x86_64.whl (472.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.12.7rc0-cp312-cp312-macosx_10_13_universal2.whl (698.3 kB view details)

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

aiohttp-3.12.7rc0-cp311-cp311-win_amd64.whl (449.1 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.12.7rc0-cp311-cp311-win32.whl (424.7 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.12.7rc0-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.7rc0-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.7rc0-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.7rc0-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.7rc0-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.7rc0-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.7rc0-cp311-cp311-macosx_11_0_arm64.whl (467.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.12.7rc0-cp311-cp311-macosx_10_9_x86_64.whl (479.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.12.7rc0-cp311-cp311-macosx_10_9_universal2.whl (707.2 kB view details)

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

aiohttp-3.12.7rc0-cp310-cp310-win_amd64.whl (448.4 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.12.7rc0-cp310-cp310-win32.whl (425.2 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.12.7rc0-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.7rc0-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.7rc0-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.7rc0-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.7rc0-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.7rc0-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.7rc0-cp310-cp310-macosx_11_0_arm64.whl (464.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.12.7rc0-cp310-cp310-macosx_10_9_x86_64.whl (476.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.12.7rc0-cp310-cp310-macosx_10_9_universal2.whl (699.9 kB view details)

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

aiohttp-3.12.7rc0-cp39-cp39-win_amd64.whl (449.4 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.12.7rc0-cp39-cp39-win32.whl (426.1 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiohttp-3.12.7rc0-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.7rc0-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.7rc0-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.7rc0-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.7rc0-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.7rc0-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.7rc0-cp39-cp39-macosx_11_0_arm64.whl (465.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.12.7rc0-cp39-cp39-macosx_10_9_x86_64.whl (477.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.12.7rc0-cp39-cp39-macosx_10_9_universal2.whl (702.8 kB view details)

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

File details

Details for the file aiohttp-3.12.7rc0.tar.gz.

File metadata

  • Download URL: aiohttp-3.12.7rc0.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.7rc0.tar.gz
Algorithm Hash digest
SHA256 9c91a171932b588b2f5fb30f64c44a47741ddfabbfbfbc638381d76060ba7386
MD5 c1d6f4f506dc3d11fe9e626aef6d070d
BLAKE2b-256 cb9b02b705d6392f2fee8df07c4fd93da96200116fb62a1bcf9edaa92e573e98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b7645e0ffff44df6e9fceaf8d2c5cc0c03d03c62ce91e69654fa28cdbe3050c1
MD5 6b80d173276364616840ad52a4bd4897
BLAKE2b-256 bc95628d16e81a7d77250db4914f5070295cd1d6d4e00db132ee8bcce78a35b2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.7rc0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 418.5 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.7rc0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d87728684ce3622251aeb73855970f72eeb80ec19ef93e0b3473a8175d534369
MD5 a128513f45f467d94bcef4483505a1f4
BLAKE2b-256 ffb07e986d7c07f8eb7cbba8501a2bc4f9c1bcb8587a25280651dd9879edd5f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a3ea115e39e36ed90de5a2e4c33f883a8f56477dc1b4f0c0f722ac74d7d7cfa
MD5 bee3dd7abe36b428495ed6e56d27a838
BLAKE2b-256 f6bd22d1459ba8d39735da1c43158f4ec33bcb6fa2d43944a07540c09fcc950c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 083f3e9e543369bde70f4b3c4de6f9f1b55cf8bf6677604e66a276f1e53d23bf
MD5 42f888988da081238a9332b927139bd0
BLAKE2b-256 d0f1c96610d459d04797012703dff7355b711e9d6c732fe5b5717c64a3f3f0ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 95739d7218a5009a4c177d7fef190b1d700b62fcbdb770462565dc0ef053480b
MD5 806ecce6ccf891f9b72822c70c0b3c10
BLAKE2b-256 6c808f2acae65075acc39021dae1db2fc9ff46346f14278084ce39eeb32b96f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce174c3b9deaccaa4339032f95470c23a3aa45c953f243289bf36d96e962a955
MD5 a490c20061048f100995af5ad7a29085
BLAKE2b-256 17b0e623ea0fd0059cc4641e2a811d2fcc2f6173dd9e8a94390e5cb8c1e230f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cd64416594662e37d73c768f3386d69dc16ad009a9c8e90eccfd28f30cd48f01
MD5 a21d8cb36e3b1b921b28a37d4ec2d98c
BLAKE2b-256 b3735d79453eed851a3ba60c341ff57e5fe92410e9d817620dff2db4626a0c6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 98180e6673c8a43eed1d4871f90a3442e509327e8748ff8f99eee94b731939af
MD5 96eb4bcc3a2e76466d9be6949bd2274e
BLAKE2b-256 35d1a2f038eba3123b542e9e3eecbdd22f5ad24999783a88df1c127c64489f6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa8079ffc55a12a7ead64700584c7cfcf0643bc3b057257ac86c4d37ff91fede
MD5 f21a3578af3579d9b16ef9fad95b8ecf
BLAKE2b-256 1faa701cea51b43aee44d0a411dc63270b11ccf927b5a8c1db69fd4ad61589b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aa18ab3e77a2808c4c4046c768ae0abdf1953b791b01b325c941df2a6af927fe
MD5 92012a283fde1b94efe16bf9e12d6abc
BLAKE2b-256 b12c5ee2fc5c908c4b86f34879d02775520cd5bb61ae1c2db9115939104f3904

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 376dd6d561ca3b79e5ec42c225f9ed6de9fdf516ee05483ac7bf25975c7d48c2
MD5 724c73df09b4f4795c1ac62aae89dca6
BLAKE2b-256 bb79d0fde0169cdf19d1bed6e4cbec458476aaab578f29d604bcf3caf9eb3c0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f265685da50e40161d53cd24a31abecadf3bd1a084eb0362f7a4380964a12ec8
MD5 f40fac3ab42f38cb7002d8aecf920687
BLAKE2b-256 a93b49ff2009d5866288977445614ab98c58b6b1306ba5b5f2f2286e838079e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 509246a36292795969cb32d48db58d8806de6b5c12ca031a353b5e9b33e62d0d
MD5 8652b7dc29896a15af3611655d3033d0
BLAKE2b-256 8b9644e897bd8d2e038c71d33d6d63a760e3a08e01c23606f6b662c2c3a5d2bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5fae5f8c908cf087610e3feb65e8e808269c54b00d6958b2392ac63be382cf01
MD5 6615089ef1efea64decf53c834e91977
BLAKE2b-256 9b17906a29c7ff51c57455dda2557100204aff5f5f416eeb4b2055ce3f263901

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7da702c676291aa7e05589dede95799fb6bdb169dec95a5dc79181d48aa974f5
MD5 94b13d365b2fa3b682d459c9de5cc8fe
BLAKE2b-256 616b00689349ad0fecede8c9e4525bf2d25010ee5612e43b0e215256a898b237

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cc23c92b463e7f7bf848c043ff6f222d8c3ce53ca9e076efece68f902dffded7
MD5 85c4ab19768f5a1db76150b220b27765
BLAKE2b-256 82e055f503f782cd54619f2678dcb6d102b0d3b9881fc498710ee0d38f898433

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 c60c41ff0cf89072e1e352bc6abc41de3ee58fece11239ac9744a3ef2863f923
MD5 2e6b902c4bd7d0072c32af6863d044ce
BLAKE2b-256 d1bda19ef5404005c406037fa8c07d79c54bf5cb177be7e99dfce1d477d37d0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ec36b700b2718ce425448c6d1e573e0bd38b37657786626cb95c7506f0db5c3c
MD5 3a63921cd83839a925c31fdace4477ba
BLAKE2b-256 f130d6251936d5ba1154117713f65eb945fa3aae15bdc562d618eed33b07e278

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.7rc0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f07843d93b7eab2ce438563e10c18b6eb5369a7e2dd962187f23478c9c954511
MD5 39938daaf973d504fe137bc93bff2bf2
BLAKE2b-256 db37138c2f9b002974b224f66e8932285dc054b31f8d650f5c925c2c5991a4d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99776c8255e6bae7658418317634c27c7b19154db122adcfb52f2bc8f729d125
MD5 0754d2d8e2f2c0a6bfa66db3164b5e67
BLAKE2b-256 47c2399e40c28a67ca7cc98e79059e227445eacce00c279be7209637d94661f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d184a07b78b1f56a4081ac4114e396fb1e11bf34f99fba0daf3d429e7dd469bd
MD5 ab09bbaa5e5e75042eaa6ab89b04daea
BLAKE2b-256 a439b1022c98b4202d65566ac6b6d5af555d4e02d8c98340b583c9cf74b8c9d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 091d7c0d52445ad5ab9d59f18bcc4fd3bbfcd6aaeb986c7a77404a65dcef803e
MD5 0d84c86ae28cf658d024fefcca0c0444
BLAKE2b-256 5a5be004f3f4c8a770d1c31c000334ef5f151a9d01bbc525c4ab340d83bb2fd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e784922cc005c2d226057a3f89d44b7a91dc8b935b37e3aa25c58699a9b28fbd
MD5 439cc262b629f0724b18b5c7aa9caaaa
BLAKE2b-256 37de8063f9421d548dbfc5421887d97a078e1099afaee24e55cc274f0c288a35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6ddcf89d5ab1ee0cd6d1682fcc4c2a1719eb21f7e662d2ff84f884f2475c3452
MD5 4b6fad6ce660b9c5974d2eeaad97d748
BLAKE2b-256 166992438ff727072fc78bf03d231bbccebd6eadc78f6add17eee952fa737b46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0aa7817c9060dbbe378f156a9a06189a4323f980bc4a159f894447e5f455cf6
MD5 2f175266b923c45d391e2ddc73560560
BLAKE2b-256 cf1005950adfe3d6f1988d24649c3b36fcd976e6721e73cb5803e9cdb93a2f96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac9ddcaffa118cdd0bc8e19f8e6d96c21d543418b5db7f14bc0b261e2173dcdd
MD5 ffe4d98bd4612b49e31f1b3e86e9ac01
BLAKE2b-256 d2573b20428c9507aebe1800e74a3c98890f574cb13a5fab104d6b2525798fb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 63c1c951cc672d19d34ec2ce96760e35636f84e7b7662af7143b896500101cfd
MD5 130299c38647ffe4be3c19f7e1fb2870
BLAKE2b-256 e692bd07d2409493078a598530af1de86e796aae99917762e82486404adbafea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b01e076ae842c65c02b7646d3e5d7cc82f9085e42270fcde137e925ea167223a
MD5 4e89104f35cc70bef3a4ec08a78aa60b
BLAKE2b-256 efdf3a295f3be9abb9d210f44ec83bd106e3a6659d8032d15220af9d78a5387c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 356545c0471ea08532a973c74b886a3c15d409a30640f3e34c5560764f7a4232
MD5 26e47d6da0b5d05f722493a2be4be448
BLAKE2b-256 89988a81a9b252710752594a675055145f3daa4142dcbff80c288b77940ff1ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f171188fe38a8e065bf69c748595f95852c12cf2fcb48dce1fb3814d00f8500
MD5 240f9d77ecd2854475ebead37f168769
BLAKE2b-256 6eca2894f429fdc732b0737ca2d96e73f1e5d91302aa20e33ac00e45d1cc3b32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d62515f277a2078305966c0b0aeeb1df4920141a733184770cbaaf7f15b76b71
MD5 951213fa2d4d1c019aef2a1b221ea12f
BLAKE2b-256 da7248e1fe16cd8cc5be69b548598fc946de3511c8232a2b3a5a999a399a5c8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3850351dbaa7d95f67a09fd37903e4defb15884e4af8225bbba23420946f998
MD5 fbc38ba9be35617a6931f81292df8ff4
BLAKE2b-256 20b7648639646a788e9f54c492c4333000f5c71f3f9163312ce9d456dc501c95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c47235f4d7095b17604ff7be8b2d87adfe600098aeb59345f755f4a46759d64a
MD5 e725ca637e4f796501ed14c1db1e131d
BLAKE2b-256 35614217792e7dc3e1f7f4dfc5b81d284e05d53b2f7829cc025b54b8401ba0fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 a31292dd2a2bf6f0fd98304d2eba8184e0e9297c937b05ed5ecf5bf5417bf0d0
MD5 f774130b53d122fa856e633292f75c95
BLAKE2b-256 27f04d40457d0793b4fb66af18da0ff418a4e4c999e663d67b54eda7bb79ebba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0abe53cfca7a22984e229f4620f1eaa8859814122158a423732a05f160d3156c
MD5 ae270217c2fe80446ae7793e97f8fb79
BLAKE2b-256 46505c12a7bcfc0c163856010689fec0113ed5edb7e99135e1d384692418d9c0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.7rc0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 424.7 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.7rc0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f7254f6e2e661d27f298a2d8a9b0c8f33a272dbd0cd97785dd709705a262fc20
MD5 db01cecfd6cab0ddd44ee55a173ac601
BLAKE2b-256 3539b12210fd8c831fd6386aabfaac252e1238430c24b3259dd7fa9b584c3b13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95dfe98af32e752835bdead0a84ecd8dbfa59a28af50bdeed25d93985feecd97
MD5 f0226987f1e151945c0c982a3f3154e2
BLAKE2b-256 dd45d242f97bcc2c5c5f97be02310071f4f853e11eb5754b1f697b5408f0dc95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7ed50d54a6c67be45b0225a2e6b63156c72f22d68575294ad190f3d9603b5f5e
MD5 770f36a5da886b0f98d0c7c256a62284
BLAKE2b-256 3553d7f9d49aae2679cee68fdd4b04c7fdfc354ccf82efed38e5c11146767fde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 768e87c6e8a930a0c9be1b4733ffc4a7bc9e7892359d08d5ca00fc41fc59e479
MD5 fb6ae10e78cb0fcc28f30a1420d2e4b9
BLAKE2b-256 ed748e6dc019c5fab58d443a4565743bc068750e199e16df08cd386b580ca5a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 efae9f7c08fc5465313202257c2505c2d7920e349d87c92a76a80b4358794af4
MD5 785a51a5452107bddb21f944b4d2b05a
BLAKE2b-256 947054093f59a75ba57df7682f350d1e43dcd881ee8450fda5747babf81e7e9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 871e797de69718c7753bb38130ddc4001aad990b513ff3d9819d8c11bbdeafb3
MD5 7366e9b5e781899178e51b8ef4b94f6e
BLAKE2b-256 fa78025b2e786b4ecb89b939afe0d3a7cb7b9283abecf388a5fd9053e5bc95f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b39a815ed8e4d2661b1e35995c98ecc05b199d1738b22dba2109a6188f9d31d5
MD5 f2ffa3e4e94f254d51c85018f7d08db6
BLAKE2b-256 1ac691628ab56452d72dfb54b02daf41ccb51b9fd1d7ce6838479d75f92c467a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0fdecd213fe54f8d070f31a656aa991b4659837259757fa4c393b16046e45f6d
MD5 6b573b191a36742c2ef4adf6b064fc5d
BLAKE2b-256 654596ee95153b81cf9a42fca85373ff6b19cd850aecc01ef4449eccc731b4aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 08f82a508f7d25fe796358aa87720aebdb485d831876a85f4228a85f4ab89010
MD5 b77a752de20fee3c905fc248bc22f9be
BLAKE2b-256 fd35c61d1103e603f2cbb98e4408196126831cb40d1832e6c8fb42c533c3d849

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 523c2b47cf61c47fa427f8107e9bc72dfb2bd6cefb7ea94bd73ce0c8925b2a4f
MD5 2ae9843c26c45e99e779614c4dabdd36
BLAKE2b-256 768020326ea27d954047761c07ffca183be65db7a357a51d27f06a77b2d32a48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 24dd385459414a35facfd839995377b20f136d60f40bddc92caa975bab4dc53c
MD5 11f1438a12259120988f8f8ea534f519
BLAKE2b-256 bcb128fef99957083b1f5f3d21edf50a6f01eff729f996d40175ebb0ea9ce720

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38eee75ddc94fa636cb666fa8649c7e0ed70a75eac35ab56b8308c7aee01fb63
MD5 1dad69d906a77dbebbce0e1148ff319e
BLAKE2b-256 4e6e323131a4f55637fa0f2d94ccddcbed696e77a357b6e322009a6e1bbcafed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 911eee1806396acf6bb27884351884e8361799eb6acb67c9624d3c8f7f437255
MD5 9f1e92f6286e1c9c2b04699bf5e2912e
BLAKE2b-256 884eb84379696797ce391ee2728af4aeb8934083345e66c6e98fedd9d6eab2b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfaba7b69b87ef1df193d3b73d6046358ca797f7ee141c252b8bbb3144883f67
MD5 79374c806420cd7fea4475137199dd27
BLAKE2b-256 421e8ef837c0b7b4ed1b0312186a667680400dce0e208326ed90f5e39d673e8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fd0c9524c94cf561ce50c96667c0cfedc35403af9fe846b6bac4b32b531ea6c2
MD5 d97e99624e59d578e2476487cbab9172
BLAKE2b-256 0e595f5a1ce29c83edbcf18fad6c2cfa0dca7fd3eeb9b6f38e034e2f18b3693d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d2d286515ba7450e7daeb7ff685c4462bc2c45dafa0532a374d0e48dd9216421
MD5 0d431ecc14b167b76f2ac2b3be54cbe3
BLAKE2b-256 e4c75679be7a23df1b2e13061d8e707f836e295614d8863f19ad2d9f34a4970e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2b0e1e782f3e0a561bed170a173a12bbce168550dc49eb2ffd5a02b61b69535a
MD5 0421a7713a58f3fcd47a6f152af80260
BLAKE2b-256 76250eb2047f8d57c83b9810f62be49fccc34121bd9efdd863926db913ade299

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.7rc0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 425.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.7rc0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a4c3e01886a0e80ad1bf9b850fe94e40f3097e0e8d68e2754258a713d0a4bb31
MD5 995785bf8c401b6cb30f7c928879d278
BLAKE2b-256 50d170fb85b479fd9fa9a1856e3ddd061136b44def89797dc440913dd6bf0217

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82a630a932efd8fb0f4fd4bcb1583e78904dc36446670a73f8e8e2063ab9b6c7
MD5 f6f949c1961c054d3a268ae3b3ec4c24
BLAKE2b-256 9d5ef4ee3dbaa4192cca2ca20705eabf473b6113868ec72dda777696a7c0ceb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 159e4bb4cfc8c621ce75c4c8b392b18d167a43ef9a3f2ebe78032293629a0a4f
MD5 da283313caa2b1b6fc55eef9bf13380b
BLAKE2b-256 1f659068636cfbd0b10945840bcea7c0bff12f0b305f7d3fb4fd18ed2cf75669

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b942c1378687d89cff0f4c8f71b5b322b737b20b71f5f1613c3af386edcdf8f9
MD5 ab3686dee8d1955ef0f6b5587fe3e821
BLAKE2b-256 6e03a5bd693395dd4bc432061d4046be6657b37469e424520cb73c9492b956c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 91134ee0791cd8ac6683891bd1d03c45f06c39a1a04b001e6b76bdc996427bca
MD5 fc11376fbb2bb7f06eb1c818e5bfb36a
BLAKE2b-256 78cc5a8f78ec63f08191f0dc423fd1dfbd50e61929577565d3fabc865d191ea6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 46ea8284d4e25042d1731d33d40549d2c442a98bdf0e4d0c7d43da077b375d81
MD5 185876f8bb62dd4117d18dbb377772b2
BLAKE2b-256 723d14914c334ddade4d429655f944b11ee9301938dc952acd214bd1980d5412

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 760f4de885438015d9ad56585e9bff04329ba88839183935c4a98c2410fde438
MD5 ef330e0876e69f0894331637bed47758
BLAKE2b-256 8f73f9973cb1c1f5c52cbce4e575c8e668f4008363343f52884478f4a2eea6bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a4e5fbfa2ff52feaa5d15462bc38cb5c60077c49ad3043e8b2cd7ecc6bcc17e
MD5 07debad9e0177c134427c9a4897da3de
BLAKE2b-256 8a98e1a0408a95bbe00a3ab4b826ec9ecee0d87c9537b00b4c8ba5fc1693e493

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d1ad39fc0950a355e12fc6d913c534095753dd0fa248ef9521753103089f4a2d
MD5 b452eb09234e8eb2dc7a3d1ff93b63f5
BLAKE2b-256 d6afef04a2ed9f7e3d7e168e7db355efc847b02d27bdfac3963a1c63050472e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 68b6f197aa059ec92d6d89f13811347effbc51fa5adfe1bad8792b9f2cd2d74c
MD5 64baade66cee2ab3b9602bc5fa0b3f24
BLAKE2b-256 205fe6f2a2642bedd7b1692a514eba4e5c19b415f1d89a508876a71ad0fec0b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a81d6b61ba9d814b5baef4c53125c5ac4f8e83b562a5ef621cf3357ebe028521
MD5 1b8a7c23f7452f534eb3d6f94d47a294
BLAKE2b-256 1b3e0d23d8d9f393ae645a9513c802cc379272c426469ca888e3ef30d4e6ef07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bbd4142d404b9fdad20ef6a3dbc03032003916b1afd9e4fa9d8fcb4ed83eac3b
MD5 1e919e8cbc8d32487c3277ed9dcc5ce8
BLAKE2b-256 04512f666ffac738a450409ef749b6c66215f288b47594b70d085e8a9361785c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ffb7acf37c74713ec042aa1a0479c997d3b5ba6e4fd4d502ad1b09480d59c39d
MD5 1826a0cf79635a30e99753d5dd2f4c32
BLAKE2b-256 e16c93e712f863ee22190a58bda22ea7d2725f1eb1e10d47b00701d65f822d95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd06f32b1288cf4d3d7add3681640646d72c9509ae3d378679232313729d53f2
MD5 651fe68533fcf9b7b5ec19f11c7a4fd8
BLAKE2b-256 8a7af61870d9bfbcc0047b04df2c2577107fac632696efd15323898117d77096

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 70f0d308c7602eb9bd65a03cc55ab9806c639d4677cfa3d56f57228ef5ef9f91
MD5 1e9a669c8bd92208e58f0d8534feb98d
BLAKE2b-256 0b3577099c7417ea46c84e957c8f107476b14ab9cfe7673b662a1a538588154c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 055d488eef24c05554511d7deeed59c3acac374e11f624afeb63f7a35cd27206
MD5 05131fe618e8b19f0a7ce035e148e01b
BLAKE2b-256 b30045e5ce2075bf0b2c6647dc25a9d349f123f1d9eb2cc213a1b69001504be4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.7rc0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 449.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.7rc0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 99e388265fcccd403b7df1bbeeb2df19e3297dda309cd2abf13b76d582eabe47
MD5 709bb733bcb6ef457995a056a9277843
BLAKE2b-256 6cb47d49f72bd296e6fe62488e7d2e51eeecd6fde3c740ee78fb9d913d89b3f6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.7rc0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5acc57a11fc90c66199beb4afc1ee51a5322b0a997b58ff9790df54686b09488
MD5 49849a056b71c88b90d25af55a9e5e4f
BLAKE2b-256 ab38c1315ae31d71f6ad15cb773cf933cb43847cc1b7634bf4fb0bb5ac8ebd76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 739f92e1e1101987dee43cf3cbcd1bf36f7b2c7df55e889cd33f003978efbc4a
MD5 92c30f9c4fe535a1a5341cf2fe4e16be
BLAKE2b-256 28e341509871d6a6d1d0c86ab810a5ab7912c67c931c86f95022943a8821f752

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b8b926cacf06aeab5be7d010c0945175ea5ed4034477c4cab37d9db90653be57
MD5 678c3ec3d02c470e3a3922f99b33ca44
BLAKE2b-256 2b8129c7e8803ce2a9fcc4cb8fe8aa256946e5e78005fb3d132db696b743623c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 16c3ccbe1f36c778281524521a38ded92cd9d0913276a6f26ab606cfaeb7cee9
MD5 5fc4be08c227ccd519f65ad0ff06a79b
BLAKE2b-256 c9a1d7d8efb966dc64aeaf31286c0659c57f96e1c9ac64ff251aba08971a9a73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 611c69ffe4298d6287a9d9a1324a271720c97cbbc5fdff39616cbdf8a88ba074
MD5 4efd1d97f7a616a8ac8ae84eac114c20
BLAKE2b-256 68ab0113250383963d36b3d6a3ab27e89d563978b0d3915b1bd21e0dabbe4038

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 01cb9afe3f622eff3a7014cc0160b2b7e915d91f0f1013ac1df3932343dfbc1e
MD5 ea641b944b74f19b5aa02cefb6714e4a
BLAKE2b-256 9d05f7833ecc4f6bab0dabb7c2c57f5d639594df6be490abdd2ddddb6e69c2a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41db0e1b20fc8570ba4b3a55c2eaecb95ffb7ce03bf24ec85727559b1329ba90
MD5 d65a088af8e84e24fd11ffc4243d8713
BLAKE2b-256 d0a22a01496f350c3fb3e060bb8b459ea3a0920aac92a2e92faa1f55494dd6b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a28e373006c4752616c20ab6b7a9f8755dda38fa7c4706d92bdd6a51f48478cd
MD5 3446898fbbca5d802e16ec178a462f69
BLAKE2b-256 aace67639318dfc60bc8e6c4b773f4fd9ae0f402a142ca3e7e0f5afe4d14eded

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30f8283330d4401d2b6e330c01e7f67a7892f8d607ebab7739e9361d6481725d
MD5 44939797279b168c6a0a123d2b6aebf4
BLAKE2b-256 0a3ab66348b6be66ea95fd304250721affb3c9fbe6c9d7eab158e998bf98d999

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3207789644370e73432621b0c6eb7812bbc4b9274d6848b456e4c466affd9b25
MD5 e7f349d805204bcd429abcb1027b4488
BLAKE2b-256 b056be2079c8ebb9ff19867a062b3d476311019d480d630e815e350c12042cfa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 280b36b4e6124b4fd311740df0d25013bdae42a5710e519b5b57cbfe066e1c11
MD5 86c3d8967bbb555575475a03b0d0eacd
BLAKE2b-256 b99362ac01f4fc4c0ee700e19c384a2f38728858004aa7455bdc28ab6bb80fcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 526181f2ecba4dd6397251b9735c93e15b83cdb34030cbaae390e9edd36d1e49
MD5 17abe7bce59b715a8ecd0dbea5dded47
BLAKE2b-256 623be59c7a3fa1df8769fddf6512a2f5bbeae43bb56e38ec503b4c2f877f8e2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 08c4363aa7ef72f457ea5e6ee5a32dac4c31c720250893e7574d4fc9f0e7220b
MD5 3c80ba1502604985316678f2f1129900
BLAKE2b-256 83ac4f491aa8feb1673da28d9e8c2efc29a8927d421b030a728322c49aa28074

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7acdcd1751ce7d3d81221a39b8fe2e8e86b9eaaa4ae18c861b00cde56d42d2d
MD5 0d5e5bb9e90ee00695cbc036e8a6675c
BLAKE2b-256 16518e44dbb9b61f254ea1c8c8d684bad89705b8bb65d8f0c87f9442151a1ce1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a8efeb8ca6ba5eee8b27909e8ef675ca03a26be8f1a65203b6db28f9665b89e7
MD5 085e8e1bd78f5e2ff1a79cfed8268b91
BLAKE2b-256 5b6d3d8f5ed6603353d5799398b74859128d432cfc29854753b013d528f7e398

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7rc0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 67bc0c7a09e2bb18df3d174f9dcd749192ddd011c08cef8ac74d882f620cbfee
MD5 74c4e1ebb077425e8c5cccac4199743e
BLAKE2b-256 edb590b58fb35fd20da24c38846282a4051f43223e58da24e6cc038016b8f0b5

See more details on using hashes here.

Provenance

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