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

Uploaded Source

Built Distributions

aiohttp-3.11.0b1-cp313-cp313-win_amd64.whl (410.8 kB view details)

Uploaded CPython 3.13 Windows x86-64

aiohttp-3.11.0b1-cp313-cp313-win32.whl (388.3 kB view details)

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13 macOS 11.0+ ARM64

aiohttp-3.11.0b1-cp313-cp313-macosx_10_13_x86_64.whl (431.6 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

aiohttp-3.11.0b1-cp313-cp313-macosx_10_13_universal2.whl (647.0 kB view details)

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

aiohttp-3.11.0b1-cp312-cp312-win_amd64.whl (412.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.11.0b1-cp312-cp312-win32.whl (389.6 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.11.0b1-cp312-cp312-macosx_10_13_x86_64.whl (435.1 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

aiohttp-3.11.0b1-cp312-cp312-macosx_10_13_universal2.whl (653.7 kB view details)

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

aiohttp-3.11.0b1-cp311-cp311-win_amd64.whl (416.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.11.0b1-cp311-cp311-win32.whl (394.3 kB view details)

Uploaded CPython 3.11 Windows x86

aiohttp-3.11.0b1-cp311-cp311-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.11.0b1-cp311-cp311-macosx_10_9_x86_64.whl (439.5 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.11.0b1-cp311-cp311-macosx_10_9_universal2.whl (657.4 kB view details)

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

aiohttp-3.11.0b1-cp310-cp310-win_amd64.whl (415.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.11.0b1-cp310-cp310-win32.whl (394.5 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.11.0b1-cp310-cp310-macosx_10_9_x86_64.whl (439.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.11.0b1-cp310-cp310-macosx_10_9_universal2.whl (657.4 kB view details)

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

aiohttp-3.11.0b1-cp39-cp39-win_amd64.whl (416.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.11.0b1-cp39-cp39-win32.whl (395.2 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.11.0b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.11.0b1-cp39-cp39-macosx_10_9_x86_64.whl (440.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.11.0b1-cp39-cp39-macosx_10_9_universal2.whl (659.4 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.0b1.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.0b1.tar.gz
Algorithm Hash digest
SHA256 c46a46bb42bf4ceb48e9d6775a646a2bc7695c8e59cde5c00890d1515f8fe204
MD5 9f5ab8d39d55cc204e5b29b2af2005e0
BLAKE2b-256 9052f1491e46f9a5423da522522f2258780195b7a0106c4db09eeb87bddd9671

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 48cf1d79bdbc20b3d958d059ff150149bb9c7131efe7af82928bd9807d3e0ac4
MD5 a0dff4e050ba41ec0039c80db6aca02e
BLAKE2b-256 ed387cb6659c65f201dc2386b79a52a7c495ea21255ef4f36dd4ac1fa05d12e9

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0b1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 388.3 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.0b1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 da7324833ac0e2644f36ac4643bdde48c29876244076baf50199ed59a5062cb7
MD5 5c75ee45102fb48aefb4223572474c08
BLAKE2b-256 966404ce83b5ac4b3cecf6e2889768afbf5852ea7a296235c3ad6bc40c40feb4

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50df438c4e407078a7e12ac01f205e7926ad4b5d72ccdd45fca916b19e681753
MD5 014a06b091b84b41480cb7dc38244618
BLAKE2b-256 023c8de2e3a97d955958526e532ff6a22969aef1b64a57a00264fa0cb57ef025

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e267e8ea4c5ebead141c1a5c6e1fa61d4c1677d9d901a9fd418252406291e4f4
MD5 e7a47f8bd4b1a552878ab04a4da086e5
BLAKE2b-256 943ef8942878a05dc427b956b59037a623b611c2755b1729b7cc972241aedf66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2484900d91925d433d7298cc0e654aa032106ef3ead3fed872c49c29f6c9dd78
MD5 281de3328ae890deab5997e3248dd0cb
BLAKE2b-256 1cce6a26b7d3ad5b9d64cd76b555a0f8747af0af9f8fc9f2c72a546a849fe073

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0aaba16e804b08b112830be2d968687548b2a4864048012c88ab09b819b34c9b
MD5 b1abfa80e33f39a2a36a5662893a1f17
BLAKE2b-256 1ef948d2c500200bb590d7cf72435870bfed6a59944ecc9544cf0dd81fd66517

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7db6184f1bb28190aa4a6fe9c53cfe0cdfe82bb313dc8b42be59468bcedb1304
MD5 f4775e7db783915a3087fc8268ebb862
BLAKE2b-256 27f46f936b3276b6b8d70a4aa099159d57ce486fb4bdb0896681d6f38c4819db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 508253afa4d31b5026d55908599cb64da978f204a607b72ff0191eb902ee1a9e
MD5 f8a3d0b335e166e550aef3acbd914c24
BLAKE2b-256 50768a7c15c8f27c81bcc0fea96c36765656b422e6ad4231860a1f86cd3b01ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5f0af8a28d37aaa342d6105d6b9ed4d7a87a5b60a5c37744429f5256b842ccd2
MD5 a41a6b6f91399a93b5e4dfdb3b80ef74
BLAKE2b-256 84e5269d9a352224742dd324153f1bbac91b41b8d0dc342a38aea136587aca57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9305cb692bb5825cc4091b0123b226594c1ee62f55a732b24881af1fca5740da
MD5 f53da9412be5d58a09a58defd41d4ff8
BLAKE2b-256 de1c2813a6e06475a02923b0cddbaf6886ca599169dd64c292377c65d2dc3997

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f15045254b07b9588ce36d46546db4e661e21a293be56c35016f78891e262d4b
MD5 0f846e4e8d85eeb24d18d80d3f4c56f1
BLAKE2b-256 c5c249fb49b7ddaee160cf3627811f1e49c29afbc80b2e92b21d5c02a4d5d1f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a348a62e692a1dfbe84e3c58d43a0a405b1239fe865a912eeddae4440765fede
MD5 daf9d493aa2b9b1578d60b7323cf62ce
BLAKE2b-256 3ba05ae4e8d78196aa9a33abca51a8330255e86ed942767d4e16cf73c597ead7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92347e74d09cafd4418ca634f44b4da8d8aebfd47f9973259d519d92b4ffdb87
MD5 a6f424cf7aa83033b57beafd8a49ff39
BLAKE2b-256 39bc53f5f576e19beb3db0ee0914189fa1e34e9698411fb48dadf120a61872e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 72401366b2539aaa973e7188399c18a0821132f783d9476cf60945075b83b294
MD5 59f327fb104bbb10963dfc295442e089
BLAKE2b-256 228bb1093655678c17f7859c1a3a60f7e23e220baf9ecbfa21b585379f16b38f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9b7a7b2f777a148cc101e369e7695abbd05d2f62e2e063e3669a4e15edf59d69
MD5 ee89ab948082a905ec3707ce484f8fd7
BLAKE2b-256 4009a6603fec8f1e35455d90a86ac73d32b4d7ada7f5e023f6a0f43f92e7795e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7970c44e716d379081bf6c1c02c3fb7886ed61ecdde5b2197004f4ab959283b1
MD5 dfd632fc7138c08b77e1a7016881c5ed
BLAKE2b-256 df792b7134bc16c0b3c38ed262489fd2969d96e292f6984bfbdab0c4348b742a

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0b1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 389.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.0b1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 721c8eddcfc4af37dd05d3b809d3e2315aa2b452b375c537f7246ab2417f73a2
MD5 decae796afbd0bc915a497cacd723b40
BLAKE2b-256 d483325656573f19202ea85cfbe7eb7a98a2afa8183be57122eb0873cefebcf8

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff3de820062c31045493029f4068cc29d4933d670c7016bf072e44d23dce5221
MD5 9c792347d213d71629dee9d11ace93a0
BLAKE2b-256 529711d1f342d1940bd43bf571ff499aae40f87ce852ee8ec6b6fbbd61c3f779

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 452d63c605244cdbb3262587116970087c32492cf38e389d7d665eca276ec0d9
MD5 0d3fac2818f0b5aa045346ad79d75600
BLAKE2b-256 19997109194bbdbeb820e8cfd2c19bec3cde54eda3c83317bf66a078ea88a990

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 50bce5e04baa7e7eb885db2ceafb7b7da81f316d182b6f33beb95d7ab19e0a30
MD5 efac807ec9b9d6f06e8188437dff4d58
BLAKE2b-256 9748fdb048a52fedb16b30e4986b9e2d8ee04baa7d492ded77a44e6c1d3576e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 567e282093663db01df08f4159fff7331a00953c91a7ed5adaf037907eaccb51
MD5 4037ba2a5040c147db699e5ff87b7710
BLAKE2b-256 045e43d82cb6995ca72dae78c65e2dd70fba62858d7e98be1e4c67bf8babf6f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df54e79c143142451ec493e044312bf2f5c9388d9d91733d5e897c2550cb7715
MD5 37de73512b33ee03c39908728a9afc8e
BLAKE2b-256 d2ac315fd32a37f1a001c1378a91a85dd2e9b7ce43db3036e85e040f39392204

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42460561ab5d9752baea14b50e918769295af9350e00d76440091aac92563baa
MD5 67ed931e09c395b7618b4e10f8fa868d
BLAKE2b-256 f9c2c01e3e588c211f3e35475c1527a970994cdb4bfa78c21f54e5a884dfaa61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e7abdf79f3568d6e2727a14e945b0d33b9f2c6e56c955172ac061129af21f737
MD5 593ec3e6ea6d676ca52585bebf6b2ff7
BLAKE2b-256 a3bb933aa8034dc0b08732707aa49ebc385d512ddec303c560ef10892061083b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 57a136ae8a0e0ea3e4a3e903a055864f161663203afa7fbdb87fdecc8d3c0202
MD5 59207aba4d0c261fc99b5775df9be0d1
BLAKE2b-256 25b553226059b240d07e627cd68623f3cc95541b5779fec6b13353d292370dc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c7d8284f93f8b1d0391397cd79baa6cf490922c094e45d3a3b853196b86a610
MD5 29eeea9cdaa4edbc7ea89098b2a41cc8
BLAKE2b-256 68b7d674437d8e54bac977a72f43ae0c62a2eae1bddf4c7b0e66d8d3071277eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ecb634514d60842c43f9505818c2a0c25b865987e1e2e55d67f9cd2bd6d84d05
MD5 4d33f1a0e27dbea9bcdef3d396832887
BLAKE2b-256 aa7edabe2fcf7b28883d22272010f4be7ce0029698587b8160ce8b397210eeeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dae274229ee9b7013413e3cc557a83705d03a69aac395b4aa3691aa61dc468a6
MD5 efffc011774532e473caecfa0f93aaeb
BLAKE2b-256 07273d54c9c34ef16893ae67bf363e6039d687875da6fe2cd3b3a1206e40dfd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b6b30987488f5cad9bf43890021e39f210634e4ba3aa07d26c1e3caf32cdfe41
MD5 c3b4b117e114ded680422ed13554a29e
BLAKE2b-256 d95030ff5ffcb4b0dbf4359ff67bddbd212501e82741e1a8f9d376971d94ded3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e8c877d7bda1fd3c5844d8ec734b361726ea080dc108c6dfdf9b2049bad532c1
MD5 5ba3dcfaae840f07af537fc96cce0fcd
BLAKE2b-256 102360dafdc608e128025b7f198165af6dc45b9cbdc39a04a0834e400520a84c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 091f252b0eac9565a4ebb83b6f63a5cedfcb3f05275dfa9449da2906f9896a9c
MD5 7aa632af0e4a7c7c9ea23c976c97218b
BLAKE2b-256 73d1c8c4566ca29c908c89b9b586cd7686c73132e22a93663ec563ef2c8ec99d

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0b1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 394.3 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.0b1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 95c122da075c98fc3c7668e51f517b0b4c5438155ba6053c2f29cef7e99e735c
MD5 df4ede17fb01ff51472b0657f7342d6e
BLAKE2b-256 91374c6547aa9559647df4209fb4631921820c7e4a5f76702be6aeafb5287bae

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d7b42627cbc81d51ca0665abab82585c5fa03e3f9beb4c6c81936a525d3becd
MD5 3e5a9fbf1b542c967b75429c33a73118
BLAKE2b-256 b145dff9334f65707c3cd8268f22e3ccb1d8f6463a75ed80e280f10e884cbff8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b88eaca79103f06d79ef0e6f75da271408ac87b1acada78d12131325262f5c4b
MD5 2b3f68ab79c9de5d8eb04786abe60d51
BLAKE2b-256 4f43ea3c9b288dc99890d622fe8303799201a1151a9f1448aff88b7b144ad879

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4140988a89f9808cc565e2ad8b1f3198dd9d388b0d8b159d9070d44252059ab4
MD5 5ad45dbad1135bd8fe1e955140b44a60
BLAKE2b-256 92e7ee2f3d360d4f9bdb5647f564ea11f93ab2c862bdaaa52a2d801a32fc565b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bcb46243010f0fad50b7d414b721e106e90e3b46defbb22a2ef008246afe3945
MD5 f53a30d22b5ac8743d4b80e3fc82dbea
BLAKE2b-256 32c7347f288cc81d52ca294f4c97d8ef89db42b62573b82aeaba8741ae1090ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74d962493a30df3b1303f8319e576b50bb2e180f08455823d878fb2cce6bb85d
MD5 36dd27d64a23bfe579efd798564e2bdd
BLAKE2b-256 02a0eca8597b1b707e86dda3a39bd18897590bab843c73fcf419fd6128311a13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7caa50fe44f805a98c213061b3bed2188f7d224502c256026888307cb1e25df7
MD5 db5835f63429b6d8eeb2b15f653e8cad
BLAKE2b-256 93546e30591739d4e1ef3748bc2a60bc0071c1a1002f11adc6ee1f2a82b6e038

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 69fe348075d32ef0bae802ac555fab9ceb9c1c6acced883d2eb60d35f7333c09
MD5 cd15724f9835119327c7a28aa42ae1bf
BLAKE2b-256 a25f907a0537f640dccf03b6b43822ec6092c0d246526044a2dc5c9746acdaff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 28da16032497405825507bae8f2f235b0d9685df92c805f94019856907fa8f17
MD5 a792d9227e47b7cc2d2150eb0b772e8f
BLAKE2b-256 1c55ab57c1d7557fd8f24571aa1d261ec4142efc6df68f0fdfd53b9b7818b4c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7abdeb2d4f04143508e117ac3f5c9abb01f0050026ef26b7295e078ea1ee07d
MD5 06da1f06c3bf9cae6fb8b86914d36e0b
BLAKE2b-256 3bc58f573b0f338cabbddb90f7bd595b65c07e707997ab46fe5677221a17860b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ded5af69c607c64abcdf5647d988e8930d1c98fb10b59fcc0b3fc938f1f8c553
MD5 e7943a65dbc2f45089868dbf4a515d48
BLAKE2b-256 0d9bf2b760210f1efa56d87973019906b2fa518f39c8752022780863411f4848

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bcfdad2c5364536eb7feb90812c8ba5b57fc9d79ac01ccb1351a5db1114db41e
MD5 edd8e9651c33dccb44724b3ce97848e5
BLAKE2b-256 c3a212282bd4f11245052251e78fd35ce3664512884bdeed49a84349ee54e7ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a730fbde8c4e98a08fe3513cc8dd91e6ff39e2fb1e1ad9a41759b0145d213af0
MD5 b9065a207a46a819341f8c93c0ba0b81
BLAKE2b-256 898cde32f35e987f82a9418405eb10f6a3ed78546a75be01570a30b7eff58eb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 faf2a98b96b75f839dfba8e21340414346db8b175eb74638bbae9d2688beb0f0
MD5 1f0142ed640b945c044b16dacc61535f
BLAKE2b-256 0afca32a392a59bcebae90b484af981610b1d9738874c1294419bc1fc001c93a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 983a058f10ec871fd5a2deb40beeb1091a30628572ae4878d01c8749e9a142ac
MD5 640062825bc2c16db8a893d76f0ce019
BLAKE2b-256 b6ae6054034963af95896fcc61f647ff34e3071bdf43f9f46eacb5ceef7f0068

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0b1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 394.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.0b1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8fac4e1706e58101b54c308e4460beccde61c67bbe35539cb2696d6595008b74
MD5 aeb58fe04fc847c9e2937fe37eddc295
BLAKE2b-256 bbe50e1ee046cd241568cb8ed28b03740d63c5cb7d6d151bab9f74cef98e846e

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11342f2027134abc1db8bd9db4e73f5271a922378fcf89f2b1333bf593fb8bd4
MD5 7d0da214d8ea179b894a284d875ca7f1
BLAKE2b-256 ecc199084e4c7a6bdd619b76270524ee85e296ebf24d2ad27f47c482c6e4dda4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1a80e6902c76dcddf58050cdb372543da70165b05705f3386fa126da2051dd12
MD5 951be700bf57d064433d3e911a2f1297
BLAKE2b-256 a1add4f8ff69b7c5b7c8be145d55dd9ea8824df0961922b30134d0251fd1a2e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9dfbdf66a62a734726538bd84c1858f3260789f6785ad477de0c11e3868531fa
MD5 bde0c0ffd88d557c2d28e815a65582bc
BLAKE2b-256 6342a935cabcf35f47a78236991c572dd774ed6576b138d6f7914113c0d934cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7772adff5994161aff9cc616db2563d68d589cb8308acb5affc23978608b2e54
MD5 e4bb943e5ce1dce47729458db4e8998a
BLAKE2b-256 ed2af0c1d82c6c205d8f0e53653c1a91699aee139b3890b3909984bceff7c2e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 717f8131bd740782fa7c94504eea2a95c04dedf6810e4b84e94c71a2084c6c10
MD5 e63125a1ca2ecae40c6d5b4bd6426319
BLAKE2b-256 660fb98714c952b15353095fe80aa3e2e105d8f2a62a83a052967d714dc4a17f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 459ee24dfed0443097851d39874e2221e2c01cf62755b4574be3fc8e99406987
MD5 20bb46385d2662d9f6d9473553d7f2ee
BLAKE2b-256 6317d2bf4448df95e4ab866d6ecb452407255c5b7121ebc27d04ebcaecf135fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c26677cf805515c4b0c7b0fa8a9a566175b824b8b3ee0f70c74430e44834f9df
MD5 1a01ed009908941545f9942e8338aaf9
BLAKE2b-256 9ef2ce73bbd0cf4acb718d17a9c9db29e17382a68712a889f29cc55bb37e2888

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 26d6812e836bb449e4390ef6c16a3f4188ddebc7ab959ca8696de2f7385c44cf
MD5 447bb432ce56dc2be04bb89552b7bd30
BLAKE2b-256 4798bd65b79daf458c82ad379a893d92702ec700b6dff16570c7a30a3ee6b263

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d180f2a4b44d32838974e3d878c31c8999a670375c864e7e8f95afb6e530e15
MD5 ad6375d6f7384365e9bcd14632a24218
BLAKE2b-256 92e14a8e4354c06f2126c9c5cea56d13ddc4c03ccfb566ff667bd942def7651d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1f40effcf38e1d9b857508b8f54bf892d1d6aa1fa6c6490a7cdfaf894fa7f368
MD5 e12e9f4c5105f0b11edab94ecc0b72d8
BLAKE2b-256 04c9601fda984e37d66d89def6aaf76cec0e1e49345d4e48e7f0e3335cc42852

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07e393716808a4f2f514781a8929cac98f5ff7445e38b810d1c7dd23f607fb44
MD5 402d32549833d50eb08b6a6899b58fc5
BLAKE2b-256 2930035a7a4f757c1e4708c5aa53ea4d40a80890ea93ccbb5db416a5b00de5f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7e101b9788551133f07a3f2b9e37ae7b3db4f874a667e352dbbb4c533d5bebd4
MD5 663950210d73228d257bf23100914cd6
BLAKE2b-256 3371109a568abfe80e89ddc74ca3a288ea18e2dc4fa4b396c7bc1359efe32553

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ccd695ff6b2e7bb1e3502ed0d5d46a6f4f30c9fdf6caa53becd0702b15f00471
MD5 afb29046331ea67c3e02822412400742
BLAKE2b-256 554bc40f22fde0cbfe4cf572fb3c4dcc7fa74c720c4bd0cf13a9518093f685ff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.0b1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 416.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.11.0b1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a76453d1d719d06dc2280a53cd3a67578f1ae6773a109cc6bec08f5493e29670
MD5 8f002e5ed7a0aea51166c68500ff3ffa
BLAKE2b-256 b7d6b0359a685da3e66677c5818fa6dd42682d1f759a5d0b443bad7f5be19062

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.0b1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2d0074c6962a47fd5b48c30c2092052c260e78406e48feaa597e1ecdb49c57b3
MD5 ab2dda8d7faf092b97fed532ce215983
BLAKE2b-256 d93592b37c6baf146b2d10c0dac418ca884986f2971abc9a53097031c62c032c

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9257c6d9de6f4e9a15b323283759902e2e9128463f08999729f319522282e75a
MD5 9fcf255645e9bf3cdcad8495b023b4a7
BLAKE2b-256 7e4a4978caf9bf6114e56e3a5ff951e6c359973d119e054fcaf398829ca98159

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ea211ae674fc51d5dac0cd7b50d1fcf609d523701fd10e2f588c65c0a00ae038
MD5 d95699d4d010fd8a08be39c98d40bb2c
BLAKE2b-256 9fbfb0f5d163ff5ea1b3d246061148ef75f92c19893769a243ff232961d36b9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 38d69eb853df6a512235876cc128d883b4944e0330b613b642c5f27032d90e44
MD5 59417be80afca6c596d0dcbd871b4280
BLAKE2b-256 76ea9d228953bd6602adb5d03bef61c778a16c1eb269b305e0801fb76848b856

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 613716f74c869b73a4232daefbc8a58f489d23c90648d7185a1ec10cde56093f
MD5 f5f4446b505700284fb5ffb955efc6d6
BLAKE2b-256 99887bb84d926e02808b7c946e68218cab5c6b004b5661af4cf8c01067221b4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd667dcc918cffffe6db80138545f56e0a295a95bad3cb1a8819d12ab3dcd249
MD5 2828952cbb8c316f3a3aad45a605b198
BLAKE2b-256 bcf38cb7ec252ec7b8f2d3e28b7babff4a763957d6524be9e961c2bbb92ba780

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9bb6de54d0522ef4c42f199b471fe3db0dc2a2ab6f62ae92f891933baa2048f
MD5 e21b3867a5aaed17e6995068ea27d57e
BLAKE2b-256 9388fd8117a97376445f362284acb6f76f7b89a7f7263d4374cf8bd99281bd0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 961f8ad34ca15b4c7d7c7c0e3a6087712870093893c86453bf8ebdfa7b23419a
MD5 ac3777262aca99e01fd113199adb9469
BLAKE2b-256 6cbb6f442a4d1c2f354c68d271c94413906c80e9ca13074e52045b25a31caf61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 41d07810df5bd5b83f13eba52f9c87c07fd7df6cce3c6cbb80f6e3491664d007
MD5 ff96d7be1cd8bc067785e27be71cd58b
BLAKE2b-256 dd491318c0107cb26d4dcf1c67a1e64bf04bc4c21cb32caff19c76d8709f3940

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0563fd91aeeab9b07edb237f3d775c2d4578f3f5027b60f75cc5bc02fe74b545
MD5 0e3e83dfc3fd61b04122a84e8808d3fd
BLAKE2b-256 1bf4d8156c3cf5f751621d18411658cd95ed1aae54c85b4c572a9f9ae3aac593

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0fb3c1356c4795c2edd0ffa5b53640d9425f7bdc141151361c254e2958ca8e88
MD5 b15fa49b068051caaac9cdd7f24d3e9b
BLAKE2b-256 9f4a8518bd7b46aeecf9df57fc1348d6106914599d822c02fde8793fff1a7eb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed4524f13a951ab0361822d89cb4db13879f0c898d84976bd624e7bacfeee039
MD5 3a1a4a3b92f1b17d816ab1aa9c105439
BLAKE2b-256 03a1c8705acea4168c6bd3655a0e77264e49324e9fcf64c072e2a88c6152493b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 048f14259b152e40b61fc3dd9892b783251625908475126e2660761e309abd92
MD5 43c3c4e210091b4363409c6f52899030
BLAKE2b-256 a1dc8ff4e67b82139ef9d089d272b2fd4847c57d2f9a1358fcf62f8cb86135c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 662bde3143e0e49d28cb583ba01deb8700439d56d5e906072c9706b0738842b8
MD5 819bb362573a7099ef26997e76b6138b
BLAKE2b-256 ad7184a7f79e1701b17d406d51dab5cd95d184c90d979c5e7b074c99ebc0b48c

See more details on using hashes here.

Provenance

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