Skip to main content

Async http client/server framework (asyncio)

Project description

aiohttp logo

GitHub Actions status for master branch codecov.io status for master branch Codspeed.io status for aiohttp Latest PyPI package version Latest Read The Docs Matrix Room — #aio-libs:matrix.org Matrix Space — #aio-libs-space:matrix.org

Key Features

  • Supports both client and server side of HTTP protocol.

  • Supports both client and server Web-Sockets out-of-the-box and avoids Callback Hell.

  • Provides Web-server with middleware and pluggable routing.

Getting started

Client

To get something from the web:

import aiohttp
import asyncio

async def main():

    async with aiohttp.ClientSession() as session:
        async with session.get('http://python.org') as response:

            print("Status:", response.status)
            print("Content-type:", response.headers['content-type'])

            html = await response.text()
            print("Body:", html[:15], "...")

asyncio.run(main())

This prints:

Status: 200
Content-type: text/html; charset=utf-8
Body: <!doctype html> ...

Coming from requests ? Read why we need so many lines.

Server

An example using a simple server:

# examples/server_simple.py
from aiohttp import web

async def handle(request):
    name = request.match_info.get('name', "Anonymous")
    text = "Hello, " + name
    return web.Response(text=text)

async def wshandle(request):
    ws = web.WebSocketResponse()
    await ws.prepare(request)

    async for msg in ws:
        if msg.type == web.WSMsgType.text:
            await ws.send_str("Hello, {}".format(msg.data))
        elif msg.type == web.WSMsgType.binary:
            await ws.send_bytes(msg.data)
        elif msg.type == web.WSMsgType.close:
            break

    return ws


app = web.Application()
app.add_routes([web.get('/', handle),
                web.get('/echo', wshandle),
                web.get('/{name}', handle)])

if __name__ == '__main__':
    web.run_app(app)

Documentation

https://aiohttp.readthedocs.io/

Demos

https://github.com/aio-libs/aiohttp-demos

Communication channels

aio-libs Discussions: https://github.com/aio-libs/aiohttp/discussions

Matrix: #aio-libs:matrix.org

We support Stack Overflow. Please add aiohttp tag to your question there.

Requirements

Optionally you may install the aiodns library (highly recommended for sake of speed).

License

aiohttp is offered under the Apache 2 license.

Keepsafe

