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

Project details


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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

aiohttp-3.11.15-cp313-cp313-win_amd64.whl (436.4 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.11.15-cp313-cp313-win32.whl (410.7 kB view details)

Uploaded CPython 3.13Windows x86

aiohttp-3.11.15-cp313-cp313-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiohttp-3.11.15-cp313-cp313-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aiohttp-3.11.15-cp313-cp313-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.11.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

aiohttp-3.11.15-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

aiohttp-3.11.15-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.15-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

aiohttp-3.11.15-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

aiohttp-3.11.15-cp313-cp313-macosx_11_0_arm64.whl (453.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.11.15-cp313-cp313-macosx_10_13_x86_64.whl (461.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.11.15-cp313-cp313-macosx_10_13_universal2.whl (698.0 kB view details)

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

aiohttp-3.11.15-cp312-cp312-win_amd64.whl (438.0 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.11.15-cp312-cp312-win32.whl (411.7 kB view details)

Uploaded CPython 3.12Windows x86

aiohttp-3.11.15-cp312-cp312-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiohttp-3.11.15-cp312-cp312-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

aiohttp-3.11.15-cp312-cp312-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aiohttp-3.11.15-cp312-cp312-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.11.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

aiohttp-3.11.15-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

aiohttp-3.11.15-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

aiohttp-3.11.15-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

aiohttp-3.11.15-cp312-cp312-macosx_11_0_arm64.whl (456.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.11.15-cp312-cp312-macosx_10_13_x86_64.whl (464.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.11.15-cp312-cp312-macosx_10_13_universal2.whl (704.8 kB view details)

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

aiohttp-3.11.15-cp311-cp311-win_amd64.whl (442.9 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.11.15-cp311-cp311-win32.whl (416.8 kB view details)

Uploaded CPython 3.11Windows x86

aiohttp-3.11.15-cp311-cp311-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiohttp-3.11.15-cp311-cp311-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

aiohttp-3.11.15-cp311-cp311-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aiohttp-3.11.15-cp311-cp311-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aiohttp-3.11.15-cp311-cp311-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.11.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

aiohttp-3.11.15-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

aiohttp-3.11.15-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

aiohttp-3.11.15-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

aiohttp-3.11.15-cp311-cp311-macosx_11_0_arm64.whl (456.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.11.15-cp311-cp311-macosx_10_9_x86_64.whl (468.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.11.15-cp311-cp311-macosx_10_9_universal2.whl (708.6 kB view details)

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

aiohttp-3.11.15-cp310-cp310-win_amd64.whl (442.1 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.11.15-cp310-cp310-win32.whl (416.9 kB view details)

Uploaded CPython 3.10Windows x86

aiohttp-3.11.15-cp310-cp310-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiohttp-3.11.15-cp310-cp310-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

aiohttp-3.11.15-cp310-cp310-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.11.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

aiohttp-3.11.15-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

aiohttp-3.11.15-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

aiohttp-3.11.15-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

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

aiohttp-3.11.15-cp310-cp310-macosx_11_0_arm64.whl (455.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.11.15-cp310-cp310-macosx_10_9_x86_64.whl (468.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.11.15-cp310-cp310-macosx_10_9_universal2.whl (708.2 kB view details)

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

aiohttp-3.11.15-cp39-cp39-win_amd64.whl (442.3 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.11.15-cp39-cp39-win32.whl (417.1 kB view details)

Uploaded CPython 3.9Windows x86

aiohttp-3.11.15-cp39-cp39-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiohttp-3.11.15-cp39-cp39-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

aiohttp-3.11.15-cp39-cp39-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiohttp-3.11.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

aiohttp-3.11.15-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

aiohttp-3.11.15-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

aiohttp-3.11.15-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

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

aiohttp-3.11.15-cp39-cp39-macosx_11_0_arm64.whl (456.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.11.15-cp39-cp39-macosx_10_9_x86_64.whl (469.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.11.15-cp39-cp39-macosx_10_9_universal2.whl (709.1 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.15.tar.gz
  • Upload date:
  • Size: 7.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.15.tar.gz
Algorithm Hash digest
SHA256 b9b9a1e592ac8fcc4584baea240e41f77415e0de98932fdf19565aa3b6a02d0b
MD5 5f132009867d052773f5f3de4a3b98df
BLAKE2b-256 191831398875dc7b9815767370f60f44284155f2e1c1b87ec721c1b0ee61d1e5

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: aiohttp-3.11.15-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 436.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.15-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f30e6980ec5d6ad815a233e19e39fe27ea94b1081c31c8aa1df1b629da3737b8
MD5 b8fc46bf4b8fdafc7e81f6ae125b9308
BLAKE2b-256 ef9e9913ed27bb195224c3fc6a41f0b169d6d93e3843cd792d24013a112ffb3e

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: aiohttp-3.11.15-cp313-cp313-win32.whl
  • Upload date:
  • Size: 410.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.15-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 430f9707f0c1239a92bff7769b0db185ef400278dc63c89f88ed1bd5153aab7a
MD5 e6ecd0cfa802d6b66d5c6b2a98688dd8
BLAKE2b-256 562fc1e86f6452a9abae346b31c48bfd476984baa3a73978ad3eabf53139c513

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 825ec92391e3e4ddda74de79ed0f8b443e9b412a0c9c82618ca2163abd875df5
MD5 2cb07d5a96cb8122000c827cbeb351b4
BLAKE2b-256 80091824997f72def3567f451130b7618beab65cf5e99d11611dae87b251de82

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp313-cp313-musllinux_1_2_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 29cce2a7e009494e675018c0b1819a133befbab8629c797276c5d793bbdf1138
MD5 53b97db1e435cd879bf89030240cfea1
BLAKE2b-256 35cf1eaaae2dd6f0ea36926cdd0af131d11315a3a06d0a6d9bc79f6e8b11c090

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 edcddb97574402ff7481bc6f70819ba863e77b0be58a840ed5f59d52d2f20a71
MD5 e4d33d13d53425fd5ba1c1e0f60d61ed
BLAKE2b-256 d139e123f8dde599ec42da17cf094cfacd343569617c9bce68fe257e627395a9

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c2de66177e087999568638c02639cf0248011b5c7fca69b006947153c534fcab
MD5 1c33c6ac2017e14e48b67bc402549650
BLAKE2b-256 6528bbeba6d8a30a42ba591f7feb333ff2a01ed1e2ee0b31bc7195354c2c605a

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d8370d31e6d8ecccd97cd791c466d0acb56527df51b0c105d7ea54c7fcc0f75b
MD5 fdb7099b17fc4ed4876b931911c5c8bc
BLAKE2b-256 c9b965c94e9578591b49ee4c7cf26131cd0c4e693f9173e78a9aba4f8c60d24d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp313-cp313-musllinux_1_2_armv7l.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e97c1e55f6931f07ecaf53aef8352def8386adfd0cd3caa6429cc40e886d6a9
MD5 70f0e29b4920e5b6b2a9a2a1943aedf0
BLAKE2b-256 30c1f0513cf705ea1e6366530f5b9f1683129e6f9a70e32ee0a730fcbf85f393

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36a490f1ebe0b982366314c77f02258f87bd5d9bd362839dc6a24188447f37eb
MD5 89aebcf23ead91eeb48f9f38cfa2ff89
BLAKE2b-256 4ffefa6952f41486a18860804d685b978793bd4accd5dd2a5a49801ad76c16e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 63f8d6106566f98fcfde7a643c9da52d90679b8592dea76c4adfc3cd5d06d22c
MD5 d068e5cf6dac8b68190105f24663cff8
BLAKE2b-256 5a61dbcd2f2ff8f8282a56166b308dd9a1ca67ff844e05c20a7eade80f8fc99f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 05eea49d598c4ece6f285e00464de206f838b48ff21938d5aa9c394e115945b9
MD5 c58c751f94e13c7196ca2e050b2ef939
BLAKE2b-256 caec9a6724dd72a356298049913f4590b281fbe01386bc7d0e0c3cc6bff46af0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b03093d4140d926965d23497a059ec59c8c07e602d2489ce5fb990f3a897db4
MD5 00ade438fed41b8ef644e2505b4e13a0
BLAKE2b-256 6910a9beb08734dfadf8e322efdb79a2b31098ec5b2f29bb7378533d3b4a145c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 73a7f6283634dd30f93b9a67c414c00517869478b50361c503535e075fa07eaf
MD5 6d1ef11e042a613ffc290572ea55e674
BLAKE2b-256 4df4e7ee9b27adae614dd30598cbbb64c6484fa475864392781da7bd3ab43871

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45d8c22c91bdb7417bd4f5119242dbd2e2140c0e9de47342c765f127f897eb57
MD5 be89b75dfdfa0bf4be275bbd1da93206
BLAKE2b-256 63d68b0b6ff2557df59125527bb87ec74344da940dfa4061f41a91857ff8c327

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5b5edd482ff0a8585b3f4e8b3681819447324166a43a5588800a5bca340dbf27
MD5 3ab752d708002f0f40c8db6479e2a3ad
BLAKE2b-256 5f2bfe647a80696877cb99bcd3324672e054112ed022dce201cdc1491bf16314

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp313-cp313-macosx_10_13_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 c37aa3eb8eb92f3793f0c1e73f212a76cbc8d363e9990df54b5b7099f75ce740
MD5 00a94b26c3c940a4f1570e0601a2b35e
BLAKE2b-256 3f388324c180c8d90ff9afc724f5882e33d6ae6061db954b409dd0bd03bf767f

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: aiohttp-3.11.15-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 438.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.15-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0ec98c22030ea2a430cb11afddda7d4737b7e5c236c704f0d7d15504978598f7
MD5 5f9175a20a33b0711489d3b2c2c48e2e
BLAKE2b-256 c7aec37d218057f9d69ac0423f049f989bbb8dfbe5bcc2404579c9a1958bddae

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: aiohttp-3.11.15-cp312-cp312-win32.whl
  • Upload date:
  • Size: 411.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.15-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 18733fa6bbe44698ff96138c1f1d682bbdf0846250a42c25c108eed328fef0d4
MD5 48fdb83c891253ffd56a9a439b1eff56
BLAKE2b-256 84d961da0272c2b3a00ddbc3176d0eee268624f8dbd5c791f0be3a973ed0c851

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2241d862dc6a3c0c2662a6934e79078d3a1e51a76c0dca5d65b30f3debee6c9b
MD5 fc8954a2805e39da6a7babe80ca38e0b
BLAKE2b-256 36b45d45c7343a38ff6b463ac860b9fe266f6bdc1c9a6b41ba4659ad3ede4a39

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp312-cp312-musllinux_1_2_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f1b6c639750bf2a228957e25fcab7a7ff11987c543d70bf73223369f0d7bdb27
MD5 133703330a1317167daca337055cfb82
BLAKE2b-256 c999a7709475303efac3fa929507ecdea1d7c9f9b49a14145eb0f382367f3997

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 eba325409a0f990f9b43ed18916cbf5b9779bc4c979b8887c444e7be9c38ccca
MD5 748c5639fcdf6c60cdd2e4b28999c031
BLAKE2b-256 658712275b20f4a5f5016c114ff12ca6b77e423903bca082f55adf1e729d266f

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 23857adc919b64bba8a4db0eccb24e53fcaf85633e690ef1581c5562ed58cae7
MD5 0f9794052ab801551072cb9aa92be72f
BLAKE2b-256 1c4ad3704524d11eab7c8f1b59a4b2c7b87129e3ac2cc8392b2072e5fd2ec277

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 94c552a4864ed292dadf1d341213374284a3af72e49bea02e70ce6f07cb37004
MD5 fb908c91c87f85ae27a1c3ff60540283
BLAKE2b-256 0e48f0c11b78775d5a6f07c721983229f365860090ff8d57f04a526decff30b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp312-cp312-musllinux_1_2_armv7l.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b4d8d78fbd5290204dcf43957a2184acd5cee358f203f24a3a97f7d7984eeb7
MD5 b0a2a496d1bd54fb6ae9842d38cf8f71
BLAKE2b-256 480c399e9aba5700591f2c1a9bdad24a4191d6aa497e6107852418c2c4254782

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65eb40e74e3126cba185da7a78815cf3a30140932193831b3bfd73c79965c723
MD5 117ed48c8dec78a3cc87a8e7e32f358f
BLAKE2b-256 87a8e1294430720c67aa92039075fc87ff71485cb80acac948b74c1b7b3e6955

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 291f324f49ecede693dfb4820a412d1388cb10a2214ab60028252b505e105d6f
MD5 301e5e8adc35a0c811e45e1271e66b0c
BLAKE2b-256 c0d09b989329a912806b58162064e914f943e61a99c8606c103ec5862b34ab24

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c930064b79cc0eb63678e376b819d546b0e2360264cd7544c32119496f646f35
MD5 45000124c88fc3f1b35f3d9f3d86dcfb
BLAKE2b-256 914bf2d9c1d0a9e2c7faf080cfe4013b1ca637311fdf24b0023d1412f0cde0a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6fd82d0b3f73c59c80dade0ca8e0342de1ee261e147140ade65a465be670e83c
MD5 a12525da499bd6cceb4e9a7635087f05
BLAKE2b-256 c9680460c66cafd826acd1bbd00e9fc9e1a7838ba56ca518540b1edccfd30cce

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a6d6d86443580f846ec9cf60f899b7cace34411f2ff5c95db5970047195e5bfa
MD5 a6c3292591c5eea519cee1e6128e1dc7
BLAKE2b-256 cea835c7e118316cf27c8d42c5357b4893e31229117e69802da5d7874df2f690

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3739daa52c0cff42f1c40f63b2fe818fcf41019d84c80a7add3224207a7060f
MD5 c3ad5c09d7002155e0fad86e5b134775
BLAKE2b-256 c5a185b0738f108806d3b1e1d83e8131cd7680c1266aad6f4d01737bee5cacc4

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d99981304065f4ea407dd7495f74f8b8c10f0e26733f8a47dc174ece73744d14
MD5 1e8fe23a52110670b2ed0026076c83d8
BLAKE2b-256 eab2abd592077b79638ddfe36681c45670278e9b4a070b3d958f58c46b6dad24

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp312-cp312-macosx_10_13_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 433e7388b3063bba462b3362641988270b087a9ccae22390364f86b37a480c17
MD5 bb7d78240ed8f60085a63d761bb5ddfe
BLAKE2b-256 fb9be3a30cfc8781af8f1175812a1a886f36b75c2ac92f1185ea48d1dc9ec2d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp312-cp312-macosx_10_13_universal2.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: aiohttp-3.11.15-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 442.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.15-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 357355c9d51c8b12bbc7de43b27ce4b51f14cce050e00b5a87d0d5527d779395
MD5 22bbfa52ace649283fd45b0835405c15
BLAKE2b-256 a7f45849b44fe9243f88001fff0e701b57a855a34fd38499a4c03e786da65ee5

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: aiohttp-3.11.15-cp311-cp311-win32.whl
  • Upload date:
  • Size: 416.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.15-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 be11989cbc0728f81c0d022cef140ef8adb20d3012ad8f0ac61853bef571eb52
MD5 9374dd834526abd3e8f74bfd70a6edf9
BLAKE2b-256 47a7723dd995b43cec56cee27fb54b2ba8fc0372f965c879c5553bb8092f29ee

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a61df20fa77792e83307e266f76790f7cb67980dd476948948de212ee7ec64c
MD5 7e6d63f3bb72a2053895ebf07895de31
BLAKE2b-256 c451a607071b04454f0fffa1f402b0d5bb09f15dec8ed630b1d591dbc56b1139

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp311-cp311-musllinux_1_2_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0c7eba0f90e27ec4af64db051f35387fa17128e6eeb58ee0f2318f2627168cc2
MD5 3de3f456de999443a392295c6938ffc0
BLAKE2b-256 66342f08d9bdc85a0a7299cbb945810720debed8b14b9b64b58935c50591d4a5

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 82ddf7f642b9c0b08063f3cf4e2818b22901bce8ebad05c232d9e295e77436a0
MD5 9f06e4327cde90d768266ee136bffd3e
BLAKE2b-256 9ae05857ef2de285ee68744eba276cbe4ba4716107214fbad5d15cecf028a260

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f1e0369f0dc8c895e718ce37147f56d46142d37596be183ab7a34192c5e6e4c5
MD5 518398c4e14ce8571ccecabdf27f235e
BLAKE2b-256 f22d60c992f21586703d16d9f957b187da86e33be8be8f8d8a555f31337508ad

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7cf4b2b5a0f7a738ecd759eaeaef800fc7c57683b7be9d8a43fcb86ca62701b4
MD5 60d48daec95f632915c0dce03be51c9a
BLAKE2b-256 1a0104c934a64853b57e856d883436a839786a9c15ee27c212ee8b448f263e80

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp311-cp311-musllinux_1_2_armv7l.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0987dcf32e4c47f22634d32e4b0ffbc368bbcf2b33b408cd1a3d2dc0a6a5cd34
MD5 221560e86f21cd029cf0379ed0dab981
BLAKE2b-256 c2a910b78cd9f21a820a6d0160682b80a0a08c2b359d9e7936da3a5a21e3f511

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae3a5d9f2fbe736fec7d24be25c57aa78c2d78d96540439ea68a8abbed9906fc
MD5 a6aa09073abebcc5d11ab8e940732d21
BLAKE2b-256 b573c16af0ad6703396abb3b2c357194808d23e97f1b439da2beba675dab4fba

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 85d73479b79172e7d667b466c170ca6097a334c09ecd83c95c210546031251b5
MD5 89b9c8057bfdaea9f87220e84b3fe51c
BLAKE2b-256 b814febdf2ccedf88633c7638d5ef8909f7cc86fbc35a2e816c7ae3a6c8543a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ec3dd04138bd30e6a3403dbd3ab5a5ccfb501597c5a95196cd816936ed55b777
MD5 61b499a51595aa14ec93cb8513632d5d
BLAKE2b-256 eda1bcb81ee3c6231c440947bf30cad8846158a6da24987889a9a309c47a3a73

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 437eee9e057a7907b11e4af2b18df56b6c795b28e0a3ac250691936cf6bf40eb
MD5 b569859cfb5bd0a849682bf3212800c4
BLAKE2b-256 1179e463bcdcab7a5538211c4ef2bdadf3d31541d5bc21d09c93dc806c2978ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 269d145c593a65f78fb9a64dece90341561ddb2e91a96d42681132b2f706c42a
MD5 83307cd4f1b03e09250799ef9be2a824
BLAKE2b-256 662d79b72cecf79e5c72fdddaa319b731f81ca5121a2caa51ddf7afef0f1ad4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43625253e3dc018d34867b70909149f15f29eac0382802afe027f2fbf17bcb9c
MD5 220c9c886380abf17f1399335a4dff54
BLAKE2b-256 dce57d931db76bf66f58853cb1d3e973c8a52fc4ba3832355949d2e8acdddef5

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a3d706afcc808f6add4208dfa13f911fd93c2a3dab6be484fee4fd0602a0867e
MD5 c86c19eb1fd9833a1773bfde913bef66
BLAKE2b-256 ee7f4bf68f9eaabe8f06917832cd3828636346d6104454af8d5bb420bdc2876c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp311-cp311-macosx_10_9_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5bd37d615cd26d09321bd0168305f8508778712cf38aeffeed550274fb48a2ee
MD5 e05268eb9addb0d7d2dbb02c3daabb6a
BLAKE2b-256 44315c8552b13041decee3facbe4a8e6342e9227cc472d7835df7f148049550a

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: aiohttp-3.11.15-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 442.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.15-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a0361cafb50b185356a5f346c169aea1d14783df99e6da714d626b104586e0b5
MD5 43c1581cf1aaf407706efdece85d97cd
BLAKE2b-256 ac01aae2b01922d36806ba1ebb5c273ec52fceb42fbc4f440f4618e3724896ce

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: aiohttp-3.11.15-cp310-cp310-win32.whl
  • Upload date:
  • Size: 416.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.15-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a50b86eb9cf74fa5b6f1386e08e1520dcbe83d7dfd4c8bf6f2ca72b03d42e79f
MD5 e867eee2087fa9211f8209ba4ab11900
BLAKE2b-256 f5d2430db8e9b7ecde1ed7bf0e73cf8b19aa75e71532f04cfe25654404a6b52c

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9c8417a24063f35b526f8bf14f6f4bdea6f3f49850457337b6ea928901adbbc
MD5 5126c347b1902c9410098e388ba4c553
BLAKE2b-256 f0d0257d268d76bf431d59d1f4a218aa697c45b9503ed507f8d8c7fba8c627c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp310-cp310-musllinux_1_2_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c28cbae1ce76dc48d0fcccb045ac21d00dcc1b306bb745910cf35585ce89404e
MD5 91181019a50e00186b88076807a8a8cf
BLAKE2b-256 18ea4541b27d9af5cccfb0a604ea01a31729ba209576e0bb2a41328c4f5133a6

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e792131352418dde7b0c598e217e89ecf6a26889f46f35f910e5544ffdebf3ae
MD5 9df1595b34ad4f972a164dd7ee1d5b0b
BLAKE2b-256 1c8a99a7af755f79f7fbc7c32390b48db6bdb7d4dc0cf6d40a7e24c4c12401d6

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8c6e39f0bb2418f839841f92b3cd64077ff5166d724c984ab450ca08d5e51d92
MD5 041b324043111ee40d99cf811aaa999c
BLAKE2b-256 1c0a6c9f6e1f97bcc581d2a2e366a5449b18aff8beebefcfd6ba21481e946d6b

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a449c48f5b02c0c14f5310881558ca861bff8e00b1f79be4cf6a53f638464c30
MD5 db3a98a6b4833ce6f92953eda8a726aa
BLAKE2b-256 3f4f49a197b2c13b74c5bf1fd68afb10a10a4ea58aaf439c3c7b68c258fff9d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp310-cp310-musllinux_1_2_armv7l.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b97fae7f75a0b666ce4281627856d1b1a85477f26c2e8b266292e770c17df36
MD5 795e0a52da22ae8065af599746f65c28
BLAKE2b-256 df95bcdda12e097f36b1ef8ff2c569a861bc8a20c13057a9599ea3daa3a2fad7

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c982b2cbd7b8f4b31e9faf2de09e22b060a6cd0a693f20892dda41a8fb0f46ef
MD5 99be5080d825b53b5082a7b7b3d66a4a
BLAKE2b-256 cbb837ac0983b2cfea4c52f37e432285a2e88f707e1c3bd1f1685d802f7fcb2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 71ed71d9431e770550aab27a77ef9d30d33ce6f558ab7818be7205ae6aca635d
MD5 83eb937f8c2e2132f12727ace039e44b
BLAKE2b-256 8c53aefbed8490fccf3efa38212b720b99aeb8b5c865938210e639a61db8c4e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 576b56a34d26ea8a8f0e1a30b8a069ba4ab121fb8eb796d1b89fedda7c74c553
MD5 cc7ca3c3e86d45beb03be0032d284ac8
BLAKE2b-256 f20c4cd253419e6cb8947e32055644cc0457e2dbc5798d10de51605692923b46

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ac49c32901489343b4dab064ab520f6b879a03fb4f9667c84620b66f07bed69
MD5 fddb312a1548241bd75ba09d40af55ec
BLAKE2b-256 8cc56de6d65f7ce607f2cc986ef2a7a3acca96924b4eef7de0e18fc535135428

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f00e7540a60460fbeaffff4a7dcf72fe8b710f8280a542a4d798273787c64e72
MD5 77bf537407e91fdf7bf10c6e0bbfd463
BLAKE2b-256 8a91ef70dd542a12cd1d04bfd5e30716a9dee17d0fa93236275c5d62f0b689fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e13767424425bb607931a0b9e703b95d2693650011ef8f0166b4cd80066b66b9
MD5 15da1980c007a3263f5f7f7356312599
BLAKE2b-256 02350ce3c372a613ac631666f3cfc8039b26feafbc5888e4989aacc0e8aec9a3

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 48d790d05c76b6cb93a1259b44d3f0019b61d507f8ebf0d49da3ef5ac858b05d
MD5 f3f999ada3d5c209bdb9c90097363bd8
BLAKE2b-256 bc7e07f6867473adbfa3684d1664567446a4b6f9536673e079793fb548d760df

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp310-cp310-macosx_10_9_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 078b1ce274f967951b42a65d5b7ec115b7886343a5271f2eed330458ea87bb48
MD5 273847192305fbb16ef21a0103506624
BLAKE2b-256 3cf5149de252a62998ac3a390eeed491cf2293eb24fd90b379898d4e99f85690

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: aiohttp-3.11.15-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 442.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.15-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3cfd9f4aeaec4a75a0b4986a9977ac0a09b3d87ae83415e4b461e86715c80897
MD5 5a0ccfe31333cfb16bb782234b83e627
BLAKE2b-256 8201259ddf708eb44eff0ba222ec94307895bfc2996bc08e92f7972b9af18b9c

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: aiohttp-3.11.15-cp39-cp39-win32.whl
  • Upload date:
  • Size: 417.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.15-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 20dda85988a4f506bf5a457b416b238e32ab944a2deb878ddf0af92df9254a9b
MD5 148ff0503284a91b3a6e1ec89feae188
BLAKE2b-256 64e99ad523ecea3ac87983d14de36202b8be02ded3ac9c7965d4f710a2af22ee

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79a08d675167c50f41d106d67bbcbc9e86e1b43d305c4b9f982d5c656a94a9ba
MD5 e7a55a8d0097abebc5f1eb11eec64e98
BLAKE2b-256 d41331578b8d8212f844eda97fe5424caf119cf50b8ff18a2282df5f67bfc299

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp39-cp39-musllinux_1_2_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4b85486e8914d4e778343f5322834aada678eaf4c5315e50d41d9b74817ff97b
MD5 e0e63fb794b30d722624945d6818772d
BLAKE2b-256 612ff0119f9d5402a654a313a87f6d416a8b3047c50670f021896cca3f29db84

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 204f6695b47a7d130ddf6680158920825d0d32202a870e0bc56a2ec637935b1a
MD5 b8c8ab359ceaa57236e3d4202f74ea35
BLAKE2b-256 b7cc168539ffca23da84e39e7933a035f66ebdc33ff84aafc7c658a5b22a2454

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 38368a32530dcdeccfa47544cf66724118d9cc8a889c057e116723ab62994380
MD5 ec6fef793305132f71514a6986a92fca
BLAKE2b-256 25252da67ac7db67ce4a5c798a8bafb7c38f48f9b4a6a38fda0c5cf32a30c0d3

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 41f82df6f0f895f0f843bc86762bea45b4d0fe876de49239ffc89d2365426399
MD5 82056e8168dc84690092cb4d83bf26e2
BLAKE2b-256 b6d56e0663c50a818d9187b1a6d57435ad8c2dd036a7c3f15e6af90e2c9863e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp39-cp39-musllinux_1_2_armv7l.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 558de86eef9a886e43c6ae5b75cecdce81203da5832d19d11da8de417967d478
MD5 3183a2b3d535b30791f0ccc14ad5a032
BLAKE2b-256 f978909040fc1b7a0520ce5a72d7af4b2490d6e41bb4bbffe4931b31e378818d

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 379882ab6a40e6e0879ad8e84dca74ddbadff94af4f314b59b7da89c8463a669
MD5 04489c2a50f0ff3cc0caf58609793dd9
BLAKE2b-256 17368de58b64ceccde410748c4b556334cc242a870f71594dffb20168a032918

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 84370ff70c1677ee0c4db40fe2baee6ffc72e9d32def3ff18739c1390c62329f
MD5 41aace9f113069a9c32cecc7366ae221
BLAKE2b-256 d5264f744be0a28d2378a39335b031cda0a3615d31c5028ebd7819156372d24d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc270fe480e7e425c45054543f58510fe649f70b77f514171909bbfe585105c0
MD5 38952c90a7284da8bc81fd39966fdff2
BLAKE2b-256 ef1b8c47eec389346cca0a3e1b946c0d49546090de50094e232290f0cc24216f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23397670f3739b6f3c4019da8226190f6cce5ab2008b664ed96a6d1f0fe7f069
MD5 50fe29d74bb7e40af378f68be9d3dad7
BLAKE2b-256 ac9ffb5d8cff4841178445e469403ebeb57ca1b0f9628a8744ae88fbaefa0223

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 74afb637cd06760afe0aa55a3ce82178ef4c950be65935add8f3809f701f36ca
MD5 3ef5f5df4eddc99365c2074df4a6e3df
BLAKE2b-256 d1baee2bdeccf68b708f5b31b5f2659de214af28250dd881a1b1d4adc305365f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e20bd6aa51a5209c9131395e20ce126e8e317c0cf78a8180f026b4d73f018f6
MD5 7530cf24f79b06ad093740960d621e99
BLAKE2b-256 3866917cdf5675088f673bd844cd001a2c07a7fc90fb2baa71e490498853e05d

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1bee0f9e2d4088b57243d63afcb06256bd2d9ff683080f51e74fa790c8cfedfd
MD5 449618dbea5b946e35390c425d47113d
BLAKE2b-256 1a7f1fafdd8695322f2cc8ccc45ac4b9df03dc24b10a342cb37d32e74cca7eb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.15-cp39-cp39-macosx_10_9_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.11.15-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.15-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 03ce9d2f01aef26cd6aaba2f330273c2364237db2f499b93c3e9f2e249f83cd2
MD5 132de70a41fc9edfcf84ca2fb19b5c59
BLAKE2b-256 2596b535074f2ede55ec6f144b94bba2de755e751f2b0557cce3e4ffa8c05eff

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page