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

Uploaded Source

Built Distributions

aiohttp-3.11.0b4-cp313-cp313-win_amd64.whl (412.1 kB view details)

Uploaded CPython 3.13 Windows x86-64

aiohttp-3.11.0b4-cp313-cp313-win32.whl (389.5 kB view details)

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13 macOS 11.0+ ARM64

aiohttp-3.11.0b4-cp313-cp313-macosx_10_13_x86_64.whl (432.5 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

aiohttp-3.11.0b4-cp313-cp313-macosx_10_13_universal2.whl (648.0 kB view details)

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

aiohttp-3.11.0b4-cp312-cp312-win_amd64.whl (413.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.11.0b4-cp312-cp312-win32.whl (390.9 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.11.0b4-cp312-cp312-macosx_10_13_x86_64.whl (435.9 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

aiohttp-3.11.0b4-cp312-cp312-macosx_10_13_universal2.whl (654.7 kB view details)

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

aiohttp-3.11.0b4-cp311-cp311-win_amd64.whl (417.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.11.0b4-cp311-cp311-win32.whl (395.4 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.11.0b4-cp311-cp311-macosx_10_9_x86_64.whl (440.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.11.0b4-cp311-cp311-macosx_10_9_universal2.whl (658.5 kB view details)

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

aiohttp-3.11.0b4-cp310-cp310-win_amd64.whl (416.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.11.0b4-cp310-cp310-win32.whl (395.6 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.11.0b4-cp310-cp310-macosx_10_9_x86_64.whl (440.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.11.0b4-cp310-cp310-macosx_10_9_universal2.whl (658.9 kB view details)

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

aiohttp-3.11.0b4-cp39-cp39-win_amd64.whl (417.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.11.0b4-cp39-cp39-win32.whl (396.3 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.11.0b4-cp39-cp39-macosx_10_9_x86_64.whl (441.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.11.0b4-cp39-cp39-macosx_10_9_universal2.whl (660.7 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.0b4.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.0b4.tar.gz
Algorithm Hash digest
SHA256 98daea0490ab5ca69eb436953d20634def9cbf5c3d1c67a7faca465850ce4060
MD5 e1a3aadf9fcf6ff4aa13dc480234c81f
BLAKE2b-256 d2604d75716d015d32847dd2a52728f2865d07bae14379c84b8d66b573b14760

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 df3363d84f0912029ed8593ef2536fa370a857d96dae0eb47ce3e2105fb51637
MD5 6adef052ff691c2ec523bff57c4565ae
BLAKE2b-256 9e4d178c3b3c3b50e91ea93804fcae03dee5a4d856a79971910261e4044b092b

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0b4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 389.5 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.0b4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 11711785ec4052407fc82bf91ff2655babb369ddbd7655c4eb671611630aa921
MD5 555a54c690d3969092f258f3444acc1e
BLAKE2b-256 26605005a9bcd53f5e0d77dfe94e338cc89afe48635d2e767a42fba9862ceb60

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 752a5fba9087be30fca196ed16ccc23190f100d637c758d19728a5fbf9de9dd0
MD5 8fd95618d2a1b1d5acb5d301a7d68327
BLAKE2b-256 fe4968c6e96890555dfbc206f3871547ee90c5481f301c0f40b0971a8a40fdb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1adc09376139e00ee78cfb7a17f9c86ab321bf8fd62c12c8997c6a2976cdfa78
MD5 d597b5dacab565c42ecf4293b546f7a4
BLAKE2b-256 e78ba4f8de2ed00fa14baa340e2513665bc81040419afe2b3396425088550174

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1c929e9ed1cdcd3415a77ce9ab88112dafe1783ccbc0f48d05f1d6c6a5c34112
MD5 580be40fc6e1c6f8e6da95a6088fa66f
BLAKE2b-256 fb8c99dbd019d2cdd1d8715bd0c83c079f543c8128425e567429423045007a44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0913ea546cb25cb2c6e3d44a380245ec698deafe3e08587a4509c25f0ca0e23a
MD5 29dbf6144a6872493a0f02a83348009b
BLAKE2b-256 80dc51f002764a309a92d78e740d5fddaf985218a36a523dcaee1829e7c0e168

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f68982be148872ac839901a78001c6d39cb3233f17c5b493a0270a49661d1fd
MD5 d0ed5527e65426f615f6acc14f27b756
BLAKE2b-256 3627dc65e0c0b3a6dc0b55c47d113e8e8a0695b8202de5c290069b7a4919496f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75ea2337a2302c38f7c96ad97727ddcad9c866b84f044aa225b0f091c08f69b9
MD5 4a22045c6c926ad70233cd63998d782b
BLAKE2b-256 7c441715eb8c2903504ef61c796fe6fd2d210cb1e858729ca9f6d37a13f61811

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 047c0c2dbb81502f368cc26754d1f3228b31920185697661b2c8be9cc237722c
MD5 91e063b70bbe33e652e0c363c7f4bdbe
BLAKE2b-256 4ad7e501ae756f78ce93b19a9cf722ef1d0719ace4a5f0294ef426b67b64b386

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f4d4bcf36157178f219624589f45757c22e19d2cf195d432bcb18a009a857b4a
MD5 68e69618066c53be106b706548fa0775
BLAKE2b-256 5f9fa63fee205ddf630cdef7090fdbb01a656d4890fdca2a59eed23ed32a9720

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08a1c3eec93631e61880c4a6d4a56cdb8bfbc2609cb30ad21580e0fbc5093235
MD5 e6d85d6897e7196f1ada85ccad9a182a
BLAKE2b-256 28a40ce947b1ad888354f59780e1a551baa19aeb4dcdb14fa8a3a49977865774

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 025009ea1185059794fde1bf89a7f6f73979b8d05c657b7479ca1c2d34caa1da
MD5 08967bb13fa67c77bdd3c8a91d3589fb
BLAKE2b-256 fa094e4364d3ddb2a57dbd0ef0735527ebe50ad4965fd8b7c1dd454c2002766d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 808384105aa286c6c68e7b3c324aebf706c91776798703bbf568716fa2fab069
MD5 f2574acbd3a753add9d5adc4628d5582
BLAKE2b-256 cf4df2928b6019dc11accf1b36cc3ac459b32215cab69bb93a0439bef2f5ea73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 29f4bce04b862dd1f3e0a1031354202cd8e61b28e28e9b6009f0ee7639cb3c86
MD5 af58c63e7005fd0ec6ae47cb9838bb8a
BLAKE2b-256 75e12b8e09451aa39c600c5c2537fb86d05979cd6f4bee87608385b7ef58fd29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 55192c7835bf56502d121303b4ffb5cd58cccf172d9368546b5461ebe50b0a64
MD5 3196c684be950f524eff018ecc511a05
BLAKE2b-256 e18fcfb3bd361d9bb936ff536923635841a84050cf7df35911dc59d1cdce7ee0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 61c96a3a89fa11d04f79d7b4942de0cf8f283013eaf29943cb8621d148ed4c3b
MD5 285c425e9525eaef73ba4fb031933ab3
BLAKE2b-256 b3d183daaddb03b2fadf07fd18f86b42cca448ae780b7b4671bd591d9d3cd1fe

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0b4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 390.9 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.0b4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fddba4e96cf0078384530d2a063679e84aadf8e5a59ae0b6933a8f1b5ceedb55
MD5 001e9293e2b765cff268badb30abda9f
BLAKE2b-256 228c96e01f0ee073ddd172f3aa76c665e6f4c050252307832d984ba59593dcee

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59e361a7f285fbd7eafe88671738be0d62ccf5f363541f401901e3f6c5d95d90
MD5 7aa14ae5b46df66f16096e4cb96299c1
BLAKE2b-256 59ff7a272090cd28703ac5d21fc816457d295dc5ed69ff028b22517e1bf88bb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 26faf6928703052a336c58f50f562341cf1d27c2ac3a9e2b4748d0d4a23fde47
MD5 f5476ecf1571e3284f3e014a4b0acca2
BLAKE2b-256 d24ea9469b9c5595191e80d8b8962a813a02a64649cded653219cfe5fbedeaf6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 61331cf4af0fa63921f51da3f301c746e697bee5b44a07aa7f428bf0ba353b6f
MD5 41620b39abe8b942dd2f8f47e254f9a0
BLAKE2b-256 e639a5924310f85b4ea1772f1ca65d2301fe8ffb8d7a65c90658b81b643c6a0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 38d207109572af44ce7e72340d2293f1a2704d7b90ed2e30c8b5dca4ddbf002b
MD5 79961361c8ac0576b2e3d728574258fc
BLAKE2b-256 8366e09f9f1981a8085759b33ba99b4fe633b4b1f8e55bdd3f39eb9c7f4bc7e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 206809f98d636180c05ac9c983918cd2f3a8635b4c7e4b0dd5001ac5fad07f04
MD5 7d0f39d378de6bb2d8dfe0a021fe9efc
BLAKE2b-256 7b4e09d1aac8173f2c44281902b241eab5a3eb08f8fa44169e7fd8894593200b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d8e0731b92bfef565f587b71e0c79412c1aef7727e21a1edd3973bf174cf9afd
MD5 57eee1c3d2f6af4964776a7c6b8537dd
BLAKE2b-256 16cb7e85849c3cfc92c2b88887f7c6373c3b2331eac2715d4f5ffd390f2d7c31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 55fe6940848f9d540f932b6ae0848ebac279ff7ed917050ee24fb701c2b1e908
MD5 1b399d1e9100c817b7cf3bd4b08a6466
BLAKE2b-256 37d52abd6c28b7205f93177ff5e740a6f701c00220ec689d8b9dbd51806fa577

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4cff8f06b56c3eedcb652b64bad373983a8044d0d9eb3d99709427c0e2909180
MD5 560ac0730b25343723e3f7679b76b1e7
BLAKE2b-256 d1422344348baa45ba202eb24e85627bd179d2d6d9568e02f63ef3bbd94fae4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e60461b46eed651c18e4de8a6f4a73596c2f1d996f05939f9437d8316f52718
MD5 627e20a2f0aa5bfec200c801d3615020
BLAKE2b-256 a7d1af1bd8f7d359272da9d8f82f336370eeeb81f1edbdffeda3075784133cf1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 65cc9157efdf6d7e8589dc0f1a09ff9049da6b2a3d5039a881a778926eaee741
MD5 e063147deedd005dd15e819d7d926046
BLAKE2b-256 105cc0cd3f76bb11faf104eb91dad01fa1e7f15eb05403ebe7aa33392036a128

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b207ebd7f5111bea3862bce211dd2a9aab995deed60ac33fa73b205036a8b0a7
MD5 e3afb13440e03e5aa9ce735d81586a52
BLAKE2b-256 ca6c2bee8ee5b9a7b3f231d5494b2eb614cd7762e03780707e8f9b9bc767449a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 47998aa8631fa830998a33fa6b3f5d63aa5406507d5d3bff817b67df7cd681e6
MD5 a96ad8a427bc4cc03578dab654a02a52
BLAKE2b-256 c68f8a321570c1acf6a3a55affe5b2b860dc4523b2c0d9bd7a7c718f25f529a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 c1cab49b5b9d0c3ed4ba8a961c611362a43a38d6a618acf94b6b62ec7c5ed6f8
MD5 6b004c67cbe42da22ff9f11f7f55cb0c
BLAKE2b-256 684d64017d28cf522969d051522cd9a181bcd68e177e7df35473b652fbf9f5b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cea4471b68f0c91309b53893cefcee9ffcfc06d1c7d49fc7c994be5a0f03fe43
MD5 9db6c3d33feb85cd7e1efe11c21af0b7
BLAKE2b-256 29ed863ee4e1befa15415156440a67ee0caac6a9660e542a654524206738d393

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0b4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 395.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.0b4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d91a81f0d979790c2da1b82bf85e3fbc13b8a4804d027f7384a487c03c6b1032
MD5 8b391c6c4fb2f156a04ea400d49a1c45
BLAKE2b-256 54e9e3faae42627268a8bc3a7f5dff8fa111fba23f9a1b8a879f9795aa2073a9

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe0e311c1b33cdf1ccf02c73eb3ecc7e3c71d81ddf7c0d536fc0ff6788793065
MD5 e0ab693de4495bbdab986188d12a0254
BLAKE2b-256 75301568dec8dda8dbcc255632680ef3378d5087fb18611a1b0d16c8f9f7ce87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7beda655c154a8fb915c70a09abf172b43fbedb471b9ffb2cb92c42d188b6187
MD5 4ef271c7fc660e0b34650f9763cd594f
BLAKE2b-256 680b19ac21d2d3124bb630c1c6fb9e04e74fc9df5bb77ba3f24766a3bbab3693

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 17cc0a176844b8a3830c2c9ba76c219f3e2442b5f1eca323f8bb9b2e1587ceb1
MD5 38b5841c164c86f80dafb811270dfce5
BLAKE2b-256 65c4af21013ab8b5c569f7e61d30159ca44f96b258d8f05b9c96f9c5699df1a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c613663afa6a3b1b652d73197cf4a5b1a02f851a5bb1f7d5abb708acb71cb787
MD5 b1144934c1b5a48c38305278146778f4
BLAKE2b-256 1bb2131f2ad266ff5c3a4170c2c381833292316ed6caefa14bb830985646a579

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a594ebf597bf2932d6a38a8360460b153ad1eae94ecd4f8c965e642888acd2f
MD5 2e0382b4aa78e4955295d56f6e833897
BLAKE2b-256 6b6516bb102f95490261a1aa9fc3713fe98d7e32a82eb2c67b1a89132d5369c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60d06324ff2c0a9c292120638c7b60e6fecd196e4161c1e350c7c3757ada801b
MD5 98aa74fd81ce97c51e4a77bc30931817
BLAKE2b-256 4841793687e74fafcfa9b39ea47aa80bc328316b771271b5f607d66008c6eeb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8279763f5dc8cd4715b64377628c225f45ae99fafede7a2d9aac84d8554f20ea
MD5 b4337972e2a0104f4ced99bd4aa6e16f
BLAKE2b-256 21f6a8109ff6baf8f0a0a075741d47d6af51e636016baf1d8afa4ceb4503bfd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0350fabf97f8235ca840a58a36f5d18a9eec297f545f37bca4368e493b1ab2ef
MD5 8929bdc215052833bd8ef945317c5393
BLAKE2b-256 7dbdae8cecdd1c5135f42f4ef4e65c525f08e9b34cc107044f4c45359864f745

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3fb95ac4f7b148b954913c3de1d2391b6ab9330a592b518fc3af1d6ff97ce0c2
MD5 1b52d053f9b1542e878efa6b40b44540
BLAKE2b-256 85f2a2d72814547b506cf10fe3fe390996b7f90dd4c669a842a587f74a9ffdd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e3e4250faf2bc13a00b5da046021ff2b33665eab9aecc24a14230f65ac616a8f
MD5 333d40e6051b5aa3805e01e7602293ab
BLAKE2b-256 61844aa9ab65bc5a4b187bb06d3bc4a08a7ea2007741892de853eb6920b06045

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b587d6320a42c0a81e8f52c97002f057f79fdb4c78c39465d43cd7252ebe1731
MD5 a49d29b7b6f774953909dc7516429259
BLAKE2b-256 3818ea34f1256cdec8f6aedaf78e560e3ed5218f4ee1d198baefd57d578887b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8186b898e0f43b8036d6624df20ebf9577b4d32705ada84b5291f10a3b4c4b48
MD5 9f2d8c5566f89fd9da603050ca02f65d
BLAKE2b-256 4c164871656028e0e66bd0a667c6b6874dc49ced58f40fa9fd154fc3b4e9f959

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a263396832a8262cfe7d9d4182fbdeeb954b0b4c36efcd95707028fc31d29056
MD5 7d1580c0124353dc2762b046a1ee5bf9
BLAKE2b-256 dea945489cd356d7ca54dca599f6448a78d1919a69e10a21baefdbcf5757056d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a62245aadf3eb950bd57ffc2fd3c38e0fea09e25a65f176c772c4215055d985e
MD5 3d3485dc6346fcf26f1008858dce24d8
BLAKE2b-256 a7c4dd2e48c176061c8a7c664ce7970f0731c55e4ac3452f8be8053adb1ad0e6

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0b4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 395.6 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.0b4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2bd86c27dc4b9a872fcdf6d245f857a8ba6f7fd9f87d5ff4d3e6803232ff41c0
MD5 ddf32259b0ba83185df1756824754bd9
BLAKE2b-256 37555f42f1572a916f310ed52900af69538302f6d86dfa9115c2d5e6ecbdab82

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1881888e44ebed284a6f6d8a0f2c5cbfc801bc8e7fb7b123207829f151493b4
MD5 0c093caa92b3a236c4b070bc5fcbe9d1
BLAKE2b-256 bf35616a307f710bc48c538844d115afd1da8cb4bfdfd435b8752860a976f347

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d8698a7dfcf72557d92fd0d5d0e02890cf7205282b50217817c86697b91c75ee
MD5 16e84e9faa55ea4e2991087e23d347fc
BLAKE2b-256 5231949e2a498521aa8c9a18e517a5148ee2e2dceb527578251a627ad6c1c453

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bddbc49af07ab1a0efa1537b5c0a2baf73d0d49b48e0211e03d3a3ec0a9d31c8
MD5 df8354abef1886eca9d26eb16e815e63
BLAKE2b-256 711e1fd6481c54e6821cf06c9cd8530d21a2ecb2c72453bd385a6043d9615e06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57fe12ea367158addcf98625be20f7408ab2d9e0f5509a0a98567b528807c442
MD5 baa6f5793292f5a8a2747ab265301ed7
BLAKE2b-256 867219df95d7ceb24007fa3e4eaaaf64022df009343d86cc7621e951418020a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e5bb37fcfa6438fc7873451d972319d25dc2182647a7f8891c77763156fae49
MD5 e4e25fc829cd3bc41bbd28050fa74b9c
BLAKE2b-256 e585900669c146e0a67c899bd96aac845df29c9f31cba14d3f2e2dda150ef952

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2042403defec7527ef0259cff55fe9c0fd6dcbd2ca8263766460121a0e275556
MD5 a82127c3f3f72c39efa13d200ff91789
BLAKE2b-256 2762d6a58454d48cdfc88fa454f104e811011be4554c25d94d927ee604d1a0cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dfaab6496bdf02bf9626f854fbde5e9cdf9c2af4ab23fb882acd5b16783e1225
MD5 fc518bad5eb2e20bb2449d4a78f526ad
BLAKE2b-256 48ddd5e247498107130a3410385ddc22260c9ba9a01beffa44ad4553e10f8ef9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 35291fbea1c5231445ff5e8e6f328371973c0e08d4987c9dbfee8e168086e8a5
MD5 17b3ab0325f08ec283911aaa7cd7c71e
BLAKE2b-256 8ddf7435ca287fab6cf5054fa80bfc200a2ce97b1efda14d95e58c429fee9a81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03639413c7666e887cda0d057888f3cbdbab91b9dd7d799de2d6c5ee3a5c7184
MD5 ea988a4e9eb4ab857851862fd16d6406
BLAKE2b-256 eb49b562909522d96d19b3032d3df2af6b6a4f4159c23c909448aacc5e053515

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 211f493a5d5b68feb575325e6a2f74c9ec0d4a4af19a6c7e1cc98c6533dc86b1
MD5 f6655bf9108fc3d78458374a8bcf25ec
BLAKE2b-256 a15b4e949fbd85adc40ab358b6dd1098689c2c2bc10557045c8793e891f8b91b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb67c67feff74b3a721373815d337680682493a00ad5bfe09292cc5e3b9fbf07
MD5 1b61579c0e4539e69265bc912686467f
BLAKE2b-256 aaa49c47626bca495f424ddc1b9f915808676a9ccea48b8eeb9fa7cefcd183e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3506283033ab69096dfc946d0f0190d5b95576b66be654f31d092e3a069b8fff
MD5 f83141e7d86d437986d25545bfe5d792
BLAKE2b-256 6a877c593f8cddf5d8d01b24514c9e260de1c7c08621cdef070958b7f113ec9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 217113a5a9ee5df45198dc0ba31a08c105bfabcb98627fe14385c60f346b8f39
MD5 3a557348070355816db876f7b0de86b9
BLAKE2b-256 3c675de8cc51545ad7bf6420f6eb5f784918f633d52fc7e7dc0267b92385ae92

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.0b4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 417.5 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.0b4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ebdc86ebba12c0cc275141d0950896b7a0f11d165eda31b43decb586c6c52b6f
MD5 5f00c850e4a7befa16382344c000b7c9
BLAKE2b-256 1f6fd0320c9649e95a7b346e61886b5889db07acf7a70d485065135b9cdc1ca2

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.0b4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 046a491f618f94e2dd5f6259e0a6395c9ed91e9295ef66db56d9571c0b778fcb
MD5 5f3b110a15c7ebdf8c43e18b74c83257
BLAKE2b-256 d35b54013a81dde8fd0dd08d8351a3e5431c91821cac0b73226f4bafaeaba5be

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ede9b9b0cae324ca799465b6fe8286680948b373424874eb7e841a6dd9167ab
MD5 61ecdd5d1451183338505061dede9731
BLAKE2b-256 58f2f33381da4b9c4288cb1e5132e4d76716b6ddc8eca3a124fc5cd2084132f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 deec57fc0f4d0547a7bc48a2dce2d86621f6d1404b4f3a9cfe3571f30e16dde5
MD5 47eb715fd14786230cbe25c88451a5d9
BLAKE2b-256 2ffbb3843603691964439e47e1c07edf173ec09060b2e53846a7bbdf0fa828c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6a5e9709be5426dd756246aa6e19d9fefc226aa1811d6a3b10d3220b2b775e1f
MD5 67485e35ffcea1327aa4481b158c3193
BLAKE2b-256 b6242f5bb969530b084aa9ac3ac905d67a15fdb4417fc508cf113924b213565f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5e5d7beb424a9448c9750f46ff6138fc4ad554508ee66ef90c08e0013913346b
MD5 7fa81a9f0443f056c167018a4941d821
BLAKE2b-256 623159abc397797de694a1836dea66a9b48478febe702088dd247d5f82b08c5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2ac843676c796359e7638fb519f75a98c17e47a56aef07e7d95c561b6240cee
MD5 c21562145cc9c59a4a6c1e2278ad53a1
BLAKE2b-256 a76f3326987d4dbded40cbd3a3c4fdb22ec8e5b86e98b6e887e1b3c21f1d9497

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 878265f3bd721d26ab73b635b6c690da516b5b723ae5c6c9230745f324c7ae2c
MD5 c1e62ad4c6d40044e032c3c607e592f2
BLAKE2b-256 f3798462c1952b7497425f17bd2bbd88b7e23a7cd1601076538fe15058870d50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b068c8495c27fb4d5fe6d6c5c12b8da08088076bb8deb97a19b96cfb17d2c4e9
MD5 59d5ec10a48bf871bc5f0539e42d6572
BLAKE2b-256 36a7c44d4a4549c635e889692f0ab75447c07900d19bc9eb13edad5ba3e71653

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 82281a28e0eebac4e3bb058f3397f5eb97fb9cefac90a96eb9732c39a3ddf11e
MD5 8232be166d90b67bf471effeec5ce6ff
BLAKE2b-256 998786308e8b8cba0807e97c0ab8fa0a350144ca35685856c34b583b3505273d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73610c6155523af2e8dbe35b0d44125a60e1b1bc110f9038c4272d76eb4433ce
MD5 bf7fa7090e44f43ea810916cb3fec31d
BLAKE2b-256 c975e8f157cb2101237845f6dc01ad7d193cee61fa42906ff7f352e850e5e1b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3367661533b3a420c06d07fc75c6504c033276891b40db6e7022d82b2a307c7e
MD5 e2d6422f8b63690eba9862f108a4cb6c
BLAKE2b-256 c76dc067c7695e0d11af71fe066ba12b27a9ba8f6d80bb22835a4a330ceaaa63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf9b0b2f9d68ea18e9a9fa23b474f14ddb2f4e3f8722ca577dc8f47d72058fe5
MD5 dde8aa0f592daa2ad4c07a820ded455b
BLAKE2b-256 6c0c9a7ff58e95bae81fb42ea903404d90248c1a1896a5d43fe464c713fa7b29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 62290f1e69379f040d57b93f96c80d1d989af25fd043af94e60bd107020326d3
MD5 fa75736bfc620d31b88d132c17a6ae80
BLAKE2b-256 bc6b912cd91e9b9ffb5cfba0be0849de910d7c1e5adcfb312c112f7c095540cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b4-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4d786bed48ce1314f134824e9fd91d0adbf38ad78527b84e7cc41a9793cde955
MD5 71b8518080be44e1056f4031f0fa2d53
BLAKE2b-256 29f83bddb00a569b10d06c8a33f0041d471cd36714f880f2c817e512ca479139

See more details on using hashes here.

Provenance

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