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.11.0rc2.tar.gz (7.7 MB view details)

Uploaded Source

Built Distributions

aiohttp-3.11.0rc2-cp313-cp313-win_amd64.whl (433.8 kB view details)

Uploaded CPython 3.13 Windows x86-64

aiohttp-3.11.0rc2-cp313-cp313-win32.whl (407.8 kB view details)

Uploaded CPython 3.13 Windows x86

aiohttp-3.11.0rc2-cp313-cp313-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

aiohttp-3.11.0rc2-cp313-cp313-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

aiohttp-3.11.0rc2-cp313-cp313-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

aiohttp-3.11.0rc2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.0rc2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

aiohttp-3.11.0rc2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.0rc2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.0rc2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

aiohttp-3.11.0rc2-cp313-cp313-macosx_11_0_arm64.whl (450.4 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

aiohttp-3.11.0rc2-cp313-cp313-macosx_10_13_x86_64.whl (457.3 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

aiohttp-3.11.0rc2-cp313-cp313-macosx_10_13_universal2.whl (694.1 kB view details)

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

aiohttp-3.11.0rc2-cp312-cp312-win_amd64.whl (435.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.11.0rc2-cp312-cp312-win32.whl (409.0 kB view details)

Uploaded CPython 3.12 Windows x86

aiohttp-3.11.0rc2-cp312-cp312-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

aiohttp-3.11.0rc2-cp312-cp312-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

aiohttp-3.11.0rc2-cp312-cp312-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

aiohttp-3.11.0rc2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.0rc2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

aiohttp-3.11.0rc2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.0rc2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.0rc2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

aiohttp-3.11.0rc2-cp312-cp312-macosx_11_0_arm64.whl (453.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.11.0rc2-cp312-cp312-macosx_10_13_x86_64.whl (460.9 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

aiohttp-3.11.0rc2-cp312-cp312-macosx_10_13_universal2.whl (701.0 kB view details)

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

aiohttp-3.11.0rc2-cp311-cp311-win_amd64.whl (440.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.11.0rc2-cp311-cp311-win32.whl (413.7 kB view details)

Uploaded CPython 3.11 Windows x86

aiohttp-3.11.0rc2-cp311-cp311-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

aiohttp-3.11.0rc2-cp311-cp311-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

aiohttp-3.11.0rc2-cp311-cp311-musllinux_1_2_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.0rc2-cp311-cp311-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

aiohttp-3.11.0rc2-cp311-cp311-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

aiohttp-3.11.0rc2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.0rc2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

aiohttp-3.11.0rc2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.0rc2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.0rc2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

aiohttp-3.11.0rc2-cp311-cp311-macosx_11_0_arm64.whl (453.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.11.0rc2-cp311-cp311-macosx_10_9_x86_64.whl (465.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.11.0rc2-cp311-cp311-macosx_10_9_universal2.whl (705.4 kB view details)

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

aiohttp-3.11.0rc2-cp310-cp310-win_amd64.whl (439.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.11.0rc2-cp310-cp310-win32.whl (413.9 kB view details)

Uploaded CPython 3.10 Windows x86

aiohttp-3.11.0rc2-cp310-cp310-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

aiohttp-3.11.0rc2-cp310-cp310-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

aiohttp-3.11.0rc2-cp310-cp310-musllinux_1_2_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.0rc2-cp310-cp310-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

aiohttp-3.11.0rc2-cp310-cp310-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

aiohttp-3.11.0rc2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.0rc2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

aiohttp-3.11.0rc2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.0rc2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.0rc2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

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

aiohttp-3.11.0rc2-cp310-cp310-macosx_11_0_arm64.whl (453.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.11.0rc2-cp310-cp310-macosx_10_9_x86_64.whl (465.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.11.0rc2-cp310-cp310-macosx_10_9_universal2.whl (705.1 kB view details)

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

aiohttp-3.11.0rc2-cp39-cp39-win_amd64.whl (439.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.11.0rc2-cp39-cp39-win32.whl (414.2 kB view details)

Uploaded CPython 3.9 Windows x86

aiohttp-3.11.0rc2-cp39-cp39-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

aiohttp-3.11.0rc2-cp39-cp39-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

aiohttp-3.11.0rc2-cp39-cp39-musllinux_1_2_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.0rc2-cp39-cp39-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

aiohttp-3.11.0rc2-cp39-cp39-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.11.0rc2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.0rc2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

aiohttp-3.11.0rc2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.0rc2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.0rc2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

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

aiohttp-3.11.0rc2-cp39-cp39-macosx_11_0_arm64.whl (453.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.11.0rc2-cp39-cp39-macosx_10_9_x86_64.whl (466.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.11.0rc2-cp39-cp39-macosx_10_9_universal2.whl (706.1 kB view details)

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

File details

Details for the file aiohttp-3.11.0rc2.tar.gz.

File metadata

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

File hashes

Hashes for aiohttp-3.11.0rc2.tar.gz
Algorithm Hash digest
SHA256 5276b98a7ed626bc1167e79bef6c4b6f1e7a1ed3a5051be4295e73519b8d8c49
MD5 504fa1ed0447f95d0579bbd6e3116931
BLAKE2b-256 15081da34abad8eec386025ccf026073289dbc19dad17bd59fc30243cf95d59b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2.tar.gz:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7553a9173b0b98a4f3caeb8aaf17ad2ac863e23d0c9c7b771403600ac57a8eb2
MD5 582651587b1c2af95f3cbbe6d9ba4bbb
BLAKE2b-256 829ccb06ca263042df2a3e4c430c38883d9120d89aa9c8bc421b50f2899f8c98

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp313-cp313-win_amd64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp313-cp313-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.0rc2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 407.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.11.0rc2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 66b0296dbff4cb3da5cc5d169fcef31f72f50f824c1844dd8597fe18c30ca195
MD5 f852e5e1d226658794bf48fa658c9599
BLAKE2b-256 6635e839ff38aa4ebfa5f0d0c074eebfb79b9e83d8138ef83ca976af044eb910

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp313-cp313-win32.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ded1b78e4f6046982d64f69d1dbc8a355c74b8dcb532f92aee4999f6ea78a7c
MD5 efdb941438620715f772804d78df45ec
BLAKE2b-256 61ef4095daa2ee68eae1d322d5f8594df079e95cf2167caebb6d29b3279ae3e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0b7c89cc16a52e09b89ef2aded4ab0ff3b14e103854c2ada3550c346073562c3
MD5 14fcf1a08f1bddd423b20eb7cfebc1bd
BLAKE2b-256 30e3b2e6188c0b031fa66326f6ddb13067c6d96c7c66518748f2fff1bc4500f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp313-cp313-musllinux_1_2_s390x.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 89b2482280d4f8f6738cc4aa6dcaadd086d49e7577df30fef90794300cf1a19b
MD5 ca96827a16183b234cc41863a66c3ea9
BLAKE2b-256 f85e76f2607cf1185d4c1007833b2ef052f2e214f8afed4d57e8926c8db6fa24

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp313-cp313-musllinux_1_2_ppc64le.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5c4bea6ef92f017d42962471593c0d06f39463befbe8f2b44f815672bd797dde
MD5 d4e254eacee3844478b41a6b3be68679
BLAKE2b-256 f05e2ad6a48ddc19b327d38a4e3831557491f044ee9c8d987e4817d21a55d5e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp313-cp313-musllinux_1_2_i686.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c6fa3717826666f99a72b47f5d5e8c6a798188321a4cf9e275bae0b7d865b9af
MD5 5f95837d025e0531f5859a99d61a394b
BLAKE2b-256 cb9e31954ac2378ee55f0135bef90a7fc658e21f52be793bb18fe868b321b106

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp313-cp313-musllinux_1_2_aarch64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be525203920adc2ccb31cf9759a7703252f444de34239b42dedbc3c520d2fe73
MD5 18139f089f45097a9c598a27c7c97fe4
BLAKE2b-256 3da14b5ee817852323da23697e136be229bf27c65afa0f1306d4e7ca99ac76d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0efd4dbf43af2151347df70c8af3cda4a88d082180dda4c2d1730efe792badec
MD5 1e0dc380606c3f01d1faecfa1e6979c7
BLAKE2b-256 6f5d2d3b4523f62c480a020b3b2ab0a65ffcb0bdf097bd67fbe28ab58715340f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 67694eeb187ca54ea9d0e799b7b5e7eac3e4f6a9215bc8cd54346b24d599281f
MD5 d26cb2286358bc93e143e5a85b8ba1d7
BLAKE2b-256 05f974bd9db5dbc430c2146b6a3fa07bc883cca474f285a5cfbf136e32189f73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bad9fa6567a9b3dc64e0f3ebe0c4993f441ec68d3f80edc123e1424f701639bf
MD5 9af110d0c9f6ae2fe6e8201279f2f3f0
BLAKE2b-256 8c8a1aa96b602b0b1151eda26df186af27d63035cd7ae6da707b480998d63d06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4e5252ba7457ecfddb2a59657403d3235a079a5d6ce8028a811bb21994af72c9
MD5 0bb6e442910f31bfb1dad2535793c641
BLAKE2b-256 6de5e826ece92002e0063ef06b2d791bd9097e81739dd7ec25afca02cd32275b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 722ec53a71b613fd8ed038361dc4d87a843f672c2348ac0488b76768c7744e62
MD5 7e2b8c7d57204cef39b88eef2a6a9a98
BLAKE2b-256 c134f66cb3561013616f92852e1066bb833eac20cc681a137d22d1bacc567f6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp313-cp313-macosx_11_0_arm64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cca50d81db7a630f7cbdbc884356216b9abd2bb6d454642e606f80e2f3742190
MD5 bcd68d31aa45efd51573ff2fe24188a4
BLAKE2b-256 3a18324bafdaf133ebd6baea6446c2af14733dea8122e64b9d0ff4fa77a92f33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f41b5a3e2c883448052415008b23a4f1a7bc4872893ce28cd7861edf4423a7e1
MD5 054ae449b0f53023d3af873cb1e1e2ac
BLAKE2b-256 e5bd375907983ead542d0fc187fb7313b0b3c7b7f841a24ddf54b434f03915f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp313-cp313-macosx_10_13_universal2.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bcd20ff66ff62d8c157b4a6115fc9b58b32d75e23d21c45ab2d387739c88db85
MD5 7e72dff918f8533272c87ae27ba11ce9
BLAKE2b-256 b1581b50240e2a4ea942d28efd5cd2e236f80cc2c6d4867de1e2c68c83cd8a7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp312-cp312-win_amd64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp312-cp312-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.0rc2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 409.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.11.0rc2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d2b4814762e1e856e5d6d53728fa1f25e70844bbe94848e9f8082424176b0e46
MD5 05f85dec5e14749db35dc2d2fa0e0bb4
BLAKE2b-256 589593b285edc26631a98e8ece0e20671924353a5aee3224c97bd9e1d5c7c48f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp312-cp312-win32.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d5cbb6ac64100e4b6947e1c6dd8bc0aeda11cc358a1a02ca1538b7856a0c11a
MD5 1187923604e308de6efa39d5b15bdbba
BLAKE2b-256 1f38597cc92e4ddd4e20f678bca76e267e2a1773445c0acd1c1bebe0aaaa4aa5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1f7053bf434b76aac9716bb97281964e9e150758871d0f85c84975fd303c29cb
MD5 80a37a86cd220a887c14be51772df513
BLAKE2b-256 941ba95741ddf111a2e565f8a6ffe3f0f44108b0081f5ff2dfb43d2931ae7c5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp312-cp312-musllinux_1_2_s390x.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ba11f08440b7c6ae93997fcffa78f035c38fb8a36289e41442bcc0ff9d9e0d11
MD5 c0b4a26beb79ca5b79d700ee69b96955
BLAKE2b-256 aec7aa7c82becec6115c28dd4c64d8f26c9efc9831fa91a1110a01a6c2727095

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp312-cp312-musllinux_1_2_ppc64le.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 23a24cba3506bfb1358273b716d620fbea24d54abe47395068c83f58e605dad1
MD5 57618c63f1a6891af852cc36505fac7a
BLAKE2b-256 bc38249b7b7b0c23f7f6f88895896f096740b55b559e938f3d3160addfd5b0a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp312-cp312-musllinux_1_2_i686.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6713fc562574a35482cf08b9a032942656f1bb27fe2f8728e2f870cccdc66542
MD5 dc7916424222a78bbfd99226b4ef12c2
BLAKE2b-256 6b0762aadf94a36d52e9e700e683a91fc6c605e714ca59bc76f30099627c8931

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp312-cp312-musllinux_1_2_aarch64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dba422602120a45d2ba452731567bc47d40978b4371c3d9b0ea274eb95db522b
MD5 82abfa9ea5e858076adcabc50f761034
BLAKE2b-256 3880b3c664aff568212a70d7d1052fee7af794f51a1d484906d62f4395ad8f76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5bf845318dddc29023d7041fc032a14a98c132ce398d99a9c2942b425d23cdd6
MD5 3ef376392718b753b2c1d161e826b710
BLAKE2b-256 da41a946ce00937c05903db00930d65b2d6bd8202bfb6f60445d70432348c4c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ac41f23746726aadda14c2133aaf7a891de547a7238c72f943c37892d19b5882
MD5 e2225a3a5d89b9613850d34c63a54b4f
BLAKE2b-256 eaaa10a67997281e7b0e50a523f2200d17746542c80000828644c5ee6798d21c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59228a4480a9ac7e0889371d21cb3961137f8a24d9938b5ce7b47a99866d13df
MD5 a7af0e34e39293d832189b6af8a16702
BLAKE2b-256 c36553d0800db1a5f7beece963a2eacac274e1063c0013aba33b5d4955406ef6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 978f521db5f1b0aeb220bd7ea0e489b0ec790dedc4d35937e7335e8d0e836b98
MD5 b9f296a21665a165279033d2b5b67041
BLAKE2b-256 9b3299eeadeb85fd58719681b9111f4799237e6c7706eb0f023a34f28bc5c168

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f01a6233d306c76f69b56d4f025d62430a195c179d8eb4d66782e8569597a919
MD5 b4e2a8cb2f59f319db30af534c71220b
BLAKE2b-256 5559d7876c6cae9f5f95da3775f8e4c395aacfc55aea85712438e39f7a1a822c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp312-cp312-macosx_11_0_arm64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 89ee1bfc2ff07cca9aa986e67eed46d59aae685e00ee39adb1ffc52a8518b513
MD5 c5668210ab3035bb27beb66ac96ddb1b
BLAKE2b-256 59a841e21ab00d37927846bed7c425eee164c71b5a42a1fe8b061680316e053e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp312-cp312-macosx_10_13_x86_64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 025eaf17ce5596768944ab45846b25c26cb737d429601f32d0ef4c0774960824
MD5 af30ca9223a2767da510cf178a7d421a
BLAKE2b-256 8cab78698b9d93866041ae6e36d3db751c903c31e857fddeb6791e35bca808e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp312-cp312-macosx_10_13_universal2.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9ff3cbf17510b9f178d38adbcc54ff807c724757dc228638fbb840515cb11306
MD5 29e37cc21de969f2abc156b29b5af5f0
BLAKE2b-256 82b8fa3ea45c823e72c56bc91bd62b5aca0685f5cf2351c1a963d1325c582f43

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp311-cp311-win_amd64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp311-cp311-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.0rc2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 413.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.11.0rc2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3eed8bf2109b6aff33c4da564c3be0ae6022688cfbe02fbb1aa2e5f7d74dc11f
MD5 a0af4fcdba6b8bcaaba60c8ce78b87e2
BLAKE2b-256 3c01c581888fb05e1e2717bb6801db55fb0c64fdc3312f26c1cb9e8fb442f2cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp311-cp311-win32.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d9c4f40abc67292dfeca7fc92509cdb34ef9927f020e9a029b5a3ee18eb73df
MD5 e6f367680672d94b17e182856714b2a3
BLAKE2b-256 74bea5ac19cb31dd086c43d507c3c321e863fe95b5bcf706917e3008d70d8a9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f872f104f53b603330769a8dff940f59981d071b0cc644f49d6197424a80cfe4
MD5 f8524b947dae855c6c77272bf6a80a9a
BLAKE2b-256 8cf12dc354cf56e21c4f5fe8205ac03eaef0114672de47ea82abd26f5433c974

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp311-cp311-musllinux_1_2_s390x.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 878d942639cc0df33156c515e4a553afcf65616ff72482ee897b50729a764953
MD5 3637213ca71ef5dcd543934a42dff4eb
BLAKE2b-256 2b2770d55a39001e15dfa90eff3c37a8ac2b42e23f8d99e7d663246784986bce

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp311-cp311-musllinux_1_2_ppc64le.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3cbae411f5174a78a084ba0ff47168c887e80f5f4cd5f83bafbb106485f9cd57
MD5 944dd0312d46487594db02cb05868e75
BLAKE2b-256 8f049b04aaae87f5c04615d03e6dbe35d7c60d64b1494284303d72842024162f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp311-cp311-musllinux_1_2_i686.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20c37d78ca34b93230518bec42786ae57c79d9b70859693ab2a70f7db1477f89
MD5 ad8724e919a0079f3af50c2a404b498e
BLAKE2b-256 7e18cb937bcc81e86ec073a5d10f029414f488009a75c16767a926f85343cf02

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp311-cp311-musllinux_1_2_aarch64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75185fed47e27e0e33d1dbe8c04237a58a4c5dfebe686cc32b0598b91384950a
MD5 880d591c7e97564f43c405fcc432fd48
BLAKE2b-256 6c1985f91e1c2741aa2286bf50bbde83c8057f2b74ac46d2a6c28e34bfca7d13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cb15dce9f7faf01af81a586a21976f866f60f57239e7a05cf74c285a0c822017
MD5 23820ee4b799880a093bba88f237e1b8
BLAKE2b-256 3ec82a31ea25d0c6d4f21426a0df7dd4573c64d49364a31c9436021c7b983341

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d2fac26a01656e3bc657ef2335ad5184b472e48d3cba6d2313789c40b8050d1b
MD5 03f24943c69297c5392710a2b193cb0c
BLAKE2b-256 f1d751da4ccc5c690901533587894127fd061ff5efd83e5fe156e72fde092a91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e772f0e38a6603a5160f8daebdd24871330c610b320d9ba1ac3faa257c6a4143
MD5 5e9e5232f9e7ec37d849d77a66148808
BLAKE2b-256 86ff903884c7d8009a49f2d3447abbfe277acf8666bb0fd8d18cbb3d5e3b09cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 55064c5921f7a072ed7beb8a41ed40536d58a92cc0b447ffca2afa9dbc73a1ec
MD5 337c95a8cf688fbabf16ec7f4b0cd335
BLAKE2b-256 75217c6a4d5c9dc26952bc70a149e51446c1c21e5302303267795bfe1cbf94f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aec4368d81841e795b016ad05ddbd16a3c5e8c7a515c3056a571e3ac8075b070
MD5 302c22857a19081ceb2e88fd9f44d45d
BLAKE2b-256 f50052ea37dda815dcf70bead530caf4229163096374ee66225312192ef81983

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp311-cp311-macosx_11_0_arm64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8d078c2bdac3ddaf1f3629ce487821e71e2b43b39e028ef9bee13516e2f0da6e
MD5 24306a44ed3659701d1654e9e018f385
BLAKE2b-256 65fc863bd6da57e0206e98c0c31697586a61cbdb238ace39e1f0eb3d042c7706

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7fba0446ad177c318c69088e65edb8ae87585f881abeb2c30ad025b8756d04fd
MD5 ce43e49124b9292c562e7869fdc4e805
BLAKE2b-256 514796f0212cc250f4c7540945826d28c2fec92d09284661afeaa53f13bae8bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp311-cp311-macosx_10_9_universal2.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 55e8381888976b9d345b11d7cf1de1f8180f4ab3d8ad063481eb5e1dc0669031
MD5 9427dad092082558b8689d5a48846d25
BLAKE2b-256 423a54aad913d39849c25a4d39d5a72051926113e5716630c29398abff49b0fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp310-cp310-win_amd64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp310-cp310-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.0rc2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 413.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.11.0rc2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 08e56d28f1c570069da9dd176e77d35a6b1acac23fe3987bb5ab55ede85bc45e
MD5 9e3d70c82c9aa6f479a021697fc9b84b
BLAKE2b-256 7f725128813d3d86cd4118c99aa5b92220fefd04f6d412949d0a6d01e4c64d0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp310-cp310-win32.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ab53061dd2f4f86efde7cb676d070870b37b92e9a724612f080d3e669c460e5
MD5 e5ab4dece29138fcf70544795033ad0c
BLAKE2b-256 1876fcd2baa71583417b86602b852ce34c5a16add7f38a121c03e0dd0b4e110e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 577f3cae7cd7c1da7d2699201b775f993b39ac758cf120850114a02418fc4950
MD5 ec3544c1541097bdb1e9dd2b4ba6ba88
BLAKE2b-256 8ad6286477cde6027fcc8932938ef7dad1a1473ed1d81d499105ebe64127fc12

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp310-cp310-musllinux_1_2_s390x.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1cda3f6136fd7ada28a230ce8a633784056a3ad8d58d8a3ea15efc238345bfa4
MD5 182084bf3bbde1ec5f24cc5b1cfbeeee
BLAKE2b-256 d1610685a6fc25c7a66a95349f857582c867caf766da19f73a0350c9244aec8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp310-cp310-musllinux_1_2_ppc64le.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 481794a5fd33b01d60f70bba289e57c966ac02c32188e6365695d511009f0aa5
MD5 a6c02cbdef6e51adcc1fb0f805a1db05
BLAKE2b-256 8c4217d6e385d14f40feefa2770d9ec7ba766ce080707970baa5f9d09cc16b45

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp310-cp310-musllinux_1_2_i686.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7863614331d997b6fed71a3492f19ebbc1d40e30202c04141c6b2396d270151b
MD5 00b12cd11073588bcc8bffd153f6b6d9
BLAKE2b-256 10707e7e94121871df1db34e2b41d4436025419e8d7e022742dc625b715267dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp310-cp310-musllinux_1_2_aarch64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4f3b0dc2f437e59916d9142f9246b156ef5621c9170df84cfd3c6a6e8b24c1e
MD5 b82a20ed9d87987defdb9880ec0b1bfc
BLAKE2b-256 2f9cd415704d49143f5558233ef22e208e9693643d41a66420930fc26e20ef18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 60c5dcb3d2894c8553e032625ac466f3a464c8b33f62d118b8e82722d4957b80
MD5 887b238b16d4fc652c6caa54802791a5
BLAKE2b-256 b2d7a9d7e77f9e977e117db207a63e023ce7bbb97a2f0694175eb83da63c9def

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2c48b37f2964679d8f7f5a29ebb4f29985bc00a2c463b49a5786e7db5bbfc759
MD5 1294b5194144df41b66c9b9f274e44d5
BLAKE2b-256 79267e993e2a36172606c28eff962992905bedddf1dd951e2f909397cffab20a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2bf41fe9dfcd12a4b6795f348ef9296a61623e8574930921fdf3d306ee45a256
MD5 55f65d779d41809fa719895f00bbad5c
BLAKE2b-256 d79296b431129e194eb278a32c5625ba37c2882985c39115aafa39e679de210b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 53db5e196f9c966054272629296f147e87cbe93270b4799047e345abfafa0908
MD5 24795ef6a4197b03c81a82dbb6507c31
BLAKE2b-256 eac7a4c2ed41b62827bf606d33627a476e4fe3e8c086a0a61a304181cf339267

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5622cef00c983555e158497d3263da3a8e7430a744c3ef218ba46a85d5743fa
MD5 bb24e52cf617db424ffd5923c4210d5f
BLAKE2b-256 dae6d847416b34fa50c008d735b7b9f406788d4f9736750c021997ea0dd27b29

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp310-cp310-macosx_11_0_arm64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cc9b7858f3ffd4b3f5e569157e8d3337994029a4489cc4195eb579121171147e
MD5 b5fbc93bdbc0011e890dfacdcfc14a78
BLAKE2b-256 241628330b46259192ba6d816654fbe437d48e1f8842634356843c803eaa0b6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8caa2dde246e9bdecb4a0bf1a97e6ec55ca63f6a9dd32f678c654cb3881afb4a
MD5 8f90f7c30d5cc343bf5dc48d3ead708b
BLAKE2b-256 b499bbab5475ba43f0f263acc6e4c26173a863462fbdc27e4a4d6e450ce95796

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp310-cp310-macosx_10_9_universal2.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a34967e59b8e99c031b4af33f7a3b9631f6d13b7ec50d80901086e3faeda7e6b
MD5 b096ed110d406be0580ea159e58e42fd
BLAKE2b-256 650058c6b78c3e7705b8547a724233cc8031e38d2914656643cea8baf81f693c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp39-cp39-win_amd64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp39-cp39-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.0rc2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 414.2 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.11.0rc2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 399b9ef04d74c12a4bbf05095988ba55ede3f8136ec4092944cf1e50f1b51fcd
MD5 44c931f313f999bca5a414890844b5d0
BLAKE2b-256 06a473d29be9cb5a1ef26c09d869eca5c1d304351382c3731db4b40f988d52b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp39-cp39-win32.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef0a8cf8aa21758b06e89d6e3d951b866c75a17cae9d11f88728046f68eb5c32
MD5 18224f9c9d8df3e6470d6c8bff83a218
BLAKE2b-256 02f1ae7421b7fc296f67df73127bdf4ccde42a06edd3f64c1360831eb64235aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 66e220f1a4bfbac2c87d6eefac362cb3df46ea30a5e40f635075b0122b1145a7
MD5 505a78f2c67c7c8390bb586574b3c3da
BLAKE2b-256 a6b018591c6e56ead941f755776b20def14df37866fe3f0e29d290c6393836a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp39-cp39-musllinux_1_2_s390x.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 650a91024a84b766db75d94b77d22ce6cd8e45d2246acf5ae4ae6a5836ebdafb
MD5 a246c8bccec5f4ccb86d8674479d8637
BLAKE2b-256 e46cb674c86ae6241091f94309a1f65056c51c145101b205377daf49ce693e34

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp39-cp39-musllinux_1_2_ppc64le.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8f080d7b0af4c4bbe8527c495983f8486ce8b8e690e274d2d2b0552d76e47090
MD5 7fb5426d5263e93b48a7f58d36eda82e
BLAKE2b-256 f93e96f298fee683b5aa0ee173b59ed83e30cd0c233960e73c9d1ca95acceca4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp39-cp39-musllinux_1_2_i686.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51775cbda5b56f0519cdd110651556acf3092e53d2b4b7ffb8a6794a6cd19b0a
MD5 64a28c5722f1578d25465481e4bfb683
BLAKE2b-256 05826fbd2e5fc0bea30ec00a7388383e472a2bace9292ed43b98b47820a2d809

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp39-cp39-musllinux_1_2_aarch64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bfe023f22d38c59bbbed03fd7a263d9450a49cc4a562ae9d71348d291691973f
MD5 1b3a37497ba1670653883d87b7633b4f
BLAKE2b-256 619afe428cfda4e033065fb2bc5aa69f0cbdaf7ba877d322786add9d2538d486

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 518cfc782577662afe2a2985f099ced8108e62d0e5c61f7a5f1d01ae713e26ed
MD5 a51d82b63c294ab5c45abfacf3859630
BLAKE2b-256 618024a0b31da9eb4cc609f06c7a32e487fa5dc57a93ed43d32accdc126bedd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a8bba23c292a5b972e925f4ceed3752fde79dc09157221f8c967d4dff0ddd0f1
MD5 73aaffb0205ead2b5c2dc8f57b33ea2f
BLAKE2b-256 91a6d037c407f691fa1364861edd47bf80e9b5ca964ff116cc1128eb4f043bb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce4ac4ebfcb0623daa9ca0e4c708b014a74fa2fd4d828e9cfb88fe20b4bc70fd
MD5 a5fc8d2bf03bd9288426b74da86dc853
BLAKE2b-256 262ae764ada5ebddc09552fec471fbb527d7cf4b0b1390a9cde40d55cd052ad8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ca74f32f56969e21befdcadafa3bd32f284a17fb4462eef38328ee7124aa1e4
MD5 37acb8c319a3bacf2b1d29d76d98c590
BLAKE2b-256 09624f459695d25331f9530eea08e224738adba482d86e9838063eb651017974

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87a8bea321c917b1159d8cf72a5e382c244ddbceb2021287842e1ccc46a112ce
MD5 df6444f53484953b6cd2b00d9f421070
BLAKE2b-256 7237cd89e1eaa3b9d25bc9fd3f62edb526043452fdaaeba08f870a6a0bcb10a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0rc2-cp39-cp39-macosx_11_0_arm64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.11.0rc2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a087c0e824531c0b26a96f06fbdda0b20fecb00436f8e8a8584996a055afa506
MD5 2aa7bbd8979e45eb0ecfde73a3825f2d
BLAKE2b-256 fae283c801699125cffb99bdb2cb9c41eb554c45a4e79a4522b7b3c3c678221a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4b90efc8e9b5849a2ac5a53f0b67c95fc79a218aa1d83a4359afe1bcbce9dc1b
MD5 1a41d757b1036ebf719aa18e4b4682b6
BLAKE2b-256 810ceeb196a3f4822046fb47140317877c56288901f47fc01813baab40bcaf89

See more details on using hashes here.

Provenance

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