The aiohttp community would like to thank Keepsafe (https://www.getkeepsafe.com) for its support in the early days of the project.

Source code

The latest developer version is available in a GitHub repository: https://github.com/aio-libs/aiohttp

Benchmarks

If you are interested in efficiency, the AsyncIO community maintains a list of benchmarks on the official wiki: https://github.com/python/asyncio/wiki/Benchmarks

Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aiohttp-3.10.11.tar.gz (7.6 MB view details)

Uploaded Source

Built Distributions

aiohttp-3.10.11-cp313-cp313-win_amd64.whl (378.1 kB view details)

Uploaded CPython 3.13 Windows x86-64

aiohttp-3.10.11-cp313-cp313-win32.whl (358.7 kB view details)

Uploaded CPython 3.13 Windows x86

aiohttp-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

aiohttp-3.10.11-cp313-cp313-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

aiohttp-3.10.11-cp313-cp313-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

aiohttp-3.10.11-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

aiohttp-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

aiohttp-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

aiohttp-3.10.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

aiohttp-3.10.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

aiohttp-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

aiohttp-3.10.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

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

aiohttp-3.10.11-cp313-cp313-macosx_11_0_arm64.whl (388.9 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

aiohttp-3.10.11-cp313-cp313-macosx_10_13_x86_64.whl (393.3 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

aiohttp-3.10.11-cp313-cp313-macosx_10_13_universal2.whl (577.4 kB view details)

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

aiohttp-3.10.11-cp312-cp312-win_amd64.whl (380.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.10.11-cp312-cp312-win32.whl (360.5 kB view details)

Uploaded CPython 3.12 Windows x86

aiohttp-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

aiohttp-3.10.11-cp312-cp312-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

aiohttp-3.10.11-cp312-cp312-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

aiohttp-3.10.11-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

aiohttp-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

aiohttp-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

aiohttp-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

aiohttp-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

aiohttp-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

aiohttp-3.10.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

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

aiohttp-3.10.11-cp312-cp312-macosx_11_0_arm64.whl (392.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.10.11-cp312-cp312-macosx_10_9_x86_64.whl (397.1 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

aiohttp-3.10.11-cp312-cp312-macosx_10_9_universal2.whl (584.8 kB view details)

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

aiohttp-3.10.11-cp311-cp311-win_amd64.whl (382.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.10.11-cp311-cp311-win32.whl (363.4 kB view details)

Uploaded CPython 3.11 Windows x86

aiohttp-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

aiohttp-3.10.11-cp311-cp311-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

aiohttp-3.10.11-cp311-cp311-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

aiohttp-3.10.11-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

aiohttp-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

aiohttp-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

aiohttp-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

aiohttp-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

aiohttp-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

aiohttp-3.10.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

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

aiohttp-3.10.11-cp311-cp311-macosx_11_0_arm64.whl (392.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.10.11-cp311-cp311-macosx_10_9_x86_64.whl (400.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.10.11-cp311-cp311-macosx_10_9_universal2.whl (587.7 kB view details)

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

aiohttp-3.10.11-cp310-cp310-win_amd64.whl (382.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.10.11-cp310-cp310-win32.whl (363.8 kB view details)

Uploaded CPython 3.10 Windows x86

aiohttp-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

aiohttp-3.10.11-cp310-cp310-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

aiohttp-3.10.11-cp310-cp310-musllinux_1_2_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

aiohttp-3.10.11-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

aiohttp-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

aiohttp-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

aiohttp-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

aiohttp-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

aiohttp-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

aiohttp-3.10.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

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

aiohttp-3.10.11-cp310-cp310-macosx_11_0_arm64.whl (392.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.10.11-cp310-cp310-macosx_10_9_x86_64.whl (400.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.10.11-cp310-cp310-macosx_10_9_universal2.whl (588.2 kB view details)

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

aiohttp-3.10.11-cp39-cp39-win_amd64.whl (382.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.10.11-cp39-cp39-win32.whl (364.4 kB view details)

Uploaded CPython 3.9 Windows x86

aiohttp-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

aiohttp-3.10.11-cp39-cp39-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

aiohttp-3.10.11-cp39-cp39-musllinux_1_2_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

aiohttp-3.10.11-cp39-cp39-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

aiohttp-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

aiohttp-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

aiohttp-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

aiohttp-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

aiohttp-3.10.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

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

aiohttp-3.10.11-cp39-cp39-macosx_11_0_arm64.whl (393.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.10.11-cp39-cp39-macosx_10_9_x86_64.whl (401.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.10.11-cp39-cp39-macosx_10_9_universal2.whl (589.8 kB view details)

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

aiohttp-3.10.11-cp38-cp38-win_amd64.whl (384.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

aiohttp-3.10.11-cp38-cp38-win32.whl (365.4 kB view details)

Uploaded CPython 3.8 Windows x86

aiohttp-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

aiohttp-3.10.11-cp38-cp38-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

aiohttp-3.10.11-cp38-cp38-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

aiohttp-3.10.11-cp38-cp38-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

aiohttp-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

aiohttp-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

aiohttp-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

aiohttp-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

aiohttp-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

aiohttp-3.10.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

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

aiohttp-3.10.11-cp38-cp38-macosx_11_0_arm64.whl (394.0 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

aiohttp-3.10.11-cp38-cp38-macosx_10_9_x86_64.whl (402.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

aiohttp-3.10.11-cp38-cp38-macosx_10_9_universal2.whl (592.1 kB view details)

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

File details

Details for the file aiohttp-3.10.11.tar.gz.

File metadata

  • Download URL: aiohttp-3.10.11.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.10.11.tar.gz
Algorithm Hash digest
SHA256 9dc2b8f3dcab2e39e0fa309c8da50c3b55e6f34ab25f1a71d3288f24924d33a7
MD5 35f6e5c3b1f53ae205c0083feb642641
BLAKE2b-256 25a88e2ba36c6e3278d62e0c88aa42bb92ddbef092ac363b390dab4421da5cf5

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4996ff1345704ffdd6d75fb06ed175938c133425af616142e7187f28dc75f14e
MD5 4ad78b06412f1fbb5510be0d275b9ce1
BLAKE2b-256 281d18ef37549901db94717d4389eb7be807acbfbdeab48a73ff2993fc909118

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp313-cp313-win32.whl.

File metadata

  • Download URL: aiohttp-3.10.11-cp313-cp313-win32.whl
  • Upload date:
  • Size: 358.7 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.10.11-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 fc31820cfc3b2863c6e95e14fcf815dc7afe52480b4dc03393c4873bb5599f71
MD5 1d2b039c8ad6d719802aa0437a980efa
BLAKE2b-256 e99e4b4c5705270d1c4ee146516ad288af720798d957ba46504aaf99b86e85d9

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38e3c4f80196b4f6c3a85d134a534a56f52da9cb8d8e7af1b79a32eefee73a00
MD5 9cc4f197431b95c8d02f29f27d03690f
BLAKE2b-256 3c3baea9c3e70ff4e030f46902df28b4cdf486695f4d78fd9c6698827e2bafab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4e8d8aad9402d3aa02fdc5ca2fe68bcb9fdfe1f77b40b10410a94c7f408b664d
MD5 38870b57b4ad0ddee82491803756ed13
BLAKE2b-256 71b8df67886802e71e976996ed9324eb7dc379e53a7d972314e9c7fe3f6ac6bc

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6cd3f10b01f0c31481fba8d302b61603a2acb37b9d30e1d14e0f5a58b7b18a31
MD5 ba2a3a7de06affe00a52e1a082def6d1
BLAKE2b-256 c2e03e7a62d99b9080793affddc12a82b11c9bc1312916ad849700d2bddf9786

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8663f7777ce775f0413324be0d96d9730959b2ca73d9b7e2c2c90539139cbdd6
MD5 3e5ef8d4e6ec2858be108e68292ceb19
BLAKE2b-256 9f7530e9537ab41ed7cb062338d8df7c4afb0a715b3551cd69fc4ea61cfa5a95

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 878ca6a931ee8c486a8f7b432b65431d095c522cbeb34892bee5be97b3481d0f
MD5 5313932989e2dbf8e9200593911d57af
BLAKE2b-256 c6fdccd0ff842c62128d164ec09e3dd810208a84d79cd402358a3038ae91f3e9

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbde2ca67230923a42161b1f408c3992ae6e0be782dca0c44cb3206bf330dee1
MD5 f07ad7569ff4f068904d2a0b93d92403
BLAKE2b-256 28203ae8e993b2990fa722987222dea74d6bac9331e2f530d086f309b4aa8847

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 25fd5470922091b5a9aeeb7e75be609e16b4fba81cdeaf12981393fb240dd10e
MD5 3ce2e317102ed2228ba4490ae6430632
BLAKE2b-256 1a43b5ee8e697ed0f96a2b3d80b3058fa7590cda508e9cd256274246ba1cf37a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bcaf2d79104d53d4dcf934f7ce76d3d155302d07dae24dff6c9fffd217568067
MD5 ea2a26de39e1f8b7830c1d3b48191dd2
BLAKE2b-256 31b3977eca40afe643dcfa6b8d8bb9a93f4cba1d8ed1ead22c92056b08855c7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6c6dec398ac5a87cb3a407b068e1106b20ef001c344e34154616183fe684288
MD5 d007eda111b80b2b687a9da224e4bf7b
BLAKE2b-256 79108d050e04be447d3d39e5a4a910fa289d930120cebe1b893096bd3ee29063

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 249c8ff8d26a8b41a0f12f9df804e7c685ca35a207e2410adbd3e924217b9006
MD5 0ecc3fd751d7f298a8cad5244898c30f
BLAKE2b-256 02081afb0ab7dcff63333b683e998e751aa2547d1ff897b577d2244b00e6fe38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f0463bf8b0754bc744e1feb61590706823795041e63edf30118a6f0bf577461
MD5 421c0a36a18d733a61b877f9168995ad
BLAKE2b-256 3d7c30d161a7e3b208cef1b922eacf2bbb8578b7e5a62266a6a2245a1dd044dc

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9bc50b63648840854e00084c2b43035a62e033cb9b06d8c22b409d56eb098413
MD5 bc1708ef8c926c71a3bc35e1e6c64b57
BLAKE2b-256 4ec4ee9c350acb202ba2eb0c44b0f84376b05477e870444192a9f70e06844c28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 703938e22434d7d14ec22f9f310559331f455018389222eed132808cd8f44127
MD5 a304182dfb06e10f9c4147ff595c045b
BLAKE2b-256 1f63654c185dfe3cf5d4a0d35b6ee49ee6ca91922c694eaa90732e1ba4b40ef1

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b5e29706e6389a2283a91611c91bf24f218962717c8f3b4e528ef529d112ee27
MD5 6c11e2c4ed74a814c5685c6c6678c730
BLAKE2b-256 554ef29def9ed39826fe8f85955f2e42fe5cc0cbe3ebb53c97087f225368702e

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp312-cp312-win32.whl.

File metadata

  • Download URL: aiohttp-3.10.11-cp312-cp312-win32.whl
  • Upload date:
  • Size: 360.5 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.10.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a919c8957695ea4c0e7a3e8d16494e3477b86f33067478f43106921c2fef15bb
MD5 7fba7dbdb52001d62cb91a70c7971ea2
BLAKE2b-256 cf51d063133781cda48cfdd1e11fc8ef45ab3912b446feba41556385b3ae5087

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ce66780fa1a20e45bc753cda2a149daa6dbf1561fc1289fa0c308391c7bc0a4
MD5 0ff9ed4894d857b1dbc838609c64a1a6
BLAKE2b-256 ca1a3bd7f18e3909eabd57e5d17ecdbf5ea4c5828d91341e3676a07de7c76312

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2e4e18a0a2d03531edbc06c366954e40a3f8d2a88d2b936bbe78a0c75a3aab3e
MD5 9f70c3c7c12d57c46badb226e93a6073
BLAKE2b-256 2ad6dfe9134a921e05b01661a127a37b7d157db93428905450e32f9898eef27d

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f4df4b8ca97f658c880fb4b90b1d1ec528315d4030af1ec763247ebfd33d8b9a
MD5 958fa4060b1e90b2680070456ab80441
BLAKE2b-256 0c7ba8708616b3810f55ead66f8e189afa9474795760473aea734bbea536cd64

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aad3cd91d484d065ede16f3cf15408254e2469e3f613b241a1db552c5eb7ab7d
MD5 441d7b9d75a6ef4591c7c6bfa5e7a071
BLAKE2b-256 5148bc20ea753909bdeb09f9065260aefa7453e3a57f6a51f56f5216adc1a5e7

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ce6a51469bfaacff146e59e7fb61c9c23006495d11cc24c514a455032bcfa03
MD5 45948ab6b5bddcc808bee786265965dc
BLAKE2b-256 63c235c7b4699f4830b3b0a5c3d5619df16dca8052ae8b488e66065902d559f6

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc6f1ab987a27b83c5268a17218463c2ec08dbb754195113867a27b166cd6087
MD5 d12ee7c5e4665552dca2785889a9d124
BLAKE2b-256 c536831522618ac0dcd0b28f327afd18df7fb6bbf3eaf302f912a40e87714846

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f9f92a344c50b9667827da308473005f34767b6a2a60d9acff56ae94f895f385
MD5 be1279aebd6801a3aa94204f98c35d14
BLAKE2b-256 b3b915100ee7113a2638bfdc91aecc54641609a92a7ce4fe533ebeaa8d43ff93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1e7b825da878464a252ccff2958838f9caa82f32a8dbc334eb9b34a026e2c636
MD5 d80e99b2f8b3f9fcba6b380943e5ef9b
BLAKE2b-256 96d0ba19b1260da6fbbda4d5b1550d8a53ba3518868f2c143d672aedfdbc6172

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f34b97e4b11b8d4eb2c3a4f975be626cc8af99ff479da7de49ac2c6d02d35725
MD5 7ffb19aab92236fe1bd1cf5bd4175026
BLAKE2b-256 fb97e4792675448a2ac5bd56f377a095233b805dd1315235c940c8ba5624e3cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1dc0f4ca54842173d03322793ebcf2c8cc2d34ae91cc762478e295d8e361e03f
MD5 188829b6c359097efe9ef201ab504480
BLAKE2b-256 609fb7230d0c48b076500ae57adb717aa0656432acd3d8febb1183dedfaa4e75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7400a93d629a0608dc1d6c55f1e3d6e07f7375745aaa8bd7f085571e4d1cee97
MD5 0e6e74946aad0e8538aa56e8ab5f75e5
BLAKE2b-256 70bf903df5cd739dfaf5b827b3d8c9d68ff4fcea16a0ca1aeb948c9da30f56c8

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f65267266c9aeb2287a6622ee2bb39490292552f9fbf851baabc04c9f84e048d
MD5 a8b890b680de25a8a3db9380345c17a9
BLAKE2b-256 2ccf348b93deb9597c61a51b6682e81f7c7d79290249e886022ef0705d858d90

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11-cp312-cp312-macosx_10_9_x86_64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7480519f70e32bfb101d71fb9a1f330fbd291655a4c1c922232a48c458c52710
MD5 4dffbe304fa0a513e9fb2f36571ee2a3
BLAKE2b-256 0116077057ef3bd684dbf9a8273a5299e182a8d07b4b252503712ff8b5364fd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11-cp312-cp312-macosx_10_9_universal2.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 236b28ceb79532da85d59aa9b9bf873b364e27a0acb2ceaba475dc61cffb6f3f
MD5 49d377ed3b00b5de3e3fddea2507818d
BLAKE2b-256 6fe98eb3dc095ce48499d867ad461d02f1491686b79ad92e4fad4df582f6be7b

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp311-cp311-win32.whl.

File metadata

  • Download URL: aiohttp-3.10.11-cp311-cp311-win32.whl
  • Upload date:
  • Size: 363.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.10.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 29103f9099b6068bbdf44d6a3d090e0a0b2be6d3c9f16a070dd9d0d910ec08f9
MD5 5587bf279db179af438fd61ef7befb3e
BLAKE2b-256 49397aa387f88403febc96e0494101763afaa14d342109329a01b413b2bac075

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9b615d3da0d60e7d53c62e22b4fd1c70f4ae5993a44687b011ea3a2e49051b8
MD5 439ce7963fc1d7aa242b7cf7f504ff64
BLAKE2b-256 1039a273857c2d0bbf2152a4201fbf776931c2dac74aa399c6683ed4c286d1d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2dfb612dcbe70fb7cdcf3499e8d483079b89749c857a8f6e80263b021745c730
MD5 1acde61f4a11387f2f7c0f1684f38bdb
BLAKE2b-256 0d7906ef7a2a69880649261818b135b245de5a4e89fed5a6987c8645428563fc

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ca117819d8ad113413016cb29774b3f6d99ad23c220069789fc050267b786c16
MD5 60acdce11f609a39ca9306df830e59c3
BLAKE2b-256 5331951f78751d403da6086b662760e6e8b08201b0dcf5357969f48261b4d0e1

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ea9b3bab329aeaa603ed3bf605f1e2a6f36496ad7e0e1aa42025f368ee2dc07b
MD5 eadb98abf76ca1ac6d28f8fd075b5c2d
BLAKE2b-256 635e3827ad7e61544ed1e73e4fdea7bb87ea35ac59a362d7eb301feb5e859780

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 489cced07a4c11488f47aab1f00d0c572506883f877af100a38f1fedaa884c3a
MD5 dc6799d8000756d695e20bb76473ab50
BLAKE2b-256 6c221217b3c773055f0cb172e3b7108274a74c0fe9900c716362727303931cbb

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82052be3e6d9e0c123499127782a01a2b224b8af8c62ab46b3f6197035ad94e9
MD5 575130f41defabb562744dda451ffc61
BLAKE2b-256 e0d7cd58bd17f5277d9cc32ecdbb0481ca02c52fc066412de413aa01268dc9b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f449a50cc33f0384f633894d8d3cd020e3ccef81879c6e6245c3c375c448625
MD5 d88a7426d9dd4ad6f1cc7c5a96657df8
BLAKE2b-256 2c60192b378bd9d1ae67716b71ae63c3e97c48b134aad7675915a10853a0b7de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db9503f79e12d5d80b3efd4d01312853565c05367493379df76d2674af881caa
MD5 e8ec4d98a2bae232e1507bc0f895e29f
BLAKE2b-256 ba7da3043918466cbee9429792ebe795f92f70eeb40aee4ccbca14c38ee8fa4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ea224cf7bc2d8856d6971cea73b1d50c9c51d36971faf1abc169a0d5f85a382
MD5 aa729c139bea7f715ba3e5b1b67ba777
BLAKE2b-256 d2a33be340f5063970bb9e47f065ee8151edab639d9c2dce0d9605a325ab035d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 20063c7acf1eec550c8eb098deb5ed9e1bb0521613b03bb93644b810986027ac
MD5 c814e8c1e531ab18cb1daee2c07e67cd
BLAKE2b-256 bbb2da4953643b7dcdcd29cc99f98209f3653bf02023d95ce8a8fd57ffba0f15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb8601394d537da9221947b5d6e62b064c9a43e88a1ecd7414d21a1a6fba9c24
MD5 42d38a211b6bd2a3ab5f8ddd550a998a
BLAKE2b-256 a2e5433f59b87ba69736e446824710dd7f26fcd05b24c6647cb1e76554ea5d02

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2c8f96e9ee19f04c4914e4e7a42a60861066d3e1abf05c726f38d9d0a466e695
MD5 e5a86e7afab7798d35a78bfd887f034d
BLAKE2b-256 24174e606c969b19de5c31a09b946bd4c37e30c5288ca91d4790aa915518846e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 80ff08556c7f59a7972b1e8919f62e9c069c33566a6d28586771711e0eea4f07
MD5 23e7043ccaa6ece8b504c17ec0320a40
BLAKE2b-256 7396221ec59bc38395a6c205cbe8bf72c114ce92694b58abc8c3c6b7250efa7f

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 778cbd01f18ff78b5dd23c77eb82987ee4ba23408cbed233009fd570dda7e674
MD5 37178872c8da92dcc4a60b5e5db34ee3
BLAKE2b-256 0fc6ca5d70eea2fdbe283dbc1e7d30649a1a5371b2a2a9150db192446f645789

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp310-cp310-win32.whl.

File metadata

  • Download URL: aiohttp-3.10.11-cp310-cp310-win32.whl
  • Upload date:
  • Size: 363.8 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.10.11-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e1ffa713d3ea7cdcd4aea9cddccab41edf6882fa9552940344c44e59652e1120
MD5 67b5483c319eb397ca47b6e4bcc9aa6e
BLAKE2b-256 c25fc5329d67a2c83d8ae17a84e11dec14da5773520913bfc191caaf4cd57e50

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5358addc8044ee49143c546d2182c15b4ac3a60be01c3209374ace05af5733d
MD5 b9bd509190b4c140e7457f4b5e54b598
BLAKE2b-256 28389ef2076cb06dcc155e7f02275f5da403a3e7c9327b6b075e999f0eb73613

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 30283f9d0ce420363c24c5c2421e71a738a2155f10adbb1a11a4d4d6d2715cfc
MD5 a8aee42f1b32d0536766ef0317821b56
BLAKE2b-256 c3152b43853330f82acf180602de0f68be62a2838d25d03d2ed40fecbe82479e

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 aa93063d4af05c49276cf14e419550a3f45258b6b9d1f16403e777f1addf4519
MD5 46a184154d441492ee99d4f511a853cd
BLAKE2b-256 c170022d28b898314dac4cb5dd52ead2a372563c8590b1eaab9c5ed017eefb1e

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5ab2328a61fdc86424ee540d0aeb8b73bbcad7351fb7cf7a6546fc0bcffa0038
MD5 111332a2fb0e6d98307d5362f593e2af
BLAKE2b-256 61241d91c304fca47d5e5002ca23abab9b2196ac79d5c531258e048195b435b2

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 72b191cdf35a518bfc7ca87d770d30941decc5aaf897ec8b484eb5cc8c7706f3
MD5 603ff05e00c1540e0daa1023fb8d1713
BLAKE2b-256 af12752878033c8feab3362c0890a4d24e9895921729a53491f6f6fad64d3287

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e12eb3f4b1f72aaaf6acd27d045753b18101524f72ae071ae1c91c1cd44ef115
MD5 6ce743aaa61763fcab1572600d274409
BLAKE2b-256 9b4d942198e2939efe7bfa484781590f082135e9931b8bcafb4bba62cf2d8f2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 48bc1d924490f0d0b3658fe5c4b081a4d56ebb58af80a6729d4bd13ea569797a
MD5 f3ee4cd8d2e3eb11e6030c48126a72c4
BLAKE2b-256 6389bedd01456442747946114a8c2f30ff1b23d3b2ea0c03709f854c4f354a5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b943011b45ee6bf74b22245c6faab736363678e910504dd7531a58c76c9015a
MD5 dc7ff74f3b28105a1b066538ad64f8ed
BLAKE2b-256 6968c96afae129201bff4edbece52b3e1abf3a8af57529a42700669458b00b9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20b3d9e416774d41813bc02fdc0663379c01817b0874b932b81c7f777f67b217
MD5 e772451d890392486368a8ae2ced1300
BLAKE2b-256 6a2ec6390f49e67911711c2229740e261c501685fe7201f7f918d6ff2fd1cfb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f14ebc419a568c2eff3c1ed35f634435c24ead2fe19c07426af41e7adb68713a
MD5 81a3a73579423315937079cce2921247
BLAKE2b-256 a35b8127022912f1fa72dfc39cf37c36f83e0b56afc3b93594b1cf377b6e4ffc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ffbfde2443696345e23a3c597049b1dd43049bb65337837574205e7368472177
MD5 62d72c3f97b8b5637549a5c762c8efb8
BLAKE2b-256 cb287dbd53ab10b0ded397feed914880f39ce075bd39393b8dfc322909754a0a

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8d6a14a4d93b5b3c2891fca94fa9d41b2322a68194422bef0dd5ec1e57d7d298
MD5 b352e1d4150df37a23c0eceb1a3510d5
BLAKE2b-256 127ba800dadbd9a47b7f921bfddcd531371371f39b9cd05786c3638bfe2e1175

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5077b1a5f40ffa3ba1f40d537d3bec4383988ee51fbba6b74aa8fb1bc466599e
MD5 a05eeba8ffb075947757ae4e330d81c8
BLAKE2b-256 11c7575f9e82d7ef13cb1b45b9db8a5b8fadb35107fb12e33809356ae0155223

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.10.11-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 382.9 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.10.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7b26b1551e481012575dab8e3727b16fe7dd27eb2711d2e63ced7368756268fb
MD5 215f4034db73dbb3bf2f1bb536a92da2
BLAKE2b-256 302450862e06e86cd263c60661e00b9d2c8d7fdece4fe95454ed5aa21ecf8036

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp39-cp39-win32.whl.

File metadata

  • Download URL: aiohttp-3.10.11-cp39-cp39-win32.whl
  • Upload date:
  • Size: 364.4 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.10.11-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 22b7c540c55909140f63ab4f54ec2c20d2635c0289cdd8006da46f3327f971b9
MD5 f8b4c05f92952d0089cfa0a7a2323fc3
BLAKE2b-256 bac1e1c6bba72f379adbd52958601a8642546ed0807964afba3b1b5b8cfb1bc0

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c13ed0c779911c7998a58e7848954bd4d63df3e3575f591e321b19a2aec8df9f
MD5 18840112ca4effd1381db37f10217c82
BLAKE2b-256 6ceae9ad224815cd83c8dfda686d2bafa2cab5b93d7232e09470a8d2a158acde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0acafb350cfb2eba70eb5d271f55e08bd4502ec35e964e18ad3e7d34d71f7261
MD5 a061ecdc5c014f8f9a06c627b139406c
BLAKE2b-256 eff75b060d19065473da91838b63d8fd4d20ef8426a7d905cc8f9cd11eabd780

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d97187de3c276263db3564bb9d9fad9e15b51ea10a371ffa5947a5ba93ad6777
MD5 4095f703ba1f868607dc72c9a60e8ab3
BLAKE2b-256 b57377475777fbe2b3efaceb49db2859f1a22c96fd5869d736e80375db05bbf4

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fdf6429f0caabfd8a30c4e2eaecb547b3c340e4730ebfe25139779b9815ba138
MD5 c2bbea5caf3de446d893b7de80a687b5
BLAKE2b-256 40223e3eb4f97e5c4f52ccd198512b583c0c9135aa4e989c7ade97023c4cd282

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0c5580f3c51eea91559db3facd45d72e7ec970b04528b4709b1f9c2555bd6d0b
MD5 f66ea4587bbc7101e06cc8aee332f685
BLAKE2b-256 62efd62f705dc665382b78ef171e5ba2616c395220ac7c1f452f0d2dcad3f9f5

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 099fd126bf960f96d34a760e747a629c27fb3634da5d05c7ef4d35ef4ea519fc
MD5 f60dd91db0bfb22d78ac6db04ed32d76
BLAKE2b-256 5136f917bcc63bc489aa3f534fa81efbf895fa5286745dcd8bbd0eb9dbc923a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3bf6d027d9d1d34e1c2e1645f18a6498c98d634f8e373395221121f1c258ace8
MD5 1c49a74c886427bfa8d361ca020bd333
BLAKE2b-256 c2b57d33dae7630b4e9f90d634c6a90cb0923797e011b71cd9b10fe685aec3f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 686b03196976e327412a1b094f4120778c7c4b9cff9bce8d2fdfeca386b89829
MD5 39c674a6ed7063f9aa6b274fe91e158b
BLAKE2b-256 4dccf1397a2501b95cb94580de7051395e85af95a1e27aed1f8af73459ddfa22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 deef4362af9493d1382ef86732ee2e4cbc0d7c005947bd54ad1a9a16dd59298e
MD5 3cbba6c8662f104295abdd2fe97e5bb8
BLAKE2b-256 e14d441df53aafd8dd97b8cfe9e467c641fa19cb5113e7601a7f77f2124518e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c73c4d3dae0b4644bc21e3de546530531d6cdc88659cdeb6579cd627d3c206aa
MD5 9980f88f62153b64d0365c4d23a5ad3f
BLAKE2b-256 32c21a303a072b4763d99d4b0664a3a8b952869e3fbb660d4239826bd0c56cc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 968b8fb2a5eee2770eda9c7b5581587ef9b96fbdf8dcabc6b446d35ccc69df01
MD5 f7f10b52666c71b9f165c162cbfad408
BLAKE2b-256 e2671b5f93babeb060cb683d23104b243be1d6299fe6cd807dcb56cf67d2e62c

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b3e70f24e7d0405be2348da9d5a7836936bf3a9b4fd210f8c37e8d48bc32eca6
MD5 43bcb7b585c142327c15ded7b8983e7c
BLAKE2b-256 757cd11145784b3fa29c0421a3883a4b91ee8c19acb40332b1d2e39f47be4e5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cdc493a2e5d8dc79b2df5bec9558425bcd39aff59fc949810cbd0832e294b106
MD5 a69d8e4b70b3aae51364923b5c74bf5c
BLAKE2b-256 ccdfaa0d1548db818395a372b5f90e62072677ce786d6b19680c49dd4da3825f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11-cp39-cp39-macosx_10_9_universal2.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.10.11-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 384.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.10.11-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9c6e0ffd52c929f985c7258f83185d17c76d4275ad22e90aa29f38e211aacbec
MD5 48a3c1b2da3faeb8a69937dd313674f6
BLAKE2b-256 210c74c895688db09a2852056abf32d128991ec2fb41e5f57a1fe0928e15151c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11-cp38-cp38-win_amd64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp38-cp38-win32.whl.

File metadata

  • Download URL: aiohttp-3.10.11-cp38-cp38-win32.whl
  • Upload date:
  • Size: 365.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.10.11-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9ec1628180241d906a0840b38f162a3215114b14541f1a8711c368a8739a9be4
MD5 0f397c8e57acbf335ba15acac001ba13
BLAKE2b-256 ecee74b0696c0e84e06c43beab9302f353d97dc9f0cccd7ccf3ee648411b849b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11-cp38-cp38-win32.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a309c5de392dfe0f32ee57fa43ed8fc6ddf9985425e84bd51ed66bb16bce3a7
MD5 3f3f87535fde5debb3e6c583ca8a4e0e
BLAKE2b-256 3a4563f35367dfffae41e7abd0603f92708b5b3655fda55c08388ac2c7fb127b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11-cp38-cp38-musllinux_1_2_x86_64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 971aa438a29701d4b34e4943e91b5e984c3ae6ccbf80dd9efaffb01bd0b243a9
MD5 9438c45e17e65939ba05913d56ae3b99
BLAKE2b-256 d87fff6df0e90df6759693f52720ebedbfa10982d97aa1fd02c6ca917a6399ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11-cp38-cp38-musllinux_1_2_s390x.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 14cdc8c1810bbd4b4b9f142eeee23cda528ae4e57ea0923551a9af4820980e39
MD5 b6935433a22bd281a9569f5030964e7c
BLAKE2b-256 8f55e21e312fd6c581f244dd2ed077ccb784aade07c19416a6316b1453f02c4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11-cp38-cp38-musllinux_1_2_ppc64le.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 459f0f32c8356e8125f45eeff0ecf2b1cb6db1551304972702f34cd9e6c44658
MD5 b7dfa11b1d1165d0a7449ce375e61996
BLAKE2b-256 58b1ee684631f6af98065d49ac8416db7a8e74ea33e1378bc75952ab0522342f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11-cp38-cp38-musllinux_1_2_i686.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9208299251370ee815473270c52cd3f7069ee9ed348d941d574d1457d2c73e8b
MD5 09813fc14e78f952ee36add666664fcc
BLAKE2b-256 bbe709a1736b7264316dc3738492d9b559f2a54b985660f21d76095c9890a62e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11-cp38-cp38-musllinux_1_2_aarch64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a5f7ab8baf13314e6b2485965cbacb94afff1e93466ac4d06a47a81c50f9cca
MD5 e8b352226f33227c42e495e3f896db29
BLAKE2b-256 03be7ad9a6cd2312221cf7b6837d8e2d8e4660fbd4f9f15bccf79ef857f41f4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11-cp38-cp38-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.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0316e624b754dbbf8c872b62fe6dcb395ef20c70e59890dfa0de9eafccd2849d
MD5 25cc003319ee9a3efcd4139ffb5ebf59
BLAKE2b-256 348c11972235a6b53d5b69098f2ee6629ff8f99cd9592dcaa620c7868deb5673

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e0099c7d5d7afff4202a0c670e5b723f7718810000b4abcbc96b064129e64bc7
MD5 5309375f041ea28daa37b3d743e21504
BLAKE2b-256 f8b2f232477dd3c0e95693a903c4815bfb8d831f6a1a67e27ad14d30a774eeda

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d110cabad8360ffa0dec8f6ec60e43286e9d251e77db4763a87dcfe55b4adb92
MD5 5159a7e9a626fe33eb75d2f33e70d9a3
BLAKE2b-256 74820ab5199b473558846d72901a714b6afeb6f6a6a6a4c3c629e2c107418afd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c891011e76041e6508cbfc469dd1a8ea09bc24e87e4c204e05f150c4c455a5fa
MD5 f3208fd382e3a8273ca2937ba51398b2
BLAKE2b-256 bb8da3885a582d9fc481bccb155d082f83a7a846942e36e4a4bba061e3d6b95e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11-cp38-cp38-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.10.11-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2f746a6968c54ab2186574e15c3f14f3e7f67aef12b761e043b33b89c5b5f95
MD5 698953dae0b86cad6b1df740544c9675
BLAKE2b-256 31bb2890a3c77126758ef58536ca9f7476a12ba2021e0cd074108fb99b8c8747

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11-cp38-cp38-macosx_11_0_arm64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 473aebc3b871646e1940c05268d451f2543a1d209f47035b594b9d4e91ce8339
MD5 cb7e287dab2f4f394608d31ae6795d17
BLAKE2b-256 2e0eb3555c504745af66efbf89d16811148ff12932b86fad529d115538fe2739

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.10.11-cp38-cp38-macosx_10_9_x86_64.whl:

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

Attestations:

File details

Details for the file aiohttp-3.10.11-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.11-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 74baf1a7d948b3d640badeac333af581a367ab916b37e44cf90a0334157cdfd2
MD5 a8022eaf57cdd43dca54e39bdcca26cb
BLAKE2b-256 ddf259165bee7bba0b0634525834c622f152a30715a1d8280f6291a0cb86b1e6

See more details on using hashes here.

Provenance

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