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

Uploaded Source

Built Distributions

aiohttp-3.11.0rc0-cp313-cp313-win_amd64.whl (412.8 kB view details)

Uploaded CPython 3.13 Windows x86-64

aiohttp-3.11.0rc0-cp313-cp313-win32.whl (390.2 kB view details)

Uploaded CPython 3.13 Windows x86

aiohttp-3.11.0rc0-cp313-cp313-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

aiohttp-3.11.0rc0-cp313-cp313-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

aiohttp-3.11.0rc0-cp313-cp313-musllinux_1_2_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.0rc0-cp313-cp313-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

aiohttp-3.11.0rc0-cp313-cp313-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

aiohttp-3.11.0rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.0rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

aiohttp-3.11.0rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.0rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.0rc0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

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

aiohttp-3.11.0rc0-cp313-cp313-macosx_11_0_arm64.whl (427.3 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

aiohttp-3.11.0rc0-cp313-cp313-macosx_10_13_x86_64.whl (433.2 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

aiohttp-3.11.0rc0-cp313-cp313-macosx_10_13_universal2.whl (648.7 kB view details)

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

aiohttp-3.11.0rc0-cp312-cp312-win_amd64.whl (414.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.11.0rc0-cp312-cp312-win32.whl (391.6 kB view details)

Uploaded CPython 3.12 Windows x86

aiohttp-3.11.0rc0-cp312-cp312-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

aiohttp-3.11.0rc0-cp312-cp312-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

aiohttp-3.11.0rc0-cp312-cp312-musllinux_1_2_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.0rc0-cp312-cp312-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

aiohttp-3.11.0rc0-cp312-cp312-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

aiohttp-3.11.0rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.0rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

aiohttp-3.11.0rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.0rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.0rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

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

aiohttp-3.11.0rc0-cp312-cp312-macosx_11_0_arm64.whl (430.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.11.0rc0-cp312-cp312-macosx_10_13_x86_64.whl (436.6 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

aiohttp-3.11.0rc0-cp312-cp312-macosx_10_13_universal2.whl (655.4 kB view details)

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

aiohttp-3.11.0rc0-cp311-cp311-win_amd64.whl (418.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.11.0rc0-cp311-cp311-win32.whl (396.1 kB view details)

Uploaded CPython 3.11 Windows x86

aiohttp-3.11.0rc0-cp311-cp311-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

aiohttp-3.11.0rc0-cp311-cp311-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

aiohttp-3.11.0rc0-cp311-cp311-musllinux_1_2_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.0rc0-cp311-cp311-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

aiohttp-3.11.0rc0-cp311-cp311-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

aiohttp-3.11.0rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.0rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

aiohttp-3.11.0rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.0rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.0rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

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

aiohttp-3.11.0rc0-cp311-cp311-macosx_11_0_arm64.whl (429.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.11.0rc0-cp311-cp311-macosx_10_9_x86_64.whl (441.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.11.0rc0-cp311-cp311-macosx_10_9_universal2.whl (659.2 kB view details)

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

aiohttp-3.11.0rc0-cp310-cp310-win_amd64.whl (417.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.11.0rc0-cp310-cp310-win32.whl (396.3 kB view details)

Uploaded CPython 3.10 Windows x86

aiohttp-3.11.0rc0-cp310-cp310-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

aiohttp-3.11.0rc0-cp310-cp310-musllinux_1_2_s390x.whl (1.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

aiohttp-3.11.0rc0-cp310-cp310-musllinux_1_2_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.0rc0-cp310-cp310-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

aiohttp-3.11.0rc0-cp310-cp310-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

aiohttp-3.11.0rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.0rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

aiohttp-3.11.0rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.0rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.0rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

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

aiohttp-3.11.0rc0-cp310-cp310-macosx_11_0_arm64.whl (429.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.11.0rc0-cp310-cp310-macosx_10_9_x86_64.whl (441.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.11.0rc0-cp310-cp310-macosx_10_9_universal2.whl (659.6 kB view details)

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

aiohttp-3.11.0rc0-cp39-cp39-win_amd64.whl (418.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.11.0rc0-cp39-cp39-win32.whl (397.0 kB view details)

Uploaded CPython 3.9 Windows x86

aiohttp-3.11.0rc0-cp39-cp39-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

aiohttp-3.11.0rc0-cp39-cp39-musllinux_1_2_s390x.whl (1.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

aiohttp-3.11.0rc0-cp39-cp39-musllinux_1_2_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.0rc0-cp39-cp39-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

aiohttp-3.11.0rc0-cp39-cp39-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.11.0rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.0rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

aiohttp-3.11.0rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.0rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.0rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

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

aiohttp-3.11.0rc0-cp39-cp39-macosx_11_0_arm64.whl (430.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.11.0rc0-cp39-cp39-macosx_10_9_x86_64.whl (442.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.11.0rc0-cp39-cp39-macosx_10_9_universal2.whl (661.4 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.0rc0.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.11.0rc0.tar.gz
Algorithm Hash digest
SHA256 00254fa928bc18962fde3a69a855a0e9cc830da795cbe7263dc68d988e3985b1
MD5 440bb761f138c8fc2a63928e8bad8e5d
BLAKE2b-256 b6e3fda75b3ebb562e43ca3dac87a466906ffa4bf8f859ffbe18cf609fc5c89e

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 09665e984ddef106382cb6619e6fcbf3ace1ab5b32c65a6b061cd26a0eac2aad
MD5 54ba5ba2362c299f58b13dc4eca367d7
BLAKE2b-256 86886a9fd0cfe1ce97bd0142c96685105720b3b3bed6a406130e1410f9dbfdbc

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0rc0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 390.2 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.0rc0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 73e73b8a773e39e4a3442c4902fa0136b4ce642cb386c386321f1370b38ec40f
MD5 de0918b9df9a0fb19bda7a99d4b803e0
BLAKE2b-256 600ead15eba02d819c72efb90608a0b42a4fef822f6a62a562942e45e9d5c27c

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e4a7c93c319eb39d36a874ab467fd225db002a2e02c535c3bfd353d7c0cd6f6
MD5 2df283da79362041b806ca037a7ff5d8
BLAKE2b-256 54a2f08bc0d299992bffac0808039deb2f95e28074ec0fe2c1882bbb525efc86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0c8bfe0be67952bb0d7f09fbc70252c80877e2ff7437c653b6cb7f0468c13198
MD5 f9cd6f3a3e76128556b235c1f7fd7de5
BLAKE2b-256 7949d5f225213f9153f94e102e471b52caf44633d39f141ac53e1346e338244c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e27c1beb397a53dd01921c20e50cc227beb4eadf061e588ad01efb55d1173ad1
MD5 cdd7f636451555090838b4390378f76a
BLAKE2b-256 7c34bcf8c93c8d9d58f78efde42388e65da4d0cd908d7567cf5c50b50a9debd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0a1882087a5d4d8782b5a41c11ef97fa6a2cc5b427714cd0319ab67c54d2b635
MD5 38eb445ff964428b8e11336cedeb2af2
BLAKE2b-256 82aad6e6ed160365fe5689cf39a1b48e1c3c1153cd54437749192c0737d62813

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 885715b5708f0996050b28ca801ecdacb7df36442ef2dfa96eef4f29f8a67cbd
MD5 7813127a719a0ab7ca399d57c76d9e46
BLAKE2b-256 d1577f8d3c2731c702a8b1a7efdcd2164100b12d42de0717f827ccdd99b5d780

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5620972a2246a7c97a881285d5c8b746012b60200cf8a4c1636502ee269e097d
MD5 25e06ab3dbf822944126b99f2722a931
BLAKE2b-256 e468d49e311dca01ba5409ed3a45ec5a740841deb89aee0f69d0b90e174cc362

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e6e4ce0d29d00bf1b27e432e72f3f981818fa0eff4d1f8deb8084816508ebfb
MD5 bb02caada9703ee65f2840cca207c298
BLAKE2b-256 884d50a15c0bf44cec4c65847a265a382dafb71c5efe6fb6375e9fddc2135fdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 395aee39c2ca14f3505dd404ba4a8b2417a20894d1bed88ad65e2ccf8972eb1c
MD5 675bcc0563845e7f5f0098f971832886
BLAKE2b-256 e901889234fc07730d147f51f905b4ee2f1537be866cab676da05b31bcae1a2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc8004f59fd1122a28a173bef90f4f0d0a7412a2bb70f62d6e302844d67a9329
MD5 5ab91e8ba6affceecc70325efa90f82d
BLAKE2b-256 b9c70100d2a09580ba87402c299c453159ae208e9732b2efe3f73f15b0c1ff49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3ecfc7a285a9b3f1004da2782fb3b63e1c3e2ed5b41519da1779bf1457c76c6e
MD5 887673673945968419d1cb16c735160b
BLAKE2b-256 49aa49c49ed82a0cd20a690254ff1f4b9c40342ecfdf7aa3f00f95a9a2e6e866

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 787ecc936e6f2f6fe6cf16aa92aa3b355f955ddd741bd80cfd3dfc243383cf99
MD5 4abd99a798baf47909741777a9068f98
BLAKE2b-256 6e97336e9db3d9dae86cf6d2e22448fcbb19f46ec2c3f528e888f12b06b7eb85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a5e1db8a40c1eff49a8186f5669bae83f850d9ff0b1d57f03fa08faa6f7223ee
MD5 5a24b43c6e2d1c3468ca7bc3809a59f6
BLAKE2b-256 78b12bc01955e3613c151233e375c3efaa86e997c37a752fe82abbb6199bd930

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 c83ebeaefbab3bad832884c5483604f9ea19208792ec71a1754cc636f29c0b8a
MD5 6fb3b7a78ebce617be5a5477ca920659
BLAKE2b-256 462da5f639881f34c79f40487a13628db594753ebee13b63764182d5cfe104a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 38c093a42cb467eb2e41073b3e2a84b936cdcababfca17ba264fa5305a0333df
MD5 a4aeb217cbbcc411a53c41859b390681
BLAKE2b-256 4198741d879f8553def4ec46c3241ba6fb2077aad04b6afcde3cf274f20c6a1d

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0rc0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 391.6 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.0rc0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3bc14a350c293161dc22346a02d0147fbaa4d6c2b11f82f351548bd4d6c86559
MD5 aa0e020b4d0a5cfff93ed75a201d94f6
BLAKE2b-256 ab6672a8f754045b6c03e05c877285c482ff278f48dbd84df5aef209eb91fead

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61223f47db8f788b5f611adaf519d69ccf3a6296710b7d86ddc673c65d5417fa
MD5 0bf72d17ed656c860dbd9b0367e84845
BLAKE2b-256 75da8b559d87a92a6dc35037aeaae8e724645c818e316d5bf4d2e71c8fefae12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 15dbd332335fc05596bec16bb973d544dfc5520c8e18f8994205db7fcdf15a15
MD5 3dbd8790a256c63b40aa8cf003a47660
BLAKE2b-256 5d9e4a5dab642b66389dd670edd6f8be2d774f66ea86ea5002c4066e15ca09e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 70fc837612dd5870d53e67928401a0e1c97e27442d3d5c30aa0bff5457674848
MD5 d39199b627aafc6e779ab83cecf12969
BLAKE2b-256 92e3fed6b45e16b6a1a6f53adf139e2ce5f68bfd181b02372daa464a5c4111da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2d6e6778496d3d7e7fcb96df3f936745d329f5769f5addafa121d099ebfd75f9
MD5 6d96d2107c0cadc6ff1235248fee8b69
BLAKE2b-256 f4f2edd6dcffdbadfd2f25674c7c8333ba6146357c39cdad6e1c0ce92960926d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6dfb49c0c069aa3a69b9812f3985eb767f5d5b09203367092b96406d5649a6de
MD5 11aeb2be8ac8686e58cb539e779d3594
BLAKE2b-256 9d77ad5c6a4cafd0c664483eead9a041f4b20c8fee848320def025306dfde9db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1643cd9bc26789530df4b015030e1b58f4d4e6309e72e41de46c31af4d4cd1e3
MD5 eea7b75b30e247a4fddd76bf77e8e0bd
BLAKE2b-256 1cbd506bad8dcab73b255ff49dce1b410f64c5bc26023679278c8889a82ea35a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 222fdc285e7d4c2cf3cfec707586c7f16e1a03fc0179be9b87de63ebc20d8aa4
MD5 b4a61c9b73c4ed59a051a9495b9cc6c6
BLAKE2b-256 deefa17b65ba32d7e6b194a0a8abf57a62f02857025e233687093b236bcb6101

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bfd82ae1c6494f664e4d0b35eacf1c8673ab54e230faee115057dd7c8b7da786
MD5 39042cbb3cf675984b708e2f357444b0
BLAKE2b-256 d2c07e204d4afc931e1cf25cc7cc6df7797a59aa047dbc5d08e7c02b5ac2ba9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 960a7210ee4fa27c53050500b7b312658263ee5567c75e30375dd09fa7c9360d
MD5 9bf3264d4927dca85cf611af8e9a6b08
BLAKE2b-256 1e83ee28a8dbfcdd8c772bada1e54a774672092f07dea46c85ea6297df4a1305

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 625f4a9a5d93c26f9b3a28189a93439cc82480e2e4e7b66ec3152cf755ef07a6
MD5 b0d0731d9ae4c1333dbf515cdf1d6018
BLAKE2b-256 0ee51cc6aca75fd5debe0543d20a9deda49b40ac0763b0c971ec1ce75899ade9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 423e2e9edb4697428860a07ca5640f72eff25b3300c66d998e566e42fdbf8ada
MD5 bc4ba59a675685bf73039c1bd19a64d6
BLAKE2b-256 16d1fb5446812a1dc403b54867df2b32587c36714a903ed0c29f459c82cb96fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 67e659d3a56ef050f933b894e4d86529311a3e1be0601132582f06313cb461f5
MD5 debadcfb3adb944d45a1e784605c0e15
BLAKE2b-256 c9661ff777e56a498b5893dae11accadfbe7d8dbb09e7c21f219eaf24eb50049

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 91b807d4e334694ecd1ae9dc9aef5aa26e7268a58a9db1f3ff7c3b0987a0a4bd
MD5 ccbab402dab6c4a9a87661d7636b423e
BLAKE2b-256 9363cd6d9afe88087b10db326db852299e31cd2e8b2a2874d7173d07c905a43a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 795aa05fed9674371d4d0523fb64d9a6448d529edf4aed81fcce8f72d0b53ccb
MD5 a0bbd164a2ed40d30ce40c1067017d0f
BLAKE2b-256 c5b87c0b632c997b8f16176ed9816cf26709fab2608b9c5a382545429632ac01

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0rc0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 396.1 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.0rc0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fd7877be8c10f7722a72ec38a945bb1ab900806fc7cb37b10563cdb79c177963
MD5 5845ec6d6dd8cef1b0caa9613d8d8c33
BLAKE2b-256 6e24af0f62e4229427cc3d97218673bf1ec9669696d33e71c1a716d4166f331a

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3158edc813c2a5e786defd561ad017f7659c4103af26ae2bbb648b32a6164a19
MD5 55b560849c1d7bafa2eb38b57d4d5495
BLAKE2b-256 d859be76bffc732e37914832c57c56c2d8376c1cb3737bfad3141575aac38471

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 38fdfca1ea57eabe3e489b13f7b94255c52f4f3d25fa6f1518372f8d6ba37edd
MD5 14b80c895066059cbd546342c835c699
BLAKE2b-256 830fcc6e56019a069041c97403699e958895a7b1137bd1b2c9f8d55a5ef43227

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 31c245fc640ccb0e846f6ba159d80e609ee9dc0376038dfcc39cc5da8a350b36
MD5 eaae45ae50b7085658857aa286e3fccd
BLAKE2b-256 ccf9f1d2c34037974e230cec7c39b801d4cacffa1d1b42d72bfcbccfb43a8766

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2c97f84108bfe32f7255ae5bf47850c31bb4ddbc67c24c1dd8761f31c3df75a3
MD5 126555d992ae8e1e511b108d0c67df47
BLAKE2b-256 8852479f456d17ea71a10ba2021f10841e79e6fae5541076c54ca567eca663e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd18e37e66090c77aaf3b0deb720b587f0878c27d1c024ec13db57cbd2149a47
MD5 0aa5ce67673fed5ea082c1f3d73c07bb
BLAKE2b-256 9edefec0af5018a152697bad48ddd7b69187d4084305e39129b56e770571469d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53c944fdbe90fb419586282032e504158c027a1ca3a57d06c9ff4dc922864230
MD5 3e92e060bcc8e6c2b09413f59504fed5
BLAKE2b-256 e80bf9f815fbd725500310efc3fcf3d8afb659e5fbacc293a101da2c6fa6ed8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0222730deee9139aec71a1174d614c94af4c307d5210a454c4dbe82c24807050
MD5 693f4f58ff02e3bf7f589eefce27abc8
BLAKE2b-256 f94ac139a70dbc7430d765c640fbbce8cc8c5ee36e974766b56874fcf8911927

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed2eca348391664be2ffccbfb38099bfb4a5f15c5d8d62b584928e0da82da792
MD5 da869775477b6d2f953d3ce513615157
BLAKE2b-256 09a2030018d67b75d5c1b6693ccbe1c61760517f1cb337a07a154e3c54a0cfce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6911be25803026404d48b732e73a02ffa279a50c397e76a87ec5efb9e758d3e7
MD5 1c45fb477586c12fb03f439723b25b29
BLAKE2b-256 1622132b05a667ed2c8a05b9efe5552b9885d7f8a86af60e4961dc7b71907a3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cbf40c3c962987128f1fb3da12fdf0b58603d81965ac6f258a54dfde18a6a0c9
MD5 cbdf88e143a5682810e4fd6dbca8d632
BLAKE2b-256 f4de0c235550e5859005768870bccc86d15d1e8ae640b2021d16c2240ffeca3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c654701725347a25ecdbcba0ca50b2f8bb2bb941550bada9c8b76afbda3b57a
MD5 d74915ea4ed5def76e57634310d8aba4
BLAKE2b-256 91291a1c2dad6a2dda9e046b2a2e9adce844a7cea78cc4213da6d06d9d6b02e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7f7d30f296ce434173e589164ed2db3b5a6875d163e0d0c5ff168ded98d8fbe6
MD5 f3f1d104beef5ab5ce2f0a3c2aa4e53c
BLAKE2b-256 9c3a64e716a0d8d4afc14f7ec3b1a5569d3d934a59cbf40e692e5338b81aeda5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5e9abf444c143140690df3a2c5d8fae63c1cc52d9b28194056139305ab1c7860
MD5 eac927b876e87d2606b746d3ab8388cf
BLAKE2b-256 5b5bce6de3324740233a05cac297598a43190681882e090eee1a2bbe804f71f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c90d494279ae0ebbc001018e1188152f8e58a4027ce8fbe9b048d36c46e65de3
MD5 ff005386db205cb8a1a859a2396d969e
BLAKE2b-256 2f5a408b3f42c6d1efd270e145d120514ff8556ae3ac055fd187e3be651d4e62

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0rc0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 396.3 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.0rc0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c765fda605e1c032d0fab2515730b258c23dcb23e633709f5e15e99f15278bf7
MD5 f135c37be5532429e2f1831e595ebb09
BLAKE2b-256 12e7f0e9689f21ac19f92d882a6c67b496176f1eb8f25cb05bb510d787eff7c5

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e58785e2483c259683f342dfadf94291bddb9099dab0e38a79dfe6d734e1ddb
MD5 72e3de0004bc9208bcd4e3fdcf7612a4
BLAKE2b-256 c8fa6808291aed90ac779d34783b8df81ff6c9dfdfbaf915ab489ea6e59bb6d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6c01c6b6c9d09bc833175ca05381e08fbd341c6bcdc0a0b36592987258020975
MD5 ce3605281b950ee722e2d05c77641d2f
BLAKE2b-256 414fb8f18a068e69500509d0d7f0d656f96700cdb2b0a5ea352300420e034d84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 65889a3e19d0be91cfee6dc0dc6f60ab19b26088d292132215b087e5a3a0014e
MD5 4529cee6ee684231be600787a8e2bc38
BLAKE2b-256 80bc7124274823dfeaa30ebd899fd18cadf41798442ebbc83cbb76bbfb3fa212

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dcd47c5f96e867686cc7e0796107f9f1005cd9270204d01d7c175241d338eb2b
MD5 4d625402cd403aa267da8f898b40cf0d
BLAKE2b-256 48804ffde4382530e9299dc3daecdce46de905feb7578c4c643b3eff4dfe00d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e44b68187d9968a425f695456e235c2a7d78e8e81792f0d78780a6a4c4c5654
MD5 303af6e0f7fae37ab3396d559f9c1dcf
BLAKE2b-256 6ee40039d15c39b1da1783986d273d7aeb517d7ec13d24e4f0aa72609be795bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 178382923924584cfb2565031548b23cfc0377e5f24b32787e67c016a6449d78
MD5 2cf8a3bcee15d40a86910349e738d993
BLAKE2b-256 758faebcad2ce55c2d28ae45a2b60b0db41ce0eabe106219a736a1daffc6a552

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c9bbbd06a34c2bff16edff230ef34b2157a663fb8cc742bf7127e6f534fe0312
MD5 929655dd7fc924bd27653c0c690e7248
BLAKE2b-256 18574d90552b29afa7cdeb863c879ba1ef7b857d0c5eb1c12fa29921a6d059c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f2402980c2ddc4349cffcaa6c2a38544492fd1a9581157acaef15f41be1e9ea6
MD5 27a0f8664685f94f79e6a74837307ef4
BLAKE2b-256 01c77b5b35339de9bda3d0df020ccf2a3d03fc1b2242c9075a023473d3df8644

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd2d9a29af21f811d3ce2000d301c61abec8829dd55073e8bb6382c9c55c18fd
MD5 14702ffe0f2a7e41cb41242574519d4d
BLAKE2b-256 d7ca44b8d51291382cfdda641c430ce4a01e2c1df1dc7cf4a83aee2568297acd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a30a0f4b801d16e4d46b196fb1883c1ff8470c9fbe3d974fbbba5d6815a51402
MD5 2fa1c0074335d3364070b4722714fb79
BLAKE2b-256 a59a6166fc6c090b31bd137c9ce2ccde03a8f7f3202fccf54ff3271af87cb9b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 536e8eb21fd0b4ac91fd741d7dfd639e9daf6866328a6c91430af4c8cce3196e
MD5 0aa42707eade1550634eb9f2d8061dc9
BLAKE2b-256 a305fc8c2756b11c0e6cd5e74005a7de05995492a92221d3ec4876cc237ab282

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db9e1c27429302f5335f60b7edfc0508e2057c5863e73a9972051698d1109e4d
MD5 78a46b9c7f4f9be3d80be4a8af22f0b4
BLAKE2b-256 0020fc546938dfa5afbf441240562e167dc34a685e806e820a4f1f965b170061

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9cc9489f94251bd6ca0fc8bee3bf4373f12c9f4fa768c565d1cd090536cbb8c1
MD5 b0d9e94d2709c34004b19288fb582afe
BLAKE2b-256 9c021dba9e44fab2b1e5046ef226a457c897ab9946df1643479497731547d40b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d9c62617b7e4a958a8158aa8b9a2fcee38632e7785e6fde89408ed1fcf4f58b9
MD5 9c13334c2b0192e032e73b7f1894038e
BLAKE2b-256 449593705716fffcbbb4855a0672330b6d1af08ca260e1beffbf36cea7758d42

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0rc0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 397.0 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.0rc0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cd3e7db5c455069ece08e9e857a2d25ae73ea99027947d6acd8805d7dd8e30f7
MD5 52211c235144e782d6946fadead99c9a
BLAKE2b-256 a593b2f260f72e2d866a13c5d852946503a1521cdc8596c94f91666accbc59f2

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5df0ad139c07dfb21e077254694ca6fd07fc0f79b4d1e313a5a19f042907eff
MD5 dd4c9b9c5e482bbf8ec9332fa90ccee4
BLAKE2b-256 dc0ac383e3a490d92660a7369f80f28130d42ffb4183b70b6a263d7016a92a7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5ec1822e9b6280dc20b537efb4374ce10b73eed7184785081fe14d65293c7780
MD5 1cc73ab1ac7ae8703f5edbc896ded321
BLAKE2b-256 8c53f674cdf60e7828bc6150312397175d064d674c4247461fdb6d6cdffc139b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9d74ae1b2a26ae98fb6b752d77d6b707281d1b8fabad58b7f7f27cba376f7871
MD5 15c3fe76bcea96e3e84a258d27cac91a
BLAKE2b-256 ae3afce7cdcbbf52008dd52d14aed68b65b9b90b680f5c11a159cbd9648260ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f1f91c5f8ab790f645ff58a389222267189b3a4dc00ab9cc376e1a7dea230aa2
MD5 4e64d36a709f9bb3aa0825f0b17c69ae
BLAKE2b-256 8daca175ccc75b154f31e5a99b13d5ccd864601f97c250afdaed347a5c49309d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ff7a30ecc4756244908ab8dfcfd9e2dab6042cf074e7cac9cc889a5a0025257
MD5 1e2c933cfd074ac254938bc763166a72
BLAKE2b-256 e3af8be22555fa120d7c965dde9a4ee3ea80e6e7d6a56d385eb8930f0c0bfdad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77f838ff50f91d9f319c8a1cffd7a25700dc738d3497eabc726306c2bfe58a77
MD5 bc0209a788fc5d62d95e140dc65dc299
BLAKE2b-256 97cad70c370c7fbe69de8a828d1406d50f959c2b3f25a5c5c1ee1d47bb76ecdf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 05fa712517f6102620f8bf19b23a4f2c1239fb1797061019b7a3d5bec2fdbf4b
MD5 7f6b3d6313bb4f1add5d089aa74604c7
BLAKE2b-256 94ce2b52247e0fc6fada4fae82d9e9153dc47c8504c98822e425e9c24c03dfde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aa2f7944de93071cb294a6a490bc3b02daeb5e69eac5544e5882d1033cd5d936
MD5 8cf83ea56a9434a0a86963ccced93ba4
BLAKE2b-256 03db0c4eb601f387a7bab7fd50b9964ac789cfb92c7cb812a10da9109e1dd648

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be29992fdddd9a73cbab72c350dc21bee99d482da73866ec3788a26ac2bd4a60
MD5 fc9df56366dd60a49bb44e678779be5f
BLAKE2b-256 e69f6b6ec8abc7d52aac0902415be7a5a1af34c445fedd9e1e5e120cc3e17e83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aad6542516970d2492efa9a441fbd7b342012d9ab2d22d99f99ae15e9ef869cf
MD5 314c28bc1a17daf5e27b965c85572b63
BLAKE2b-256 f268f87ef6b6906f60c62794d6c1cf8092d95815429e0b2ea9fbf3dc92769746

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0bbf6fa71ba52a83443f42eae658f4d0833fab281086b73ef0674e78c53e899
MD5 b3f48d2ab869107c35b2d4293e07333a
BLAKE2b-256 51e2c1f997fad0eea112127d020415fe2480752377835f5527a6a0d056445ead

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 943fb0ffcdd564b26abb5a3b877e189d07c686849e17b09920c9edaf6e9f0b60
MD5 5400bd9994213940f8a99c8c08ce1a13
BLAKE2b-256 2eadef64a9fb1cdc1136faff641c2d507a851e767e52ca5e321ae852902a23af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e43aabeadfc922adb98f99b05e63a9a91e8efa141b9a3b22eecc5926f625de08
MD5 e7618441a99e9d641b2cd169789f3c46
BLAKE2b-256 be98745541fcdc61144af184ed793055aee44151e07c70d51b099e2091941706

See more details on using hashes here.

Provenance

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