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

Uploaded Source

Built Distributions

aiohttp-3.11.0rc1-cp313-cp313-win_amd64.whl (433.4 kB view details)

Uploaded CPython 3.13 Windows x86-64

aiohttp-3.11.0rc1-cp313-cp313-win32.whl (407.4 kB view details)

Uploaded CPython 3.13 Windows x86

aiohttp-3.11.0rc1-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.0rc1-cp313-cp313-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

aiohttp-3.11.0rc1-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.0rc1-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.0rc1-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.0rc1-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.0rc1-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.0rc1-cp313-cp313-macosx_11_0_arm64.whl (450.1 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

aiohttp-3.11.0rc1-cp313-cp313-macosx_10_13_x86_64.whl (456.9 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

aiohttp-3.11.0rc1-cp313-cp313-macosx_10_13_universal2.whl (693.8 kB view details)

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

aiohttp-3.11.0rc1-cp312-cp312-win_amd64.whl (435.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.11.0rc1-cp312-cp312-win32.whl (408.6 kB view details)

Uploaded CPython 3.12 Windows x86

aiohttp-3.11.0rc1-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.0rc1-cp312-cp312-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

aiohttp-3.11.0rc1-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.0rc1-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.0rc1-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.0rc1-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.0rc1-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.0rc1-cp312-cp312-macosx_11_0_arm64.whl (453.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.11.0rc1-cp312-cp312-macosx_10_13_x86_64.whl (460.5 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

aiohttp-3.11.0rc1-cp312-cp312-macosx_10_13_universal2.whl (700.6 kB view details)

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

aiohttp-3.11.0rc1-cp311-cp311-win_amd64.whl (439.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.11.0rc1-cp311-cp311-win32.whl (413.4 kB view details)

Uploaded CPython 3.11 Windows x86

aiohttp-3.11.0rc1-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.0rc1-cp311-cp311-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

aiohttp-3.11.0rc1-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.0rc1-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.0rc1-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.0rc1-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.0rc1-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.0rc1-cp311-cp311-macosx_11_0_arm64.whl (453.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.11.0rc1-cp311-cp311-macosx_10_9_x86_64.whl (465.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.11.0rc1-cp311-cp311-macosx_10_9_universal2.whl (705.1 kB view details)

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

aiohttp-3.11.0rc1-cp310-cp310-win_amd64.whl (439.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.11.0rc1-cp310-cp310-win32.whl (413.5 kB view details)

Uploaded CPython 3.10 Windows x86

aiohttp-3.11.0rc1-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.0rc1-cp310-cp310-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

aiohttp-3.11.0rc1-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.0rc1-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.0rc1-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.0rc1-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.0rc1-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.0rc1-cp310-cp310-macosx_11_0_arm64.whl (452.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.11.0rc1-cp310-cp310-macosx_10_9_x86_64.whl (465.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.11.0rc1-cp310-cp310-macosx_10_9_universal2.whl (704.8 kB view details)

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

aiohttp-3.11.0rc1-cp39-cp39-win_amd64.whl (439.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.11.0rc1-cp39-cp39-win32.whl (413.9 kB view details)

Uploaded CPython 3.9 Windows x86

aiohttp-3.11.0rc1-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.0rc1-cp39-cp39-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.11.0rc1-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.0rc1-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.0rc1-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.0rc1-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.0rc1-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.0rc1-cp39-cp39-macosx_11_0_arm64.whl (453.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.11.0rc1-cp39-cp39-macosx_10_9_x86_64.whl (465.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.11.0rc1-cp39-cp39-macosx_10_9_universal2.whl (705.8 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.0rc1.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.0rc1.tar.gz
Algorithm Hash digest
SHA256 f4a34ef49c3d7fb7dca32829d91cdeb2420b602fe04995752b0f4fc52b19809d
MD5 a66dcd553a45ca9fc7b6542678724cd5
BLAKE2b-256 f86cbf12774aa72fa9c6134fdb74ca112d410d5af0f94a7a5cf7c38826e0b8d5

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8e833e66c52f5797d554c186aa4a843a8bbf20cc23f5be9faf3516e9ebcfcc36
MD5 3c6962c78dba32638a793f4c413ee3d0
BLAKE2b-256 835f89ff7af23eb042f62f242b57fc8a6a5a5f845bd39a3e67e87fa20e460817

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0rc1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 407.4 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.0rc1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8596196921c54265515ee51763fd8b89491a44065a24a598f9af1d7355b23b77
MD5 6f86a75d8d5593bbf0700c02069e3969
BLAKE2b-256 754b4d1d236aef3be5f7917705194a4e968f46fc0f33f22bf413a19667bc26ac

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f817097d376eb16137c2ee8e68939bed76b4a81f5d6e89c7541f6f8db28958b
MD5 12a00086b863b12f10217636b7a342ac
BLAKE2b-256 fd70cae5447620a62c8e81cab9acbd2e7352e3e0e2e8e1ebea5fa414c96a6d67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 66cfff5bd4cb99e03404ca57b2321ad8e9519c0f8c89466849ddd90b62cbcc2e
MD5 011fa87fa021fa97531ab58be6430925
BLAKE2b-256 575f9f6ef6d4f55229ff4b39006c60bfe9de0c74472f5527610975793f307b9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 236bd9e52004ae7a1b9d69286ed4e14d51e070b2952a4f00d8ef9dd987688b98
MD5 ac0057dd4c99318a8b0626a2ab1258a3
BLAKE2b-256 d295eb5f53881e1ec91f18d8af0e286bbb4bc23880c5a23835a51d151c9bdd2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5f3092260f00f9926271e3178047e721bd9eca19b42755a625c6af998ad0e177
MD5 e3a4d956d832b2ab3b38f866ec6d07a1
BLAKE2b-256 3a36cdbf27eb8da9172c7d29755bf647d40b854a9628cd9a4830d0f7a1d568eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8bc6d9a97018240bf9d8fb5d48cd287b8ec956d42d66a2b2e3b043b5ab70117a
MD5 c577c0039d7c59f5e89386776104d63b
BLAKE2b-256 8a7d69f7c9938f0205b7a9f3403473cabdb4332d5c0d12a95eca49b54c08e850

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 140d9ebe9d1f75dc1a8ea1e7ed3a6e716a7a1267c3076d264e828f6f0dbf68db
MD5 7bb1611cb5db431cfafc9dfe9f131e6b
BLAKE2b-256 630167d6d1564b6a5399d3b0ac99cbbc746433605e99dde803b6161e4344e87b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 408d1614db8bf19123988d6210ed2e0b23c61eac5924ac69311426b0405b94fb
MD5 e713821edf51fc65f63878cc5e7879a5
BLAKE2b-256 0df181a95c3ca376a43e0418f4a4d3748988aef9acdd12200dbede764ce7fc73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 297180afe54b2e9301f084b347060d3051b538cf8ad78ab1e9e12a3925942f7b
MD5 3edb35e6c5ab0afd5e916813821d9a79
BLAKE2b-256 bac68fedf136abcc247b48c9e4a3027c7e245418508f1e3f6866322a09360f34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ddae136723942c383db252823a8ee6160d7846e44afa276e832351216447821
MD5 7e336f29e9464287ab93e429fb9e6532
BLAKE2b-256 f83d2583201679a70df61475bcf45ec09a245a5a9f577b76f7aca796f029bea0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fdc386c176744ce82591f78b4dbbd850e4656fddbb5fb07ad8d417166f22e26d
MD5 ea299ade56f0ec4a9f4d8bfada3af874
BLAKE2b-256 7c0242eb6108153ca0e2a404cc7fa1c08f5a08bba50d3887cb1efdceab307be9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 501369c743ed99b7bb05acf79c149938121fe32295024063414504e362cd9279
MD5 4b6dc0d24897665e209b6cbf4a81d858
BLAKE2b-256 58aaeaa30721826f0a8a48a014478085a62099201a25dbe0170d3d235a4b5260

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 718fb2b39b99525eefab87550e8f6fc2e09201caba023ddcf2073251c76a0667
MD5 2e221758f6f178c1331ab8d2c20a77b6
BLAKE2b-256 82975f3641187ceafaab133d802d933689196f8eec4c5ec59762461149d4da09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 6b474d903fdfd3e4cbcdb2b28ca618624040d976eab563f52da1f7821b43dcd5
MD5 4bced004eb8010164e19348db2b1013d
BLAKE2b-256 eef5b3e53e93cfbef36a355fe622c1a6970a23887e1548edb6ddbd7108cf03a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9b1e4fe672ed66f86e0b0aa44fdbc562752a70028364e4613fcee134cdfaa53d
MD5 f0be612e22e9fe42ae1c28d7c5986a0d
BLAKE2b-256 786a9ea1f5f4f500a7d7d95f3dbd2bf357955fde3ffbaa697f5d62e1c4eee260

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0rc1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 408.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.0rc1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 42f90883a3b9e757918339344daeb8c968a511ce2fbf86c878af9ffd5952bd52
MD5 3eddc07b6750b293df3557a5ca113b0e
BLAKE2b-256 750b11a6d66de6254acc1b13ab9451d7491c8a349894ec725b937385fef1ae1d

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f10caa39a96a3c3f3e3a556202dd143cee8f6e9f654026b8d50af649178546b
MD5 c511d6b03180e053b500ec1b715412ce
BLAKE2b-256 b8d55e40c9c13f2ca3f4bd8dff1eaa03b10f2278aa640827d9973741a84100ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 84324bcb696408810a0d906d1e4c1db303bf2801d14053d7b3aede3eeefc8cb5
MD5 ba46a927233bee872af20a2b9b23e9f6
BLAKE2b-256 233017f83dcc47d0bd3be25124014096daaf1e1463ef69919ca85c4f653309af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1fbbbda2f150ed68f0e009952ccaaa79f58db3a432d0d0fdd5a913695e501908
MD5 e4749c58418236d9851e042175d887b4
BLAKE2b-256 f7d8c709c1bd2979b128119dffc31c61423ea7f5a5a31f0a6bb1ac16ce96d7ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a050cba67940f213617fa95224fdb496a2c22fde441b7ce34d9b234ab27ab954
MD5 664e0f4195d0a9b0e39581d5b51f1ca5
BLAKE2b-256 b539e763140e3e783c344654e1bbfc610a80afc11d7c0433b3b997e4d7e73177

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3703ea31380d51f5d31784470f43809b785e45d5623f482419373346e5c30a4
MD5 d9c7eb1a2ee2e4ef462694be584e1a0a
BLAKE2b-256 756eacee0eb54ef9c1208d65b79f9584e77b61597c25a2d378e6cd65edde37cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65898b4032f372bdd6d218aa6252a21f17575f0e9e1205ed0bcf381739e04fb2
MD5 be112e6836f23f384e160038838f77d1
BLAKE2b-256 d724bd456507c61f55c556abd3493e3f3f7564ecfe999cccd9a59ddd7ebbfe2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7acace3a5bac29dc4ffce2d822c826c81d246e0598b50f85cd9626a81d38fe0e
MD5 3b05a16921acb5665f5ad161a3cb98c7
BLAKE2b-256 f7de710cb115bf38a1176b20b4c4aaf34adacea20345c920b140352966877dad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ff42c92821b08d50322c9c216da7c13e65d302f13b7ebab6c919438488879ee2
MD5 0453d2743d0b7f8d64d569f03164be55
BLAKE2b-256 2ab2216081ae6b9ee94b3082842bb6e6680de5d5b0c25dcf33bbaf65b198b6b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50e60f666f5c74d70192759c782a7345d6649024c16a10babac044a0e4747c9e
MD5 840f237304d51c024bc789c41e039d13
BLAKE2b-256 d9c15b9eff77b19d2c4b4f0948a1d8d4f80137bbc23db9c69dd1f01f2eebaef8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b97c6c6ff4aa9dea2162bbfadce01f715c4b72ca3a6584b76ae62bc560841628
MD5 b5a2927cd16fe463773559b9d6e2e8db
BLAKE2b-256 eb7281dc9f0d8e7a8e2f64410f7d0a72b24510e5fcd251fe22265c7f3706c1cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75e28627b546c06384d560f5fa0e2a179102f9fa7957a2ce886440ed4f7cc9d9
MD5 99b13ff614f4ec0ea8531cd53e09323f
BLAKE2b-256 2cbe078cb2a2f7d6c10b83b8ec6b992bac9d1fe91a1e6fd0fd33caff172a7f6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 33a8253ebe7afbdd9a14587db581b584997934f8cc2931ae55e1d4e72d9f8da5
MD5 c64e765457abe8141e5e490add98bd99
BLAKE2b-256 6a44535fd7cbb68c04a409b00ec86c22be95d41bb494473bdb6aa925f0d49933

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 d210677f6bdb71ec43e30b98945d465bcf8777f53f8b2c69855711fff0b2a7ae
MD5 b7c1dc240da2a7a0944ca98b5b6d1408
BLAKE2b-256 750a0231907d0917c3cd10d590b3663ff3e7512359f642ff482c2a30a18c8fa1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b3b4104bce79f752b02ee87ed4e22faf1380c9202ba434ce8c067821f35a4050
MD5 634fb90cb1e1c5b5ef98a2a85be7ce17
BLAKE2b-256 89af51daf5188a6de61ad9e866d6e421f746e1fa37b99091769bcabc7b7935ed

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0rc1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 413.4 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.0rc1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 74121cdb508a3343b49f11aa49db57d1242e1952289fe0515ab5278cf4b091cf
MD5 df07d2f77812bb6d95bfe7af071da463
BLAKE2b-256 c01137ebfae456f037a6abc9cfc3a74e488cfc203d129e02fcd4de977ac33687

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 435c8b710e4bb26c98a6f20fe76a2441de9491311cb8160e5f823ebc084de8c9
MD5 335865923d2b9f24ea340b20db8bb594
BLAKE2b-256 d2f1842c418707fc42ae16df4a816a5dc04b74293b6a94dc9c9b3d6ceaab66e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 706dca6847f03c9cacb86294bc2f3876134abea170e4e54b337545e545b3960e
MD5 e05a40669a151c3a7a711d7025330a41
BLAKE2b-256 ecb84dfc6e78f87968bd3143d86e287145649f31f51d1a2c05802012afae3327

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 290449185500feafd0718601c4b38062f981a64b9dbf178aa9719870c45338b4
MD5 3de8c94c96ddaf0aaf5c9a7f46ffdc79
BLAKE2b-256 2a24ee702afdde4b50c9d9c9c20ba299343f859796b7286a4a0a42e01e13081e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 39ddd5182fea76978e1175154ef545725d1b12c7e8813b0d4fb49b0cb9da0b18
MD5 48226b1054bdf0aea817c507f90e43a8
BLAKE2b-256 003eff83098a37e894d1675076fb51cb5201330554babadceca247b1044ae7b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0c92570f731bddb162d8a4e0528a59948f03962c783da0624446f8ca71db5f86
MD5 bcce2fc111e5627da6cdba6a223e4530
BLAKE2b-256 5bf65d1e6b08d9bda3095eec5550807315e6588082ed8d154a99d860bbc312e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 639537f2025d33b72497856fe081489d8476d92d3ed72c4a5e9f24809f226c45
MD5 7be95abf36cdd28df602dece9e0c2ea5
BLAKE2b-256 57a9ba48d7d803f903169a800c43d6c9771dce6697a45288da9c0589df32d7a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf7c412cbf39ea5277aa04bc4974308f7f4a286cf0467cc9ea020d5af9a2d529
MD5 933d59f6b8dfa68d602dec0bdb68534c
BLAKE2b-256 09960e0f924da92cbba130eebf2b00daeac4a8519375e8a9b11848df4b45a9d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2d543613528f169406b884043ba04dc2913c6737cc9e8f99c6a02b8cbb88a981
MD5 cb501d008c32083eccc128f218c87257
BLAKE2b-256 455455bfc82c50359c0cd0ab322c3ca9f31e675ab2abf0e9147c08ed5b6acfb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d15dc8f0d6e1de69913b200ed33c355b874b2d29aa4aec145d9f4db6c2b4a83
MD5 d1059071cb1feb9e484c6decfc949d8e
BLAKE2b-256 0bbb5100650129878703f38b90a5df0b287e70dcb1ef984526ac6cd6dd29d1d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 99ed42693115f65ad5b3dd08a4379126035e35375d97fc1e793f0e0bcbaea51e
MD5 fa4110f44178345eb30bf8834c342e53
BLAKE2b-256 354c48d56e9d68c348e8e153aa15b94ef552a3e4ac0a84b99e6ccaebe0cbdbf2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24fc1ba85a1ea722f66256523ce8bb4e6f27f441a576aec20add2da6cb8e6198
MD5 bc721e924d03c7a690386a8e1816d958
BLAKE2b-256 f4ce036e792edb11eb3afb220716dcc2c86f1df19d48b3dd372542c94a366eee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 098fab9b5b0461df5d96af630f9258f2052819cfef9515bcea6647d705641b42
MD5 f29286eedfcbd967b343349bd0de40c6
BLAKE2b-256 f0ada59733ab3a933f60df60a23c7095500a8af402daad19f980467f2c8a1125

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 aea2656eb5aad683a4d5949d0697a750fd257dc966775bfe598f1b7aad1384d7
MD5 833eec393bd1d2f39a59e6835328b912
BLAKE2b-256 41d5dac6dc47f98a8cf16089b9fac0d3269938e05eacdbdfe552251780585189

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b9b82b7289342c9577464413996c58a8ae1b1d43bee3a5ed8b385fc7b73cb6e3
MD5 f4b4db5dc20fa9c5659b19e91f1e8d60
BLAKE2b-256 bc5bcbca29b6970034b3d041e0fe0e0b1fd8860b42e4a19ab7a6bc4afc8c9873

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0rc1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 413.5 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.0rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 04ebb32194bfd5c541af21167e649567fce5b65ba1c62a6deef5c47deae77ecf
MD5 87eda7e285d68853adbd4bd7874ebb22
BLAKE2b-256 80b8bc55cd373168bb845012484f4bcd91927e1f6773c397166f9d85898ba731

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 897970934ea1489113bc29f3ae1ce35829f2fc77878d4a3c0ad77c10fa545dab
MD5 cb9dc1d79ad8a1ff0f2b173539807663
BLAKE2b-256 ad6d60576a541a75090f85105eeffc0f3ec0c986e62684278c8080dc8278189e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e6f360cbb6f7547fdc86f458c23022f37647c4c5a73a427b88779654c1d6c55a
MD5 0a0de2e619d22af06df9db2abebc146e
BLAKE2b-256 0e4ffd3fb048c8c551af3fea9ab1a1a91a9265f03295d07d121a0b3e0457f45d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f2e006780f955e4bdfa10cad6c55228c298bf7523db29596386b80ebd837956c
MD5 11632ded54d87e09e079abe86c5d4179
BLAKE2b-256 ff6e18b1afb10fd002217e662dbcbf96cb5a5686caa14770f41a691e8c8b06a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fa645a71d89b4e36bad8b9237bd6cacba3b6f3ee623d889e82bcd0bdfbabdca6
MD5 bcf747e789bd40d10efa067863432a01
BLAKE2b-256 2f6bb49ea161341223db3b36b75fda6c9bb1390205e0139866f99d5950e15589

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb062ff6e823ca9ce7e8c3518d0c1de713b5c58e077a4feeb641d2f46e92730f
MD5 c30e0766fd349327375595298b2c8b09
BLAKE2b-256 f5b6230a163e853b3ce4d721dae28a35095cef32f268b36f9696d36c1eb1501c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2d110ac4a16b1ea65d7ab05e269be89e1211eee6e574ceca80774b5368305b5
MD5 abe3f9b0c872fbf532724e6d97d377ab
BLAKE2b-256 d182bd9751ebc81bb2ab33b27f144600b325f9b792e38952b8f1cd13e3fd28ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5446ffa88243cad35ab036e946f2dee772804625787153e5f81ed4b1b6af088d
MD5 c2fde2bdc717f6258b7c6cfd01a631b1
BLAKE2b-256 19d8ae219122c588f757cec31ad3640b83e1759c6aeb0d33ba3e70e5d1263287

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 35a5f4000e2a015db98add598fb0f70e5b67f3799fd028d5763018f32c1f5c0a
MD5 a8ac58887cda1d7a1ba0a9b6055aae4e
BLAKE2b-256 a2a7e3159d5e23e8873587a0ba9a8016c8219d487593db33215873c2449edf0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24d404da3f00889aa451ee068cbd5b0de5947f0e3c94e73b89ba6a0a930d5e77
MD5 3adeffeb172340f7ab75246c0572ae09
BLAKE2b-256 033399a47cc8b964d901e5a77c283a0e7e7e1f2832a3c93f1233233c0bf30f6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 13fd41814a60f60584246f9b3377db88b6dc4deb61f3ef10b3397e018bc67280
MD5 316f4773142aac8baf2123c120f30d82
BLAKE2b-256 e1b5a2000f257e9a4df1ef7d3b536523a7eb5ab9580d0f8f1b0ccdf42d6ef8ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ee92fdb1d66d5de154847a82a817ee2b79b7f323d09318f5ce0ac40be20667f
MD5 4c05dc9e4c9c78ad0b20a6454582aeaf
BLAKE2b-256 f419da79975f1bed93a971f051958d010209ad5bcccc56ee7eaf8045dc94e163

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e94712244734619c8069511d9e446414f561f7a7a993a3d9621c98f6c5518e37
MD5 8807b577a66ee62cdd00ecb3466e463f
BLAKE2b-256 f9e016397f45fdc83f12d37d1880f8b8d776b74c376c043ad99712799f0ea21c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a642a19b1be411daff1817a4d783620fbac73da97827767eacca1d452311948b
MD5 406674e1a0cde33fd82fbec61886c5ff
BLAKE2b-256 bbba749884a078b0386178e53afd6de00834f3ceb63b07fffccae2e4f678cd03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7dff65f42dc71b5284ac35e039455cf1f6886361805b4e545bb6efb627142915
MD5 4eb0e4378cd3efc7c7d25b5b5840d1b5
BLAKE2b-256 aa1de02ebdbce9f02656f0a9e3cd51d6b736b24ac72a50ce05c359f1359839bc

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0rc1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 413.9 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.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8fe7866e52aa0dcf45bcb065230ad414f68df443f1d1aa72d1c7c5b35206a1c4
MD5 fef48aa577ab55373dcf37e9fb89bab2
BLAKE2b-256 d3dcf836b02729177d3e88c5f500a6bb2a4337b1db5ac08f8be1a01f8d944822

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 156d856b395250a9796f8a961233d0c51e073db1b5261bd7c44781c1ed82d740
MD5 39427d8d224460b76fbbfd73d98293a0
BLAKE2b-256 81c8b9d18b9a8c21c1dd119e4e29bc8638b893f9349492802093585015fba4c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d161925049d9f6146338b7ce79e9cd44fd2ca2c2e92a688162821db1e651fb2e
MD5 cb5e2601ab65c67d06612c5f4fd2f001
BLAKE2b-256 2707f51d70709a7e13dac7cf18989a9810093952ab689765432c59c96350f954

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d9c2e41357d2804aa1fb88866565ceedde2769393aecd1340ef094c4efad07ff
MD5 d52682c534df62a3f70a8d9b1e7e54ea
BLAKE2b-256 b4ed689ca8692222b1460f613a4742d47172fc2c842b8a6dbe6164dc3dfa3d73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4b05e4cd488d872f1e028403b1fc67c131377a8efeadd5bccc49505c7f7e5f31
MD5 ce2fa1bc54f67657fead4c58347f4584
BLAKE2b-256 1cccbf0f2a8fc4d2214dc9f8724b7e371341e8f903462e04db66028ec96e127c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d620ba125b9a9f74916ed1dc3db47814d4f4e7b3094fe328057ee3fc0b62a56
MD5 687a9b85dd69c6ebd622e02484696be9
BLAKE2b-256 a02a9285b460c0b2d44610a8338e447e1e33ba81edcc85f0a8cfc2cb7b084308

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de6ab9ee265ef97300244c1bf2fd5bf3cdf7bcdf6ff8940f09897bac4977a215
MD5 130df3bd787d7251388c4cc2e4258c69
BLAKE2b-256 5cf328eaaf0cf7f831b90ae434f66e68ae45c71ae845849265552a91e4a1f821

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eea0fca00b87d5dd953432fb48bb9b779f184d25a1915ad8a70efc57c7fed7ab
MD5 5c14753ae9358cd7421fa21109a3b72e
BLAKE2b-256 2d409937928d432c855a93eb99a1c9629d1eb07083290c3f6246b85b13db7d6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b372a847546fe361a110336bf286a398838a9ab54176882ec4048da72cb48d7f
MD5 6a9e14068fe159d42a986bebb60e4e96
BLAKE2b-256 9582d8146817f4c7bb6754a9606b86c843edca00b592deb5474e95469d37e620

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be1effc6287493c5828bdd3fc3d557fd2c82b752b729d7d97c7690db2edc683a
MD5 dc557031c6f4809a8a9fd1446fe7b3db
BLAKE2b-256 6a1a0fad638e0b5a72219a737647ce8195b9f829f528ee0044a8793b0e5903af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 90153a195fe09eb6fe0f109c5007c5991eac9d07ce9dc3825a3ddbeac1c881b5
MD5 71eb1c1eca7b2b37b648589500cf0423
BLAKE2b-256 89db4923d11b5439335d61dd1a96361f1390e9191d1d84c9a47eaac33a0522bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c177096eec9c398fe17bda95d4d31e82aa76906f7a3ef188628a26189054f8d5
MD5 1887cab7acfa47178f22dbd57d38416e
BLAKE2b-256 e2d5d0e10a9386b1dd0905ed42ffc901f8ab6425360ec46921c2f48e95a57d02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2cbb5cf6b4ebca3c761292d7738a773f14bcf763481083db46469c941a36bdfa
MD5 8eccf5ee1c0d8a2f3ad76b53dd0e3bc6
BLAKE2b-256 57d7e3ded1721f7767ab4485f465f8cb2db69daea36cc4c0c0e5788c95210487

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0rc1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b3c113618bfc6bc821fe19ec61da1d23aedae7288683e44ab0b8ac26ae470535
MD5 435375e91c0ebb0f205e7ef83bc3c000
BLAKE2b-256 9afb60a4cb2c49929ef108460d8ce0991e617f22aa1b50002bf3eadcfbc3aa11

See more details on using hashes here.

Provenance

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