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

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

Uploaded Source

Built Distributions

aiohttp-3.10.11rc0-cp313-cp313-win_amd64.whl (377.9 kB view details)

Uploaded CPython 3.13 Windows x86-64

aiohttp-3.10.11rc0-cp313-cp313-win32.whl (358.5 kB view details)

Uploaded CPython 3.13 Windows x86

aiohttp-3.10.11rc0-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

aiohttp-3.10.11rc0-cp313-cp313-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

aiohttp-3.10.11rc0-cp313-cp313-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

aiohttp-3.10.11rc0-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

aiohttp-3.10.11rc0-cp313-cp313-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

aiohttp-3.10.11rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

aiohttp-3.10.11rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

aiohttp-3.10.11rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

aiohttp-3.10.11rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

aiohttp-3.10.11rc0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.10.11rc0-cp313-cp313-macosx_11_0_arm64.whl (388.7 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

aiohttp-3.10.11rc0-cp313-cp313-macosx_10_13_x86_64.whl (393.1 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

aiohttp-3.10.11rc0-cp313-cp313-macosx_10_13_universal2.whl (577.2 kB view details)

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

aiohttp-3.10.11rc0-cp312-cp312-win_amd64.whl (380.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.10.11rc0-cp312-cp312-win32.whl (360.4 kB view details)

Uploaded CPython 3.12 Windows x86

aiohttp-3.10.11rc0-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

aiohttp-3.10.11rc0-cp312-cp312-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

aiohttp-3.10.11rc0-cp312-cp312-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

aiohttp-3.10.11rc0-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

aiohttp-3.10.11rc0-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

aiohttp-3.10.11rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

aiohttp-3.10.11rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

aiohttp-3.10.11rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

aiohttp-3.10.11rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

aiohttp-3.10.11rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.10.11rc0-cp312-cp312-macosx_11_0_arm64.whl (392.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.10.11rc0-cp312-cp312-macosx_10_9_x86_64.whl (396.9 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

aiohttp-3.10.11rc0-cp312-cp312-macosx_10_9_universal2.whl (584.7 kB view details)

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

aiohttp-3.10.11rc0-cp311-cp311-win_amd64.whl (382.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.10.11rc0-cp311-cp311-win32.whl (363.3 kB view details)

Uploaded CPython 3.11 Windows x86

aiohttp-3.10.11rc0-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

aiohttp-3.10.11rc0-cp311-cp311-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

aiohttp-3.10.11rc0-cp311-cp311-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

aiohttp-3.10.11rc0-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

aiohttp-3.10.11rc0-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

aiohttp-3.10.11rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

aiohttp-3.10.11rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

aiohttp-3.10.11rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

aiohttp-3.10.11rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

aiohttp-3.10.11rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.10.11rc0-cp311-cp311-macosx_11_0_arm64.whl (391.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.10.11rc0-cp311-cp311-macosx_10_9_x86_64.whl (400.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.10.11rc0-cp311-cp311-macosx_10_9_universal2.whl (587.6 kB view details)

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

aiohttp-3.10.11rc0-cp310-cp310-win_amd64.whl (382.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.10.11rc0-cp310-cp310-win32.whl (363.7 kB view details)

Uploaded CPython 3.10 Windows x86

aiohttp-3.10.11rc0-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

aiohttp-3.10.11rc0-cp310-cp310-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

aiohttp-3.10.11rc0-cp310-cp310-musllinux_1_2_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

aiohttp-3.10.11rc0-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

aiohttp-3.10.11rc0-cp310-cp310-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

aiohttp-3.10.11rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

aiohttp-3.10.11rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

aiohttp-3.10.11rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

aiohttp-3.10.11rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

aiohttp-3.10.11rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.10.11rc0-cp310-cp310-macosx_11_0_arm64.whl (392.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.10.11rc0-cp310-cp310-macosx_10_9_x86_64.whl (400.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.10.11rc0-cp310-cp310-macosx_10_9_universal2.whl (588.1 kB view details)

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

aiohttp-3.10.11rc0-cp39-cp39-win_amd64.whl (382.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.10.11rc0-cp39-cp39-win32.whl (364.3 kB view details)

Uploaded CPython 3.9 Windows x86

aiohttp-3.10.11rc0-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

aiohttp-3.10.11rc0-cp39-cp39-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

aiohttp-3.10.11rc0-cp39-cp39-musllinux_1_2_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

aiohttp-3.10.11rc0-cp39-cp39-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

aiohttp-3.10.11rc0-cp39-cp39-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.10.11rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

aiohttp-3.10.11rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

aiohttp-3.10.11rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

aiohttp-3.10.11rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

aiohttp-3.10.11rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.10.11rc0-cp39-cp39-macosx_11_0_arm64.whl (392.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.10.11rc0-cp39-cp39-macosx_10_9_x86_64.whl (401.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.10.11rc0-cp39-cp39-macosx_10_9_universal2.whl (589.7 kB view details)

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

aiohttp-3.10.11rc0-cp38-cp38-win_amd64.whl (384.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

aiohttp-3.10.11rc0-cp38-cp38-win32.whl (365.2 kB view details)

Uploaded CPython 3.8 Windows x86

aiohttp-3.10.11rc0-cp38-cp38-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

aiohttp-3.10.11rc0-cp38-cp38-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

aiohttp-3.10.11rc0-cp38-cp38-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

aiohttp-3.10.11rc0-cp38-cp38-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

aiohttp-3.10.11rc0-cp38-cp38-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

aiohttp-3.10.11rc0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

aiohttp-3.10.11rc0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

aiohttp-3.10.11rc0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

aiohttp-3.10.11rc0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

aiohttp-3.10.11rc0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.10.11rc0-cp38-cp38-macosx_11_0_arm64.whl (393.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

aiohttp-3.10.11rc0-cp38-cp38-macosx_10_9_x86_64.whl (402.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

aiohttp-3.10.11rc0-cp38-cp38-macosx_10_9_universal2.whl (592.0 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.10.11rc0.tar.gz
  • Upload date:
  • Size: 7.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.10.11rc0.tar.gz
Algorithm Hash digest
SHA256 099f29724ce4bca2ac843079087b1576086be25e4962a9a55506d13c52d74ed4
MD5 25cdb38504629a9d34344430b55bdf2d
BLAKE2b-256 cffe5a375c39f47680f1428e644cd718a0a73c9d3db1f28fa1bb60e719835611

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0.tar.gz:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7cc3f23ed4c125c80e597035df8701b0614bb593de84df52651702e27ab5cbbd
MD5 6056bf789f4ac732a97d2469d80985ba
BLAKE2b-256 029a4b2936264ecf70d30ad821fcabe0946001d2a4750520d3b93090af481369

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp313-cp313-win_amd64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e75e5df09c9cfadef36c64795edf2d4596f340934da367f7447505a8245ac07d
MD5 9ff5cc3a0282624fc9d26296605a3ee2
BLAKE2b-256 ec1df21252303552acb4d11b2f54ff73c662ad95ff494ee22566c905e439cb6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp313-cp313-win32.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e81dd474c7feb44a276d55a9270f3c00c52e7ff02a7458eb92de97c82f756a3
MD5 fcb6e8b19d75b0528bf44de2697dc161
BLAKE2b-256 a303a784dd3cd79ff559a215db8687923dd5778caee2e530a95a87f8be5b3e05

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp313-cp313-musllinux_1_2_x86_64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 cc6e1f46159e59624365c15c245007daf393d9764eb4040da432defa1ab2da86
MD5 87ae21b9d00cab4cbe4fcb389d0ae270
BLAKE2b-256 d66f399ba163a38681955a63779dcf7312debb040427b6d9bf93f2c3b80a0e8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp313-cp313-musllinux_1_2_s390x.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1ef82cfbb2581056eee6f9e987246212681110e6f52af9dffeaab199e17b17f8
MD5 0c512c04b3617010f48b09fa0141591b
BLAKE2b-256 97dbe99d8a96bd9dcea93c28956ab5a2b11b4e27cdd2eac7be70f0bb0db0e9a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp313-cp313-musllinux_1_2_ppc64le.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 df0ab7b98dc2a9c20ef9860f56e34a9543618b594be10d6c7aa27c3cc451013e
MD5 96d076ea1f5d235622c40bc65fe81550
BLAKE2b-256 9c682dce81bea38e64f95d77f5ea688c835f35544f34ff3af04208537258adba

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp313-cp313-musllinux_1_2_i686.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f9c8a6a8a9b61aa346a0487a19a7796d6beeaa0bd18edcad6d2877b1b708f4b
MD5 670ed308750cdadbdefcc11009706cbf
BLAKE2b-256 173cd07bd5aa9060f09a6f749b83948de5bca55f49fa8021f1e2514b93b1974b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp313-cp313-musllinux_1_2_aarch64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d0919be5c53ba510cfbecdb0c8f6393c33cfe4a3d1f9830019843d050fd3d8a
MD5 1b4dd5f8d9158c2b6c646b4b83e95181
BLAKE2b-256 b992d8880793d9e380b104b8f847b1b5d9ff8860ed3b646900a0e700dbf0d281

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6045a7534aaf14d35e2941522f46a74402372cf0971eb69495b9c2aba5494ec
MD5 88f4f9b741ab523e84fbd7d2949303a8
BLAKE2b-256 17bcc86f5b52a2055c2fa597692535c0404312087fcafe7e4ecc384deb82d488

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d61595edc1b9a439f50bb51914c72cdbd429a152cb9398dac7b24670c187a27b
MD5 b34f4f463a0eb1ded0783250e483ff85
BLAKE2b-256 7ee89f4eac1654234ed80542453e6ae31a5ce3d3ecb470d5ba34164c4cb81709

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7f0dfcb9f9fa2f706939da665fabd38667f248f6b33d0c14c7374ef8bb70608
MD5 44051409b2013ade43ee7094c1d2868f
BLAKE2b-256 aa057d47a3103330283cd3a2ec8b0696cd02fcf20651c6c2a66db3fb89150378

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cee1d944b6dc4c061eed7f123535d6d2dd385954840ac3b4e695c898fcd54e59
MD5 fec611e5661e5eef8459af7751adab5b
BLAKE2b-256 b72c4b945528ea38ad530f30556e3b7b17ce5da26011b22066cf604ad860207c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ade314f78e09054fc0b9b9c9058e1cf0286688c6daa75d73429424989dc8189b
MD5 94f84c888a7506aea2b83f624030e78d
BLAKE2b-256 9477e6d665bcb783925f2beb690fa8f87fee6f3a9b3d30478547524aab312a4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp313-cp313-macosx_11_0_arm64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bffbcd35deb3d2f115e9ed425630699d54272f88d4dab4f8439d48590b5565df
MD5 dd3c73e0499ecf69660d9f3d37c0344f
BLAKE2b-256 1365289e5518098518146702be048fe609cd14fe48488b795cbcaf9de2a74b6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp313-cp313-macosx_10_13_x86_64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 6766cc3372494bbe4bd2ca03f5bbe149d700725832a08821dfd98c47cdab9f0b
MD5 1fccc5e234e05febc66dbe5b263eee3a
BLAKE2b-256 2846dc17c45bf7d83e87ab94b5ad013c2da485011d428f9a1446c1535a3c6d4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp313-cp313-macosx_10_13_universal2.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c3c81ae1b34280e385897f722d1862297e65b600b45eb5ae46e5aea1331aef90
MD5 88f7dcce4145ab9c289ca8ce87576c17
BLAKE2b-256 ab8906b2525ab8b74d6e14b5ee438aa09b36086feae7224517cd892ce99efa4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp312-cp312-win_amd64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 40948cdeff3b6f4071d762e22e774d33bbdc14ef4d87f1dd2d149872b3df949b
MD5 4cbe7666b3224f8c208d5c57298c70eb
BLAKE2b-256 3d394579cce0203cae0726491f56863bb22a17af95fe53cccf36bc384f89f191

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp312-cp312-win32.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 223a8cd35577c98662ce6ced5778f5d01c210f6fc2ab41f90646e5c0afb54837
MD5 92f982a62990a7705cad97ef84cd8a29
BLAKE2b-256 c949b7f98a2bcbb3eeead9a0dc90f1d101e672452f0fe98c89d89becbfd6a5f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp312-cp312-musllinux_1_2_x86_64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7f52a8cb3c1f286162fa249f6c185fbb5572e0d2913d557cb1481c9514485bfa
MD5 b0be542422e356b60b86c0d5c14417e7
BLAKE2b-256 7674f6f95eb7e1a053037ccf2c08b39d286d4a1fbcdaaa6e56108117bf65a743

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp312-cp312-musllinux_1_2_s390x.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5cb3244ca5d50066349624e06ea3b986691dbfff949e454bb345a5080d665917
MD5 35891f07540dc5a279b15314912141ac
BLAKE2b-256 18f75f54e6b25cce6ec5065d48a6408b7a47100d4ede619a71d87396a9e0e159

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp312-cp312-musllinux_1_2_ppc64le.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 648d80e00f868f32a47cf3825dd6f8defab19702b0140c4f4ec0154db02f9e94
MD5 582474bf2d6171af6470c759238cd1e0
BLAKE2b-256 f0d37a6290ae8f05ae3bed8a3e2a1f153405a23170ec2c376dcf5127b435d03d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp312-cp312-musllinux_1_2_i686.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0261858cbdf37ddf9ef0eedc71e5e955877a328b191d68fcdf464c0733007e3
MD5 e9bc77e4d0dd1d08c6c7a4c773bfbcf4
BLAKE2b-256 ef2464b07a36295230d3983b4213bfbc4675b2f45bd5769d8bfdee9347aeb4ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp312-cp312-musllinux_1_2_aarch64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b5bb270b9dbfe67c22dc8ab49790e74edec6fc804f7fb42393e5cc640a7eabf
MD5 38aca59ba147ff3343b69b11bf3e9ab1
BLAKE2b-256 09f3ad14d75e27f03bde8d178f10d59af11a21dd3855334f7fa3fbfc9a559c6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d0d79c772e2a7f12d406eb8d5d1d64d156ff442906529d49dbfb5fc9b43b2f29
MD5 f46f74474dbba546856212d4179403b5
BLAKE2b-256 e288a9e08c9a60e5265369a43a707b351d1f437d88bfbdbdc13f133cbb61c22c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b8639726884ab6067c92088655152d9d8edbc1c50ec7df1b5daac615607d330
MD5 45b81d4110da2bb48225250a986510d8
BLAKE2b-256 c4ff1220bc275cc29d42bc045fa4bb1e3ecef04dee51ed2b9a55912076f7b4e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e7af66758370b4a9d0a700d0bc90895b8d863c24d3e7cfb100b13f8f2918252
MD5 a8f85504b179b14bba3f55b275e86500
BLAKE2b-256 05e61c7fcfa371671f45da9620049c12a7678c387ce902f116da78c0b4eccc7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bef44b62b322f64686e547bcc18be6f73a7ac7dd5222de7d441a9cee0d1d646d
MD5 9911315ab548a6fef84871fb7c4e983b
BLAKE2b-256 7cc88c9fcc6c858077dbd3e866b231f723558336a5751035022448ab45a3168a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0cdabb818b230fd8a1dfb0f915e0d7571d82fcb84fbb23672d5bc00055c6817
MD5 5ea6d730f6219470fd9e569addca3cac
BLAKE2b-256 edefa0115f372664b88eeaa8c07a407435b72f331eb1a68facbd766927b26826

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp312-cp312-macosx_11_0_arm64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 98f9550303c917be8b9517718304b3b5f1a7cad405ab4bc6979d036c86c8e018
MD5 3fd50c35eb65414df58976c3905e8149
BLAKE2b-256 a6d0741ea74cdb39b24cbafb0e93f211557484ded4a7c7d74bf02ea9971a3d1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp312-cp312-macosx_10_9_x86_64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c3924e0dbbc1695c875b735f8af2947778095f929b636abc07deb9d22ace9c3c
MD5 e174dd18b9836df32c91193cc6ba5dda
BLAKE2b-256 5fdc7060cf891e62e7571c6ece59f7827a25534dd4493e3fb79c84a2389a13cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp312-cp312-macosx_10_9_universal2.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c442145cd5c321a91bc7953d2ecc234315d1f45ce919d13d918b327b2de57f4d
MD5 2ac272939e8ff3825f42c748220a6353
BLAKE2b-256 1d60bf311967117bb10f3d5fce23f1134f5f351c71f2f78dda2c7a9188f2fa5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp311-cp311-win_amd64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d5b31134056e4a49e3f346ae23e948ea6bfbfb4394abf754c41440e0025193f3
MD5 732e377d4a4c3db5810926315ce2c8b5
BLAKE2b-256 714b006163083b2d984bdf29bafbc25a19299aa73c9e55f23ced4a85de1be98b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp311-cp311-win32.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aeb65e711ec41c8c3add8513e154875877cb4ba1825b12826ddc739f3112b066
MD5 2d7dedb4cbe8332df96592fb185ba5aa
BLAKE2b-256 30b888bd5ee8dfcaa7bdb02308c87dd78c81a99f7856a470efab42cec23f2055

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp311-cp311-musllinux_1_2_x86_64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a3f5739e3ff611faa069b6d08e0e9d7c1705c53f2a2d957a7b54486876a611bf
MD5 b0da6ecf1fdcc3767c3c1273c0e430d2
BLAKE2b-256 b73c3e9ea788dba3aa39cd127f6a56d3b79c1cb39ac60342980a8dd06b5988b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp311-cp311-musllinux_1_2_s390x.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ef8403bb1c4b8ed648aa5d5f750bd08dd88e4553a17984a208061127b4365b55
MD5 35853aa12fce784136f2d1f4328ddbe6
BLAKE2b-256 428d9ed4bc608c3824c68d86e5f71ee5bcbb92129129d3e1f177e1b17f7f98a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp311-cp311-musllinux_1_2_ppc64le.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f26e31e5d73f990fdddadcb12fa6adcce899226163b542948051bb65ebc3ab69
MD5 f663df8d8d2753c2708de35c35e90328
BLAKE2b-256 6d103074d7bb5253ff10e6dc52ad1e0bb1a323adf4db1b3a19f606446977668e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp311-cp311-musllinux_1_2_i686.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73f91ac36d46d89d5fffc951d0fa739edfaf2d81390ee8a4d5ffce0a7a3c027d
MD5 e96e3ec16136fda2f4e31cd0e17133dc
BLAKE2b-256 b49600794b4e2af86c2698bd4a1c478736a340aed7f624ecd0ee89d7369e19c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp311-cp311-musllinux_1_2_aarch64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d84a3d86cf372978a61ae602184c8c21bd0f38dfeac52ccd944aebca8165be5e
MD5 c420c50451a019463ce883c1c697a0c9
BLAKE2b-256 83cdac398bd838b92f104d957bdc958291946015e6bcc45e5bd68eb1149b8825

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 791cb2a9445330a0d7df372d909d297f8885684cfd629e1dccd0a4d66754705a
MD5 931bdf02de5de7bb50c4ced943dc507e
BLAKE2b-256 40c13dd62e2adcd3c7a67e579591af863388ad5a4367579daf6511e76d4a24cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 745f3f617d3d9a189ea393d87e4305307e14c2a6f177126ed519aeb32823fa0c
MD5 f8883f42cd0a8fe7bb3f30779f1949ea
BLAKE2b-256 a502654176d65e0034db7e406c42f99883d2abae634153cc99abd9060744db97

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8054f4f97354fbd0344ed5350d70b4cb4ea19ca600bb4b76daf89cbab6d123df
MD5 9243d71d95a27dc4e131b3c1dc6020db
BLAKE2b-256 ff415f10d21db8e7c01b154ac824fed87c3b91464b1472851c91330c442ad501

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0f5807452f419d3d6d16c8ffa06bc4535bc6d2ad6504edf438f926826f54355d
MD5 7c9a8864dee324955240c7de810e28c6
BLAKE2b-256 207ace0eb3e9bf30d84e2640ed1c143fbf6de67c77d58ed941ac7b137a62324a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca48ef64f783fb9cac678c6a1a9a84335df713a4a4c1dbf9a3ef9b32bd297c46
MD5 f82481f8a608e0caac3abc852a4aaf06
BLAKE2b-256 242f9e37f60e6c8c6de4a2e77ebc0b0717d80aa21b80c1c5ea0ceb0fd3d8dc71

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp311-cp311-macosx_11_0_arm64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 823d95406685f09fe66a881891619bc9700c00a20d0de23e758d93616445294b
MD5 276d8e83432428829c7232b1e3f1297d
BLAKE2b-256 4695ab602eaea58257f3325e1351d217e8ea1367bc05e3e3ba8293a4e1ce6f02

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp311-cp311-macosx_10_9_x86_64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 336ca6be0c4626761a031a7dad0f01297d1386f525cdf925f993c111779d4e89
MD5 8ee206ad0c17c8b6f43f3501556deb11
BLAKE2b-256 9fbaa1f30a0face6de150292b4f5c1919c01ffac2caff5c16ebaca0ebd24954f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp311-cp311-macosx_10_9_universal2.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9c40af505d45a9bb1563c077b2381a05c307e77928215c1686b367936d04a715
MD5 c2aba6bf14faaa955c09b06dedc72664
BLAKE2b-256 7bbceb002abbe9c6356a070179b4a7da22bfc115976a889090a8496b6e82595e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp310-cp310-win_amd64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 48c2e4207a68fb5dcd89b38d7ed678459071054a192d61d923c7c75487f3a9b0
MD5 894b39f5294dbc9ab0ffcc5b4b0f6712
BLAKE2b-256 b23d83853d0fc73ab56ca5482e3b8f98a6d96849b13a75bb7ef49974462468ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp310-cp310-win32.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f711463ca852559388fd02f5e5a72509b43f53c3af8d211421197a056376c346
MD5 aef676601e393f32f0bb483c27f7a7f1
BLAKE2b-256 f78b4d59a2d59d68f23c52cf93091d402094911a7821669d48b6c7c6d8e59274

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp310-cp310-musllinux_1_2_x86_64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d9597e3eb4b00200688280f951cf5a209f80ce3011277f217b7ca4bd57e52838
MD5 8250077c574ba88f5539d09081de0eb4
BLAKE2b-256 ba17a9691deddf142f60bb342e954b66bfde9adf05ab1e2077485d26b79ce71f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp310-cp310-musllinux_1_2_s390x.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7ecbd4c8040d67ea4c6a098ef0c200276cf8925b393e51ec3e5df06e234e2333
MD5 be163a7011cabdd6b4efa6be681f2e39
BLAKE2b-256 5c3799f8238e97c608a217ce5240b1ab50899f66879e79a8cd981abd3e9c69ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp310-cp310-musllinux_1_2_ppc64le.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 85d90a3fb5a37fcc843027a7974daeea429fa07696dfcb07b1ee76d4ae080e2a
MD5 567d5aa973f194a679a008e20ef7efe2
BLAKE2b-256 08e115bc498133d5a51897ca85149b29ca4c5542e5bad3895c20eda1f511654b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp310-cp310-musllinux_1_2_i686.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 00b0f9dc79b961b3eda1e079e3f9875611d468dad7460de9527cf54ee80e7915
MD5 b4a25562fa82b7b14abafbc4a4539535
BLAKE2b-256 0020d8feb27399fd3b8bc6e1321a50e1844f3a9e75100b51cf4d72155197ab69

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp310-cp310-musllinux_1_2_aarch64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f14556924e823561f12362a97dcf6f1c9c4c0550ea23b51612225c2bfd549cc
MD5 ca312722c8a188242cd3f26215380966
BLAKE2b-256 452d0a64fd09d71422d7d6c502e099268f20510ee7edd6c553028a7a413edd10

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ac2e795e21bdd8749e6702ab249795dd66069d665e914543823a5f8e9c2c563e
MD5 65b8168ae56aa19e25ad053df179e9f0
BLAKE2b-256 4649b6f3aae4656901cf59b4439be8f353b3e41bd2e2cb1e36928859234c3588

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 300121dba3d89665f38102e109426e4df5cdac6ae7af8b80cfcdf430335b78b4
MD5 5f0753a92cb94c081fd7f3d24aec9801
BLAKE2b-256 976bb99bf6c67a6d67e4ff8b345824a7a49b5cf4686c05a1ebdfc6c12acf3008

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0b5c19cf88a491ddd806fc230645f4a88e0470469947b2fcddaefad0e4f222a
MD5 786496d95c864bc9793672c983b63506
BLAKE2b-256 a4fd1b0ed6045ae6cc2df4197223625d6c065dc5294e2a61a651270bfe9caaab

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d56cfd018b905ba49b8b0964420c8f5a83204e71b489dc0bf4b36821537c5655
MD5 0b16093bb1481c48dfd0620a5b6f5daf
BLAKE2b-256 57be1e68dd8a0c716a1e8dc3260ea9044d64d9c69392a070713873e2f17259f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57ea54282002d997cb81f69cbad7113b9175b6a0a75d86ad572bef6dcc1e8774
MD5 5f5ee0a42bc6201ff1643dae83669c61
BLAKE2b-256 df4fbe869cd5a8332faf60cc5f5a6d0bd517975270397821fac89fccab4a86c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp310-cp310-macosx_11_0_arm64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ed7801d2e8ff1f1a9f3fdb24cee90c15403ee4205d2ab8e3389a786469bb0a4d
MD5 db576bfcc3298cc3265537b51fcbaff8
BLAKE2b-256 931a35b01bba67877d84d532ecadac79da36e61f5d2feae0109f26e84f0c1199

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp310-cp310-macosx_10_9_x86_64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d0de330873d7a5b25673d88adfba3d43c1afef2fad3971ad7d2d2d5793120441
MD5 53772a88dd69ccd022dcb6a9d1520a3a
BLAKE2b-256 cefeb1fa944de0d01b702b4af0a8e0a35f317c4adc0c72a28b0520df31cc2489

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp310-cp310-macosx_10_9_universal2.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4f442f861af4cd53e5856db887063461104155e6e698e7c27510aa58f6793377
MD5 38940b28991d9a36fcce3c0b4bec980c
BLAKE2b-256 670dc2f2fafd6dc92ac0c779ed46a64688409af8ba96b064a4597362f01ee84f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp39-cp39-win_amd64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for aiohttp-3.10.11rc0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cb7b30b3a426bba53908ff4048e84c93b9a21705632ddb409808da465195ab79
MD5 2b9dfa8230e22a4e53e1bf4778555263
BLAKE2b-256 b244bb871a29e329f24a902b68710cfbe22afb425d50c43cec918ec4c2f5804b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp39-cp39-win32.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 370d85b49619204974a0b975bceb2b6ef4d22a9a6f0baf3e70501b6d7c75cbea
MD5 31f6bbe4e612cc11d42b0578eb37eb3b
BLAKE2b-256 1a4b1affea7040c48484323370d5b359727f88081e54642e4a2c363c22bbab26

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp39-cp39-musllinux_1_2_x86_64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e7cf5a55355a636098c701f59e3b11bb889ed6ca5c53f2d038ca1186348ef84c
MD5 3fe5771430dbf5fcaa26eb50ba2f9466
BLAKE2b-256 4320caa3eb8f5d01db25f350e5ddbec1c75e8d61f62587e492c226e90af39f8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp39-cp39-musllinux_1_2_s390x.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7418fc6e01ceb837af1ec57741920b8411850ba41d14baea7af66d83f12554a9
MD5 640af7e1b6ca2d3258b162e7b77b9aa0
BLAKE2b-256 4a5f1e040a0d4f1912c944eb579bedbe23042d25aa16957c427f3310552741f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp39-cp39-musllinux_1_2_ppc64le.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 56005f0a026f8c487cd40f2ce72d03c1d5694f87ec42b7b7e8c7503d4816aea1
MD5 8f5cfbee1e6bf9fda6be51636b8af8f7
BLAKE2b-256 e8347d59fd68f5ae03528c5d71c133e76ebcf914308f5a487d98a07c8e2d3f27

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp39-cp39-musllinux_1_2_i686.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a33df6c7edf7c13589c85d89180e13dd04226e99c781f77054a58ef14b5151d
MD5 ce3253a44930b8fc643725b817526dbf
BLAKE2b-256 881c40f092fdeac7659c8d875bdc06e1b6e31db875219d27207de4f0525e4c30

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp39-cp39-musllinux_1_2_aarch64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9e500cab5ebe6ddf32695707a571c2b7f66a77d0b46f09860bbc0784ef5632e
MD5 004079b09491945b4b2a4d9df6496388
BLAKE2b-256 60a0ccc4b74433883acb761d2f994cbf2fa20555522d248fe9df8a6650736af4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fe720161a5b8ca242a37edb021371611bb0690bca1e2d360869a7b0e5d17a9f7
MD5 6ef18810ed51a15e93e922c90a598fd4
BLAKE2b-256 2b5d0b16424006021e7465b2a42da0095b2cbf3c5682f98f6132a047682f2d43

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5d794f440ab4d64e1a5c4b5ebbf94ed96421d4c8d61d93457577e55b9e34821e
MD5 fb2fe49974ad5075d7d35ea72e289b94
BLAKE2b-256 100c20857088e5b10de55626534016f2099e19f079781c029db73cf738fc78a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c25da1bd9a86b81bfac3b5fba24baf70d736711961738c07b41850285deb4622
MD5 322ffb81c31d0cb478b00f701e7d1fa9
BLAKE2b-256 dac02bbc7a0fc8fb03d6a17fdbd720bbc62dacc85092df12907449e2cbb3607e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 99e3e821cf8549753dd096f1394fc90e324c8017aceb18f278696141f860b2a1
MD5 eda92f85b2bd031dd22189761df22251
BLAKE2b-256 67c180d58d4eff0afc9b0412afd5481f363080caadfb90d4086c067a26a33ce7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 889df4b49db66c8ec7d0eac9746439a8df04b38ce2ff4571296833ce2d3fb735
MD5 7eb89844918b466502ba6d2f5a7a1213
BLAKE2b-256 72d2df24891231545f0ab4ab64c7380b26b3d263e361cc8826cad7d8a5d796ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp39-cp39-macosx_11_0_arm64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e5b49e6552640b1876ad294f2b1efb0866ad2805cb9e3cb8e4836f91d49e3831
MD5 523a36e44200b4510e8d19076183cace
BLAKE2b-256 e3a816238723bdcaa65cc4680da4e225ecc2cf132f24627b29e8b287a7a7ec65

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp39-cp39-macosx_10_9_x86_64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8b679e2a6fed7cdd7641ae1e2093f9e344c82b2dfe39872a3878046399fb40ce
MD5 0b956726346d7f486504dc989c01c1a0
BLAKE2b-256 d103e18349d4435c6c5f348f55d34f3cdcffebda249cb628baf9a3b347b7aa1d

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 066b71557d94efc242f26ab577853be07b9c7242a4a8020f03fecb80ac5dc9c8
MD5 f2937d9326507de9ca5a632ae02c61ec
BLAKE2b-256 e4843bd7419e0619006481480c5241afaa3c3739159cd256fa6a4e7e9a70d23b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp38-cp38-win_amd64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp38-cp38-win32.whl.

File metadata

  • Download URL: aiohttp-3.10.11rc0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 365.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.10.11rc0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 eb3d1aa5d253cf48c65a14cebb911955f7de202b50906a953084467b02f44116
MD5 d39c2d881d82f531b9ac2a78c686a11c
BLAKE2b-256 0fa1503e6ddbb82d2fa5eca4fd44351add0f1df0231961b6647ec9e8e83b51fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp38-cp38-win32.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0e1e38e23209cb903402596994eaed9d7b02ab4f2c37c5376ed26096a4df190
MD5 daf3764110058bb2664781ef1188af23
BLAKE2b-256 8699f0a91054cf191afd1cdccbf84e271f296c9be8af225703a2372ca8a337f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp38-cp38-musllinux_1_2_x86_64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fea2db176f221f9985dc7bc73c20e7fa22500ff2c8a1c087dfb064fdb0363756
MD5 739204e133c9620472a2168f8efb95a6
BLAKE2b-256 d9bb8553dc2ce44cba6b198d06fc8c1ed571ba093c70dfe7dc10537ce00e89d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp38-cp38-musllinux_1_2_s390x.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 61a05b929ba8d46eaea4d5a84e37c69f0ef8dcd44b9fa9133a212dc92db8d262
MD5 a346f7112bd04bda029fb392c66921f0
BLAKE2b-256 2361b0f409c3032f1e9f278acd233bd067a2c1c12dcfa851a4f7832861803fd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp38-cp38-musllinux_1_2_ppc64le.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 67263d07e516d0d95e8a403acf65cb49eac2ab2eabd0282c9280226ea6fe0a2c
MD5 fed273776e03491d11bf6fe488a22e59
BLAKE2b-256 77001fae75bfa3be6a5bb5773645776ae80adf7c9d167aafcc8831fcdd08bac0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp38-cp38-musllinux_1_2_i686.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70c0a5e003156d69905c17f8a09bbfb1673fac612a72b1074d90b789a6d51a3d
MD5 228733934036e131655d79d23cad79bf
BLAKE2b-256 1b2d533ce863a420b97060edb06158ce7f762b9fd22132900622bdc7400a5bf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp38-cp38-musllinux_1_2_aarch64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 203feba315a1fa12a9e89a58c4b90562eb10b770eb7d8e2657f7cd4de4f567a9
MD5 6aefb171a58497874ae06b5036bc1c5f
BLAKE2b-256 5127614469488d68dbd5247cff17fd116a2285ddcadd4e26f11d5805fd43b5e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6deda345da2fe5abcd398e5f0e7f49faac46fe77452587be4f225d6cd068117c
MD5 3e381eee4b33a9444d775081d518d484
BLAKE2b-256 897c58ec28d4e1ba64196a157e6e68250f8b6101ed9a7bf1f61a7435c688421f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 940e8ca69fff277a7475c5bd48dfb56790664daf89cdc1a1647d3a6a01241961
MD5 7d0f0357d994628e9cfa1a7cfe4fb780
BLAKE2b-256 7e187d7ca760ebf2a1f026d197e113231d3017bba1c7e536d6f70d3ddf1d0bc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a4639448a96e807f409279f8ac3eb55134a8ae4e548debad69544e7f67b6cd4
MD5 f21131d259af285749d471eb4824623e
BLAKE2b-256 0322c6034d143741e1cc5d6f0e0adc3bfbe324c0ba71810d6212d3743367ec74

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 75727af7a76eb52e887b499c82b607e76cb354e3a8a6f9fe40a85a52b884655c
MD5 8e9093a7314ccdbed5e896bf1651ff5d
BLAKE2b-256 63c8a0e16d7a74887ba08a2f51e52204be8d2f8193ea6e10b1b399585530418e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 575b3d76bf54b450370f2e31ada29eb14e81dc6435766a696a63a1b42c95c6b3
MD5 395bb6b7a5ad74b926f2862ae19dfb28
BLAKE2b-256 d4602a244d7bf4288ab16be750a7c8826ee459e25d1d17d76d822bcec59e6456

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp38-cp38-macosx_11_0_arm64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 91ea6b26131e505a24a2a982db51ebe7b8b2de099ba33ed2a8a45aca49d65d6a
MD5 0c3bfd683aded91a983c17b79071336f
BLAKE2b-256 da3f709f2073b5eeb01e26183bbf43541c4df78a98585f9ba1013f6406bdec7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp38-cp38-macosx_10_9_x86_64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11rc0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11rc0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fada98cd7bd35bb0a2a518b650145d81a1c937f760cadd37f8836cc68edd487d
MD5 eb1e8524311fda3b45ae5252f5492786
BLAKE2b-256 4a8ca223aa22fdc4ef2b4ba60e47f99a2491e8b9a7b680ee63b853d6925da75f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11rc0-cp38-cp38-macosx_10_9_universal2.whl:

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

Attestations:

Supported by

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